 /* 独享CSS部分 - 联系我们页面 */
        
        /* 页面标题样式 */
        .page-header {
            padding: 150px 0 80px;
            background-color: var(--primary-color);
            color: var(--text-light);
            text-align: center;
            margin-top: 70px;
        }
        
        .page-title {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .page-subtitle {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.8);
        }
        
        /* 联系内容样式 */
        .contact-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            padding-right: 50px;
        }
        
        .contact-info h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .contact-info p {
            margin-bottom: 25px;
            line-height: 1.8;
            color: #555;
        }
        
        .contact-details {
            margin-top: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--text-light);
            font-size: 24px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        
        .contact-icon::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, var(--secondary-color), transparent, var(--secondary-color));
            border-radius: 50%;
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .contact-item:hover .contact-icon::before {
            opacity: 0.3;
            animation: rotate 3s linear infinite;
        }
        
        .contact-content h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .contact-content p {
            color: #666;
            margin-bottom: 0;
        }
        
        .contact-phone-large {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
            margin-top: 5px;
        }
        
        /* 微信二维码样式 */
        .wechat-section {
            flex: 1;
            min-width: 300px;
            text-align: center;
            padding: 40px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .wechat-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .wechat-section h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .wechat-qr-large {
            margin: 0 auto 20px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            display: inline-block;
        }
        
        .wechat-qr-large img {
            max-width: 250px;
            height: auto;
        }
        
        .wechat-desc {
            color: #666;
            max-width: 300px;
            margin: 0 auto;
        }
        
        /* 服务团队样式 */
        .team-section {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: var(--text-light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--text-light);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .section-title p {
            color: rgba(255,255,255,0.8);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .team-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .team-member {
            flex: 0 0 calc(33.333% - 20px);
            min-width: 250px;
            text-align: center;
            padding: 30px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .team-member.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .team-member:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-10px);
        }
        
        .member-icon {
            width: 100px;
            height: 100px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--text-light);
            font-size: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .member-icon::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .team-member:hover .member-icon::before {
            opacity: 1;
            animation: rotate 3s linear infinite;
        }
        
        .team-member h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .team-member p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 15px;
        }
        
        .member-contact {
            font-size: 14px;
            color: var(--secondary-color);
        }
        
        /* 动画定义 */
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes gradientShift {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
            }
            
            .contact-info {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .team-member {
                flex: 0 0 calc(50% - 15px);
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 32px;
            }
            
            .contact-info h2 {
                font-size: 28px;
            }
            
            .team-member {
                flex: 0 0 100%;
            }
        }