/** 
*   全局初始化
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Microsoft YaHei';
}

ul,
ol,
dl {
    list-style: none;
}

a {
    color: #666;
    text-decoration: none !important;
}

.r {
    float: right;
}

.l {
    float: left;
}

select,
option,
input,
textarea {
    outline: none;
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.center {
    padding: 0.35rem;
}

.pos_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pos_left_center {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.pos_right_center {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.main {
    background-color: #f5f5f5;
    overflow: hidden;
}

.multi_line_2 {
    /* 多余内容省略号处理-多行 */
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.multi_line_3 {
    /* 多余内容省略号处理-多行 */
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.multi_line_4 {
    /* 多余内容省略号处理-多行 */
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.single_line {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.box-flex-column {
    display: flex;
    flex-direction: column;
}

.content {
    padding: 0 1rem;
    background-color: #fff;
    border-radius: 0.5rem;
}

/* 头部导航栏 */
.header {
    height: 3.5rem;
    border-bottom: 1px solid #eee;

}

.header-box {
    height: 3.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 121;
    box-shadow: 0 0 4px 2px #eee;
}

.header-box .center {
    position: relative;
    height: 3.5rem;
}

.header-box h1 {
    font-size: 1.5rem;
    color: #333333;
    text-align: center;
    line-height: 3.5rem;
}

.header-box img {
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    height: 1rem;
    width: 1.5rem;
}

/* 侧边导航栏 */

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 125;
    transition-duration: .5s;
    display: flex;
    justify-content: flex-end;
}

.nav_show {
    right: 0;
}

.nav_box {
    width: 60%;
    height: 100%;
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 0 10px 1px #d8d8d8;
}

.nav_box li {
    animation-duration: 1s;
    animation-iteration-count: 1;
}

.nav_box li:first-child {
    animation-delay: 0;
}

.nav_box li:nth-child(2) {
    animation-delay: .2s;
}

.nav_box li:nth-child(3) {
    animation-delay: .4s;
}

.nav_box li:nth-child(4) {
    animation-delay: .6s;
}

.nav_box li:nth-child(5) {
    animation-delay: .8s;
}

.nav_box li:nth-child(6) {
    animation-delay: 1s;
}

.nav_box li:nth-child(7) {
    animation-delay: 1.2s;
}

.nav_box li a {
    display: block;
    padding: 0 15%;
    height: 4rem;
    line-height: 4rem;
}

.nav_box li a div {
    display: inline-block;
    width: 40px;
    height: 100%;
}

.nav_box li span {
    margin-right: 1rem;
    font-size: 1.5rem;
}

a.on {
    color: #fff;
    background-color: rgb(117 96 255);
}

a.on span {
    color: #fff;
}

/* 副标题 */
.title {
    padding: 1rem 0;
    border-bottom: .07rem solid #f5f5f5;
}

.title h3 {
    font-size: 1.07rem;
    color: #333333;
    font-weight: normal;
}

.title p {
    font-size: 0.7rem;
    letter-spacing: 0.057rem;
    color: #a1a1a1;
}

/* 分页 */
.page {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
}


/*分页样式*/
.fenye {
    text-align: center;
    margin-top: 20px;
    width: 1200px;
    position: relative;
    left: calc(50% - 600px);
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 0;
    border-radius: 4px;
    margin-top: 10px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: white;
    text-decoration: none;
    background-color: #0072ed;
    border: none;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover,
.pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: black;
    cursor: default;
    background-color: white;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

/* 底部 */
.bottom {
    padding: 1rem 0;
    text-align: center;
    background: #30343d;
}

.bottom-left {
    float: left;
}

.bottom-left p {
    color: #a3a3a3;
    font-size: .8rem;
    line-height: 1.5rem;
    text-align: left;
}

.bottom-left span {
    color: #a3a3a3;
    font-size: 1.1rem;
    position: relative;
    top: 5px;
    left: -15px;
}

.bottom-left img {
    width: 1.1rem;
    height: 1.1rem;
}

.bottom-phone {
    margin: 1rem 0;
    font-size: 1.5rem !important;
    color: #2196F3 !important;
}

.bottom-right {
    float: right;
}

.bottom-right img {
    width: 8rem;
    height: 8rem;
}

.bottom-right p {
    color: #a3a3a3;
    margin-bottom: 0.5rem;
    font-size: .8rem;
}

.bottom-info {
    margin-top: 1rem;
    color: #7d7d7d;
    font-size: 0.8rem;
}

.bottom-info img{
    width: 15px;
}

.bottom-info p {
    color: #7d7d7d;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.25rem 0px;
}