       /* 独享CSS部分 - 联系我们页面 */
        
        /* 页面头部 */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: 150px 0 80px;
            margin-top: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: fadeInDown 1s ease;
        }

        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 内容区域 */
        .contact-content {
            padding: 80px 0;
            background: var(--light-color);
        }

        /* 联系信息卡片 */
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .contact-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            animation: fadeInUp 0.8s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(15, 43, 91, 0.2);
        }

        .contact-card:hover .contact-icon {
            background: var(--secondary-color);
            color: var(--dark-color);
            transform: rotateY(180deg) scale(1.1);
        }

        .contact-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .contact-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .contact-info {
            text-align: left;
            margin-top: 20px;
        }

        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .contact-info li:hover {
            background: rgba(15, 43, 91, 0.05);
        }

        .contact-info i {
            margin-right: 12px;
            color: var(--secondary-color);
            margin-top: 3px;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        /* 微信二维码区域 */
        .qrcode-section {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 50px;
            text-align: center;
            margin-bottom: 60px;
            animation: fadeIn 1s ease;
            position: relative;
            overflow: hidden;
        }

        .qrcode-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .qrcode-section h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .qrcode-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .qrcode-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 30px;
        }

        .qrcode-image {
            width: 220px;
            height: 220px;
            border-radius: 15px;
            background: white;
            padding: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: var(--transition);
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 5px 20px rgba(15, 43, 91, 0.1);
            }
            50% {
                box-shadow: 0 5px 25px rgba(15, 43, 91, 0.2);
            }
            100% {
                box-shadow: 0 5px 20px rgba(15, 43, 91, 0.1);
            }
        }

        .qrcode-image:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(15, 43, 91, 0.2);
        }

        .qrcode-image img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
        }

        .qrcode-text {
            max-width: 500px;
        }

        .qrcode-text h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .qrcode-text p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* 服务承诺 */
        .service-commitment {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 50px;
            animation: fadeIn 1s ease;
            position: relative;
            overflow: hidden;
        }

        .service-commitment::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
        }

        .service-commitment h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .service-commitment h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .commitment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .commitment-item {
            text-align: center;
            padding: 25px;
            border-radius: 10px;
            transition: var(--transition);
        }

        .commitment-item:hover {
            background: rgba(15, 43, 91, 0.05);
            transform: translateY(-5px);
        }

        .commitment-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .commitment-item:hover .commitment-icon {
            background: var(--secondary-color);
            color: var(--dark-color);
            transform: rotate(15deg);
        }

        .commitment-item h3 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .commitment-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .contact-cards {
                grid-template-columns: 1fr;
            }
            
            .qrcode-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 130px 0 60px;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .contact-card,
            .qrcode-section,
            .service-commitment {
                padding: 30px 20px;
            }

            .commitment-grid {
                grid-template-columns: 1fr;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }