       /* 联系卡片样式 */
        .contact-card {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .contact-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        
        .contact-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.8rem;
        }
        
        .contact-card-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            border-radius: 12px;
            margin-right: 1.2rem;
        }
        
        .contact-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .contact-card-subtitle {
            color: var(--medium-text);
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }
        
        /* 联系信息项样式 */
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .contact-item-icon {
            width: 40px;
            height: 40px;
            background: rgba(26, 35, 126, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            border-radius: 8px;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .contact-item-content {
            flex: 1;
        }
        
        .contact-item-title {
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }
        
        .contact-item-desc {
            color: var(--medium-text);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        
        .contact-item-value {
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }
        
        .contact-item-value a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-item-value a:hover {
            color: var(--accent-gold);
        }
        
        /* 社交媒体矩阵样式 */
        .social-media-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        
        .social-media-card {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .social-media-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .social-media-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
        }
        
        .social-media-wechat {
            background: linear-gradient(135deg, #07C160 0%, #06AD56 100%);
        }
        
        .social-media-weibo {
            background: linear-gradient(135deg, #E6162D 0%, #C51225 100%);
        }
        
        .social-media-facebook {
            background: linear-gradient(135deg, #1877F2 0%, #0A5AC2 100%);
        }
        
        .social-media-tiktok {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
        }
        
        .social-media-youtube {
            background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
        }
        
        .social-media-linkedin {
            background: linear-gradient(135deg, #0A66C2 0%, #084E9E 100%);
        }
        
        .social-media-title {
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
        }
        
        .social-media-id {
            color: var(--medium-text);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            height: 40px;
        }
        
        .social-media-btn {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .social-media-btn:hover {
            background: var(--gradient-secondary);
            transform: translateY(-2px);
        }
        
        /* 地图容器样式 */
        .map-container {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            margin-top: 1.5rem;
            border: 1px solid var(--border-color);
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--medium-text);
        }
        
        .map-placeholder i {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
        }
       .map-placeholder  .fa-external-link-alt{ color: white;}
        
        .map-placeholder p {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .map-placeholder .map-btn {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.7rem 1.5rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .map-placeholder .map-btn:hover {
            background: var(--gradient-secondary);
            transform: translateY(-2px);
        }
        
        /* 办公时间样式 */
        .office-hours {
            background: rgba(26, 35, 126, 0.05);
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .office-hours-title {
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .office-hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .office-hours-item {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px dashed var(--border-color);
        }
        
        .office-hours-item:last-child {
            border-bottom: none;
        }
        
        .office-hours-day {
            font-weight: 500;
            color: var(--dark-text);
        }
        
        .office-hours-time {
            color: var(--medium-text);
            font-weight: 500;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .container {
                padding: 0 10px;
            }

            .page-title {
                font-size: 1.8rem;
            }
            
            .page-subtitle {
                font-size: 1rem;
            }
            
            .contact-card {
                padding: 1.5rem;
            }
            .contact-card-header {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-card-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .social-media-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .map-container {
                height: 300px;
            }

        }
        
        @media (max-width: 480px) {
.social-media-card{    padding: 0.5rem;}
            .office-hours-grid {
                grid-template-columns: 1fr;
            }
                    .social-media-grid{
            grid-template-columns: repeat(2, 1fr);
        }
        }
        
        /* 页脚样式 */
        footer {
            background: var(--footer-bg);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-links a {
            display: block;
            color: #CBD5E1;
            margin-bottom: 0.6rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* 微信二维码悬浮效果 */
        .wechat-qr-container {
            position: relative;
            display: inline-block;
        }
        
        .wechat-qr-code {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            width: 130px;
            background: white;
            box-shadow: var(--shadow-lg);
            padding: 10px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }
        
        .wechat-qr-code::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: white;
        }
        
        .wechat-qr-container:hover .wechat-qr-code {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-12px);
        }
        
        .qr-image {
            width: 100%;
            height: auto;
        }
        
        .qr-text {
            text-align: center;
            font-size: 0.7rem;
            color: var(--medium-text);
            margin-top: 5px;
        }
        /* 交通指引样式 */
.transportation-guide {
    margin-top: 2rem;
}

.transportation-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.transportation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .transportation-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.transportation-item {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.transportation-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.transportation-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.transportation-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.transportation-item:nth-child(1) .transportation-icon {
    background-color: #10b981;
    color: white;
}

.transportation-item:nth-child(2) .transportation-icon {
    background-color: #3b82f6;
    color: white;
}

.transportation-item:nth-child(3) .transportation-icon {
    background-color: #8b5cf6;
    color: white;
}

.transportation-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.transportation-content {
    color: #4b5563;
    line-height: 1.6;
}

.transportation-option {
    margin-bottom: 1rem;
}

.transportation-option:last-child {
    margin-bottom: 0;
}

.transportation-option strong {
    color: #1e40af;
}

.transportation-tips {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.transportation-tag {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-right: 0.5rem;
    font-weight: 500;
    white-space: nowrap;
}