/* 外面盒子样式---自己定义 */
.page_div {
    color: #7A6037;
    font-size: 0.2rem;
}
.paging{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0.5rem;
    line-height: 0.5rem;
    text-align: center;
    margin-top: 0.5rem;
    overflow: hidden;
    color: #616161;
}
.paging span{
    font-size: 0.1rem;
    line-height: 0.5rem;
    color: #616161;
    margin: 0.05rem 0.2rem 0 -0.3rem;
}

/* 页数按钮样式 */
.paging button {
    display: block;
    width: 0.42rem;
    height: 0.42rem;
    line-height: 0.42rem;
    text-align: center;
    border: 0;
    background: url(../img/ejnews/btn_bg.png) no-repeat top center;
    background-size: 100% 100%;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #fff;
    margin: 0.04rem 0.5rem 0 0;
    float: left;
    font-size: 0.14rem;
}
.paging button:last-child{
    margin-right: 0;
}
.paging button.current{
    color: #000;
    background: url(../img/ejnews/btn_bgs.png) no-repeat top center;
    background-size: 100% 100%;
}
.paging #prePage,.paging #nextPage{
    font-size: 0;
    width: 0.26rem;
    height: 0.5rem;
    
}
.paging #prePage{
    background: url(../img/ejnews/arrow.png) no-repeat top center;
    background-size: 100% 100%;
}
.paging #nextPage{
    background: url(../img/ejnews/arrow1.png) no-repeat top center;
    background-size: 100% 100%;
}



/*button禁用*/
.paging button:disabled {
    opacity: .5;
    cursor: no-drop;
}