.sort-button {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    margin-bottom: 10px;
}

.sort-button a {
    width: 100px;
    height: 30px;
    line-height: 30px;
    color: #666666;
    background-color: #ddd;
    border-radius: 30px;
    text-align: center;
    margin-right: 10px;
    transition: .3s;
}

.sort-button a:hover {
    color: #fff;
    background-color: #007aff;
}

.sort-button a.curr {
    color: #fff;
    background-color: #007aff;
}

.expert-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.expert-list .expert-item {
    position: relative;
    overflow: hidden;
}

.expert-list .expert-item:hover {
    box-shadow: 0 10px 10px 0 #eee
}

.expert-list .ex3 {
    position: absolute;
    background: url("/static/images/icon-football-bg.png") no-repeat;
    width: 120px;
    height: 120px;
    background-size: 100%;
    top: -20px;
    right: -20px;
}

.expert-list .ex4 {
    position: absolute;
    background: url("/static/images/icon-basketball-bg.png") no-repeat;
    width: 120px;
    height: 120px;
    background-size: 100%;
    top: -20px;
    right: -20px;
}

.expert-list a {
    cursor: pointer;
}

.expert-list::after {
    content: '';
    height: 0;
    width: 19%;
}

.expert-list .expert-item {
    width: 19%;
    border-radius: 4px;
    padding: 20px 10px;
    background-color: #fff;
    box-sizing: border-box;
    margin-bottom: 10px;
    text-align: center;
}

.expert-list .expert-empty {
    background: none;
}

.expert-list .info {
    display: flex;
    align-items: center;
    justify-content: center;

}

.expert-list .portrait {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    transition: .5s ease-in-out;
}

.expert-list .count {
    font-size: 18px;
    color: #ff9900;
    transition: .5s ease-in-out;
}

.expert-list .name {
    font-size: 16px;
    transition: .5s ease-in-out;
}

.expert-list .line {
    font-size: 12px;
    color: #999999;
    padding: 0 10px;

}

.expert-list .follow {
    width: 100px;
    height: 30px;
    line-height: 30px;
    color: #ff9900;
    border: 1px solid #ff9900;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    margin: 15px 0;
    cursor: pointer;
}

.expert-list .follow2 {
    color: #999999;
    border-color: #999999;
}

.expert-list .expert-cen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expert-list .tit {
    color: #999999;
    padding: 4px 4px;
    border: 1px solid #ddd;
    font-size: 12px;
    border-radius: 4px;
}

.expert-list .win {
    font: 35px Arial;
    color: #EE4523;
    padding-left: 6px;
}

.expert-list .win b {
    font-size: 12px;
}

.expert-list .expert-bom {
    margin-top: 15px;
}

.expert-list .wins {
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-list .wins .tis {
    min-width: 40px;
    text-align: center;
    color: #999999;
    padding-bottom: 5px;
}

.expert-list .wins .w1 {
    color: var(--sheng);
}

.expert-list .wins .w2 {
    color: var(--ping);
}

.expert-list .wins .w3 {
    color: var(--fu);
}

.expert-list .winsbox {
    display: flex;
    align-items: center;
}

.expert-list .winsbox p {
    min-width: 40px;
    height: 26px;
    line-height: 26px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 13px;
    margin-left: 4px;
    margin-bottom: 4px;
}

.expert-list .expert-count {
    font-size: 12px;
    color: #999999;
    margin-top: 10px;
}


@media (max-width: 1024px) {
    .expert-list {
        flex-wrap: wrap;
    }

    .expert-list .expert-item {
        width: 24%;
    }

    .expert-list::after {
        width: 24%;
    }
}

@media (max-width: 768px) {
    .expert-list .expert-item {
        width: 33%;
    }

    .expert-list::after {
        width: 33%;
    }

    .expert-list .portrait {
        width: 50px;
        height: 50px;
    }

    .expert-list .name,
    .expert-list .count {
        font-size: 14px;
    }
}

@media (max-width: 660px) {
    .expert-list .expert-item {
        width: 49%;
    }

    .expert-list::after {
        width: 49%;
    }

    .expert-list .winsbox p {
        font-size: 12px;
        min-width: 35px;
        height: 24px;
        line-height: 24px;
    }
}

@media (max-width: 380px) {
    .expert-list .expert-item {
        width: 100%;
    }

    .expert-list .portrait {
        width: 65px;
        height: 65px;
    }

    .expert-list .count {
        font-size: 18px;
    }

    .expert-list .name {
        font-size: 16px;
    }
}