﻿/* 页面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::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            bottom: -80px;
            left: 10%;
            animation: float 8s ease-in-out infinite reverse;
        }
        .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;
        }

        /* 公司简介 */
        .about-intro-text {
            max-width: none;
            margin: 0;
            line-height: 2;
            color: #444;
            font-size: 16px;
        }
        .about-intro-text p {
            margin-bottom: 18px;
            text-indent: 2em;
        }

        /* 数据展示 */
        .data-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(21, 42, 136, 0.08);
            border-top: 4px solid #ffcd29;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-item .num {
            font-size: 36px;
            font-weight: bold;
            color: #152a88;
            margin-bottom: 8px;
        }
        .stat-item .num span {
            font-size: 18px;
            color: #ffcd29;
        }
        .stat-item .label {
            font-size: 15px;
            color: #666;
        }

        /* 门店展示 */
        .store-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .gallery-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(21, 42, 136, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 30px rgba(21, 42, 136, 0.15);
        }
        .gallery-card img {
            width: 100%;
            height: 330px;
            object-fit: cover;
            display: block;
        }
        .gallery-card .gallery-info {
            padding: 20px;
        }
        .gallery-card h4 {
            font-size: 18px;
            color: #152a88;
            margin-bottom: 8px;
        }
        .gallery-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* 核心优势卡片 */
        .core-values {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .value-card {
            background: #fff;
            padding: 35px 25px;
            border-radius: 14px;
            text-align: center;
            box-shadow: 0 4px 18px rgba(21, 42, 136, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #152a88;
        }
        .value-card:hover {
            transform: translateY(-6px);
            border-top-color: #ffcd29;
        }
        .value-card i {
            font-size: 42px;
            color: #152a88;
            margin-bottom: 18px;
            transition: color 0.3s ease;
        }
        .value-card:hover i {
            color: #ffcd29;
        }
        .value-card h4 {
            font-size: 18px;
            color: #152a88;
            margin-bottom: 10px;
        }
        .value-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* 服务范围 */
        .service-area-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 18px;
            max-width: 900px;
            margin: 0 auto;
        }
        a.area-tag {

            text-decoration: none;

            color: inherit;

            transition: all 0.3s ease;

        }

        a.area-tag:hover {

            background: #ffcd29;

            color: #152a88;

            transform: translateY(-2px);

        }

        .area-tag {
            background: #fff;
            padding: 16px 10px;
            text-align: center;
            border-radius: 10px;
            font-size: 15px;
            color: #152a88;
            font-weight: 500;
            box-shadow: 0 3px 12px rgba(21, 42, 136, 0.08);
            border: 1px solid #e0e7f5;
        }
        .area-tag i {
            color: #ffcd29;
            margin-right: 5px;
        }

        /* 联系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 {
            display: inline-block;
            background: #ffcd29;
            color: #152a88;
            padding: 14px 40px;
            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);
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .data-stats { grid-template-columns: repeat(2, 1fr); }
            .store-gallery { grid-template-columns: repeat(2, 1fr); }
            .core-values { grid-template-columns: repeat(2, 1fr); }
            .service-area-list { grid-template-columns: repeat(3, 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; }
            .data-stats { grid-template-columns: repeat(2, 1fr); gap: 15px; }
            .stat-item { padding: 20px 10px; }
            .stat-item .num { font-size: 28px; }
            .store-gallery { grid-template-columns: 1fr; }
            .core-values { grid-template-columns: 1fr; }
            .service-area-list { grid-template-columns: repeat(2, 1fr); }
        }