
@font-face {
  font-family: 'AlibabaPuHuiTi';
  src: url('../fonts/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}
body, html {
  font-family: 'AlibabaPuHuiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;

}
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    background-color: #fff;
    width: 100%;
    max-width: 1200px;
    margin:0 auto; ;
}
.logo-container {
    margin-right: 100px;
    display: flex;
    align-items: center;
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #2158C8;
    margin-right: 10px;
}
.logo-desc {
    font-size: 14px;
    color: #666;
}
.nav-desktop ul {
    list-style: none;
    display: flex;
}
.nav-desktop ul li {
    margin: 0 15px;
}
.nav-desktop ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px 0;
}
.nav-desktop ul li a:hover{
    color: #2158C8;
}
.nav-desktop ul li a.active {
    color: #2158C8;
    border-bottom: 2px solid #2158C8;
}
.search-icon a,
.search-icon-mobile a {
    color: #333;
    font-size: 18px;
}
.phone-number {
    text-align: center;
}
.phone-number span {
    display: block;
}
.phone-number {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding:2px 10px;
    background: linear-gradient( to bottom ,#2158C8, #4977D3);
    border-radius: 30px;
}
.hotline {
    font-size: 12px;
    font-weight: normal;
}
.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: none;
}
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}
.nav-mobile ul {
    list-style: none;
}
.nav-mobile ul li {
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
}
.nav-mobile ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.nav-mobile ul li a.active {
    color: #2158C8;
}
.search-icon-mobile {
    padding: 15px 30px;
}


/* === 二级菜单样式（桌面端）=== */
.nav-desktop ul .menu-item {
    position: relative;
    margin: 0 15px;
}

.nav-desktop ul .menu-item a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px 0;
    display: block;
}

.nav-desktop ul .menu-item a.active {
    color: #2158C8;
    border-bottom: 2px solid #2158C8;
}

/* 下拉菜单 */
.nav-desktop ul .submenu {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 100;
    border-radius: 4px;
}

.nav-desktop ul .menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-desktop ul .submenu li {
    padding: 8px 0px;
}

.nav-desktop ul .submenu li a {
    font-size: 14px;
    color: #555;
    padding: 2px 0;
    border-bottom: none;
    text-align: center;
}

.nav-desktop ul .submenu li a:hover {
    color: #2158C8;
}
/* === 移动端二级菜单样式 === */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.nav-mobile ul {
    list-style: none;
    padding: 0;
}

.nav-mobile .mobile-menu-item > .menu-link-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.nav-mobile .mobile-menu-item > .menu-link-wrap a {
    flex: 1;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 15px 30px;
    display: block;
}

.nav-mobile .mobile-menu-item.has-children .toggle-btn {
    font-size: 20px;
    color: #666;
    margin-right: 10px;
    transition: transform 0.3s ease;
    font-weight: bold;
}

/* 展开状态按钮变成 - */
.nav-mobile .mobile-menu-item.expanded .toggle-btn {
    transform: rotate(90deg);
    content: "-";
}

.nav-mobile .mobile-submenu {
    list-style: none;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-mobile .mobile-submenu li a {
    display: block;
    padding: 12px 50px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}
/* === 搜索弹窗通用样式 === */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.search-overlay.active {
    display: flex;
}

.search-box {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.search-form {
    display: flex;
    gap: 12px;
}

.search-form input[type="text"] {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    /* 防止 iOS 自动缩放 */
    font-family: inherit;
}

.search-form button {
    background: #2158C8;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: #333;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .search-box {
        width: 95%;
        padding: 20px;
    }
    .search-form input[type="text"] {
        padding: 12px 16px;
        font-size: 16px;
    }
    .search-form button {
        padding: 0 16px;
        min-width: 50px;
    }
}

/* 展开时显示子菜单 */
.nav-mobile .mobile-menu-item.expanded .mobile-submenu {
    max-height: 500px;
}

.nav-mobile .mobile-menu-item.expanded .toggle-btn {
    transform: rotate(90deg); /* 箭头向右表示展开 */
}
/* 响应式媒体查询 */
@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
    .container {
        padding:20px;
    }
    .mobile-menu-btn {
        display: block;
    }
    .phone-number {
        font-size: 16px;
        padding: 8px 15px;
    }
}
@media (max-width: 576px) {
    .header {
        padding: 10px 15px;
    }
    .container {
        padding:0;
    }
    .logo-container{
        margin-right: 0;
        align-items: end;
        flex-direction: column;
    }
    .logo-text {
        font-size: 20px;
    }
    .logo-desc {
        font-size: 12px;
    }
    .phone-number {
        font-size: 14px;
        padding: 6px 12px;
    }
    .nav-mobile ul li {
        padding: 12px 15px;
    }
    .search-icon-mobile {
        padding: 12px 15px;
    }
}


/* Banner容器样式 */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* 轮播容器 */
.banner-container {
    position: relative;
    width: 100%;
    height: 400px; /* 默认高度 */
}

/* 轮播项样式 */
.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-color: #2158C8;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    overflow: hidden;
}

/* 激活状态的轮播项 */
.banner-item.active {
    opacity: 1;
    z-index: 1;
}

/* 轮播图片样式 */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保持比例并覆盖容器 */
}

/* 控制按钮样式 */
.banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

/* 上一张按钮 */
.banner-prev {
    left: 20px;
}

/* 下一张按钮 */
.banner-next {
    right: 20px;
}

/* 按钮悬停效果 */
.banner-control:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* 指示器容器 */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

/* 指示器样式 */
.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 激活状态的指示器 */
.indicator.active {
    width: 30px;
    border-radius: 5px;
    background-color: white;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .banner-container {
        height: 300px;
    }
    
    .banner-control {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-indicators {
        bottom: 15px;
    }
}

@media (min-width: 1200px) {
    .banner-container {
        height: 500px;
    }
}

.project-info h3.main-project-image h3{
    background:url(../images/2025-10-21_173417_196.png) no-repeat left bottom; 
}

.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 热门项目部分样式 */
.popular-projects {
    padding: 60px 0;
}
.section-subtitle {
    font-size: 1rem;
    color: #2158C8;
    text-align: center;
    margin-bottom: 10px;
    margin: 0 auto;
    font-weight: bold;
}
.section-title {
    font-size: 2rem;
    color: #0a2c5f;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* 主要项目卡片样式 */
.main-project-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    margin-bottom: 60px;
    transition: transform 0.3s ease;
}

.main-project-card:hover {
    transform: translateY(-5px);
}

.main-project-image {
    position: relative;
    width: 100%;
    height: 300px;
}

.main-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.8);
    padding: 30px 20px 20px;
    color: #000000;
    border-radius: 12px;
}
.overlay-text {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}
.overlay-title {
    position: absolute;
    top: 30px;
    left: 0px;
    margin: 20px;
    padding-bottom: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
.overlay-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    transform: translateY(-50%);
    width: 70px;
    height: 3px;
    background-color: #2158C8;
}
.project-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-item {
    background-color: rgba(255, 255, 255);
    backdrop-filter: blur(4px);
    padding: 10px;
    border-radius: 6px;
}

.stat-label {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    background-color: #2158C8;
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
    margin: 0 auto;
}

.stat-value {
    /* font-weight: bold; */
}

.project-tags {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 15px;
}

.h-tag {
    color: #000000;
    border-radius: 20px;
    font-size: 1rem;
}
.fa-grip-lines-vertical {
    margin-right: 8px;
    color: #2158C8;
}
.main-project-details {
    background-color: #F5F6FA;
    color: #00092A;
    padding: 30px 20px;
    position: relative;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.detail-header h4 {
    font-size: 1.2rem;
    font-weight: bold;
}

.detail-link {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.detail-link:hover {
    color: #99ccff;
}

.detail-section {
    margin-bottom: 20px;
    position: relative;
}

.detail-section h5 {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1rem;
    margin-left: 10px;
}
.detail-section h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background-color: #2158C8;
    border-radius: 3px;
}
.detail-section p {
    font-size: 0.9rem;
    margin-bottom: 6px;
    /*opacity: 0.8;*/
    color:#000000;
}

.detail-actions {
    position: absolute;
    display: flex;
    justify-content: right;
    gap: 15px;
    margin-top: 30px;
    bottom: 50px;
    right: 50px;
}

.btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    padding: 10px 20px !important;
    background-color: #2158C8;
    color: white;
}

.primary-btn:hover {
    background-color: #0052a3;
}

.secondary-btn {
    padding: 10px 20px !important;
    background-color: white !important;
    color: #00092A !important;
}

.secondary-btn:hover {
    background-color: #f0f0f0;
}

/* 其他项目卡片样式 */
.other-projects {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-card {
    background-color: #F5F6FA;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
    transform: translateY(-3px);
}

.project-img {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-title {
    color: #2158C8;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
    padding-bottom: 10px;
}

.project-features {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
}

.project-features li {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    width: 45%;
}

.project-features li i {
    color: #2158C8;
    margin-right: 8px;
}

.project-description {
    font-size: 0.9rem;
    color: #666;
}

.more-link {
    color: #2158C8;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: #0052a3;
}

.more-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.more-link:hover i {
    transform: translateX(3px);
}

/* 响应式样式 */
@media (min-width: 768px) {
    .project-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .other-projects {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .project-card {
        width: calc(50% - 15px);
    }
}

@media (min-width: 992px) {
    .main-project-card {
        flex-direction: row;
    }
    
    .main-project-image,
    .main-project-details {
        width: 50%;
    }
    
    .main-project-image {
        height: auto;
    }
    
    .project-card {
        width: calc(33.333% - 20px);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.service-process {
    padding: 60px 0;
    background-color: #F5F6FA;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 28px;
    font-weight: bold;
    color: #1f2937;
}

.en-title {
    display: block;
    font-size: 14px;
    color: #2158C8;
    margin-bottom: 8px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    text-align: center;
}

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    /* border: 2px solid #2158C8; */
    color: #2158C8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /*background-color: #2158C8;*/
    opacity: 0.1;
    color: #3A79F9;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.step-name {
    margin-top: 16px;
    font-size: 16px;
    color: #333;
}

.step-connector {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2158C8;
    font-size: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
.step-icon {
    width: 100px;
    height: 100px;}
    .process-steps {
        /* flex-direction: column; */
        justify-content: space-between;
    }

    .step-item {
        margin-bottom: 40px;
    }

    .step-connector {
        display: none;
        transform: rotate(90deg);
        margin: 20px 0;
    }
        .image-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
}
.project-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 0px;
    font-size:.9rem;
}
.stat-item{
    padding: 5px 0;
}
.detail-actions{
    bottom: 0px;
    right: 20px;
}
}

/* 交互效果 */
.step-icon:hover {
    background-color: #2158C8;
    color: #fff;
    transform: scale(1.1);
}


.success-cases {
    padding: 60px 0;
    background: url('../images/case-bg.png') no-repeat center center;
    background-size: cover;
    background-position: center;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 28px;
    font-weight: bold;
}

.en-title {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.case-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-img {
    height: 300px;
    overflow: hidden;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-info {
    padding: 20px;
    text-align: center;
    color: #fff;
}
.s-t-light {
    color: #fff;
}
.case-info span {
    font-size: 18px;
    margin-bottom: 8px;
}

.case-info p {
    font-size: 14px;
    opacity: 0.8;
}

.view-more {
    text-align: center;
}

.btn {
    background-color: #2158C8;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #004c99;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* 交互效果 */
.case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.case-item:hover .case-img img {
    transform: scale(1.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }
}

.advantages-section {
    padding: 60px 0;
}


.en-title {
    display: block;
    font-size: 14px;
    color: #2158C8;
    margin-bottom: 8px;
}

.advantages-grid {
    display: flex;
    flex-wrap:  wrap;
    gap: 30px;
    justify-content: center;
}

.advantage-item {
    width: calc(30% - 40px);
    padding: 30px 0;
    text-align: center;
    transition: all 0.3s ease;
    background: url(../images/border.png) no-repeat center center;
    background-size: 100% 100%;
}

.advantage-icons {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2158C8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.advantage-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: bold;
}

.advantage-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 交互效果 */
.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.1);
    border-color: #004c99;
}

.advantage-item:hover .advantage-icon {
    background-color: #004c99;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .advantage-item {
        width: calc(50% - 20px);
    }
    .section-title {
        font-size: 24px;
    }
}


    .group-section {
      display: flex;
      min-height: 80vh;
      width: 100%;
      flex-wrap: wrap; ;
    }

    /* 左侧主区域 */
    .left {
      /* flex: 1; */
      position: relative;
      background: url('../images/meiguo.png') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 60px;
      width: 50%;
      color: #fff;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .overlay {
      position: absolute;
      inset: 0;
      /*background: rgba(0,0,0,0.3);*/
    }
    .left-content {
      position: relative;
      z-index: 2;
    }
    .left h1 {
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .left h2 {
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 1px;
      color: #ddd;
      margin-bottom: 12px;
    }
    .left p {
      font-size: 14px;
      color: #ccc;
      margin-bottom: 20px;
    }
    .vip {
      display: inline-block;
      padding: 8px 18px;
      border: 1px solid rgba(255,255,255,0.7);
      border-radius: 30px;
      font-size: 14px;
      color: #fff;
      text-decoration: none;
    }
    .arrow {
      position: absolute;
      right: 60px;
      bottom: 60px;
      z-index: 2;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #fff;
      cursor: pointer;
      transition: 0.3s;
    }
    .arrow:hover {
      background: rgba(255,255,255,0.3);
    }

    /* 右侧区域 */
    .right {
      flex: 1;
      display: grid;
      grid-template-rows: repeat(3, 1fr);
      grid-template-columns: 1fr;
      display: flex;
      flex-wrap: wrap;
    }
    .right .block {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px;
      color: #fff;
      overflow: hidden;
      transition: 0.3s;
      width: 50%;
      height: 50%;
    }
    .block img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.4s ease;
    }
    .block::before {
      content: "";
      position: absolute;
      /*inset: 0;*/
      /*background: rgba(0,0,0,0.4);*/
    }
    .block:hover img {
      transform: scale(1.05);
    }
    .block h3 {
      position: relative;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .block p {
      position: relative;
      font-size: 14px;
      color: #ddd;
    }
    .two-block{
        padding: 0 !important;
        display: flex;
        justify-content: space-between;
    }
    .two-block .add-block{
        height: 50%;
        width: 100%;
        padding: 40px;
    }
    /* 单独色块样式 */
    .blue {
      background: #1e47d0;
    }
    .gray {
      background: #333A55;
    }
    .gray2{
        background: #00092A;
    }
    .black {
      background: #000;
    }
    .arrow-sm {
      position: absolute;
      right: 40px;
      bottom: 40px;
      border: 1px solid rgba(255,255,255,0.6);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    @media (max-width: 900px) {
      .container {
        /* flex-direction: column; */
      }
      .left, .right {
        flex: none;
        width: 100%;
        height: 50vh;
      }
      .right {
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
      }
    }

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.consultants-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.consultants-section {
    padding: 60px 0;
    background-color: #fff;
}


.en-title {
    display: block;
    font-size: 14px;
    color: #2158C8;
    margin-bottom: 8px;
}

.consultants-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    justify-content: space-around;
}

.consultant-item {
    /*min-width: 220px;*/
    margin-right: 30px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.consultant-item img {
    width: 100%;
    height: 100%;

}

.consultant-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 5px 15px;
    width: 70%;
    background-color: #2158C8;
    color: #fff;
}

.consultant-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.consultant-info p {
    font-size: 12px;
    opacity: 0.8;
}

.consultant-link {
    position: absolute;
    bottom: 30px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #2158C8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.consultant-link:hover {
    background-color: #004c99;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 102, 204, 0.2);
    border: none;
    color: #2158C8;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-prev:hover, .carousel-next:hover {
    background-color: #2158C8;
    color: #fff;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 8px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e5e7eb;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #2158C8;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .consultant-item {
        min-width: 180px;
    }

    .carousel-prev, .carousel-next {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .consultant-item {
        min-width: 150px;
    }

    .section-title {
        font-size: 24px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-news-section {
    padding: 60px 0;
}

.faq-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
a{
    color: #222222;
}
.faq-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: baseline;
    background: url(../images/line-1.png);
    background-repeat: no-repeat;
    background-position: center calc(100% - 40px);
    position: relative;
}
.view-more{
    position: absolute;
    bottom: 60px;
    right: 25px;
    border-radius: 25px;
    border:1px solid #2158C8;
    background: #E8EEF9;
    padding:0 5px;
}
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tag {
    width:max-content;
    font-size: 16px;
    font-weight: bold;
    color: #2158C8;
    position: relative;
    margin-right: 10px;
}

/*.tag::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    border-radius: 50%;*/
/*    background-color: #2158C8;*/
/*}*/

.question-list {
    list-style: none;
    padding-bottom: 30px;
    background: url(../images/line-2.png) left;
    background-repeat: no-repeat;
    background-size: auto 100%;
    height: 100%;
}

.question-list li {
    font-size: 16px;
    color: #222222;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
}

.question-list li::before {
    /*content: "";*/
    /*position: absolute;*/
    /*left: 0;*/
    /*top: 8px;*/
    /*width: 1px;*/
    /*height: calc(100% - 8px);*/
    /*background-color: #e5e7eb;*/
}

.view-more {
    display: inline-block;
    font-size: 13px;
    color: #2158C8;
    text-decoration: none;
    float: right;
    transition: color 0.3s ease;
}

.view-more:hover {
    color: #004c99;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .faq-news-grid {
        grid-template-columns: 1fr;
    }

    .faq-card {
        padding: 20px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.footer {
    background-color: #00092A;
    color: #fff;
    padding: 60px 0 30px;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
}

.nav-column {
    margin-right: 80px;
}

.nav-column ul {
    list-style: none;
}

.nav-column ul li {
    margin-bottom: 15px;
}

.nav-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-column ul li a:hover {
    opacity: 1;
}

.footer-info {
    /* text-align: right; */
}

.logo img {
    margin-bottom: 20px;
    height: 40px;
}

.contact p {
    font-size: 14px;
    /* margin-bottom: 10px; */
    /* text-align: right; */
}

.qrcode-group {
    display: flex;
    /* justify-content: flex-end; */
    margin-top: 20px;
}

.qrcode-item {
    margin-right: 30px;
    text-align: center;
}

.qrcode-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.qrcode-item p {
    font-size: 12px;
    opacity: 0.8;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p {
    font-size: 12px;
    opacity: 0.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-nav {
        margin-bottom: 40px;
        display: none;
    }

    .footer-info {
        text-align: center;
    }

    .contact p {
        text-align: center;
    }

    .qrcode-group {
        justify-content: center;
    }

    .qrcode-item {
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav-column {
        margin-right: 40px;
    }

    .qrcode-item img {
        width: 80px;
        height: 80px;
    }
}


.section-container-visa {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    margin-bottom: 30px;
}

/* F1学生签证页面样式 */
.visa-hero {
    position: relative;
    /* height: 500px; */
    padding: 60px 0;
    /*background: url('../images/banner01.png') center/cover no-repeat;*/
    color: #fff;
    display: flex;
    align-items: center;
}
.o1-bg{
    background: url('../images/o1-bg.png') center/cover no-repeat;
}
.f1-bg{
    background: url('../images/f1-bg.png') center/cover no-repeat;
}
.j1-bg{
    background: url('../images/j1-bg.png') center/cover no-repeat;
}
.l1-bg{
    background: url('../images/l1-bg.png') center/cover no-repeat;
}
.l1-visa-bg{
    background: url('../images/l1-visa-bg.png') center/cover no-repeat;
}
.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-content .duration,
.hero-content .processing {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* .hero-content .duration::before,
.hero-content .processing::before {
    content: "•";
    margin-right: 10px;
    color: #00b4ff;
} */

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #2158C8;
    color: #fff;
    padding: 5px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 5px 30px;
    border: 1px solid #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #0a2c5f;
}

/* 通用区块标题样式 */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.section-header .en-title {
    font-size: 14px;
    color: #2158C8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.section-header h2 {
    font-size: 30px;
    color: #1f2937;
    font-weight: 700;
}

/* 签证介绍 */
.visa-intro {
    padding: 30px 0 40px;
    background-color: #F5F6FA;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

/* 适合人群 */
.suitable-people {
    background-color: #F5F6FA;
}

.people-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.people-item {
    background-color: #F5F6FA;
    color: #2158C8;
    padding: 5px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.people-item:hover {
    transform: translateY(-5px);
}

.people-item .icon {
    width: 60px;
    height: 60px;
    background-color: #2158C8;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.people-item p {
    font-size: 16px;
    color: #2158C8;
}

/* 签证优势 */
.visa-advantages {
    padding: 60px 0;
    background-color: #f9fbff;
}

.advantages-grid-visa {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.advantage-item-visa {
    /* padding: 30px; */
    text-align: center;
    width: 15%;
}

.advantage-item-visa h3 i {
    /* width: 70px;
    height: 70px; */
    display: inline-block;
    background-color: #e6f0ff;
    color: #2158C8;
    border-radius: 50%;
    font-size: 18px;
    margin-right: 5px;
}

.advantage-item-visa h3 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 15px;

}

.advantage-item p {
    /*font-size: 14px;*/
    color: #000000;
    line-height: 1.6;
}
/* F1陪读家长模块样式 */

.f1-parents .container {
  text-align: center;
}

.f1-parents .en-title {
  display: block;
  font-size: 14px;
  color: #2158C8;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.f1-parents h2 {
  font-size: 30px;
  color: #0a2c5f;
  margin-bottom: 20px;
}

.f1-parents .subtitle {
  font-size: 18px;
  color: #2158C8;
  margin-bottom: 15px;
  text-align: center;
}

.f1-parents .desc {
  font-size: 16px;
  color: #2158C8;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
  text-align: center;
}

.features-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 20px;
}

.features-list li {
  font-size: 14px;
  color: #333;
  text-align: left;
  width: 45%;
  min-width: 280px;
}

.feature-tag {
  color: #2158C8;
  font-weight: bold;
  margin-right: 8px;
}

.highlight-box {
  border: 1px solid #2158C8;
  border-radius: 50px;
  padding: 5px 20px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  color: #2158C8;
  line-height: 1.8;
  text-align: center;
}
.highlight-dark {
  color: #00092A;
  font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .f1-parents h2 {
    font-size: 24px;
  }
  .features-list li {
    width: 100%;
  }
  .advantages-grid-visa {
    grid-template-columns: repeat(2, 1fr);}
    .advantage-item-visa {
    /* padding: 30px; */
    text-align: center;
    width: 100%;
}
}
.intro-content .subtitle {
    font-weight: bold;
    margin-bottom: 18px;
    color: #2158C8;
}
/* 申请条件 */
.application-conditions {
    padding: 60px 0;
}

.conditions-list {
    max-width: 460px;
    margin: 0 auto 30px;
    list-style: none;
}

.conditions-list li {
    position: relative;
    padding: 12px 0 0px 20px;
    font-size: 16px;
    color: #4b5563;
}

.conditions-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2158C8;
    font-size: 24px;
    line-height: 1;
}

.education-requirements h3 {
    text-align: center;
    font-size: 20px;
    color: #2158C8;
    margin-bottom: 30px;
}

.requirements-table {
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    background-color: #F5F6FA;
    border-radius: 10px;
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.table-header {
    color: #2158C8;
    font-weight: 500;
}

.table-cell {
    padding: 12px;
    text-align: center;
    border: 1px solid #FFF;
}

.table-row:nth-child(odd) {


}
/* 签证转绿卡 */
.visa-to-green-card {
    padding: 60px 0;
    background-color: #f9fbff;
}

.conversion-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

/* 申请流程 */
.application-process {
    padding: 60px 0;
}

.visa-process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


.visa-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.visa-step-number {
    width: 30px;
    height: 30px;
    background-color: #2158C8;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.visa-step h3 {
    font-size: 16px;
    color: #1f2937;
    line-height: 1.5;
}

/* 美福环球优势 */
.section-container-visa .advantage-item {
    display: flex;
    align-items: center;
}
.section-container-visa .advantage-item div .advantage-title,
.section-container-visa .advantage-item div .advantage-desc {
    text-align: left;
}
.section-container-visa .advantage-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2158C8;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 20px;
}
.our-advantages {
    padding: 60px 0;
    background-color: #0a2c5f;
    color: #fff;
}

.our-advantages .section-header h2 {
    color: #fff;
}

.advantages-grid {
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    /* gap: 30px; */
}

.advantage-box {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.advantage-box:hover {
    transform: translateY(-5px);
}

.advantage-box .advantage-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.section-container-faq-news{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
.advantage-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.advantage-box p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* 评估表单 */
/* 美国签证评估表单样式 */
.us-visa-evaluation {
  padding: 60px 0;
  background-color: #f9fbff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .en-title {
  display: block;
  font-size: 14px;
  color: #2158C8;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 28px;
  color: #0a2c5f;
}

.evaluation-form {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
}

.form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 250px;
}

.form-group label {
  /* display: block; */
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #666;
  font-family: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  appearance: none; /* 隐藏原生下拉箭头 */
  background-color: #F5F6FA;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

/* 移除输入框和文本域的背景图 */
.form-group input,
.form-group textarea {
  background-image: none;
  padding-right: 12px;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.full-width {
  width: 100%;
}

/* 单选按钮样式 */
.radio-group {
  display: flex;
  flex-direction: column;
}

.radio-options {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-label input {
  display: none;
}

.radio-circle {
  width: 16px;
  height: 16px;
  border: 1px solid #2158C8;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}

.radio-label input:checked + .radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #2158C8;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* 提交按钮 */
.submit-button {
  width: 25%;
  padding: 10px;
  background-color: #2158C8;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 20px auto;

}

.submit-button:hover {
  background-color: #0052a3;
}

/* 表单底部提示 */
.form-notice {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #999;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .evaluation-form {
    padding: 25px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}









/* 响应式调整 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .process-steps {
        /*flex-direction: column;*/
        /*gap: 40px;*/
    }
    
    .process-steps::before {
        display: none;
    }
    
    .table-header, .table-row {
        /* grid-template-columns: 1fr 1fr; */
    }
    
    .visa-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .table-header, .table-row {
        /* grid-template-columns: 1fr; */
    }
}

.intro-content-J1 div{
    display: flex;
}
.intro-content-J1 div p{
    text-align: left;
}
.intro-content-J1 div:first-child p{
    margin-bottom: 10px;
}
.fa-circle-dot{
    color: #2158C8;
    margin-right: 5px;
    margin-top: 9px;
    font-size: 12px;
}

.f1-parents .desc-1 {
    font-size: 16px;
    color: #999DAA;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
}
.f1-parents .desc-2 {
    font-size: 16px;
    color: #00092A;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
}
.ds-desc {
    font-size: 16px;
    color: #00092A;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
    background-color: #F5F6FA;
    padding: 20px;
    border-radius: 10px;
}
.ds-desc ul li{ 
    list-style: none;
}
.font-color-black-blod{
    color: #00092A;
    font-weight: bold;
}
.font-color-blue{
    color: #2158C8;
}

/* L1签证申请条件样式 */
.l1-conditions {
  padding: 60px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .en-title {
  display: block;
  font-size: 14px;
  color: #2158C8;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 28px;
  color: #0a2c5f;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

/* .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #2158C8;
} */

.conditions-container {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
}

.condition-column {
  flex: 1;
  padding: 0 80px;
  text-align: center;
}

.column-title {
  font-size: 20px;
  color: #2158C8;
  margin-bottom: 25px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6f0ff;
}

.condition-list {
  list-style: none;
}

.condition-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.condition-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2158C8;
  font-size: 20px;
}

.divider {
  background-color: #e6f0ff;
  position: relative;
}

.plus-icon {
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #F5F6FA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .conditions-container {
    flex-direction: column;
  }
  
  .divider {
    width: 180px;
    height: 1px;
    margin: 30px 0;
  }
  
  .condition-column {
    width: 100%;
    padding: 0;
  }
}

/* L1签证续签条件样式 */

.renewal-conditions {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.condition-card {
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 25px;
}

.card-title {
  font-size: 18px;
  color: #2158C8;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-align: left;
}

.condition-items {
  list-style: none;
}

.condition-items li {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #e6f0ff;
  /* padding: 10px 0; */
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.fa-circle-check {
  color: #BCCCEE;
  margin-right: 10px;
  font-size: 15px;
  line-height: 1;
  position: relative;
}

.check-icon::after {
  content: "✓";
  position: absolute;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .condition-card {
    max-width: 100%;
  }
}

/* O1签证申请条件样式 */
.o1-conditions {
  padding: 60px 0;
  background-color: #fff;
}


.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .en-title {
  display: block;
  font-size: 14px;
  color: #0066cc;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 28px;
  color: #0a2c5f;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

/* .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #0066cc;
} */

.conditions-list-o1 {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  max-width: 300px;
}

.column ul {
  list-style: none;
}

.column li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.column li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: #0066cc;
  font-size: 12px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .conditions-list {
    flex-direction: column;
    gap: 40px;
  }
}


/* O1签证所需文件样式 */
.o1-documents {
  padding: 60px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .en-title {
  display: block;
  font-size: 14px;
  color: #0066cc;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 28px;
  color: #0a2c5f;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

/* .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #0066cc;
} */

.document-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.document-list li {
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f0f0f0;
}

.document-list li:last-child {
  border-bottom: none;
}

.document-list h3 {
  font-size: 18px;
  color: #0a2c5f;
  margin-bottom: 10px;
}

.document-list p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 24px;
  }
}
.o1-children{
    /* display: flex;
    align-items: center;
    flex-direction: column; */
}
.o1-children p{
    max-width: 650px;
    /* text-align: center; */
    margin-top: 10px;
    margin: 0 auto ;
}
.desc-o1{
    max-width: 800px;
    text-align: center;
    padding: 20px;
    font-size: 15px;
    color: #6f7075;
    margin: 0 auto;
}
.subtitle-o1 {
    max-width: 800px;
    margin: 0 auto;
  font-size: 18px;
  color: #2158C8;
  margin-bottom: 15px;
  text-align: center;
}

/* 行业资讯列表页样式 */
.industry-news {
  padding: 60px 0;
  background-color: #F5F6FA;

}

.breadcrumbs {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #0066cc;
}

.news-container {
  display: flex;
  gap: 30px;
  background-color: #fff;
  padding: 30px;
}

.news-list {
  flex: 2;
}

.news-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item img {
  /*width: 200px;*/
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.news-content h3 {
  font-size: 18px;
  color: #0a2c5f;
  margin-bottom: 10px;
}

.news-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.sidebar {
  flex: 1;
}

.hot-projects, .industry-links {
  margin-bottom: 40px;
}

.hot-projects h3, .industry-links h3 {
  font-size: 18px;
  color: #0a2c5f;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6f0ff;
}

.hot-projects img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.hot-projects ul, .industry-links ul {
  list-style: none;
}

.hot-projects li, .industry-links li {
  margin-bottom: 10px;
}

.hot-projects a, .industry-links a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.hot-projects a:hover, .industry-links a:hover {
  color: #0066cc;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .news-container {
    flex-direction: column;
  }
  
  .news-item {
    flex-direction: column;
  }
  
  .news-item img {
    width: 100%;
    height: auto;
  }
}

/* 成功案例列表页样式 */
.success-cases-list {
  padding: 60px 0;
  background-color: #F5F6FA;
}

.breadcrumbs {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #0066cc;
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 30px 50px;
}

.cases-item {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.cases-item:last-child {
  border-bottom: none;
}

.cases-item img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}


.case-content {
  flex: 1;
}

.case-title {
  font-size: 18px;
  color: #2158C8;
  margin-bottom: 10px;
  line-height: 1.5;
}

.case-title span {
  color: #c5bebe65;
}

.case-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .cases-item {
    flex-direction: column;
  }
  
  .cases-item img {
    width: 100%;
    height: auto;
  }
  .case-list {
  padding: 20px;
}
}


/* 热点问答部分样式 */
.hot-qa {
  padding: 60px 0;
  background-color: #F5F6FA;
}

.qa-container {
  display: flex;
  gap: 30px;
  background-color: #fff;
  padding: 30px;
}

.qa-list {
  flex: 2;
}

.qa-item {
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.qa-question {
  background-color: #2269F9;
  color: #fff;
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.qa-question .qa-icon {
  width: 20px;
  height: 20px;
  background-color: #00092A;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

.qa-answer {
  background-color: #f9fbff;
  padding: 15px;
  display: none;
}

.qa-item.active .qa-answer {
  display: block;
}

.qa-answer .qa-icon {
  color: #0066cc;
  font-weight: bold;
  margin-right: 10px;
}

.qa-item:not(.active) .qa-question {
  background-color: #F5F6FA;
  color: #333;
}

.qa-item:not(.active) .qa-question .qa-icon {
  background-color: #00092A;
  color: #fff;
}

.sidebar {
  flex: 1;
}

.hot-projects, .industry-links {
  margin-bottom: 40px;
}

.hot-projects h3, .industry-links h3 {
  font-size: 18px;
  color: #0a2c5f;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6f0ff;
}

.hot-projects img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.hot-projects ul, .industry-links ul {
  list-style: none;
}

.hot-projects li, .industry-links li {
  margin-bottom: 10px;
}

.hot-projects a, .industry-links a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.hot-projects a:hover, .industry-links a:hover {
  color: #0066cc;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .qa-container {
    flex-direction: column;
  }
}

.evaluation-section {
  padding: 60px 0;
  background-color: #F5F6FA;
}

/* 关于美福环球部分样式 */
.about-mf {
  padding: 60px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .en-title {
  display: block;
  font-size: 14px;
  color: #0066cc;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 28px;
  color: #0a2c5f;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

/* .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #0066cc;
} */

.about-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-text {
  flex: 1;
}

.overview-tag {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #0066cc;
}

.overview-tag span:first-child {
  margin-right: 10px;
  font-size: 12px;
}

.overview-tag span:last-child {
  font-size: 14px;
  text-transform: uppercase;
}

.about-text p {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-text p strong {
  color: #0066cc;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }
  
  .about-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* 公司优势部分样式 */
.company-advantages {
  padding: 60px 0;
  background: url("../images/company-advantages-bg.png") no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* 背景装饰线条 */
/* .company-advantages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 0 L100 0 L100 100 L0 100 Z' fill='none' stroke='%23e6f0ff' stroke-width='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
} */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .en-title {
  display: block;
  font-size: 14px;
  color: #0066cc;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 32px;
  color: #0a2c5f;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
}

/* .advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
} */

.advantage-card {
  background-color: #fff;
  border-radius: 8px;
  /* overflow: hidden; */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  position: relative;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.advantage-card img {
    display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.advantage-info {
  padding: 20px;
  position: absolute;
    padding: 20px;
    bottom: -20px;
    background: #fff;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.advantage-info h3 {
  font-size: 18px;
  color: #0a2c5f;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.advantage-info h3::before {
  content: "";
  width: 4px;
  height: 16px;
  background-color: #0066cc;
  margin-right: 10px;
  border-radius: 2px;
}

.advantage-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-card img {
    height: 160px;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
}
/* 美国PRADI律师事务所部分样式 */
.pradi-law {
  padding: 0px 0 60px;
    background: url("../images/law-bg.png") no-repeat center center;
    background-size: cover;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header .en-title {
  display: block;
  font-size: 14px;
  color: #0066cc;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 28px;
  color: #0a2c5f;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.law-desc {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #2158C8;
  line-height: 1.8;
  border: 1px solid #2158C8;
  border-radius: 50px;
  padding: 10px;
}

.law-advantages {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.law-advantage-item {
  text-align: center;
  max-width: 300px;
  background-color: #fff;
}

.law-advantage-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.law-advantage-item h3 {
  font-size: 18px;
  color: #0a2c5f;
  padding-bottom: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .law-advantages {
    /* flex-direction: column; */
    align-items: center;
  }
  
  .law-advantage-item {
    max-width: 30%;
  }
  .law-advantages {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
}
/* 律师简介部分样式 */
.lawyer-profile {
  padding: 80px 0;
}

.profile-card {
  display: flex;
  align-items: center;
  background: url(../images/lawer-bg.png) no-repeat center bottom;
  background-size: 100% 90%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
  justify-content: space-around;
}

.profile-img {
  /* flex: 0 0 300px; */
  /* position: relative; */
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left: 50px;
}

.profile-info {
  /* flex: 1; */
  padding: 40px;
}

.profile-info h2 {
  font-size: 28px;
  color: #0a2c5f;
  margin-bottom: 10px;
}

.position {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.achievements {
  list-style: none;
}

.achievements li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;

}

.achievements li i.fa-circle-check {
  /* color: #0066cc; */
  margin-right: 10px;
  font-size: 14px;
  flex-shrink: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
  }
  
  .profile-img {
    width: 100%;
    max-width: 300px;
  }
  
  .profile-info {
    width: 100%;
    padding: 30px 20px;
  }
}

.pradi-advantages {
  padding: 60px 0;
  position: relative;
  background-color: #0a2c5f;
  overflow: hidden;
}

/* 背景图效果 */
.pradi-advantages{

  background-image: url("../images/pradi-bg.png");
  background-size: cover;
  background-position: center;
}

.section-title {
  text-align: center;
  /* color: #fff; */
  font-size: 28px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.advantages-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pradi-advantage-item {
  text-align: center;
  max-width: 150px;
  flex: 1;
  min-width: 120px;
}

.advantage-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #0066cc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}

.advantage-icon:hover {
  transform: scale(1.05);
}

.advantage-icon span {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.advantage-desc {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .advantages-container {
    flex-wrap: wrap;
  }
  
  .pradi-advantage-item {
    flex: 1 1 40%;
    margin-bottom: 20px;
  }
  
  .advantage-icon {
    width: 80px;
    height: 80px;
  }
  
  .advantage-icon span {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .pradi-advantage-item {
    flex: 1 1 100%;
  }
}
.pradi-img-container{
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
}
.pradi-img-container img{
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.team-departments {
  padding: 60px 0;
  background-color: #fff;
}
.section-container-pradi {
  max-width: 1000px;
  margin: 0 auto;
}
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main-team-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.main-img {
  width: 100%;
  height: auto;
  display: block;
}

.sub-img {
  flex: 1;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s;
}

.sub-img:hover {
  transform: scale(1.02);
}

.department-nav ul{
    background-color: #2158C8;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
  border-radius: 10px;

}

.department-nav ul li {
list-style: none;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.dept-btn.active {
  background-color: #0066cc;
  color: #fff;
}

.dept-btn:hover:not(.active) {
  background-color: #e6f0ff;
}


/* 响应式调整 */
@media (max-width: 768px) {
  
  .sub-img {
    height: 100px;
  }
  
  .dept-btn {
    padding: 8px 15px;
    font-size: 13px;
  }
}
