﻿.page {
    width: 100%;
    min-width: 1068px;
    height: 36px;
    margin: 40px auto;
}

.page-bar {
    text-align: center;
    width: 100%;
    height: 36px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 100px;
}

    .page-bar ul {
        min-width: 700px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        overflow: hidden;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    .page-bar li {
        display: block;
        width: 36px;
        height: 36px;
        border-radius: 4px;
        list-style: none;
        overflow: hidden;
        position: relative;
        margin: 0px 5px;
    }

    .page-bar a {
        width: 34px;
        height: 34px;
        border: 1px solid #ddd;
        text-decoration: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        /*margin-left: -1px;*/
        line-height: 34px;
        color: #333;
        cursor: pointer
    }

    .page-bar .first {
        display: block;
        width: 170px;
        height: 36px;
        font-size: 14px;
        line-height: 36px;
        text-align: center;
    }

    .page-bar .last_li {
        width: 85px;
        height: 36px;
        border: 1px solid #ddd;
    }

        .page-bar .last_li span {
            width: 100%;
            height: 100%;
            line-height: 36px;
            text-align: center;
            float: left;
        }

    .page-bar li:first-child, .page-bar li:last-child {
        margin: 0px;
        width: 5em;
    }

        .page-bar li:first-child a, .page-bar li:last-child a {
            width: 100%;
        }

    .page-bar .li_a a:hover {
        background-color: #eee;
        border: 1px solid #40A9FF;
        color: #40A9FF;
    }

    .page-bar a.banclick {
        cursor: not-allowed;
    }

    .page-bar .active a {
        color: #fff;
        cursor: default;
        background-color: #1890FF;
        border-color: #1890FF;
    }

    .page-bar i {
        font-style: normal;
        color: #d44950;
        margin: 0px 4px;
        font-size: 14px;
    }
