html, body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: #fff;
}
#app{
    background: #ffffff;
}
.immigration-banner-service {
    width: 100%;
    border-top: 1px solid #82B8D4;
    border-bottom: 1px solid #E2EFF5;
}
/* 二级导航 */
.banner-content{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    height: 60px;
    align-items: center;
    gap: 8px;
}
.banner-content .banner-title-service{
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: #333333;
    cursor: pointer;
}

.content-section-list {
    width: 1200px;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 160px;
}

/* 列表 */


/* 我们的服务轮播部分 */
.our-services-section {
    margin-top: 120px;
}


.services-title {
    font-size: 18px;
    color: #002768;
    font-weight: normal;
    margin: 0;
}



.services-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.services-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.services-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    /* gap: 20px; */
    will-change: transform;
    transform: translateX(0);
    justify-content: space-between;
}

.service-card {
    width: 398px;
    height: 560px;
    padding: 40px 30px 25px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
}

.service-card:hover {
    background-color: #07c3f3;
    /* transform: translateY(-5px); */
}

.service-card:hover .service-card-title {
    color: #ffffff;
}
.service-card:hover .service-card-desc {
    color: #ffffff;
}
.service-card:hover .service-card-link {
    color: #ffffff;
}
/* .service-card:hover .service-card-image img {
    filter: brightness(0) invert(1);
} */

.service-card-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 30px 0;
    color: #333333;
}

.service-card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: #333333;
    flex: 1;
}





.service-card-image {
    width: 325px;
    /* height: auto; */
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card-link {
    font-size: 14px;
    font-weight: bold;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card-link:hover {
    color: #ffffff;
    text-decoration: none;
    /* opacity: 0.8; */
}

.service-card-link .img-default {
    display: inline-block;
}
.img-hover,.img-default {
    width: 28px;
    height: 28px;
}

.service-card-link .img-hover {
    display: none;
}

.service-card:hover .service-card-link .img-default {
    display: none;
}

.service-card:hover .service-card-link .img-hover {
    display: inline-block;
}

/* 轮播箭头 */
.carousel-arrow {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    z-index: 10;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
}

.carousel-arrow-left {
    left: 0;
}
.carousel-arrow-right {
    right: 0;
}


.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-arrow span {
    display: block;
    line-height: 1;
}




/* ====== 移动端响应式适配 ====== */
@media (max-width: 1200px) {

    .loaded{
        height: 100vh;
        
       }
    
  
    /* .banner-title{
        padding: 0;
    } */

    .immigration-banner{
        height: 4rem;
        border-top: 1px solid #e0e0e0;
        background: #ffffff;
    }
    .banner-img{
        display: none;
    }
    .banner-title{
        font-size: 1.227rem;
        color: #333333;
        padding: 0;
        text-align: center;
        line-height: 4rem;
        margin: 0;
    }
    .banner-content{
        position: relative;
        transform: translateX(0);
        left: 0;
        width: 100%;
    }


    .content-section-list{
        width: 100%;
        margin-top: 0.8rem;
        margin-bottom: 0;
    }
    .container-fluid{
        padding: 0 1.333rem;
        justify-content: center;
    }
   
    /* 移动端服务轮播适配 */
    .our-services-section {
        margin-top: 40px;
       padding: 0 1.333rem;
    }
    .services-carousel-wrapper {
        flex-direction: column;
    }

    .services-title{
        font-size: 1.227rem;
    }
    .carousel-arrow{
        display: none;
    }
    .services-carousel-track{
        flex-wrap: wrap;
    }
    .service-card{
        width: 13.6rem;
        height: auto;
        padding: 1.2rem 0.667rem;
    }
    .service-card-image{
        width: 100%;
    }
    .service-card-title{
        font-size: 0.960rem;
        margin-bottom: 10px;
    }
    .service-card-desc{
        font-size: 0.960rem;
        margin-bottom: 10px;
    }
    .service-card-link{
        font-size: 0.693rem;
    }
    .img-hover, .img-default {
        width: 0.987rem;
        height: 0.987rem;
    }

}

