        /* ====== 独享CSS部分 - 联系我们页面 ====== */
        
        /* 主内容区域 */
        .main-content {
            margin-top: 80px;
        }
        
        /* 页面标题区域 */
        .page-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 168, 232, 0.2) 0%, transparent 100%);
            clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        
        .page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
        }
        
        .page-hero-content h1 {
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .page-hero-content p {
            font-size: 20px;
            opacity: 0.9;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
            margin-bottom: 40px;
        }
        
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: var(--white);
        }
        
        .breadcrumb i {
            font-size: 14px;
            opacity: 0.7;
        }
        
        .breadcrumb .current {
            color: var(--accent);
            font-weight: 600;
        }
        
        /* 联系信息区域 */
        .contact-info-section {
            background-color: var(--white);
            padding: 100px 0;
        }
        
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .contact-card {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            padding: 50px 40px;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--light-gray);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .contact-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            color: var(--white);
            font-size: 32px;
        }
        
        .contact-card h3 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-top: 20px;
        }
        
        .contact-detail {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .contact-detail:last-child {
            margin-bottom: 0;
        }
        
        .detail-label {
            font-size: 14px;
            color: var(--gray);
            font-weight: 500;
        }
        
        .detail-value {
            font-size: 18px;
            color: var(--dark);
            font-weight: 600;
        }
        
        .contact-link {
            color: var(--accent);
            transition: var(--transition);
            display: inline-block;
        }
        
        .contact-link:hover {
            color: var(--secondary);
            transform: translateY(-2px);
        }
        
        /* 微信二维码区域 */
        .wechat-qr-section {
            background-color: var(--light);
            padding: 100px 0;
            text-align: center;
        }
        
        .qr-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--white);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            box-shadow: var(--shadow-md);
        }
        
        .qr-title {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .qr-description {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .qr-main {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
        
        .qr-image-container {
            width: 240px;
            height: 240px;
            background-color: var(--white);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qr-image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .qr-instructions {
            margin-top: 30px;
            text-align: center;
        }
        
        .qr-instructions p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .qr-instructions ol {
            text-align: left;
            max-width: 500px;
            margin: 0 auto;
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
        }
        
        .qr-instructions li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .qr-instructions li::before {
            content: counter(item) ".";
            counter-increment: item;
            color: var(--accent);
            font-weight: 600;
            position: absolute;
            left: 0;
        }
        
        /* 办公时间区域 */
        .office-hours-section {
            background-color: var(--white);
            padding: 100px 0;
        }
        
        .hours-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--light);
            border-radius: var(--radius-lg);
            padding: 60px 40px;
            box-shadow: var(--shadow-md);
        }
        
        .hours-title {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .hours-description {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.7;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .hours-card {
            background-color: var(--white);
            border-radius: var(--radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        
        .hours-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .hours-card h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .hours-card p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
        }
        
        .hours-highlight {
            font-weight: 600;
            color: var(--accent);
            font-size: 18px;
        }
        
        /* 服务流程区域 */
        .service-process-section {
            background-color: var(--light);
            padding: 100px 0;
        }
        
        .process-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 60px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 50px;
            right: 50px;
            height: 2px;
            background-color: var(--light-gray);
            z-index: 1;
        }
        
        .process-step {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 180px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            margin: 0 auto 25px;
            box-shadow: var(--shadow-md);
        }
        
        .step-content h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .step-content p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
        }
        
        /* CTA区域 */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .cta-content p {
            font-size: 20px;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius);
            transition: var(--transition);
            cursor: pointer;
            border: none;
            outline: none;
            gap: 10px;
        }
        
        .btn-primary {
            background-color: var(--accent);
            color: var(--white);
            box-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 168, 232, 0.4);
            background-color: #0097d1;
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        

        .btn-secondary:hover {
            border-color: var(--white);
            transform: translateY(-3px);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* 响应式 */
        @media (max-width: 1200px) {
            .contact-info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 60px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero {
                padding: 100px 0 60px;
            }
            
            .page-hero-content h1 {
                font-size: 36px;
            }
            
            .page-hero-content p {
                font-size: 18px;
            }
            
            .contact-info-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .qr-container, .hours-container {
                padding: 40px 30px;
            }
            
            .qr-title, .hours-title {
                font-size: 28px;
            }
            
            .qr-description, .hours-description {
                font-size: 16px;
            }
            
            .qr-image-container {
                width: 200px;
                height: 200px;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
            
            .cta-content p {
                font-size: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .qr-instructions ol {
                padding-left: 20px;
            }
            
            .qr-instructions li {
                padding-left: 20px;
            }
        }
        
        /* ====== 独享CSS结束 ====== */