        /* ===== 联系我们页面独享样式 ===== */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .contact-section {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::before {
            content: '';
            position: absolute;
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .contact-info {
            opacity: 0;
            transform: translateX(-50px);
            transition: var(--transition);
        }
        
        .contact-info.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .contact-info h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .contact-info p {
            margin-bottom: 30px;
            color: var(--gray);
        }
        
        .contact-details {
            margin-top: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }
        
        .contact-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-item:nth-child(1) { transition-delay: 0.1s; }
        .contact-item:nth-child(2) { transition-delay: 0.2s; }
        .contact-item:nth-child(3) { transition-delay: 0.3s; }
        .contact-item:nth-child(4) { transition-delay: 0.4s; }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            animation: iconBounce 3s infinite;
        }
        
        @keyframes iconBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .contact-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: var(--transition);
        }
        
        .contact-item:hover .contact-icon::before {
            transform: rotate(45deg) translate(10px, 10px);
        }
        
        .contact-text h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .contact-text p {
            margin-bottom: 0;
            color: var(--gray);
        }
        
        .phone-number-large {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            margin-top: 10px;
            display: inline-block;
            animation: phonePulse 2s infinite;
        }
        
        @keyframes phonePulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .qrcode-section {
            text-align: center;
            opacity: 0;
            transform: translateX(50px);
            transition: var(--transition);
        }
        
        .qrcode-section.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .qrcode-container {
            background: white;
            border-radius: var(--radius);
            padding: 40px;
            box-shadow: var(--shadow);
            display: inline-block;
            position: relative;
            overflow: hidden;
        }
        
        .qrcode-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .qrcode-image {
            width: 250px;
            height: 250px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 1px solid #eee;
            animation: qrFloat 6s infinite ease-in-out;
        }
		
		
		        .qrcode-image img {
            width: 100%;
            height: 100%;
        }
        
        .qrcode-section h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .qrcode-section p {
            color: var(--gray);
            max-width: 300px;
            margin: 0 auto;
        }
        
        .wechat-id {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-block;
            margin-top: 15px;
            font-weight: 600;
            animation: idPulse 3s infinite;
        }
        
        @keyframes idPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(10, 36, 99, 0.4);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(10, 36, 99, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(10, 36, 99, 0);
            }
        }
        
        /* 服务时间 */
        .service-hours {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .service-hours::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,128C672,107,768,117,864,138.7C960,160,1056,192,1152,192C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .service-hours .section-title h2 {
            color: white;
        }
        
        .service-hours .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }
        
        .hour-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .hour-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hour-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .hour-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
            animation: iconRotate 10s infinite linear;
        }
        
        @keyframes iconRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .hour-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .hour-card p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .qrcode-section {
                order: -1;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .contact-section {
                padding: 130px 0 60px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .contact-info h3 {
                font-size: 1.8rem;
            }
            
            .qrcode-image {
                width: 200px;
                height: 200px;
            }
            
            .phone-number-large {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .contact-info h3 {
                font-size: 1.5rem;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .qrcode-image {
                width: 180px;
                height: 180px;
            }
            
            .qrcode-container {
                padding: 30px 20px;
            }
        }