﻿body {
    /*border: 1px solid blue;*/
    background-image: url('/images/indexads.png');
    background-repeat: no-repeat; /* 根据需求设置是否重复平铺 */
    background-size: 100% 90%; /* 使背景图片适应容器大小并填满 */
    background-position: center; /* 图片居中对齐 */
}

.box {
    width: 100%;
    height: 80vh;
    /*border: 1px solid red;*/
    position: relative; /* 设置容器为相对定位 */
}

.index_btn {
    /* width: 200px;*/
    height: 50px;
    border: 0px;
    border-radius: 30px;
    padding-left: 30px;
    padding-right: 30px;
    color: white;
    background-image: linear-gradient(to right, #ccccff, #49adf1);
    position: absolute; /* 设置绝对定位 */
    bottom: 0; /* 将按钮至于底部 */
    left: 5%; /* 将按钮至于左侧 */
}
    /*取消点击时的白框效果*/
    .index_btn:focus {
        outline: none;
    }
