﻿@charset "utf-8";
/*
**功能名称：列表页公共样式，分页栏样式，标题样式
**
*/

.__box {
    width: 100%;
    overflow: hidden;
}

    .__box:before, .__box:after {
        content: "";
        display: table;
        clear: both;
    }

.__Title {
    text-align: center;
    padding: 40px 20px 60px;
}

.__Title_t {
    font-size: 24px;
    color: #333333;
    position: relative;
    display: inline-block;
}

.__Title_e {
    font-size: 14px;
    color: #929292;
    margin-top: 3px;
}

.__Title_t:after {
    content: "";
    width: 100%;
    height: 3px;
    bottom: -40px;
    display: block;
    border-radius: 3px;
    position: absolute;
    background-color: var(--style);
}

/*分页样式*/
.page_div {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 15px;
    font-family: "microsoft yahei";
    color: #666666;
    box-sizing: border-box;
    text-align: center;
}

    .page_div a {
        min-width: 30px;
        height: 30px;
        border: 1px solid #dce0e0;
        text-align: center;
        margin: 0 4px;
        cursor: pointer;
        line-height: 30px;
        color: #666666;
        font-size: 14px;
        display: inline-block;
        border-radius:2px;
    }

#firstPage,
#lastPage {
    width: 50px;
    color: #0073A9;
    border: 1px solid #0073A9;
}

#prePage,
#nextPage {
    width: 70px;
}



.totalPages {
    margin: 0 10px;
}

    .totalPages span,
    .totalSize span {
        color: #0073A9;
        margin: 0 5px;
    }

.page_div a:hover,.page_div .current {
    background-color: #0073A9;
    border-color: #0073A9;
    color: #FFFFFF;
}

.page_div a.stop {
    border-style: dashed;
    cursor: none;
    border-color: #dce0e0 !important;
    background-color: #ffffff !important;
    color: #666666;
    opacity:0.5;
}
/* end */
