* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #F5F7F2;
    color: #1F2D29;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 9000;
    background: #0F2E24;
    box-shadow: 0 8px 24px rgba(10,61,44,0.18);
}
.topbar {
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 0 20px;
}
.site-logo {
    color: #D8A642;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 28px;
    white-space: nowrap;
}
.nav-core {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
    min-width: 0;
}
.nav-core a {
    color: #EAF4EF;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 15px;
    white-space: nowrap;
    transition: all .22s ease;
}
.nav-core a:hover, .nav-core a.active {
    color: #D8A642;
    background: rgba(216,166,66,0.12);
    box-shadow: inset 0 -2px 0 #D8A642;
}
.top-actions { display: flex; align-items: center; gap: 12px; }
.service-trigger {
    border: 1px solid rgba(216,166,66,0.45);
    color: #EAF4EF;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 700;
}
.service-trigger:hover { color: #D8A642; box-shadow: 0 10px 22px rgba(216,166,66,0.12); }
.main-btn {
    background: linear-gradient(135deg, #126B4A 0%, #0A3D2C 55%, #D8A642 100%);
    color: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(10,61,44,0.18);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    transition: transform .22s ease, box-shadow .22s ease;
}
.main-btn:hover { transform: translateY(-1px); box-shadow: 0 13px 28px rgba(10,61,44,0.24); }
.register-btn { min-width: 82px; }
.channel-strip {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    padding: 0 20px 14px;
    overflow: hidden;
}
.channel-strip a {
    color: #0F2E24;
    background: #FFFFFF;
    border: 1px solid rgba(18,107,74,0.14);
    border-radius: 999px;
    padding: 7px 15px;
    line-height: 1.2;
    white-space: nowrap;
    transition: all .22s ease;
}
.channel-strip a:hover, .channel-strip a.active {
    color: #126B4A;
    border-color: rgba(216,166,66,0.55);
    box-shadow: 0 8px 18px rgba(10,61,44,0.10);
}
.mobile-top { display: none; }
.mobile-menu-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(216,166,66,0.35);
    background: rgba(255,255,255,0.06);
    border-radius: 13px;
    padding: 8px;
}
.mobile-menu-btn span { display: block; height: 2px; background: #EAF4EF; margin: 5px 2px; border-radius: 99px; }
.mobile-register { padding: 8px 15px; }
.site-main { padding-top: 120px; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.banner-slider {
    max-width: 1200px;
    height: 380px;
    margin: 28px auto 36px;
    border-radius: 24px;
    background: #FFFFFF;
    box-shadow: 0 16px 38px rgba(10,61,44,0.12);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.banner-slider .slide { display: none; width: 100%; height: 100%; position: relative; }
.banner-slider .slide.active { display: block; }
.banner-slider img { width: 100%; height: 100%; object-fit: contain; background: #FFFFFF; }
.slide-caption {
    position: absolute;
    left: 34px;
    bottom: 34px;
    max-width: 450px;
    background: rgba(7,31,24,0.78);
    color: #EAF4EF;
    border: 1px solid rgba(216,166,66,0.35);
    border-radius: 20px;
    padding: 18px 22px;
    backdrop-filter: blur(4px);
}
.slide-caption strong { display: block; color: #D8A642; font-size: 22px; margin-bottom: 4px; }
.slide-caption span { display: block; font-size: 15px; }
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.88);
    color: #126B4A;
    box-shadow: 0 8px 20px rgba(10,61,44,0.16);
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.slider-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; background: rgba(18,107,74,0.26); cursor: pointer; }
.slider-dots button.active { background: #D8A642; }
section { margin: 0 0 34px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.section-kicker, .tag, .label, .num, .badge { color: #126B4A; font-weight: 800; }
.section-kicker { display: inline-block; letter-spacing: .5px; margin-bottom: 6px; }
h1, h2, h3, .section-title { color: #0F2E24; line-height: 1.35; margin: 0; }
h1 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.5px; }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: 20px; }
p { margin: 0 0 14px; }
.lead { color: #5E706A; font-size: 17px; }
.card, .zone-card, .info-card, .review-card, .faq-item, .notice-box, .hero-card {
    background: #FFFFFF;
    border: 1px solid rgba(18,107,74,0.14);
    box-shadow: 0 14px 36px rgba(10,61,44,0.10);
    border-radius: 24px;
}
.hero-card { padding: 34px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; }
.hero-card .content-img { max-height: 300px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.text-link { color: #126B4A; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.text-link:hover { color: #D8A642; }
.content-img, .zone-card img, .app-section img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    background: #FFFFFF;
    border-radius: 18px;
}
.card { padding: 24px; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.quick-card { padding: 20px; min-height: 158px; }
.quick-card p { color: #5E706A; font-size: 14px; }
.summary-card { background: #EEF6F1; padding: 26px; border-radius: 24px; border: 1px solid rgba(18,107,74,0.14); }
.info-card { padding: 24px; }
.info-card .num { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; background: #FFF7E4; border-radius: 50%; color: #0A3D2C; margin-bottom: 12px; }
.zone-card { overflow: hidden; }
.zone-card img { height: 220px; padding: 10px; }
.zone-card-body { padding: 22px; }
.zone-card ul, .card ul, .notice-box ul { margin: 10px 0 14px; padding-left: 20px; color: #5E706A; }
.soft-section { background: #EEF6F1; border-radius: 28px; padding: 30px; border: 1px solid rgba(18,107,74,0.10); }
.gold-section { background: #FFF7E4; border-radius: 28px; padding: 30px; border: 1px solid rgba(216,166,66,0.24); }
.review-card { padding: 22px; }
.review-card strong { display: block; color: #0F2E24; margin-bottom: 8px; }
.review-card p, .faq-item p, .card p, .zone-card p { color: #5E706A; }
.faq-item { padding: 22px; }
.notice-box { padding: 26px; background: #FFFFFF; }
.page-hero { padding: 46px 0 30px; }
.page-hero .hero-card { min-height: 330px; }
.breadcrumb { color: #8A9A94; margin-bottom: 12px; font-size: 14px; }
.article-section { margin-bottom: 26px; }
.article-section p { color: #5E706A; }
.article-section .card h2, .article-section .card h3 { margin-bottom: 10px; }
.detail-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding-left: 0; }
.detail-list li { background: #F6FAF5; border: 1px solid rgba(18,107,74,0.12); border-radius: 16px; padding: 14px 16px; list-style: none; color: #5E706A; }
.category-panel {
    position: fixed;
    top: 0;
    right: -430px;
    width: min(420px, 92vw);
    height: 100vh;
    background: #FFFFFF;
    box-shadow: 0 18px 48px rgba(10,61,44,0.16);
    z-index: 10000;
    padding: 26px;
    overflow-y: auto;
    transition: right .28s ease;
}
.category-panel.open { right: 0; }
.panel-head, .mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 18px; }
.panel-close {
    border: 1px solid rgba(18,107,74,0.16);
    background: #F6FAF5;
    color: #126B4A;
    border-radius: 999px;
    padding: 8px 13px;
    cursor: pointer;
    font-weight: 800;
}
.panel-group { margin: 0 0 22px; }
.panel-group h3 { color: #126B4A; margin-bottom: 10px; }
.panel-links { display: grid; gap: 10px; }
.panel-links a { display: block; padding: 12px 14px; background: #F6FAF5; border: 1px solid rgba(18,107,74,0.12); border-radius: 16px; }
.panel-links a:hover { border-color: rgba(216,166,66,0.55); }
.panel-links strong { display: block; color: #0F2E24; }
.panel-links span { display: block; color: #5E706A; font-size: 13px; }
.drawer-mask { position: fixed; inset: 0; background: rgba(7,31,24,0.45); z-index: 9999; display: none; }
.drawer-mask.show { display: block; }
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -340px;
    width: 84vw;
    max-width: 320px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 10000;
    box-shadow: 0 18px 48px rgba(10,61,44,0.16);
    padding: 22px;
    transition: left .28s ease;
    overflow-y: auto;
}
.mobile-drawer.open { left: 0; }
.mobile-drawer-head strong { color: #D8A642; font-size: 26px; }
.mobile-drawer-links { display: grid; gap: 8px; }
.mobile-drawer-links a { padding: 12px 14px; border-radius: 14px; background: #F6FAF5; color: #0F2E24; font-weight: 700; }
.mobile-bottom-nav { display: none; }
.site-footer { background: #071F18; color: #EAF4EF; margin-top: 42px; }
.footer-inner { width: min(1200px, calc(100% - 40px)); margin: 0 auto; padding: 44px 0 26px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 38px; }
.footer-brand p { color: rgba(234,244,239,0.78); }
.footer-note { font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.footer-links h3 { color: #D8A642; margin-bottom: 10px; }
.footer-links a { display: block; color: rgba(234,244,239,0.82); margin: 7px 0; }
.footer-links a:hover { color: #D8A642; }
.footer-bottom { border-top: 1px solid rgba(234,244,239,0.12); width: min(1200px, calc(100% - 40px)); margin: 0 auto; padding: 16px 0 24px; display: flex; justify-content: space-between; gap: 18px; color: rgba(234,244,239,0.72); font-size: 14px; }
@media (max-width: 1024px) {
    .topbar { height: 68px; }
    .nav-core a { padding: 8px 12px; font-size: 14px; }
    .banner-slider { height: 300px; width: min(960px, calc(100% - 32px)); }
    .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .desktop-top, .channel-strip { display: none; }
    .mobile-top { height: 64px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 10px; padding: 0 14px; }
    .mobile-top .site-logo { justify-self: center; font-size: 26px; }
    .site-main { padding-top: 64px; padding-bottom: 74px; }
    .container { width: min(100% - 28px, 560px); }
    .banner-slider { height: 205px; width: min(100% - 28px, 560px); margin: 18px auto 24px; border-radius: 18px; }
    .slide-caption { left: 12px; right: 12px; bottom: 30px; padding: 11px 13px; border-radius: 14px; }
    .slide-caption strong { font-size: 16px; }
    .slide-caption span { font-size: 12px; }
    .slider-arrow { width: 34px; height: 34px; font-size: 20px; }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
    .hero-card, .grid-2, .grid-3, .grid-4, .category-grid { grid-template-columns: 1fr; }
    .hero-card { padding: 22px; gap: 18px; }
    .page-hero { padding: 24px 0 22px; }
    .page-hero .hero-card { min-height: 0; }
    .section-head { display: block; }
    .soft-section, .gold-section { padding: 22px; border-radius: 22px; }
    .zone-card img { height: auto; max-height: 190px; }
    .content-img, .app-section img { max-height: 220px; }
    .detail-list { grid-template-columns: 1fr; }
    .footer-inner, .footer-bottom { width: min(100% - 28px, 560px); }
    .footer-links { grid-template-columns: 1fr; }
    .footer-bottom { display: block; }
    .mobile-bottom-nav { display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; left: 10px; right: 10px; bottom: 10px; background: #FFFFFF; border: 1px solid rgba(18,107,74,0.14); box-shadow: 0 12px 26px rgba(10,61,44,0.18); border-radius: 20px; z-index: 8800; overflow: hidden; }
    .mobile-bottom-nav a { text-align: center; padding: 10px 4px; color: #0F2E24; font-weight: 800; font-size: 13px; }
    .mobile-bottom-nav a:hover { color: #D8A642; background: #F6FAF5; }
}
@media (max-width: 380px) {
    .banner-slider { height: 180px; }
    .mobile-register { padding: 7px 12px; font-size: 13px; }
}
