 /* 独享CSS部分 - 联系我们页面 */
        
        /* 页面头部 */
        .page-header {
            background: linear-gradient(rgba(10, 31, 58, 0.9), rgba(10, 31, 58, 0.9));
            color: var(--text-light);
            padding: 150px 0 80px;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 联系我们内容 */
        .contact-content {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 联系信息 */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .contact-card {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            transform: translateY(20px);
            opacity: 0;
            position: relative;
            overflow: hidden;
        }
        
        .contact-card.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .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(--secondary-color), var(--primary-color), var(--secondary-color));
            background-size: 200% 100%;
            animation: gradientShift 3s infinite linear;
        }
        
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        /* 联系图标循环动画 */
        .contact-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--secondary-color);
            border-right-color: var(--secondary-color);
            animation: iconRotate 2s infinite linear;
        }
        
        @keyframes iconRotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .contact-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .contact-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .contact-info {
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .contact-info a {
            transition: var(--transition);
        }
        
        .contact-info a:hover {
            color: var(--secondary-color);
        }
        
        /* 微信二维码区域 */
        .wechat-section {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 60px 40px;
            text-align: center;
            margin: 60px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.8s ease;
        }
        
        .wechat-section.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .wechat-section h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .wechat-section p {
            color: #666;
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .wechat-qrcode {
            display: inline-block;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .wechat-qrcode::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(212, 175, 55, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: qrBeam 8s infinite linear;
        }
        
        @keyframes qrBeam {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }
        
        .wechat-qrcode img {
            max-width: 200px;
            display: block;
            position: relative;
            z-index: 1;
        }
        
        .wechat-note {
            margin-top: 20px;
            color: #666;
            font-size: 0.9rem;
        }
        
        /* 工作时间 */
        .working-hours {
            margin-top: 60px;
            text-align: center;
        }
        
        .hours-card {
            display: inline-block;
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 30px 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.8s ease 0.4s;
        }
        
        .hours-card.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .hours-card h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .hours-list {
            text-align: left;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .hours-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .day {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .time {
            color: #666;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .wechat-section {
                padding: 40px 20px;
            }
        }