
        /* 独享CSS部分 - 联系我们页面 */
        
        /* 主内容区通用样式 */
        .section {
            padding: 80px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .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: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 页面头部 */
        .page-header {
            background: linear-gradient(rgba(10, 31, 58, 0.8), rgba(10, 31, 58, 0.8)), url('/template/jia/images/3.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 150px 0 80px;
            margin-top: 70px;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* 按钮特效 */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.5s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.6s ease;
            z-index: -1;
        }
        
        .btn:hover {
            background-color: #e6c12e;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn:active {
            transform: translateY(-1px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary-color);
        }
        
        /* 联系我们样式 */
        .contact-section {
            background-color: white;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .contact-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--secondary-color);
            font-size: 2rem;
            transition: var(--transition);
        }
        
        .contact-card:hover .contact-icon {
            background-color: var(--secondary-color);
            color: white;
            transform: rotateY(180deg);
        }
        
        .contact-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .contact-card p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .contact-info-large {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* 微信二维码样式 */
        .qrcode-section {
            background-color: #f9f9f9;
            text-align: center;
            padding: 80px 0;
        }
        
        .qrcode-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: white;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .qrcode-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .qrcode-title {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .qrcode-image {
            width: 200px;
            height: 200px;
            background-color: #f5f5f5;
            margin: 0 auto 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        
        
                
        .qrcode-image img {
  max-width: 100%;
  height: auto;
}
        
        .qrcode-image span {
            color: #999;
            font-weight: 500;
        }
        
        .qrcode-desc {
            color: #666;
            max-width: 400px;
            margin: 0 auto;
        }
        
        /* 工作时间样式 */
        .hours-section {
            background-color: white;
            padding: 60px 0;
        }
        
        .hours-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: #f9f9f9;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .hours-title {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        
        .hours-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .hours-day {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .hours-time {
            color: #666;
        }
        
        /* 咨询特效样式 */
        .consultation-banner {
            background: linear-gradient(135deg, var(--secondary-color), #e6c12e);
            color: var(--primary-color);
            padding: 50px 0;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .consultation-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .consultation-content h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .consultation-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .consultation-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .consultation-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.6s ease;
            z-index: -1;
        }
        
        .consultation-btn:hover {
            background-color: #0a1f3a;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .consultation-btn:hover:before {
            left: 100%;
        }
        
        .consultation-btn:active {
            transform: translateY(-2px);
        }
        
        .consultation-icon {
            font-size: 1.5rem;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .shape-1 {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 10%;
            animation: float 10s ease-in-out infinite;
        }
        
        .shape-3 {
            width: 80px;
            height: 80px;
            top: 20%;
            right: 8%;
            animation: float 7s ease-in-out infinite;
        }
        
        .shape-4 {
            width: 120px;
            height: 120px;
            top: 70%;
            right: 5%;
            animation: float 9s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .hours-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 10px 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .consultation-content h2 {
                font-size: 1.8rem;
            }
            
            .consultation-content p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .page-header {
                padding: 120px 0 60px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .qrcode-container {
                padding: 30px 20px;
            }
            
            .consultation-content h2 {
                font-size: 1.5rem;
            }
        }