
/*.catelist{
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
    overflow-x: auto;
    white-space: nowrap;
    overflow-y: hidden;*/ /* 禁止纵向滚动 */
    /*scrollbar-width: none;*/ /* Firefox 支持的隐藏滚动条方式 */
    /*-ms-overflow-style: none;*/ /* IE 和 Edge 支持的隐藏滚动条方式 */
/*}*/
.catelist {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #cddcff;
    overflow-x: auto;
    white-space: nowrap;
    margin-top: 20px;
}
.catelist::-webkit-scrollbar {
    display: none; /* 隐藏滚动条（Webkit 浏览器）*/
}
.cateitem {
    /* float: left; */
    display: inline-block;
    margin: 0;
    margin-right: 100px;
    box-sizing: border-box;
    text-align: center;
    padding: 10px 10px;
    cursor: pointer;
    font-size: 18px;
}
/*.cateitem{*/
    /*float: left;*/
    /*display: inline-block;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
    padding: 10px 30px;
    cursor: pointer;
}*/

/*.activeCate{
    font-weight: bold;
    color: #fff;
    background: #3f75fb;
    border-radius: 20px;
}*/
.activeCate {
    font-weight: bold;
    border-bottom: 3px solid #3f75fb;
}
.listActive{
    display: block!important;
}
.prolist{
    margin: 35px 0 ;
    display: none;
    /*text-align: justify;*/
    /*text-align-last: justify;*/
}
.proItem{
    color: #fff;
    font-size: 14px;
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 8px;
    background: rgba(0,0,0,0.5);
    border-radius: 5px 0 5px 0;
}
.proItem>img{
    width: 10px;
    display: inline-block;
    vertical-align: middle;
}

.faproitem{
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}
.proitem{
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
}


.proinfo{
    padding: 10px ;
    box-sizing: border-box;
    background-color: #f0f5ff;
}
.proinfo:hover{
    background-color: #e5ebf8;
}
.propic{
    overflow: hidden;
}
.propic img{
    object-fit: cover;
    border-radius: 5px 5px 0 0;
    width: 100%;
    transition: transform 0.3s ease; /* 添加过渡效果 */
}
.propic>img:hover{
    transform: scale(1.1); /* 鼠标悬停时放大图片 */
}
.protitle{
    color: #333333;
    font-size: 18px;
    text-align: left;
    text-align-last: left;
}
.version{
    font-size: 16px;
    color: #333333;
    padding: 5px 0 ;
}
.readmore{
    color: #3f75fb;
    font-size: 14px;
    text-align: left;
    padding: 15px 0 ;
    text-align-last: left;

}
/* 侧边 */

.side{
    position: fixed;
    right: 50px;
    bottom: 20%;
}
.page_img{
    width: 30%;
    margin: 30px auto;
}
@media screen and (max-width:1000px) {
    .faproitem{
        width: 45%;
    }
    .side{
        position: fixed;
        right: 20px;
        bottom: 20%;
    }
}
@media screen and (max-width:600px) {
    .faproitem{
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
    }
    .side{
        position: fixed;
        right: 10px;
        bottom: 20%;
    }
    .cateitem{
        padding: 10px 10px;
        font-size: 12px;
        margin-right:0px;
    }
    .prolist{
        margin: 10px 0 ;
    }
    .protitle{
        font-size: 14px;
    }
    .readmore{
        font-size: 12px;
    }
    .button-right {
        display:none
    }
    .button-left {
        display: none
    }
    .catelist{
        margin-top:0px;
    }
}