body {
    background-color: #f0f0f0;
}

/* 产品分类选择 */
.classify{
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    padding: 1.25rem 1.25rem 1.25rem 0;
}
.classify .aaa{
    display: flex;
    align-items: center;
}
.classify .aaa a{
    margin-right: 20px;
    font-size: 1rem;
} 
.classify .classify_wrapper {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.classify .classify_wrapper .product_select {
    font-size: 14px;
    width: 72px;
    border-radius: 1.5625rem;
    text-align: center;
    border: 1px solid #0052d9;
    background-color: white;
}

.classify .classify_wrapper>select {
    font-size: 1rem;
    cursor: pointer;
}

/* 内容模块-wiki跳转图片 */
.hedImg img {
    width: 100%;
    height: auto;
}

/* 内容模块 */
.contentInfo_pn {
    overflow: visible;
    background-color: #f0f0f0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

/* 内容模块-项目 */
.contentInfo_pn .pn_item {
    flex-basis: calc((100% - (1.25rem * 3)) / 4);
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

/* 内容模块-bottom项目*/
.contentInfo_pn .pn_item .item_bottom {
    background-color: white;
    flex-grow: 1;
    padding: 1.3rem 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 1;
}
.contentInfo_pn .pn_item .item_bottom .item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
}
.contentInfo_pn .pn_item .item_bottom .item .word{
    font-size: 14px;
    text-align: center;
}
/* 内容模块-项目-文字日期 */
.contentInfo_pn .pn_item .item_bottom .date{
    font-size: 0.8125rem;
    color: #7c7c7c;
}

/* 分页样式 */
.pagenumber {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 42px 0 11px;
}

.pagenumber ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.pagenumber li div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.3125rem;;
    color: #181818;
}

.pagenumber li div:hover {
    color: #ffffff;
    background-color: #0044ff;
}

/* 手机端 */
@media screen and (max-width:1024px) {

    .classify{ 
        padding: 0.6rem 0;
        justify-content: space-between; 
    }
    .classify .aaa a{
        margin-right: 0;
    } 
    .classify .classify_wrapper {
        gap: 0.4rem;
    }

    /* 查询条件下拉框字体 */
    .classify .aaa a {
        font-size: 11px;
    }
    .classify .classify_wrapper .product_select {
        width: 60px;
        font-size: 11px;
    }
    .contentInfo_pn {
        gap: 0.625rem;
    }
    /* 内容项目 */
    .contentInfo_pn .pn_item {
        flex-basis: calc((100% - 0.625rem) / 2);
    }
    /* 内容模块-bottom项目*/
    .contentInfo_pn .pn_item .item_bottom {
        padding: 14px 0;
    }
    .contentInfo_pn .pn_item .item_bottom .item .word{
        font-size: 11px;
    }
    /* 内容模块-项目-文字日期 */
    .contentInfo_pn .pn_item .item_bottom .date{
        font-size: 0.5rem;
    }

    /* 分页样式 */
    .pagenumber {
        padding: 21px 0 6px;
    }

    .pagenumber li div {
        width: 2rem;
        height: 2rem;
    }

    .pagenumber li div:hover {
        color: #ffffff;
        background-color: #0044ff;
    }
}