/* index列表 */
.indexlist {
    margin-bottom: 40px;
}

.indexlist a {
    width: 25px;
    height: 25px;
    line-height: 25px;
}

/* 选中时 鼠标经过时 */
.indexlist a:hover,
.indexlist a.active {
    color: var(--colorW);
    background-color: var(--main-color);
}

#list section .lists li {
    width: 20%;
    margin-bottom: 10px;
    font-size: 12px;
}

/* 小屏时 */
@media screen and (max-width: 1024px) {
    .indexlist {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    #list section .lists li {
        width: 50%;
    }
}