        /* 独享CSS - 联系我们页特有样式 */
        main {
            margin-top: 80px;
            padding: 40px 0;
        }

        .page-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .page-title {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .page-title::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
            bottom: -5px;
            left: 0;
            animation: linePulse 2s infinite;
        }

        @keyframes linePulse {
            0% { opacity: 0.3; }
            50% { opacity: 1; }
            100% { opacity: 0.3; }
        }

        .page-description {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-color);
        }

        /* 联系我们内容样式 */
        .contact-content {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        /* 联系信息板块 */
        .contact-info-section {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-method {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 25px;
            border-radius: 8px;
            background-color: var(--light-color);
            transition: var(--transition);
        }

        .contact-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 30px;
            transition: var(--transition);
        }

        .contact-method:hover .contact-icon {
            background-color: var(--secondary-color);
            transform: rotateY(180deg);
        }

        .contact-method h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .contact-method p {
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .phone-number {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 10px 0;
        }

        .service-hours {
            font-size: 14px;
            color: #888888;
            margin-top: 10px;
        }

        /* 微信二维码板块 */
        .wechat-section {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .qrcode-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 20px;
        }

        .qrcode-image {
            width: 200px;
            height: 200px;
            background-color: white;
            border: 1px solid #EEEEEE;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            animation: pulseQr 3s infinite;
        }
        
        .qrcode-image img {
            width: 100%;
            height: 100%;
            
        }

        @keyframes pulseQr {
            0% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
            50% { box-shadow: 0 5px 20px rgba(0, 51, 102, 0.2); }
            100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
        }

        .qrcode-image:hover {
            transform: scale(1.05);
        }

        .qrcode-image span {
            color: var(--dark-color);
            font-size: 14px;
        }

        .qrcode-description {
            max-width: 500px;
            margin: 0 auto;
            color: var(--text-color);
        }

        /* 常见问题板块 */
        .faq-section {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: var(--accent-color);
        }

        .faq-answer {
            padding: 20px;
            background-color: var(--light-color);
            display: none;
        }

        .faq-answer.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .faq-icon {
            transition: var(--transition);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }