/* <!-- 大图片区域 --> */
.swipers {
    height: 990px;
    background: url('../images/back4.webp') no-repeat center/cover;
    /* background-size: 100% 100%; */
}
.swiper_con {
    position: relative;
    height: 100%;
}
.swiper_con .con_input {
    position: absolute;
    top: 229px;
    left: 0;
    width: 100%;
    height: 692px;
    /* opacity: 0.9; */
    background: rgba(rgba(254, 254, 254, 0.72));
    background: #fefefe42;
    box-shadow: 0 8px 12px 5px #b4b4b4a1;
    border-radius: 10px;
    border-radius: 4px;
    backdrop-filter: blur(20px);
}
 .con_input .input_top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 797px;
    height: 264px;
    color: #AAAAAA;
    margin: 0 auto;
    margin-top: 88px;
}
.input_top label {
    display: flex;
    flex-direction: column;
    color: #fff;
}
.input_top input {
    width: 272px;
    height: 40px;
    margin: 5px 0;
    padding: 0 8px;
    text-overflow: ellipsis;
    background-color: #FFF;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    font-size: 14px;
    z-index: 99;
}
.con_input .imput_bottom {
    width: 798px;
    height: 157px;
    margin: 30px auto;
}
.imput_bottom label {
    color: #fff;
}
.imput_bottom input {
    width: 798px;
    height: 130px;
    margin: 5px 0;
    padding-left: 15px;
    vertical-align: top;
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8 ;
    outline: none;
    z-index: 99;
}
textarea {
    line-height: 1;
}
.con_input .btn {
    width: 100%;
    margin-top: 70px;
    text-align: center;
}
.con_input .btn button{
    width: 272px;
    height: 40px;
    color: #fff;
    background: #3052F9;
    border: none;
    outline: none;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .swipers {
        background-size: 100% 100%;
    }
    .swiper_con .con_input {
        top: 100px;
    }
    .con_input .input_top {
        justify-content: space-around;
        width: 100%;
        height: auto;
        margin-top: 50px;
    }
    .input_top label {
        width: 46%;
        font-size: 12px;
    }
    .input_top input  {
        width: 90%;
        font-size: 12px;
    }
    .con_input .imput_bottom {
        width: 100%;
        height: auto;
    }
    .imput_bottom label {
        width: 100%;
        height: auto;
        font-size: 12px;
    }
    .imput_bottom label p:last-child {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .imput_bottom input {
        width: 90%;
        height: 100px;
        
    }
    .con_input .btn {
        margin-top: 80px;
    }
} 