/* new.css - 清理后只保留 index.html 中使用的样式 */

/* ========================================
   基础重置和变量
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --primary-blue: #A6B5DC;
    --primary-blue-light: #E8ECF5;
    --primary-blue-dark: #8A9BC7;
    --accent-gold: #C4A77D;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #FFFFFF;
    --bg-light: #F8F9FB;
    --border-color: #E5E7EB;
    --shadow-soft: 0 8px 30px rgba(166, 181, 220, 0.15);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========================================
   导航栏
======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 1000;
    transition: background 0.5s ease, box-shadow 0.5s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(166, 181, 220, 0.15), 0 4px 30px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 108px;
    transition: height 0.4s ease;
}

.navbar.scrolled .nav-container {
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: height 0.4s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(166,181,220,0.2));
}

.navbar.scrolled .logo img {
    height: 42px;
}

.logo:hover img {
    filter: drop-shadow(0 4px 14px rgba(166,181,220,0.5));
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin-left: auto;
    margin-right: 30px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    text-decoration: none;
    color: rgba(44, 44, 44, 0.8);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2.5px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item > a:hover {
    color: var(--primary-blue);
}

.nav-item.no-sub > a::after { display: none; }

.nav-item > a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.4;
    margin-top: -2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-item > a:hover::after {
    transform: rotate(-135deg);
    opacity: 0.8;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #fff;
    border: 1px solid rgba(166, 181, 220, 0.18);
    border-radius: 16px;
    padding: 10px 6px;
    min-width: 188px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    display: none;
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    pointer-events: none;
}

.nav-submenu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid rgba(166, 181, 220, 0.18);
    border-left: 1px solid rgba(166, 181, 220, 0.18);
}

.nav-item:hover .nav-submenu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.nav-submenu a {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    color: rgba(44, 44, 44, 0.72);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    border-radius: 8px;
    margin: 2px 6px;
    white-space: nowrap;
}

.nav-submenu a:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    font-weight: 500;
    padding-left: 28px;
}

.nav-submenu a:last-child {
    border-bottom: none;
}

.nav-cta {
    padding: 11px 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s ease;
    letter-spacing: 2.5px;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(166, 181, 220, 0.35);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.nav-cta:hover {
    box-shadow: 0 8px 28px rgba(166, 181, 220, 0.5);
    transform: translateY(-2px);
}

.nav-cta:hover::before {
    left: 100%;
}

.navbar.scrolled .nav-cta {
    padding: 10px 28px;
}

/* ========================================
   Hero 区域
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 850px;
    overflow: hidden;
    background: linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 100%);
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88) contrast(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(166, 181, 220, 0.25) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(196, 167, 125, 0.15) 100%);
}

.hero-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(166, 181, 220, 0.08);
}

.deco-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.deco-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    background: rgba(196, 167, 125, 0.06);
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: var(--primary-blue);
    transform: scale(1.4);
    border-color: var(--white);
}

.hero-dot:hover {
    transform: scale(1.3);
    background: var(--primary-blue);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-arrow:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    left: 40px;
}

.hero-arrow-next {
    right: 40px;
}

/* ========================================
   数据展示
======================================== */
.stats-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Noto Serif SC', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
    letter-spacing: 3px;
    font-weight: 400;
}

/* ========================================
   服务项目
======================================== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

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

.section-subtitle-en {
    font-family: 'Noto Serif SC', serif;
    font-size: 16px;
    color: var(--accent-gold);
    letter-spacing: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.service-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
}

/* ========================================
   门店展示
======================================== */
.stores-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.stores-nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    margin-bottom: 50px;
}

.stores-nav-tabs-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,251,0.98) 100%);
    border-radius: 60px;
    box-shadow: 0 2px 20px rgba(166, 181, 220, 0.12), 0 8px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(166, 181, 220, 0.2);
    backdrop-filter: blur(10px);
}

.stores-nav-city-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding-right: 28px;
    margin-right: 28px;
    border-right: 1px solid rgba(166, 181, 220, 0.3);
}

.city-select-label {
    font-size: 14px;
    color: var(--text-lighter);
    letter-spacing: 3px;
    white-space: nowrap;
    text-transform: uppercase;
}

.city-btn-group {
    display: flex;
    gap: 6px;
}

.city-btn {
    padding: 8px 18px;
    border-radius: 24px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 14px;
    font-family: inherit;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.city-btn:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.city-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 500;
    box-shadow: 0 3px 12px rgba(166, 181, 220, 0.35);
}

.stores-nav-tabs-scroll {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.stores-nav-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.store-tab {
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    padding: 10px 24px;
    border-radius: 0;
    position: relative;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 1px;
    border: none;
    background: transparent;
    flex-shrink: 0;
}

.store-tab::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.store-tab:hover {
    color: var(--text-dark);
}

.store-tab.active {
    color: var(--text-dark);
    font-weight: 600;
}

.store-tab.active::after {
    width: 50%;
}

.city-select { display: none; }

.stores-content {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    height: 700px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.store-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.store-gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.store-gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.store-gallery-slide.active {
    opacity: 1;
}

.store-gallery-slide img {
    width: 72.18%;
    height: 100%;
    object-fit: cover;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    z-index: 3;
    opacity: 0.5;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.gallery-arrow:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(166, 181, 220, 0.5);
}

.gallery-arrow-prev {
    left: 30px;
}

.gallery-arrow-next {
    right: 440px;
}

.gallery-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
    display: none;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dot.active {
    background: var(--white);
    transform: scale(1.4);
    border-color: var(--primary-blue);
}

.gallery-dot:hover {
    background: var(--primary-blue);
    transform: scale(1.3);
}

.store-info {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
    width: 400px;
    height: 700px;
    max-width: calc(100% - 60px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 2;
    transition: all 0.3s ease;
}

.store-info:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.store-tag {
    font-family: 'Noto Serif SC', serif;
    font-size: 13px;
    color: var(--accent-gold);
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.store-location-highlight {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 2px;
    line-height: 1.3;
}

.store-location-subtitle {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
    letter-spacing: 1px;
}

.store-features {
    margin-bottom: 35px;
}

.store-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: rgba(166, 181, 220, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.store-feature-item:hover {
    background: rgba(166, 181, 220, 0.2);
    transform: translateX(5px);
}

.store-feature-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--white);
    flex-shrink: 0;
    margin-top: 2px;
}

.store-feature-text {
    flex: 1;
}

.store-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.store-feature-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.store-booking {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 25px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(166, 181, 220, 0.5);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.store-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.store-booking:hover::before {
    left: 100%;
}

.store-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(166, 181, 220, 0.6);
}

.store-booking i {
    font-size: 12px;
}

.store-address {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.store-address-icon {
    width: 22px;
    height: 22px;
    background: var(--primary-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.store-address-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.store-address-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ========================================
   新闻资讯
======================================== */
.news-section {
    padding: 100px 0;
    background: var(--white);
}

.news-list {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 50px;
}

.news-nav-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-light);
    transition: all 0.25s ease;
}

.news-nav-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: var(--primary-blue-light);
}

.news-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(166, 181, 220, 0.25);
}

.news-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-content {
    padding: 35px 30px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.news-date {
    font-size: 13px;
    color: var(--text-lighter);
    letter-spacing: 0.5px;
}

.news-tag {
    display: inline-block;
    padding: 4px 16px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.news-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.news-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--primary-blue-dark);
    gap: 12px;
}

.news-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

/* ========================================
   预约参观
======================================== */
.appointment-section {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/dian/bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
}

.appointment-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(166, 181, 220, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    z-index: 1;
}

.appointment-steps {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.step-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 72px;
}

.step-item:first-child {
    align-items: center;
    margin-top: 20px;
}

.step-item:last-child {
    align-items: center;
    margin-bottom: 0;
}

.step-number {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif SC', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(166, 181, 220, 0.25);
    flex-shrink: 0;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 65px;
    left: 32.5px;
    width: 2px;
    height: 160px;
    background: var(--primary-blue-light);
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.appointment-main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.appointment-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 70px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-light);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(166, 181, 220, 0.15);
}

.form-submit {
    width: 100%;
    padding: 22px;
    background: var(--primary-blue);
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    margin-top: 20px;
}

.form-submit:hover {
    background: var(--primary-blue-dark);
}

/* ========================================
   页脚
======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 120px 0 50px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 100px;
    margin-bottom: 80px;
}

.footer-brand-logo {
    margin-bottom: 30px;
}

.footer-brand-logo img {
    height: 60px;
    width: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-contact-item i {
    margin-right: 12px;
    color: var(--primary-blue);
}

.footer-nav h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

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

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}
.footer-bottom a{color: rgba(255, 255, 255, 0.4); }

/* ========================================
   浮动按钮
======================================== */
.floating-buttons {
    position: fixed;
    right: 40px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.chat {
    background: var(--primary-blue);
}

.floating-btn.phone {
    background: var(--accent-gold);
}

.floating-btn.top {
    background: var(--text-dark);
}

/* ========================================
   响应式设计
======================================== */
@media (max-width: 1400px) {
    .store-info {
        width: 380px;
        right: 25px;
        padding: 35px;
    }

    .news-container {
        gap: 30px;
    }

    .news-image {
        height: 200px;
    }
}

@media (max-width: 1200px) {
    .services-container,
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .appointment-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .store-info {
        position: absolute;
        top: 50%;
        right: 25px;
        transform: translateY(-50%);
        width: 360px;
        max-width: calc(100% - 50px);
        box-shadow: var(--shadow-soft);
    }

    .stores-content {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .store-gallery {
        height: 500px;
        border-radius: 12px;
    }

    .nav-menu {
        display: none;
    }

    .nav-container,
    .stats-container,
    .services-container,
    .appointment-wrapper,
    .appointment-steps,
    .appointment-main,
    .footer-container,
    .stores-nav,
    .news-list,
    .news-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .services-container,
    .stats-container {
        grid-template-columns: 1fr;
    }

    .news-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 25px 20px;
    }

    .news-title {
        font-size: 18px;
    }

    .appointment-main {
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .store-gallery {
        height: 350px;
    }

    .gallery-arrow {
        width: 50px;
        height: 50px;
    }

    .gallery-arrow-prev {
        left: 15px;
    }

    .gallery-arrow-next {
        right: 15px;
    }

    .store-info {
        right: 20px;
        width: 340px;
        max-width: calc(100% - 40px);
        padding: 25px;
    }

    .form-container {
        padding: 50px 30px;
    }

    .form-header h3 {
        font-size: 24px;
    }

    .nav-container,
    .stats-container,
    .services-container,
    .appointment-steps,
    .appointment-main,
    .footer-container,
    .news-container {
        padding: 0 20px;
    }
}

/* ========================================
   字体定义
======================================== */
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(./skin/fonts/V4.woff2) format('woff2');
  unicode-range: U+1f1e9-1f1f5, U+1f1f7-1f1ff, U+1f21a, U+1f232, U+1f234-1f237, U+1f250-1f251, U+1f300, U+1f302-1f308, U+1f30a-1f311, U+1f315, U+1f319-1f320, U+1f324, U+1f327, U+1f32a, U+1f32c-1f32d, U+1f330-1f357, U+1f359-1f37e;
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(./skin/fonts/V5.woff2) format('woff2');
  unicode-range: U+fee3, U+fef3, U+ff03-ff04, U+ff07, U+ff0a, U+ff17-ff19, U+ff1c-ff1d, U+ff20-ff3a, U+ff3c, U+ff3e-ff5b, U+ff5d, U+ff61-ff65, U+ff67-ff6a, U+ff6c, U+ff6f-ff78, U+ff7a-ff7d, U+ff80-ff84, U+ff86, U+ff89-ff8e, U+ff92, U+ff97-ff9b, U+ff9d-ff9f, U+ffe0-ffe4, U+ffe6, U+ffe9, U+ffeb, U+ffed, U+fffc, U+1f004, U+1f170-1f171, U+1f192-1f195, U+1f198-1f19a, U+1f1e6-1f1e8;
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(./skin/fonts/V6.woff2) format('woff2');
  unicode-range: U+f0a7, U+f0b2, U+f0b7, U+f0c9, U+f0d8, U+f0da, U+f0dc-f0dd, U+f0e0, U+f0e6, U+f0eb, U+f0fc, U+f101, U+f104-f105, U+f107, U+f10b, U+f11b, U+f14b, U+f18a, U+f193, U+f1d6-f1d7, U+f244, U+f27a, U+f296, U+f2ae, U+f471, U+f4b3, U+f610-f611, U+f880-f881, U+f8ec, U+f8f5, U+f8ff, U+f901, U+f90a, U+f92c-f92d, U+f934, U+f937, U+f941, U+f965, U+f967, U+f969, U+f96b, U+f96f, U+f974, U+f978-f979, U+f97e, U+f981, U+f98a, U+f98e, U+f997, U+f99c, U+f9b2, U+f9b5, U+f9ba, U+f9be, U+f9ca, U+f9d0-f9d1, U+f9dd, U+f9e0-f9e1, U+f9e4, U+f9f7, U+fa00-fa01, U+fa08, U+fa0a, U+fa11, U+fb01-fb02, U+fdfc, U+fe0e, U+fe30-fe31, U+fe33-fe44, U+fe49-fe52, U+fe54-fe57, U+fe59-fe66, U+fe68-fe6b, U+fe8e, U+fe92-fe93, U+feae, U+feb8, U+fecb-fecc, U+fee0;
}
