.expertList{
    display: flex;
    gap: 1vw;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
}
.expertItem{
    flex: 0 0 calc(25% - 0.75vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 1vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.expertItem:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.expertImg{
    width: 100%;
    /* height: 10vw; */
}
.expertInfo{}
.expertName{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1vw;
    font-weight: bold;
    margin: 2vh 0;
}
.expertSubTitle{
    font-size: 0.8vw;
    background: linear-gradient(90deg, rgba(245, 232, 156, 1) 0%, rgba(179, 131, 36, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: rgba(0, 0, 0, 1);
}
.expertTitle{
    line-height: 1.5;
    font-size: 0.8vw;
    color: rgba(128, 128, 128, 1);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .expertItem{
        flex: 0 0 calc(33.333% - 0.67vw);
    }
   
}

@media (max-width: 768px) {
    .expertItem{
        flex: 0 0 calc(50% - 0.5vw);
    }
    .expertName{
        font-size: 3vw;
    }
    .expertSubTitle{
        font-size: 2vw;
    }
    .expertTitle{
        text-align: left;
    }

}

@media (max-width: 480px) {
    .expertList{
        gap: 5vw;
    }
    .expertItem{
        flex: 0 0 100%;
        padding: 20px;
    }
    .expertName{
        font-size: 3vw;
    }
    .expertSubTitle{
        font-size: 2vw;
    }
    .expertTitle{
        text-align: left;
        font-size: 2vw;
    }
    .expertInfo{
        width: 100%;
    }
}