
    .gsx-contact-wrapper {
        font-family: 'Segoe UI', Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px; /* 减少顶部空白 */
    }
    
    /* Hero Section */
    .gsx-contact-hero {
        text-align: center;
        margin-bottom: 25px; /* 大幅减少下方空白 */
    }
    .gsx-contact-hero h1 {
        font-size: 32px;
        color: #e60012;
        margin-bottom: 8px;
    }
    .gsx-contact-hero p {
        font-size: 16px;
        color: #666;
    }

    /* Info Grid */
    .gsx-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 30px; /* 减少空白 */
    }
    .gsx-info-card {
        background: #f9f9f9;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        transition: transform 0.3s ease;
    }
    .gsx-info-card:hover {
        transform: translateY(-5px);
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .gsx-info-card i {
        font-size: 28px;
        color: #e60012;
        margin-bottom: 10px;
        display: block;
    }
    .gsx-info-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #2c3e50;
    }
    .gsx-info-card p, .gsx-info-card a {
        font-size: 14px;
        color: #777;
        text-decoration: none;
    }
    .gsx-info-card a:hover {
        color: #e60012;
    }

    /* 团队模块样式 */
    .so-team-section {
        padding: 20px 0; /* 大幅减少上下空白 */
        text-align: center;
        font-family: 'Segoe UI', Arial, sans-serif;
    }
    .so-team-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }
    .so-member-card {
        flex: 1;
        min-width: 200px;
        max-width: 220px;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px 10px;
        transition: all 0.3s ease;
    }
    .so-member-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-color: #ff6600;
    }
    .so-member-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
        border: 2px solid #f0f0f0;
    }
    .so-member-name {
        font-size: 17px;
        font-weight: 700;
        color: #333;
        margin-bottom: 5px;
    }
    .so-member-role {
        font-size: 13px;
        color: #ff6600;
        font-weight: 600;
        margin-bottom: 5px;
    }
    .so-member-products {
        font-size: 12px;
        color: #666;
        margin-bottom: 12px;
        min-height: 36px;
        line-height: 1.4;
        padding: 0 5px;
    }
    .so-chat-link {
        display: inline-block;
        padding: 8px 16px;
        background: #25d366;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-size: 13px;
        font-weight: bold;
        transition: background 0.2s;
    }
    .so-chat-link:hover {
        background: #128c7e;
    }

    @media (max-width: 768px) {
        .gsx-contact-hero h1 { font-size: 26px; }
        .gsx-contact-wrapper { padding: 15px; }
    }
