/*分页*/
.screen_page {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    line-height: 40px;
    float: left;
}

.screen_pageF {
    width:70px;
    height: 40px;
    display: inline-block;
    box-sizing: border-box;
    font-size: 14px;
    margin: 0 2px;
    border-radius: 5px;
}

.screen_pageF:hover {
    font-weight: bold;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.screen_pageA {
    width: 40px;
    height: 40px;
    display: inline-block;
    box-sizing: border-box;
    font-size: 14px;
    margin: 0 2px;
    border-radius:5px;
}

.black_page {
    color: #666666;
    border: 1px solid #cccccc;
    background-color: #fff;
}

.black_page:hover {
    background-color:#F5F5F5;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.green_page {
    color: #ffffff;
    background-color: #ff7f00;
    border: 1px solid #ff7f00;
}