html, body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}
#app{
    background: #f3f3f3;
}
.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;
}

/* 面包屑导航样式 */
.breadcrumb-nav {
   width: 1200px;
   margin: 0 auto;
   height: 120px;
   padding-top: 35px;
}

.breadcrumb-nav .list-inline {
    margin: 0;
    padding: 0;
}

.breadcrumb-nav .list-inline-item {
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-nav .list-inline-item a {
    color: #002768;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav .list-inline-item a:hover {
    color: #002768;
    text-decoration: none;
}

.breadcrumb-nav .list-inline-item:not(:last-child) {
    margin-right: 8px;
}

.breadcrumb-nav .list-inline-item:not(:last-child)::after {
    content: ">";
    margin-left: 8px;
    color: #002768;
    font-weight: bold;
}


/* 文章内容区域样式 */
.article-container {
   width: 1200px;
   margin: 0 auto;
   background-color: #fff;
}
.article-content{
     padding:0 45px;
}
.article-title-box{
    border-bottom: 2px solid #e6e6e6;
}
.article-title{
    font-size: 30px;
    color: #002768;
    padding: 85px 0px 25px 0px;
    text-align: center;
}
.article-date{
    text-align: right;
    display: block;
    font-size: 14px;
    color: #bdbdbd;
}
.article-content-box{
    width: 1025px;
    margin: 0 auto;
    padding-bottom: 40px;
    margin-top: 70px;
    margin-bottom: 160px;
}
.article-service-container{
    display: none;
}

 /* ====== 移动端响应式适配 ====== */
@media (max-width: 1200px) {
    .immigration-banner{
        display: none;
    }
    .breadcrumb-nav{
        display: none;
    }
    .article-container{
        width: 100%;
    }
    .article-content{
        padding: 0 1.333rem;
    }
    .article-title-box{
        border-bottom: 1px solid #e0e0e0;
    }
    .article-title{
        padding: 0;
        font-size: 1.120rem;
        font-weight: bold;
        padding: 3.2rem 0 2.133rem 0;
    }
    .article-date{
        text-align: left;
        font-size: 0.640rem;
        color: #333333;
        margin-bottom: 0.4rem;
    }
    .article-content-box{
        width: 100%;
        padding: 0 1.333rem;
        margin-bottom: 0;
    }
    .article-service-container{
        display: block;
        width: 100%;
        height: 4rem;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        position: relative;
    }
    .icon-box{
        position: absolute;
        left: 1.333rem;
        top: 50%;
        transform: translateY(-50%);
        bottom: 0;
        margin: auto;
    }
    .icon-box img{
        height: 1.733rem;
    }
}