
.catelist{
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
    border-bottom: 2px solid #cddcff;
    overflow-x: auto;
    white-space: nowrap;
    /*overflow-y: hidden;*/ /* 禁止纵向滚动 */
    /*scrollbar-width: thin;*/ /* Firefox 支持的隐藏滚动条方式 */
    /*-ms-overflow-style: none;*/ /* IE 和 Edge 支持的隐藏滚动条方式 */
}
.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;
}

.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: 33%;
    display: inline-block;
    box-sizing: border-box;
    padding: 10px;
    cursor: pointer;
}
.proitem{
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;

}
.propic{
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.proinfo{
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
}

.propic>img{
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease; /* 添加过渡效果 */
}
.propic>img:hover{
    transform: scale(1.2); /* 鼠标悬停时放大图片 */
}
.protitle{
    color: #333333;
    font-size: 24px;
}
.version{
    font-size: 18px;
    color: #333333;
    padding: 15px 0 ;
}
.readmore{
    color: #3f75fb;
    font-size: 18px;
}
/* 侧边 */

.side{
    position: fixed;
    right: 50px;
    bottom: 20%;
}
.page_img{
    width: 30%;
    margin: 30px auto;
}
@media screen and (max-width:1000px) {
    .faproitem{
        width: 45%;
    }
    .cateitem{
        margin-right: 30px;
    }

    .side{
        position: fixed;
        right: 20px;
        bottom: 20%;
    }
}
@media screen and (max-width:600px) {
    .faproitem{
        width: 100%;
    }
    .cateitem{
        margin-right: 0px;
        font-size: 12px;
    }
    .side{
        position: fixed;
        right: 10px;
        bottom: 20%;
    }
    .proinfo{
        font-size: 14px;
    }
    .button-right {
        display: none;
    }
    .catelist {
        margin-top: 0px;
    }
}