
        /* ====== 联系我们页面独享CSS ====== */
        
        /* 页面头部区域 */
        .page-header {
            margin-top: 100px;
            padding: 100px 0 80px;
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.9) 0%, rgba(62, 102, 128, 0.9) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-title {
            font-size: 3.2rem;
            margin-bottom: 25px;
            font-weight: 800;
            line-height: 1.2;
            animation: fadeDown 0.8s ease;
        }

        @keyframes fadeDown {
            0% {
                opacity: 0;
                transform: translateY(-30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeUp 0.8s ease 0.3s both;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 联系信息区域 */
        .contact-section {
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 100px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.05);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .contact-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 50px 40px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }

        .contact-card.animate {
            animation: cardAppear 0.8s ease forwards;
        }

        @keyframes cardAppear {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .contact-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.8rem;
            color: white;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .contact-card:hover .contact-icon {
            background: linear-gradient(135deg, var(--secondary-color), #e6c34f);
            transform: scale(1.1) rotate(5deg);
        }

        .contact-icon::after {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            top: -50%;
            left: -50%;
            transform: rotate(45deg);
            transition: all 0.8s ease;
        }

        .contact-card:hover .contact-icon::after {
            transform: rotate(45deg) translateX(100%);
        }

        .contact-card h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-info-large {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .contact-card:hover .contact-info-large {
            color: var(--secondary-color);
        }

        .contact-info-detail {
            color: var(--gray-color);
            margin-bottom: 10px;
        }

        .contact-note {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px dashed #eee;
            font-size: 0.95rem;
            color: var(--gray-color);
        }

        /* 微信二维码区域 */
        .wechat-section {
            position: relative;
            overflow: hidden;
        }

        .wechat-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(10, 36, 99, 0.05);
        }

        .wechat-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        .wechat-content {
            flex: 1;
            max-width: 500px;
        }

        .wechat-content h3 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .wechat-content p {
            font-size: 1.1rem;
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .wechat-features {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(10, 36, 99, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: var(--primary-color);
            font-size: 1.3rem;
            transition: var(--transition);
        }

        .feature-item:hover .feature-icon {
            background-color: var(--primary-color);
            color: white;
        }

        .feature-text h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .feature-text p {
            font-size: 1rem;
            margin-bottom: 0;
        }

        .wechat-qrcode {
            flex: 1;
            max-width: 400px;
            text-align: center;
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateX(30px);
        }

        .wechat-qrcode.animate {
            animation: slideIn 0.8s ease forwards;
        }

        @keyframes slideIn {
            0% {
                opacity: 0;
                transform: translateX(30px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .wechat-qrcode:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .qrcode-image {
            width: 250px;
            height: 250px;
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            overflow: hidden;
            border: 1px solid #eee;
        }
		
		
		        .qrcode-image img {
            width: 100%;
            height: 100%;
        }

        .qrcode-image i {
            font-size: 120px;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .wechat-qrcode:hover .qrcode-image i {
            color: var(--secondary-color);
            transform: scale(1.1);
        }

        .qrcode-title {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .qrcode-description {
            color: var(--gray-color);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        /* 服务时间区域 */
        .service-time-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .service-time-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.05);
        }

        .time-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .time-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .time-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .time-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .time-card h4 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .time-period {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .time-note {
            color: var(--gray-color);
            font-size: 0.95rem;
        }

        /* 紧急联系区域 */
        .emergency-section {
            position: relative;
            overflow: hidden;
        }

        .emergency-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.9) 0%, rgba(62, 102, 128, 0.9) 100%);
            z-index: 1;
        }

        .emergency-container {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            margin: 0 auto;
        }

        .emergency-container h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .emergency-container p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        .emergency-phone {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 30px;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            display: inline-block;
            transition: var(--transition);
        }

        .emergency-phone:hover {
            transform: scale(1.05);
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .emergency-note {
            font-size: 1rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .wechat-container {
                flex-direction: column;
                gap: 50px;
            }
            
            .wechat-content, .wechat-qrcode {
                max-width: 100%;
            }
            
            .wechat-content h3 {
                font-size: 1.9rem;
            }
            
            .emergency-phone {
                font-size: 2.8rem;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .page-title {
                font-size: 2.2rem;
            }
            
            .page-subtitle {
                font-size: 1.2rem;
            }
            
            .contact-card {
                padding: 40px 30px;
            }
            
            .contact-icon {
                width: 80px;
                height: 80px;
                font-size: 2.2rem;
            }
            
            .contact-info-large {
                font-size: 1.6rem;
            }
            
            .emergency-phone {
                font-size: 2.3rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .page-header {
                padding: 80px 0 60px;
            }
            
            .page-title {
                font-size: 1.9rem;
            }
            
            .contact-card {
                padding: 30px 25px;
            }
            
            .contact-card h3 {
                font-size: 1.4rem;
            }
            
            .contact-info-large {
                font-size: 1.4rem;
            }
            
            .wechat-content h3 {
                font-size: 1.7rem;
            }
            
            .qrcode-image {
                width: 200px;
                height: 200px;
            }
            
            .qrcode-image i {
                font-size: 90px;
            }
            
            .emergency-phone {
                font-size: 1.9rem;
            }
            
            .time-card {
                padding: 30px 20px;
            }
        }