html, body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: #fff;
}
.immigration-banner {
    width: 100%;
    height: 315px;
    position: relative;
    overflow: hidden;
}
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-title {
    font-size: 72px;
    color: #002768;
    /* font-weight: bold; */
    text-align: center;
}

.content-section-list {
    width: 1200px;
    margin: 0 auto;
    margin-top: 120px;
    margin-bottom: 160px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 160px;
}

.service-item {
    height: 120px;
    border-bottom: 1px solid #c0c2c4;
    
}
.service-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.service-content-left{
    display: flex;
    align-items: center;
}
.service-bullet {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #002768;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-title {
    font-size: 18px;
    color: #002768;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.service-content-right{
    display: flex;
    align-items: center;
    margin: 0px 0 18px 0;
    justify-content: space-between;
}

.service-description {
    font-size: 16px;
    color: #333333;
    /* line-height: 1.6; */
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
    flex: 1;
}

.service-date {
    font-size: 16px;
    color: #666666;
    text-align: right;
    /* margin-top: 10px; */
    white-space: nowrap;
    flex-shrink: 0;
    /* margin-left: 20px; */
}



/* ====== 移动端响应式适配 ====== */
@media (max-width: 1200px) {
    .immigration-banner{
        height: 4.533rem;
        border-top: 1px solid #e0e0e0;
        border-bottom: 20px solid #f0f0f0;
    }
    .banner-content{
        /* display: none; */
    }
    .banner-title{
        font-size: 1.2rem;
        margin-bottom: 0 !important;
        color: #333333;
    }
    .banner-img{
        display: none;
    }
    .service-list{
        margin-bottom: 20px;
    }
    .content-section-list{
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }
    .container-fluid{
        padding: 0 1.333rem !important;
    }
    .service-bullet{
        display: none;
    }
    .service-item{
        height: 4rem;
        border-bottom: 1px solid #f0f0f0;
    }
    .service-content{
        justify-content: center;
    }
    .service-title{
        font-size: 1.120rem;
    }
    .service-content-right{
        display: none;
    }
}

