body{
    background: #f7f7f7;
}
.banner-box{
    position: relative;
}
.banner-box img{
    display: block;
    width: 100%;
    min-height: 6rem;
    object-fit: cover;
}
.banner-text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.banner-text .text1 {
    font-size: 0.48rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    /* width: 10rem; */
    margin: 0 auto;
    line-height: 0.5rem;
}

.banner-text .text2 {
    font-size: 0.16rem;
    color: #fff;
    /* width: 9rem; */
    margin: 0.2rem auto 0;
    text-align: center;
}

.banner-text .text-btn {
    width: 2.15rem;
    height: 0.45rem;
    border-radius: 0.3rem;
    color: #fff;
    text-align: center;
    line-height: 0.45rem;
    margin: 1.6rem auto 0;
    border: 1px solid #fff;
    text-transform: uppercase;
}
.c-title{
    font-size: 0.36rem;
    font-weight: 600;
    text-align: center;
    margin-top:0.5rem;
}
.c-tit2{
    font-size:0.18rem;
    text-align: center; 
}
.c-info{
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top:0.5rem;
}
.c-info .c-item{
    width:3.45rem;
    height:3rem;
    border-radius: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-info .c-item:nth-child(1){
    background: url('../images/contact/bg1.png') no-repeat;
    background-size:100% 100%;
}
.c-info .c-item:nth-child(2) {
    background: url('../images/contact/bg2.png') no-repeat;
    background-size: 100% 100%;
}
.c-info .c-item:nth-child(3) {
    background: url('../images/contact/bg3.png') no-repeat;
    background-size: 100% 100%;
}
.c-info .c-item:nth-child(4) {
    background: url('../images/contact/bg4.png') no-repeat;
    background-size: 100% 100%;
}
.c-info .c-icon{
    width: 0.4rem;
    height: 0.4rem;
    margin: 0.5rem auto 0;
}
.c-info .c-item:nth-child(1) .c-icon{
    background:url('../images/contact/email.png') no-repeat;
    background-size:100% 100%;
    
}
.c-info .c-item:nth-child(2) .c-icon{
    background:url('../images/contact/tel.png') no-repeat;
    background-size:100% 100%;
}
.c-info .c-item:nth-child(3) .c-icon{
    background: url('../images/contact/app.png') no-repeat;
    background-size: 100% 100%;
}
.c-info .c-item:nth-child(4) .c-icon{
    background: url('../images/contact/address.png') no-repeat;
    background-size: 100% 100%;
}
.c-info .c-tit{
    font-weight: 600;
    margin-top:0.1rem;
}
.c-info .c-desc{ 
    font-size:0.12rem;
    color:#666;
    padding:0 0.2rem;
    margin-top:0.1rem;
}
.form-bg{
    display: flex;
}

.form-box{
    flex:1;
    background: #fff;
    margin-right:0.2rem;
    border-radius: 0.1rem;
    margin-top:0.2rem;
    padding:0.2rem;
}
.form-box .f-title {
    font-size: 0.22rem;
    font-weight: bold;
}
.form-box .f-desc{
    font-size:0.14rem;
    color:#666;
}
.form-box ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    margin-top:0.2rem;
}
.form-box ul li{
    width:48%;
    margin-bottom:0.2rem;
    box-sizing: border-box;
}
.form-box ul li:last-child{
    width:100%;
}
.form-box ul li .label{ 
    font-size:0.14rem;
    font-weight:bold;
}
.form-box ul li span{
    color:red;
    position:relative;
    top:0.03rem;
}
/* .contact-form input, .contact-form select{
    width:90%;
    height:0.4rem;
    background:#f7f7f7;
    border:none;
    border-radius:0.05rem;
    padding:0 0.1rem;
    margin-top:0.1rem;
    outline:none;
}
.contact-form select{
    width: 96%;
}
.contact-form textarea {
    width: 95.5%;
    height: 0.5rem;
    background: #f7f7f7;
    border: none;
    border-radius: 0.05rem;
    padding: 0.1rem;
    margin-top: 0.1rem;
    outline: none;
    resize: none;
} */
 .contact-form{
    margin-top:0.2rem;
 }
.form-row {
    display: flex;
    margin-bottom: 0.2rem;
    justify-content: space-between;
}

.form-row .form-group {
    width: calc(50% - 0.15rem);
    ;
    min-width: 0;
}

label {
    display: block;
    margin-bottom: 0.1rem;
    font-weight: 600;
    font-size: 0.14rem;
}

label span {
    color: red;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.1rem;
    border: solid 1px #f7f7f7;
    border-radius: 4px;
    font-size: 0.14rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: #f7f7f7;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #0163dd;
}

textarea {
    resize: none;
}

.submit-btn {
    background-color: #0163dd;
    color: white;
    width: 2.2rem;
    height: 0.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.18rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0.2rem auto 0;
    text-align: center;
    line-height: 0.5rem;
}

.submit-btn:hover {
    background-color: #0163dd;
}
.time-box{
    width:3.45rem;
    margin-top:0.2rem;
}
.time-box .t-item{
    background:#fff;
    border-radius: 0.05rem;
    box-sizing: border-box;
    padding:0.3rem 0.3rem 0.4rem;
    
    line-height: 0.3rem;
}
.time-box .t-item:nth-child(1){
    margin-bottom: 0.2rem;
}
.time-box .t-item:nth-child(1) .t-icon{
    width:0.3rem;
    height: 0.3rem;
    background:url('../images/contact/time.png') no-repeat;
    background-size:100% 100%;
}
.time-box .t-item:nth-child(2) .t-icon {
    width: 0.3rem;
    height: 0.3rem;
    background: url('../images/contact/time2.png') no-repeat;
    background-size: 100% 100%;
}
.time-box .text1{
    font-size:0.16rem;
    font-weight: bold;
    margin:0.1rem 0 0.1rem;
}
.time-box .text2{
    font-size:0.14rem;

}
.time-box .text3{
    font-size:0.14rem;
    color:#666;
}
.time-box .text4{
    font-size: 0.14rem;
    color: #666;
    margin-top:0.1rem;
}
.time-box .text5{
    font-size: 0.14rem;
    color: #666;
    margin:0.1rem 0;
    position: relative;
    padding-left:0.2rem;
}
.time-box .text5::before{
    content: '';
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    width: 0.05rem;
    height: 0.05rem;
    background: #0163dd;
    border-radius: 50%;
}


.w-title {
    font-size: 0.36rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0.1rem;
}
.zb-t {
    margin-top: 0.8rem;
    margin-bottom: 0.45rem;
}
.zb-list { 
    margin-bottom:0.3rem;
}

.zb-list .item {
    border-radius: 0.12rem;
    overflow: hidden;
}

.zb-list .item .item-img {
    width: 100%;
    height: 2rem;
    overflow: hidden;
}

.zb-list .item .item-img img {
    display: block;
    width: 100%;
    height: 2rem;
    object-fit: cover;
}

.zb-list .item .item-text {
    padding: 0.2rem;
    background: #fff;
}

.zb-list .item .item-text .item-title {
    font-size: 0.14rem;
    font-weight: 600;
}

.zb-list .item .item-text .item-des {
    font-size: 0.12rem;
    color: #666;
    display: flex;
    align-items: center;
    margin-top: 0.1rem;
}

.zb-list .item .item-text .item-des .adricon {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 5px;
}

.zb-list .item .item-text .item-des .flag {
    width: 0.14rem;
    height: 0.12rem;
    margin-right: 4px;
}
.zb-list .swiper-button-next.swiper-button-disabled,
.zb-list .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.zb-list .swiper-button-next,
.zb-list .swiper-rtl .swiper-button-prev,
.zb-list .swiper-button-prev,
.zb-list .swiper-rtl .swiper-button-next {
    width: 0.6rem;
    height: 0.6rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #666;
    font-weight: bold;
    top: 40%;
}

.zb-list .swiper-button-prev:after,
.zb-list .swiper-rtl .swiper-button-next:after,
.zb-list .swiper-button-next:after,
.zb-list .swiper-rtl .swiper-button-prev:after {
    font-size: 0.2rem;
}
.sub-box{
    text-align: center;
}

@media screen and (min-width: 1000px) {

    /* 在这里添加你的样式规则 */
    .zb-list {
        overflow: initial !important;
    }

    body {
        overflow-x: hidden;
    }
}
@media (max-width: 700px){
    .form-bg{
        display: block;
        
    }
    .form-box{
        margin-right: 0;
    }
    .time-box{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .time-box .t-item{
        width: 48%;
    }
    .c-info{
        flex-wrap: wrap;
    }
    .c-info .c-item{
        width:48%;
        margin-bottom: 0.2rem;
        font-size:0.22rem;
    }
    .c-info .c-icon{
        width:0.5rem;
        height:0.5rem;
    }
    .c-info .c-desc{
        font-size:0.17rem;
        height: 1.1rem;
    }
    .time-box .t-item:nth-child(1){
        margin-bottom:0;
    }
    .zb-list .item .item-text .item-title{
        min-height: 0.4rem;
    }
}