/* 页面Banner */
        .page-banner {
            background: linear-gradient(135deg, #0f2478, #1a3cb8);
            padding: 60px 0 50px;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 205, 41, 0.08);
            border-radius: 50%;
            top: -100px;
            right: -50px;
            animation: float 6s ease-in-out infinite;
        }
        .page-banner h1 {
            font-size: 32px;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .page-banner p {
            font-size: 15px;
            opacity: 0.85;
            position: relative;
            z-index: 1;
        }
        .breadcrumb {
            background: #f8faff;
            padding: 14px 0;
            border-bottom: 1px solid #e8edf7;
            font-size: 14px;
            color: #666;
        }
        .breadcrumb a {
            color: #152a88;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #ffcd29;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #999;
        }

        /* 内容区通用 */
        .content-section {
            padding: 60px 0;
        }
        .content-section.alt-bg {
            background: #f8faff;
        }
        .section-heading {
            text-align: center;
            margin-bottom: 45px;
        }
        .section-heading h2 {
            font-size: 28px;
            color: #152a88;
            margin-bottom: 10px;
        }
        .section-heading .line {
            width: 60px;
            height: 3px;
            background: #ffcd29;
            margin: 0 auto;
            border-radius: 2px;
        }
        .section-heading p {
            color: #666;
            margin-top: 12px;
            font-size: 15px;
        }

        /* 核心联系信息 */
        .contact-hero {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }
        .contact-hero-card {
            background: #fff;
            padding: 35px 25px;
            border-radius: 14px;
            text-align: center;
            box-shadow: 0 4px 18px rgba(21, 42, 136, 0.08);
            border-top: 4px solid #152a88;
            transition: all 0.3s ease;
        }
        .contact-hero-card:hover {
            transform: translateY(-6px);
            border-top-color: #ffcd29;
        }
        .contact-hero-card i {
            font-size: 42px;
            color: #152a88;
            margin-bottom: 18px;
            transition: color 0.3s ease;
        }
        .contact-hero-card:hover i {
            color: #ffcd29;
        }
        .contact-hero-card h4 {
            font-size: 18px;
            color: #152a88;
            margin-bottom: 10px;
        }
        .contact-hero-card .contact-value {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .contact-hero-card .contact-desc {
            font-size: 13px;
            color: #888;
        }
        .contact-hero-card a.tel-link {
            color: #c62828;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 6px;
        }
        .contact-hero-card a.tel-link:hover {
            color: #152a88;
        }

        /* 双门店信息 */
        .store-contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .store-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(21, 42, 136, 0.08);
            transition: transform 0.3s ease;
        }
        .store-card:hover {
            transform: translateY(-5px);
        }
        .store-card img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            display: block;
        }
        .store-card-body {
            padding: 25px;
        }
        .store-card-body h3 {
            font-size: 20px;
            color: #152a88;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .store-card-body h3 i {
            color: #ffcd29;
        }
        .store-info-item {
            display: flex;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        .store-info-item:last-child { border-bottom: none; }
        .store-info-item i {
            color: #152a88;
            margin-top: 3px;
            width: 18px;
            text-align: center;
            flex-shrink: 0;
        }
        .store-info-item .info-label {
            color: #666;
            font-size: 14px;
            flex-shrink: 0;
            width: 65px;
        }
        .store-info-item .info-text {
            color: #333;
            font-size: 14px;
            line-height: 1.6;
        }

        /* 微信二维码区域 */
        .wechat-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            max-width: 700px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(21, 42, 136, 0.08);
        }
        .wechat-qrcode {
            width: 200px;
            height: 200px;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 10px;
            background: #fff;
        }
        .wechat-qrcode img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }
        .wechat-info h3 {
            font-size: 22px;
            color: #07c160;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .wechat-info p {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 8px;
        }
        .wechat-info .highlight {
            color: #07c160;
            font-weight: 600;
        }

        /* 营业时间 */
        .time-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 900px;
            margin: 0 auto;
        }
        .time-card {
            background: #fff;
            padding: 25px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 3px 12px rgba(21, 42, 136, 0.08);
        }
        .time-card i {
            font-size: 28px;
            color: #ffcd29;
            margin-bottom: 12px;
        }
        .time-card h5 {
            font-size: 16px;
            color: #152a88;
            margin-bottom: 8px;
        }
        .time-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* 服务范围 */
        .service-area-map {
            background: #fff;
            padding: 40px;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(21, 42, 136, 0.08);
        }
        .area-districts {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }
        a.district-tag {
        text-decoration: none;
        color: #fff;
        transition: all 0.3s ease;
    }
    a.district-tag:hover {
        background: #ffcd29;
        color: #152a88;
        transform: translateY(-2px);
    }
    .district-tag {
            background: linear-gradient(135deg, #152a88, #1a3cb8);
            color: #fff;
            padding: 14px 10px;
            text-align: center;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 500;
        }
        .district-tag i {
            color: #ffcd29;
            margin-right: 5px;
        }
        .area-note {
            text-align: center;
            color: #666;
            font-size: 14px;
            line-height: 1.8;
            padding-top: 20px;
            border-top: 1px dashed #eee;
        }
        .area-note strong {
            color: #152a88;
        }

        /* 到店路线 */
        .route-tips {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        .route-box {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 3px 12px rgba(21, 42, 136, 0.08);
        }
        .route-box h4 {
            color: #152a88;
            font-size: 17px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .route-box h4 i {
            color: #ffcd29;
        }
        .route-box p {
            font-size: 14px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #0f2478, #1a3cb8);
            padding: 50px 0;
            text-align: center;
            color: #fff;
        }
        .cta-section h3 {
            font-size: 26px;
            margin-bottom: 12px;
        }
        .cta-section p {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 25px;
        }
        .cta-btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-btn {
            display: inline-block;
            background: #ffcd29;
            color: #152a88;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .cta-btn:hover {
            background: #fff;
            transform: scale(1.05);
        }
        .cta-btn.outline {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }
        .cta-btn.outline:hover {
            background: #fff;
            color: #152a88;
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .contact-hero { grid-template-columns: 1fr; }
            .store-contact-grid { grid-template-columns: 1fr; }
            .wechat-section { flex-direction: column; gap: 30px; text-align: center; }
            .time-grid { grid-template-columns: 1fr; }
            .area-districts { grid-template-columns: repeat(3, 1fr); }
            .route-tips { grid-template-columns: 1fr; }
        }
        @media (max-width: 576px) {
            .page-banner { padding: 40px 0 35px; }
            .page-banner h1 { font-size: 24px; }
            .content-section { padding: 40px 0; }
            .section-heading h2 { font-size: 22px; }
            .wechat-section { padding: 25px; }
            .wechat-qrcode { width: 160px; height: 160px; }
            .area-districts { grid-template-columns: repeat(2, 1fr); }
            .service-area-map { padding: 25px; }
            .cta-btn-group { flex-direction: column; align-items: center; }
            .cta-btn { width: 80%; }
        }