
/* banner 在common.css中 */
/* 面包屑 在common.css中 */

/* 资质证书.html */
/* 证书列表 */
.book_list {
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
}
.book_list .li {
    display: block;
    width: 2.6rem;
    margin-top: 0.3rem;
    margin-right: 0.25rem;
    background: #E9E9E9;
    border: 0.01rem solid #DFDFDF;
    transition: all 0.3s;
}
.book_list .li:nth-child(-n+5) {
    margin-top: 0;
}
.book_list .li:nth-child(5n) {
    margin-right: 0;
}
.book_list .li .pic_box {
    width: 100%;
    height: 3.4rem;
    padding: 0.2rem;
    background-color: #fff;
}
.book_list .pic {
    display: block;
    width: 100%;
    height: 100%;
}

.book_list .pic img{
    object-fit: contain;
}
.book_list .name {
    padding: 0.12rem 0;
    text-align: center;
    font-size: 0.16rem;
    font-weight: 400;
    color: #666666;
}
.book_list .li:hover {
    background: #167BD4;
}
.book_list .li:hover .name {
    color: white;
}





/* 下载中心.html */
/* 搜索框 */
/*.search_box {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0.65rem;*/
/*    width: 5.7rem;*/
/*    height: 0.45rem;*/
/*    background: #FFFFFF;*/
/*    border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;*/
/*    border: 0.01rem solid #CFCFCF;*/
/*    overflow: hidden;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/
/*.search_box input {*/
/*    flex: 1;*/
/*    height: 100%;*/
/*    padding: 0 0.2rem;*/
/*    border: none;*/
/*    outline: none;*/
/*}*/
/*.search_box .icon_box {*/
/*    width: 0.8rem;*/
/*    height: 100%;*/
/*    background: #167BD4;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/
/* 下载列表 */
.down_list {
    width: 100%;
    margin-top: 0.5rem;
}
.down_list .li {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.35rem 0.8rem 0.35rem 0.3rem;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.down_list .li:first-child {
    margin-top: 0;
}
.down_list .li .file_info {
    display: flex;
    align-items: center;
}
.down_list .li .file {
    width: 0.36rem;
    height: 0.36rem;
    margin-right: 0.25rem;
    object-fit: contain;
}
.down_list .li .name {
    width: 5.5rem;
    font-size: 0.2rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.down_list .li .download {
    padding: 0.1rem 0.22rem;
    display: flex;
    align-items: center;
    background: #167BD4;
    font-size: 0.16rem;
    font-family: Microsoft YaHei-Regular, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
}
.down_list .li .download img {
    width: 0.21rem;
    height: 0.21rem;
    margin-right: 0.1rem;
    object-fit: contain;
}
.down_list .li .download .down1 {
    display: none;
}
/* hover状态 */
.down_list .li:hover {
    background-color: #167BD4;
}
.down_list .li:hover .name {
    color: #fff;
}
.down_list .li:hover .download {
    background-color: #fff;
    color: #167BD4;
}
.down_list .li:hover .download .down2 {
    display: none;
}
.down_list .li:hover .download .down1 {
    display: block;
}



