/* 未能缩小。正在返回未缩小的内容。
(2,17): run-time error CSS1039: Token not allowed after unary operator: '-web-main-width'
(7,17): run-time error CSS1039: Token not allowed after unary operator: '-web-bule'
(11,28): run-time error CSS1039: Token not allowed after unary operator: '-web-bule'
(19,21): run-time error CSS1039: Token not allowed after unary operator: '-web-fontsize-s'
(120,28): run-time error CSS1039: Token not allowed after unary operator: '-web-bule'
(121,28): run-time error CSS1039: Token not allowed after unary operator: '-web-bule'
 */
.main, .top .titBox .content, .top .navBox .nav, #footer .p1 {
    width: var(--web-main-width);
}

h2 {
    padding-bottom: 20px;
    color: var(--web-bule);
}

hr {
    background-color: var(--web-bule);
    height: 1px;
    border: none;
    margin-bottom: 5px;
}

/* 标题列表 */
.titleList {
    font-size: var(--web-fontsize-s);
}

    .titleList ul li {
        line-height: 50px;
        border-bottom: #959595 1px dashed;
        display: flex;
        justify-content: space-between;
    }

        .titleList ul li span {
            color: #999;
        }

/* 图片列表 */
.picList {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .picList .pic {
        width: 580px;
        margin-bottom: 20px;
    }

        .picList .pic img {
            width: 580px;
            object-fit: cover;
        }

        .picList .pic .tit {
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .picList .pic .tit p {
            text-align: center;
        }

/* 分页样式 */
.Pagination {
    height: 60px;
    color: #565656;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .Pagination span {
        margin-right: 5px;
        display: block;
        float: left;
        margin-left: 5px;
    }

        .Pagination span b {
            padding: 0 2px;
        }

    .Pagination .pagesnum {
        display: flex;
    }

    .Pagination a {
        font-size: 16px;
        text-decoration: none;
        display: block;
        color: #565656;
        border: 1px solid #cacaca;
        padding: 10px;
        margin: 0 2px;
    }

    .Pagination .Ellipsis {
        line-height: 32px;
        overflow: hidden;
        display: none;
    }

cite.FormNum {
    line-height: 20px;
    height: 20px;
    font-style: normal;
    padding-left: 10px;
}

#PageNum {
    color: #777;
    width: 30px;
    height: 20px;
    line-height: 20px;
    border: 1px solid #cacaca;
    margin: 0 5px;
    text-align: center;
}

.Pagination a:hover, .Pagination a.PageCur {
    background-color: var(--web-bule);
    border: 1px solid var(--web-bule);
    color: #ffffff;
}

