  /* 独享CSS部分 - 联系我们页面 */
        
        /* 页面头部 */
        .contact-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            padding: 180px 0 100px;
            margin-top: 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/25.jpg') center/cover no-repeat;
            opacity: 0.2;
            z-index: 0;
        }
        
        .contact-header-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .contact-header p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* 联系信息 */
        .contact-info-section {
            background: #f9f9f9;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .contact-card {
            background: #fff;
            border-radius: 12px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .contact-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            transform: scaleX(0);
            transition: var(--transition);
            z-index: -1;
        }
        
        .contact-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-heavy);
        }
        
        .contact-card:hover:before {
            transform: scaleX(1);
        }
        
        .contact-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 34px;
            transition: var(--transition);
            position: relative;
            box-shadow: 0 10px 20px rgba(10, 26, 53, 0.2);
        }
        
        .contact-card:hover .contact-icon {
            background: linear-gradient(135deg, var(--accent-color), #e8c44d);
            transform: rotateY(180deg) scale(1.1);
        }
        
        .contact-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .contact-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .contact-detail {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-note {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 15px;
        }
        
        /* 微信二维码 */
        .wechat-section {
            background: #fff;
        }
        
        .wechat-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .wechat-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #07c160, #05a54f);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            box-shadow: 0 10px 20px rgba(7, 193, 96, 0.2);
        }
        
        .wechat-qrcode {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow-heavy);
            margin: 30px 0;
            transition: var(--transition);
        }
        
        .wechat-qrcode:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .wechat-qrcode img {
            max-width: 250px;
            height: auto;
            border-radius: 8px;
        }
        
        .wechat-content h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .wechat-content p {
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 18px;
        }
        
        /* 服务流程 */
        .service-process {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .service-process .section-title h2 {
            color: #fff;
        }
        
        .service-process .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 45px;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 15px;
        }
        
        .step-icon {
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 34px;
            position: relative;
            backdrop-filter: blur(5px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: processPulse 3s infinite;
        }
        
        @keyframes processPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }
        
        .process-step h3 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .process-step p {
            font-size: 15px;
            opacity: 0.9;
        }
        
        /* 常见问题 */
        .faq-section {
            background: #fff;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: #fff;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item:hover {
            box-shadow: var(--shadow-heavy);
        }
        
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f9f9f9;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: var(--accent-light);
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: var(--primary-color);
            margin: 0;
            font-weight: 600;
        }
        
        .faq-icon {
            color: var(--accent-color);
            font-size: 20px;
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-answer {
            padding: 25px 30px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        
        /* CTA部分 */
        .cta-section {
            background: url('/template/jia/images/26.jpg') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
            color: #fff;
            position: relative;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 26, 53, 0.8), rgba(28, 58, 108, 0.8));
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* 响应式设计 - 独享部分 */
        @media (max-width: 1200px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .contact-header h1 {
                font-size: 36px;
            }
            
            .contact-header p {
                font-size: 18px;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .process-step {
                margin-bottom: 40px;
                width: 100%;
                max-width: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-header h1 {
                font-size: 32px;
            }
            
            .contact-header p {
                font-size: 16px;
            }
        }