* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
    letter-spacing: 0.3px; 
}
body {
    background: linear-gradient(135deg, #fff9f2 0%, #f8e9dd 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}
.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 60px 40px; 
}

/* 全局统一装饰元素 */
.decor-dot-top {
    position: absolute;
    top: 40px;
    right: 120px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#f0a878 2px, transparent 2px);
    background-size: 10px 10px;
    z-index: 0;
}
.decor-circle-1 {
    position: absolute;
    top: 120px;
    right: 10%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f09b68;
    z-index: 0;
}
.decor-circle-2 {
    position: absolute;
    top: 320px;
    left: 48%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f2a070;
    opacity: 0.7;
    z-index: 0;
}
.decor-circle-3 {
    position: absolute;
    top: 480px;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f7ccaa;
    opacity: 0.6;
    z-index: 0;
}
.decor-circle-left {
    position: absolute;
    top: 120px;
    left: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f09b68;
    z-index: 0;
}
.decor-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(90deg, #e89c6a, #f0a878);
    border-radius: 16px 16px 0 0;
    z-index: -1;
    pointer-events: none;
}
.top-nav-wrap {
    position: relative;
    z-index: 99;
    width: 100%;
    background: #ffffff;
}
.nav-bar {
    max-width: 1800px;
    margin: 0 auto;
    padding: 14px 40px;
    position: relative;
}
/* PC导航容器：弹性均分 */
.nav-list-pc {
    display: flex;
    width: 100%;
}
/* 7个栏目自动等分宽度 */
.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    border-radius: 99px;
    font-size: clamp(13px, 1.2vw, 15px);
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.24s ease;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
}
/* 导航中英文文字 */
.nav-cn {
    font-size: clamp(13px,1vw,15px);
    color: #333;
    font-weight: 500;
}
.nav-en {
    font-size: clamp(10px,0.7vw,11px);
    color: #777;
    margin-top: 2px;
}
.nav-item:hover {
    background: #fcf3ea;
}
.nav-item:hover .nav-cn {
    color: #c41e20;
}
.nav-item.active {
    background: #e89c6a;
    color: #ffffff;
    font-weight: 600;
}
.nav-item.active .nav-cn {
    color: #fff;
}
.nav-item.active .nav-en {
    color: #fff;
    opacity: 0.9;
}
/* 汉堡按钮 */
.nav-hamburger {
    display: none;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #c41e20;
    cursor: pointer;
}
/* 移动端下拉弹窗 */
.nav-mobile-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    min-width: 260px;
}
/* 移动端导航项 */
.nav-mobile-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
    transition: 0.2s;
    text-align: center;
    text-decoration: none;
}
.nav-mobile-item:hover {
    background: rgba(232, 156, 0.12);
}
.nav-mobile-item.active {
    background: #e89c6a;
    color: #fff;
}
.nav-mobile-item.active .nav-cn {
    color: #fff;
}
.nav-mobile-item.active .nav-en {
    color: #fff;
    opacity:0.9;
}
/* 切换断点 */
@media screen and (max-width: 1380px) {
    .nav-list-pc {
        display: none;
    }
    .nav-hamburger {
        display: block;
    }
}
@media screen and (max-width: 992px) {
    .nav-bar {
        padding: 30px;
        .nav-hamburger {
            right: 20px;
        }
    }
}
@media screen and (max-width: 576px) {
    .nav-bar {
        padding: 30px;
        .nav-hamburger {
            right: 12px;
        }
    }
}

/* 头部企业信息栏 全站统一 */
.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(232, 156, 106, 0.3);
    position: relative;
    z-index: 2;
}
.company-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.brand-line {
    width: 6px;
    height: 40px;
    background: #c41e20;
    border-radius: 3px;
    margin-top: 4px;
}
.company-info .en-name {
    font-size: clamp(18px, 2.2vw, 28px);
    color: #c41e20;
    font-weight: 800; 
    line-height: 1.5;
    letter-spacing: 0.6px;
}
.company-info .cn-name {
    font-size: clamp(16px, 1.8vw, 24px);
    color: #222;
    margin-top: 6px;
    letter-spacing: 1px;
    font-weight: 500;
}
.year-wrap {
    padding: 12px 24px;
    background: rgba(232, 156, 106, 0.1);
    border-radius: 99px;
}
.year-text {
    font-size: clamp(22px, 2.8vw, 36px);
    color: #333;
    font-weight: 600;
    position: relative;
    letter-spacing: 2px;
}
.year-text::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 2px;
    background: #e6a878;
}

/* 首页横幅 */
.banner-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; 
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 120px; 
}
.text-area .main-title {
    font-size: clamp(42px, 7vw, 86px); 
    color: #c41e20;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: 4px; 
}
.sub-title-wrap {
    margin-bottom: 40px;
}
.sub-title-en {
    font-size: clamp(18px, 2.4vw, 32px);
    color: #c41e20;
    font-weight: 600;
    display: block;
    letter-spacing: 1px;
}
.sub-title-cn {
    font-size: clamp(16px, 2vw, 26px);
    color: #333;
    margin-top: 8px;
    position: relative;
    padding-left: 14px;
    letter-spacing: 1.2px;
}
.sub-title-cn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #c41e20;
}
.en-desc {
    color: #c41e20;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.9; 
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}
.cn-desc {
    color: #222;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.9;
    margin-bottom: 48px;
    letter-spacing: 0.6px;
}
.action-btn {
    background: linear-gradient(90deg, #e89c6a, #f0a878);
    border: none;
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
    padding: 16px 52px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-weight: 500;
}
.action-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}
.img-box {
    width: 100%;
    position: relative;
}
.img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(232, 156, 106, 0.15);
}

/* 首页内容板块 */
.content-section {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}
.title-wrap {
    display: flex;
    align-items: flex-end;
    margin-bottom: 70px;
}
.main-title-cn {
    font-size: clamp(56px, 9vw, 110px); 
    color: #000;
    font-weight: 900;
    margin-right: 50px;
    line-height: 1;
    letter-spacing: 6px;
}
.main-title-en {
    font-size: clamp(42px, 7vw, 96px);
    color: #f0e6de;
    font-weight: 700;
    letter-spacing: 12px; 
    line-height: 1;
}
.contents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; 
}
a.content-item {
    display: flex;
    gap: 28px;
    background: #fff;
    padding: 30px; 
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(240, 168, 120, 0.12);
    border-left: 5px solid #e89c6a;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
a.content-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(240, 168, 120, 0.18);
}
.item-number {
    font-size: clamp(48px, 7vw, 84px);
    color: #e89c6a;
    font-weight: 800;
    line-height: 1;
    min-width: 90px;
    letter-spacing: 1px;
}
.item-text {
    flex: 1;
}
.item-text-en {
    color: #c41e20;
    font-size: clamp(15px, 2vw, 20px);
    line-height: 1.8;
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.item-text-cn {
    color: #333;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.8;
    letter-spacing: 0.7px;
}
.bg-img {
    position: absolute;
    top: 40px;
    right: 40px;
    width: clamp(200px, 30vw, 400px);
    height: auto;
    opacity: 0.8;
    z-index: 0;
}

/* 通用页面区块 */
.page-section {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}
.section-title-wrap {
    margin-bottom: 50px;
}
.section-title-en {
    font-size: clamp(36px, 6vw, 50px);
    color: #c41e20;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.05;
    margin-bottom: 12px;
}
.section-title-cn {
    font-size: clamp(24px, 4vw, 42px);
    color: #222;
    font-weight: 600;
    letter-spacing: 1.2px;
}
.section-top-desc-en {
    color: #c41e20;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.9;
    margin-bottom: 16px;
}
.section-top-desc-cn {
    color: #222;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.9;
    margin-bottom: 40px;
}
.section-top-desc {
    padding: 20px;
    background: rgba(232, 156, 106, 0.08);
    border-left: 4px solid #e89c6a;
    border-radius: 0 14px 14px 0;
    margin-bottom: 40px;
}
.section-top-en {
    color: #c41e20;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.9;
    margin-bottom: 10px;
}
.section-top-cn {
    color: #222;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.9;
}
.section-bottom-text {
    margin-top: 40px;
    padding: 20px;
    background: rgba(232, 156, 106, 0.08);
    border-radius: 14px;
}
.section-bottom-en {
    color: #c41e20;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.9;
    margin-bottom: 10px;
}
.section-bottom-cn {
    color: #222;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.9;
}
.section-desc-text {
    color: #222;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.9;
    margin-bottom: 50px;
}

/* 概况板块 */
.overview-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.overview-left-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(232, 156, 106, 0.12);
}
.overview-right-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 通用双栏浅色卡片 */
.two-col-card {
    border: 1px solid #f0d8c8;
    border-radius: 12px;
    padding: 24px;
}
.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.card-icon-box {
    width: 40px;
    height: 40px;
    background: #e89c6a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.card-title-text {
    font-size: clamp(20px, 3vw, 28px);
    color: #c41e20;
    font-weight: 700;
    letter-spacing: 1px;
}
.card-en-text {
    color: #c41e20;
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.8;
    margin-bottom: 10px;
}
.card-cn-text {
    color: #333;
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.8;
}

/* 国内图片网格 */
.china-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.china-img-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(232, 156, 106, 0.1);
}
.china-big-img {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}
.china-text-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 深圳板块 */
.shenzhen-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.shenzhen-img-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.shenzhen-img-box img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(232, 156, 106, 0.12);
}
.shenzhen-text-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    border-left: 4px solid #e89c6a;
    padding-left: 30px;
}

/* 汉达卡片网格 */
.handa-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.handa-card-grid .two-col-card:nth-child(4),
.handa-card-grid .two-col-card:nth-child(5) {
    grid-column: span 1.5;
}

/* 师资网格 */
.teacher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.teacher-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(232, 156, 106, 0.1);
}

/* 橙色填充卡片 */
.orange-card {
    background: #e8a070;
    border-radius: 12px;
    padding: 28px;
    color: #1a1a1a;
    height: 100%;
}
.card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.card-icon {
    font-size: 32px;
    margin-top: 4px;
}
.card-title-en {
    font-size: clamp(20px, 3vw, 28px);
    color: #c41e20;
    font-weight: 700;
    letter-spacing: 1px;
}
.card-title-cn {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #111;
    font-weight: 600;
    margin-top: 6px;
}
.card-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 课程轨道网格 */
.course-track-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 教学板块 */
.teaching-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}
.teaching-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.teaching-img-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(232, 156, 106, 0.12);
}
.teaching-bottom-text {
    padding: 20px;
    background: rgba(232, 156, 106, 0.08);
    border-radius: 14px;
}
.teaching-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.text-card {
    border: 1px solid #f0d8c8;
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid #e89c6a;
}

/* 研学图片 */
.tour-big-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(232, 156, 106, 0.12);
    margin-bottom: 16px;
}
.tour-small-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.tour-small-grid img {
    width: 100%;
    border-radius: 10px;
    height: 160px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(232, 156, 106, 0.1);
}

/* 模块网格 */
.module-top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.module-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 城市文化双栏 */
.culture-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
}
.grid-divider-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.4);
    transform: translateX(-50%);
}

/* 工坊板块 */
.workshop-top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.workshop-small-card {
    border: 1px solid #f0d8c8;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.workshop-small-card img {
    width: 45%;
    border-radius: 8px;
    object-fit: cover;
}
.workshop-small-title-en {
    font-size: clamp(18px, 2.4vw, 24px);
    color: #c41e20;
    font-weight: 700;
    line-height: 1.3;
}
.workshop-small-title-cn {
    font-size: clamp(16px, 2vw, 22px);
    color: #222;
    margin-top: 8px;
}
.workshop-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.light-text-card {
    background: rgba(232, 156, 106, 0.08);
    border-left: 4px solid #e89c6a;
    border-radius: 0 14px 14px 0;
    padding: 26px;
}
.light-card-title-en {
    font-size: clamp(20px, 3vw, 26px);
    color: #c41e20;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.8px;
}

/* 行程卡片网格 */
.trip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.trip-card {
    border: 1px solid #f0d8c8;
    border-radius: 12px;
    overflow: hidden;
}
.trip-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.trip-card-content {
    padding: 24px;
}
.trip-title-en {
    font-size: clamp(18px, 2.4vw, 24px);
    color: #c41e20;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid #e89c6a;
    margin-bottom: 16px;
    display: inline-block;
}
.trip-title-cn {
    font-size: clamp(20px, 2.8vw, 26px);
    color: #222;
    font-weight: 600;
    margin: 12px 0 18px;
}

/* 套餐方案双栏 */
.package-wrap, .package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.package-card {
    background: #fff;
    border-top: 4px solid #e89c6a;
    border: 1px solid #e89c6a;
    border-top-width: 4px;
    border-radius: 12px;
    padding: 30px;
}
.card-head-en {
    font-size: clamp(20px, 2vw, 26px);
    color: #c41e20;
    font-weight: 700;
    margin-bottom: 8px;
}
.card-head-cn {
    font-size: clamp(18px, 1.8vw, 22px);
    color: #222;
    font-weight: 600;
    margin-bottom: 24px;
}
.package-title-cn {
    font-size: clamp(22px, 3.2vw, 30px);
    color: #111;
    font-weight: 800;
    margin-bottom: 8px;
}
.package-title-en {
    font-size: clamp(20px, 3vw, 28px);
    color: #c41e20;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.two-col-inner, .card-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}
.col-block h4, .inner-col h4 {
    font-size: clamp(18px, 2.2vw, 24px);
    color: #c41e20;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e89c6a;
}
.text-en {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.8;
    color: #222;
    margin-bottom: 16px;
}
.text-cn {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}
.price-block, .price-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e89c6a;
}
.price-text {
    font-size: clamp(18px, 2.4vw, 26px);
    color: #111;
    font-weight: 600;
    line-height: 1.6;
}
.price-num {
    color: #c41e20;
    font-weight: 900;
    font-size: clamp(22px, 3vw, 32px);
}
.price-cn {
    font-size: clamp(15px, 1.5vw, 18px);
    color: #333;
    display: flex;
    gap: 8px;
    align-items: center;
}
.price-en {
    font-size: clamp(16px, 1.6vw, 20px);
    color: #c41e20;
    font-weight: 600;
    text-align: right;
}
.divider-dash {
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #c41e20 40%, transparent 40%);
    background-size: 10px 1px;
    margin-bottom: 24px;
}
.card-subtitle {
    font-size: clamp(16px, 1.6vw, 20px);
    color: #c41e20;
    font-weight: 700;
    margin-bottom: 16px;
}
.price-line {
    border-top: 1px solid #ddd;
    padding-top: 24px;
}
.duration-cn {
    font-size: clamp(16px, 1.6vw, 20px);
    color: #333;
    margin-bottom: 12px;
}
.duration-en {
    font-size: clamp(16px, 1.6vw, 20px);
    color: #c41e20;
    font-weight: 600;
    line-height: 1.6;
}
.bottom-note, .note-en, .note-cn {
    margin-top: 40px;
    padding: 20px;
    background: rgba(232, 156, 106, 0.08);
    border-radius: 14px;
}
.note-en {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.8;
    color: #c41e20;
    margin-bottom: 8px;
}
.note-cn {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.8;
    color: #333;
}

/* 费用详情三栏页面 */
.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}
.left-img-card,
.fee-included-card,
.fee-not-included-card,
.life-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
	margin-top:20px;
}
.left-img-card {
    overflow: hidden;
    padding: 0;
}
.left-img-card img {
    width: 100%;
    height: auto;
    display: block;
}
.img-card-note {
    padding: 30px;
    border-top: 1px dashed #e89c6a;
    flex-grow: 1;
}
.fee-included-card {
    border-left: 6px solid #c41e20;
}
.fee-not-included-card {
    border-left: 6px solid #888;
}
.life-card {
    border-left: 6px solid #e89c6a;
}
.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
}
.fee-included-card .card-title {
    color: #c41e20;
}
.fee-not-included-card .card-title,
.life-card .life-card-title {
    color: #333;
}
.life-card-title {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.card-text-en, .life-en-text, .note-en-sm {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: #222;
    margin-bottom: 12px;
}
.card-text-cn, .life-cn-text, .note-cn-sm {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: #444;
}
.note-title-sm {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}
/* 三栏网格自适应等高 */
.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
    align-items: stretch;
}
.middle-col, .right-col {
    display: flex;
    flex-direction: column;
    gap: 30;
    height: 100%;
}
.bottom-note-block {
    position: relative;
    z-index: 2;
    border-top: 2px solid #c41e20;
    padding-top: 40px;
}
.note-title {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    margin-bottom: 14px;
    color: #222;
}
.note-en {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: #222;
    margin-bottom: 10px;
}
.note-cn {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: #444;
}

/* 页面通用标题块 */
.page-title-block {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.page-en-title {
    font-size: clamp(32px, 5vw, 50px);
    color: #c41e20;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.page-cn-title {
    font-size: clamp(22px, 3vw, 36px);
    color: #222;
    font-weight: 500;
    letter-spacing: 1px;
}
.page-intro {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.8;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.intro-en {
    color: #c41e20;
    margin-bottom: 8px;
}
.intro-cn {
    color: #333;
}

/* 申请流程板块 */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    margin-bottom: 160px;
}
.process-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 1px dashed #e89c6a;
    transform: translateX(-50%);
}
.process-card {
    background: #fff9f2;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(240, 168, 120, 0.12);
}
.process-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.process-icon {
    font-size: 28px;
}
.process-title-cn {
    font-size: clamp(20px, 2.4vw, 26px);
    color: #222;
    font-weight: 600;
}
.process-title-en {
    font-size: clamp(20px, 2.4vw, 26px);
    color: #c41e20;
    font-weight: 700;
}
.process-en {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: #c41e20;
    margin-bottom: 10px;
}
.process-cn {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: #444;
}

/* FAQ板块 */
.faq-wrap {
    margin-bottom: 100px;
}
.faq-item {
    display: grid;
    grid-template-columns: 4px 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.faq-line {
    background: #c41e20;
    border-radius: 4px;
}
.faq-q-en {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    color: #c41e20;
    margin-bottom: 8px;
}
.faq-q-cn {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}
.faq-a-en {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: #222;
    margin-bottom: 8px;
}
.faq-a-cn {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: #444;
}
.faq-img-row {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: center;
}
.faq-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(240, 168, 120, 0.12);
}

/* 底部收尾页面区块 */
.end-page-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}
.end-left .brand-top {
    margin-bottom: 40px;
}
.end-brand-cn {
    font-size: clamp(24px, 3vw, 32px);
    color: #222;
    font-weight: 500;
    margin-bottom: 8px;
}
.end-brand-en {
    font-size: clamp(22px, 2.8vw, 28px);
    color: #c41e20;
    font-weight: 800;
}
.main-big-cn {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    margin-bottom: 30px;
}
.orange-divider {
    width: 100%;
    height: 6px;
    background: #e89c6a;
    border-radius: 3px;
    margin-bottom: 20px;
}
.main-big-en {
    font-size: clamp(24px, 3.2vw, 34px);
    color: #c41e20;
    font-weight: 700;
    margin-bottom: 36px;
}
.btn-orange {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(90deg, #e89c6a, #f0a878);
    border-radius: 99px;
    font-size: clamp(20px, 2.4vw, 26px);
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}
.sub-en-text {
    font-size: clamp(22px, 2.8vw, 30px);
    color: #c41e20;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 40px;
}
.bottom-desc-en {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
    color: #c41e20;
    margin-bottom: 10px;
}
.bottom-desc-cn {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
    color: #444;
}
.end-right img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(240, 168, 120, 0.12);
}

@media screen and (max-width: 992px) {
    .container {
        padding: 24px 20px;
    }
    .header-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
		margin-bottom:0px;
    }
    .year-text {
        margin-left: 40px;
    }
    .decor-dot-top {
        right: 40px;
    }
    .banner-wrap {
        grid-template-columns: 1fr;
        gap: 70px;
    }
    .img-box {
        order: -1;
    }
    .contents-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .title-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .main-title-en {
        letter-spacing: 6px;
    }
    .bg-img {
        display: none;
    }
    .overview-wrap {
        grid-template-columns: 1fr;
    }
    .china-img-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .china-big-img {
        grid-column: span 2;
        grid-row: auto;
    }
    .shenzhen-wrap {
        grid-template-columns: 1fr;
    }
    .handa-card-grid {
        grid-template-columns: repeat(2, 1fr);
		display:block;
    }
    .handa-card-grid .two-col-card:nth-child(4),
    .handa-card-grid .two-col-card:nth-child(5) {
        grid-column: span 2;
    }
    .teacher-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .course-track-grid {
        grid-template-columns: 1fr;
    }
    .teaching-wrap {
        grid-template-columns: 1fr;
    }
    .teaching-list-grid {
        grid-template-columns: 1fr;
    }
    .tour-small-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .module-top-grid {
        grid-template-columns: repeat(2, 1fr);
		display:block;
    }
	.module-bottom-grid  {
		display:block;		
	}
    .culture-city-grid {
        grid-template-columns: 1fr;
    }
    .grid-divider-line {
        display: none;
    }
    .workshop-top-grid {
        grid-template-columns: repeat(2, 1fr);
		display:block;			
    }
    .workshop-bottom-grid  {
		display:block;		
	}	
    .trip-grid {
        grid-template-columns: repeat(2, 1fr);
		display:block;			
    }
    .package-wrap, .package-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .two-col-inner, .card-two-col {
        grid-template-columns: 1fr;
    }
    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-divider {
        display: none;
    }
    .faq-img-row {
        grid-template-columns: 1fr;
    }
    .end-page-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }
	a.content-item {
		display:block;
	}
	.footer-wrap {
		padding-top:0px;
		margin-bottom:30px;
		top:0px !important;
	}
}
        @media screen and (max-width: 576px) {
            .container {
                padding: 16px 12px;
            }
            .year-wrap {
                width: 50%;
                text-align: center;
            }
            .page-title-block {
                margin-bottom: 40px;
            }
            .package-card {
                padding: 22px;
            }
        }

.footer-wrap {
    position: relative;
    z-index: 2;
	top:20px;
    text-align: center;
}
.footer-text {
    font-size: clamp(12px, 1vw, 14px);
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.2px;
}
.footer-text a {
    color: #c41e20;
    text-decoration: none;
}
.footer-text a:hover {
    text-decoration: underline;
}		

.img-card-note {
    padding: 24px;
    border-top: 1px dashed #e89c6a;
}
.note-title-sm {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}
.note-en-sm {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.8;
    color: #c41e20;
    margin-bottom: 8px;
}
.note-cn-sm {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.8;
    color: #444;
}
.faq-img2{
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(240, 168, 120, 0.12);
    object-fit: cover;
    display: block;
}