#manufacturer {
    padding-bottom: 100px;
}

/* 类型切换 */
#manufacturer .Title .changeType {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* 类型切换移入时 */
#manufacturer .Title .changeType .iconfont-ut:hover {
    color: var(--main-color);
    text-decoration: underline;
}

/* 字母表 */
#manufacturer .cot .indexList {
    -webkit-box-pack: center;
    justify-content: center;
}

#manufacturer .cot .indexList li {
    width: 28px;
    height: 28px;
    line-height: 28px;
}

#manufacturer .cot .indexList li:hover {
    background-color: var(--main-color);
    border-radius: 50%;
}

#manufacturer .cot .indexList li:hover a {
    color: var(--colorW);
}

/* 字母表结束 */


/* 数据列表 标题 */
#manufacturer .cot .imgList li>a {
    line-height: 30px;
}

/* 数据列表每条 */
#manufacturer .cot .imgList li .nameBox a {
    width: 25%;
}

#manufacturer .cot .imgList li .nameBox a:hover {
    color: var(--main-color);
}

#manufacturer .cot .imgList li .nameBox a:after {
    /* attr() 函数返回选择元素的属性值。 */
    content: attr(attrData);
    color: var(--main-color);
    margin-left: 3px;
}

/* 图片类型 */
#manufacturer .cot .imgList li .imgBox a {
    width: 190px;
    height: 80px;
    margin-right: 24px;
}

#manufacturer .cot .imgList li .imgBox a:nth-child(6n) {
    margin-right: 0;
}

/*#manufacturer .cot .imgList li .imgBox a img {
    width: 90%;
}*/

#manufacturer .cot .imgList li .imgBox a:hover {
    cursor: pointer;
    box-shadow: -2px 2px 9px rgb(0 0 0 / 10%);
}


/* 小屏时 */
@media screen and (max-width: 1024px) {
    #manufacturer .cot .imgList li .nameBox a {
        width: 100%;
        font-size: 14px;
    }

    #manufacturer .Title .changeType {
        display: none;
    }

    #manufacturer .cot .indexList {
        background-color: #0000001a;
        border-radius: 10px;
        height: 90vh;
        position: fixed;
        top: 5vh;
        right: 0;
        width: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 10px;
        align-items: center;
    }

    #manufacturer .cot .indexList li {
        width: 100%;
        text-align: center;
    }

    #manufacturer .cot .indexList a {
        display: inline-block;
        width: 100%;
    }

}