@charset "UTF-8";
/*
 * global.css
 * 全局通用样式、布局、字体、颜色等
 */
body {
    color: #333333;
    font-size: 14px;
    font-family: 'Source Han Sans CN', 'Microsoft YaHei', Arial, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.img {
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ccc;
}

.pic {
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.img img,
.pic img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    padding: 0;
    border: 0;
    width: 100%;
    height: auto;
    border: none;
}

.img-center {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: auto !important;
    height: auto !important;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
}

.img-block {
    display: block;
    width: 100%;
    height: auto;
}

.container-outer {
    width: 84%;
    margin: auto;
    position: relative;
    height: 100%;
}

.container {
    margin: auto;
    min-height: 1px;
    width: 100%;
    max-width: 1400px;
}

.clearfix:after,
.clearfix:before {
    content: "";
    display: table;
    clear: both;
}


/* 分页 */
ul.pagination {
    width: 100%;
    height: auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.pagination li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    margin: 0px 3px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.pagination li a {
    display: block;
    width: 40px;
    height: 40px;
}

.pagination li.active,
.pagination li:hover {
    color: #ffffff;
    background-color: #1673FF;
    border-color: #1673FF;
}