 /* 销售人员区域样式 */
 .sales-team-section {
     padding: 4rem 0;
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
 }

 .sales-team-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
 }

 .section-title {
     text-align: center;
     margin-bottom: 3rem;
 }

 .section-title h2 {
     font-size: 2.5rem;
     font-weight: bold;
     color: #123271;
     margin-bottom: 1rem;
 }

 .section-title p {
     color: #64748b;
     font-size: 1.1rem;
     max-width: 600px;
     margin: 0 auto;
 }

 .sales-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2rem;
 }

 .sales-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     text-align: center;
     padding: 1.5rem;
     position: relative;
 }

 .sales-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
 }

 .card-content {
     position: relative;
     z-index: 1;
 }

 .avatar-container {
     position: relative;
     width: 120px;
     height: 120px;
     margin: 0 auto 1.5rem;
     border-radius: 50%;
     overflow: hidden;
     border: 4px solid #e2e8f0;
     transition: all 0.3s ease;
 }

 .sales-card:hover .avatar-container {
     border-color: #218ffe;
     transform: scale(1.05);
 }

 .avatar {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .sales-name {
     font-size: 1.25rem;
     font-weight: 600;
     color: #1e293b;
     margin-bottom: 0.5rem;
 }

 .sales-contact {
     margin: 1rem 0;
 }

 .contact-item {
     /*display: flex;*/
     align-items: center;
     justify-content: center;
     margin: 0.75rem 0;
     color: #475569;
 }

 .contact-icon {
     width: 20px;
     margin-right: 0.75rem;
     color: #218ffe;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 1rem;
     margin-top: 1.5rem;
 }

 .social-link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #f1f5f9;
     color: #64748b;
     transition: all 0.3s ease;
 }

 .social-link:hover {
     background: #218ffe;
     color: white;
     transform: translateY(-3px);
 }

 .whatsapp-link {
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
     }

     70% {
         transform: scale(1.05);
         box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
     }

     100% {
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
     }
 }

/* 悬停遮罩层样式 */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(255, 255, 255, 0.6); */
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sales-card:hover .hover-overlay {
    opacity: 1;
    visibility: visible;
}

/* 联系按钮区域样式 */
.contact-buttons-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 280px;
    padding: 0 1rem;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.facebook-button {
    background-color: #1877F2;
    color: white;
}

.facebook-button:hover {
    background-color: #166FE5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.contact-button i {
    font-size: 1.1rem;
}

/* 响应式设计 */
@media (max-width: 996px) {
    .sales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sales-grid {
        grid-template-columns: 1fr;
    }

    .sales-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .hover-overlay {
        position: static;
        background-color: transparent;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        display: flex;
        padding: 1rem 0;
    }

    .contact-buttons-wrapper {
        display: grid;
        max-width: 100%;
    }
}