/* 标题图标 */
.home_popularPart>.title .iconfont-ut {
    font-size: 20px;
}

.home_popularPart .cot {
    background-color: var(--colorW);
    border-radius: 6px;
    padding: 0 40px;
}

.home_popularPart .cot .title {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    width: 100%;
}

/* 标题列表每项 */
.home_popularPart .cot .title li {
    height: 44px;
    line-height: 44px;
    margin-right: 100px;
    margin-bottom: -1px;
    cursor: pointer;
    font-size: 14px !important;
    text-align: center;
}

/* 选中项 */
.home_popularPart .cot .title li.active {
    color: #333;
    position: relative;
}

.home_popularPart .cot .title li.active .line {
    width: 47px;
    height: 2px;
    background-color: var(--main-color);
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
}



.home_popularPart .cot .lists {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
    padding-top: 20px;
    width: 100%;
    background-color: var(--colorW);
}

/* 列表每项 */
.home_popularPart .cot .lists li {
    width: 20%;
    height: unset;
}




.home_popularPart .cot .replace li {
    width: 48%;
    height: unset;
    background-color: var(--colorW);
    margin-right: 20px;
    margin-bottom: 10px;
}


.home_popularPart .cot ul li a {
    color: var(--color3);
}

.home_popularPart .cot ul li a:hover {
    color: var(--main-color);
}

/* 小屏时 */
@media screen and (max-width: 1024px) {

    .home_popularPart .cot {
        padding: 20px 20px;
    }

    /* 列表每项 */
    .home_popularPart .cot .lists li {
        width: 50%;
        height: unset;
    }

    .home_popularPart .cot .replace li {
        width: 100%;
        height: unset;
    }

    .home_popularPart .cot .title {
        justify-content: space-around;
    }

    .home_popularPart .cot .title li {
        margin: 0;
    }

}