﻿* {
    padding: 0;
    margin: 0;
    border: 0;
    /*-webkit-touch-callout: none;*/
    /*-webkit-user-select: none;*/
    /*-khtml-user-select: none;*/
    /*-moz-user-select: none;*/
    /*-ms-user-select: none;*/
    /*user-select: none;*/
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 100px;
}


body {
    overflow-x: hidden;
    background-repeat: repeat;
    background-position: left top;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Microsoft Yahei", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.14rem;
    color: #333;
    line-height: 1.8;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}

@font-face {
    font-family: AK;
    src: url('../fonts/Ak.woff'),
    url('../fonts/Ak.ttf'),
    url('../fonts/Ak.eot');  /* IE9 */
}

input, textarea, button {
    font-family: "Microsoft Yahei", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input, textarea {
    font-size: 0.14rem;
    outline: none;
}


input[type="text"], input[type="button"], input[type="submit"], input[type="reset"], select, textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

}

input::-ms-clear {
    display: none;

}

input[type="search"] {
    border-radius: 0;
}

input[type="search"]::-webkit-search-decoration {
    display: none;
}

textarea {
    -webkit-appearance: none;
}

.button {
    -webkit-border-radius: 0;
}

ul, li {
    list-style: none;
}

a:link, a:visited {
    color: #222;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

a:hover {
    color: #4162E7;
}

svg {

}

img {
    width: auto;
    max-width: 100%;
}

input, button, textarea:focus {
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    letter-spacing: 1px;
}

.pub_cont {
    width: 100%;
    max-width: 12rem;
    margin: 0 auto;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
}

header .top {
    width: 100%;
    border-bottom: solid 1px rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

header.on .top {
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 0;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
}

header.on .nav_ti a {
    color: #333;
}

header .top .left {
    padding-left: .4rem;
}

.logo1 {
    display: block;
    line-height: 0;
}

.logo2 {
    display: none;
    line-height: 0;
}

header.on .logo1 {
    display: none;
}

header.on .logo2 {
    display: block;
}

header .top .right {
    display: flex;
    align-items: center;

}

header .top .right .bt_quick {
    width: 1.6rem;
    background-color: #4162E7;
    font-size: .16rem;
    line-height: .6rem;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.nav_ti {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .6rem;
}

.nav_ti li {
    position: relative;

}

.nav_ti a {
    display: block;
    line-height: .6rem;
    margin: 0 .4rem;
    color: #fff;
    position: relative;

}

.nav_ti a::after {
    display: block;
    content: "";
    width: 0;
    height: .03rem;
    background-color: #4162E7;
    position: absolute;
    bottom: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nav_ti a:hover::after {
    display: block;
    content: "";
    width: 100%;
    height: .03rem;
    background-color: #4162E7;
}

.nav_ti a.on::after {
    display: block;
    content: "";
    width: 100%;
    height: .03rem;
    background-color: #4162E7;
}

.nav_ti a.on1::after {
    display: block;
    content: "";
    width: 100%;
    height: .03rem;
    background-color: #4162E7;
}

.nav_ti li.on1 a::after {
    display: block;
    content: "";
    width: 100%;
    height: .03rem;
    background-color: #4162E7;
}

.nav_cont {
    display: none;
    position: absolute;
    z-index: 99999;
    left: 0;
    top: .6rem;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .15);
    padding: .1rem 0;
}

.nav_cont.on {
    display: block;
}

.nav_cont a:link, .nav_cont a:visited {
    line-height: .4rem;
    font-size: .14rem;
    border-bottom: solid 1px #eee;
    text-align: center;
    font-weight: normal;
    padding: 0;
}

.nav_cont a:hover {
    border-bottom: solid 1px #4162E7;
}

/*手机导航*/
.mob_nav {
    display: none;
    cursor: pointer;
    margin-right: .2rem;
}

.mob_nav span {
    display: block;
    width: 0.36rem;
    height: 0.03rem;
    background-color: #4162E7;
    margin-bottom: 2vw;
}

.mob_nav span:last-child {
    margin-bottom: 0;
}

.mob_nav2 {
    display: none;
    cursor: pointer;
    margin-right: .2rem;
}

.mob_nav2 span {
    display: block;
    width: 0.36rem;
    height: 0.03rem;
    background-color: #4162E7;
    margin-bottom: 2vw;
}

.mob_nav2 span:last-child {
    margin-bottom: 0;
}

.mob_nav_cont {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999999999;
    background-color: rgba(0, 0, 0, .7);
    display: none;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.mob_nav_cont.on {
    display: block;
}

.mob_nav_cont .close {
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    cursor: pointer;
    line-height: 0;
}

.mob_nav_cont .close svg {
    width: 6.8vw;
    height: 6.8vw;
    fill: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mob_nav_cont .close:hover svg {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mob_nav_ti {
    font-size: 5vw;
    color: #222;
    line-height: 3;
    padding-top: 0.2rem;
}

.mob_nav_cont .zm_nav {
    position: absolute;
    width: 70vw;
    height: 100vh;
    right: -70%;
    top: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.mob_nav_cont .zm_nav2 {
    position: absolute;
    width: 70vw;
    height: 100vh;
    right: -70%;
    top: 0;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.mob_nav_cont li {
    border-bottom: solid 1px rgba(0, 0, 0, .05);
    text-indent: 7.2vw;

}

.mob_nav_ti {
    font-weight: bold;
}

.mob_nav_cont li a {
    display: block;
    width: 100%;
    color: #222;
    line-height: 3;
    font-size: 4vw;
}

/*网站banner*/
.banner {
    overflow: hidden;
}

.ban_zm {
    display: none;
}

.banner img {
    float: left;
}

.banner .ban_cont {
    height: 100%;
}

.banner .ban_cont svg {
    fill: rgba(255, 255, 255, .7);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.banner .ban_cont svg:hover {
    fill: rgba(65, 98, 231, 1);
}

.banner .ban_cont .swiper-button-next, .banner .ban_cont .swiper-button-prev {
    width: 4.8vw;
    height: 4.8vw;
    top: calc(50% - 2.4vw)
}

.banner .swiper-pagination-bullets {
    display: flex;
    justify-content: center;
    bottom: 1.8vw !important;
}

.banner .swiper-pagination-bullet {
    width: 0.14rem;
    height: 0.14rem;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 0.07rem;
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.banner .swiper-pagination-bullet-active {
    background-color: rgba(65, 98, 231, 1);
    width: 0.28rem;
    border-radius: 0.07rem;
}


.banner .ban_zm {
    display: none;
    overflow: hidden;
}

.banner .swiper-container {
    height: 100%;
    transform: translate3d(0, 0, 0);
}

.banner .swiper-slide {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate3d(0, 0, 0);
    /*box-sizing: content-box;*/
    /*padding-left: 20vw;*/
    /*margin-left: -20vw;*/
}


/*公共标题*/
.in_title1 {

}

.in_title1 .t1 {
    font-size: .3rem;
    line-height: 1;
    font-weight: bold;
    text-align: center;
}

.in_title1 .t2 {
    margin-top: .1rem;
    font-size: .13rem;
    line-height: 1;
    color: #C4C4C4;
    text-transform: uppercase;
    text-align: center;
}

.in_title1 .t2 em {
    font-style: normal;
    color: #f7931e;
}

/*最新公告*/
.notice {
    background-color: #fff;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
}

.notice .pub_cont {
    height: .6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notice .left {
    width: 1.08rem;
    line-height: 0;
}

.notice .right {
    font-size: .18rem;
    width: calc(100% - 1.23rem);
    height: .32rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

/*内容主体核心功能*/
.in_core {
    background-color: #F6F7FB;
    padding: .7rem 0;
}

.in_core .cont {
    padding: .7rem 0 0;
}

.in_core .cont ul {
    display: flow-root;
}

.in_core .cont li {
    width: calc((100% - .6rem) / 4);
    float: left;
    margin-right: .2rem;
    margin-bottom: .2rem;
    box-sizing: border-box;
    /*box-shadow: 0 0 .06rem rgba(0, 0, 0, .04);*/
    cursor: pointer;
}

.in_core .cont li:hover .s_title {
    color: #4162E7;
}

.in_core .cont li .wk {
    padding: .2rem;
    border: solid 2px #fff;
    border-radius: .12rem;
    background-color: #fff;
    background-image: linear-gradient(to bottom, #F5F6F8, #FFFFFD);
    box-shadow: 0 .04rem .06rem rgba(0, 0, 0, .04);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.in_core .cont li:hover .wk {
    box-shadow: 0 .04rem .06rem rgba(0, 0, 0, .12);
}

.in_core .cont li .s_title {
    font-size: .16rem;
    font-weight: bold;
    line-height: 2;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.in_core .cont li .s_cont {
    color: #777;
    line-height: 1.5;
    height: .42rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.in_core .cont li:nth-child(4n) {
    margin-right: 0;
}

.in_core .cont li img {
    max-width: .63rem;
}

.core_more {
    display: block;
    width: 1.5rem;
    height: .58rem;
    border: solid 1px #4162E7;
    border-radius: .04rem;
    background-color: #E1E7FF;
    color: #4162E7;
    font-size: .18rem;
    line-height: .58rem;
    font-weight: bold;
    text-align: center;
    margin: .5rem auto 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.core_more:hover {
    background-color: #4162E7;
    color: #fff;
}

/*内容主体核心功能*/
.in_recruit {
    background-image: url("../images/recruit_bg.png");
    background-position: center top;
    padding: .7rem 0;
    background-repeat: no-repeat;
}

.in_recruit .cont1 {
    padding: .5rem 0 1.2rem;

}

.tabs {
    position: relative;
    display: block;
    width: 100%;
    padding-top: .2rem;
}

.tabs li {
    width: 40%;
    padding: .4rem;
    border-top: solid 1px #DDD;
    border-bottom: solid 1px #DDD;
    border-right: solid 4px rgba(65, 98, 231, 0);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tabs .s_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs li img {
    position: absolute;
    top: 0;
    left: 50%;
    display: none;
    /*opacity: 0;*/
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tabs .s_cont {
    padding-left: .17rem;
    height: 0.504rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tabs .s_title svg {
    width: .2rem;
    height: .2rem;
    fill: #979797;
    padding-left: .15rem;
    border-left: solid 1px #979797;
}

.tabs .ss_ti {
    display: flex;
    align-items: center;
    font-size: .16rem;
    font-weight: bold;
    line-height: 1.5;
    margin: .2rem 0;
}

.tabs .ss_ti::before {
    content: "";
    display: block;
    width: .05rem;
    height: .05rem;
    background-color: #333;
    border-radius: .05rem;
    margin-right: .12rem;
}

.tabs li.on {
    background-color: #fff;
    background-image: linear-gradient(to right, #FFFFFF, #F1F3FF);
    border-right: solid 4px rgba(65, 98, 231, 1);
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .1);
}

.tabs li.on .ss_ti::before {
    background-color: #4162E7;
}

.tabs li.on img {
    display: block;
    /*opacity: 1;*/
    width: 50%;
}

.tabs li.on .ss_ti {
    color: #4162E7;
}

.tabs li.on svg {
    fill: #4162E7;
    border-left: solid 1px #4162E7;
}

/*tabs2*/

.in_recruit .cont2 {
    padding: .5rem 0 .7rem;
}

.in_recruit .cont2 .left {

}

.tabs2 {
    position: relative;
    display: block;
    width: 100%;
    padding-top: .2rem;
}

.tabs2 li {
    width: 40%;
    padding: .4rem;
    border-top: solid 1px #DDD;
    border-bottom: solid 1px #DDD;
    border-left: solid 4px rgba(65, 98, 231, 0);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    float: right;
    clear: both;
}


.tabs2 .s_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs2 li img {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    /*opacity: 0;*/
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tabs2 .s_cont {
    padding-left: .17rem;
    height: 0.504rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tabs2 .s_title svg {
    width: .2rem;
    height: .2rem;
    fill: #979797;
    padding-right: .15rem;
    border-right: solid 1px #979797;
}

.tabs2 .ss_ti {
    display: flex;
    align-items: center;
    font-size: .16rem;
    font-weight: bold;
    line-height: 1;
    margin: .2rem 0;
}

.tabs2 .ss_ti::before {
    content: "";
    display: block;
    width: .05rem;
    height: .05rem;
    background-color: #333;
    border-radius: .05rem;
    margin-right: .12rem;
}

.tabs2 li.on {
    background-color: #fff;
    background-image: linear-gradient(to left, #FFFFFF, #F1F3FF);
    border-left: solid 4px rgba(65, 98, 231, 1);
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .1);
}

.tabs2 li.on .ss_ti::before {
    background-color: #4162E7;
}

.tabs2 li.on img {
    display: block;
    /*opacity: 1;*/
    width: 50%;
}

.tabs2 li.on .ss_ti {
    color: #4162E7;
}

.tabs2 li.on svg {
    fill: #4162E7;
    border-right: solid 1px #4162E7;
}


/*管理相关*/
.in_manager {
    background-image: url("../images/manager_bg.png");
    background-position: center bottom;
    padding: .7rem 0;
    background-repeat: no-repeat;
}

.in_manager .cont1 {
    padding: .5rem 0 1.2rem;
}

.in_manager .cont2 {
    padding: .5rem 0 .7rem;
}

/*服务流程*/
.service {
    padding: .7rem 0;
    background-image: url("../images/service_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service ul {
    display: flex;
    justify-content: space-between;
    padding: .7rem 0 .3rem;
    background-image: url("../images/process_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.service li {
    width: calc(100% / 6);
    font-size: .18rem;
    text-align: center;
    cursor: pointer;
}

.service li .img {
    width: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.service li:hover .img {
    background-position: center bottom;
}

.service li:nth-child(2n) {
    margin-top: 1.4rem;
}

.service li b {
    line-height: 2.5;
}

/*为什么加入我们*/
.why {
    padding: .7rem 0;
}

.why ul {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: .5rem 0;
}

.why li {
    text-align: center;
    font-size: .2rem;
    padding: 0 .4rem;
}

.why li .img {
    line-height: 0;
}

.why li b {
    line-height: 3;
}

/*加入我们*/
.join {
    background-image: url("../images/mask.png");
    background-repeat: no-repeat;
    background-position: center;
    height: 1.4rem;
}

.join .pub_cont {
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.join .pub_cont .left {
    font-size: .32rem;
    font-weight: bold;
}

.join .pub_cont .right a {
    display: block;
    width: 1.36rem;
    height: .42rem;
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    border: solid 1px #fff;
    text-align: center;
    line-height: .42rem;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.join .pub_cont .right a:hover {
    color: #4162E7;
    background-color: rgba(255, 255, 255, 1);
}

/*网站底部*/
footer {
    background-color: #2E3137;
    color: #7B8087;
    padding: .5rem 0 .7rem;
}

footer .pub_cont {
    display: flex;
    justify-content: space-between;
}

footer a:link, footer a:visited {
    color: #fff;
}

footer a:hover {
    color: #fff;
}

footer .left .top {
    margin-bottom: .5rem;
}

.nav_ft {
    display: flex;
    align-items: center;
}

.nav_ft a {
    margin-right: .6rem;
    line-height: 1;
}

footer .left .bottom a {
    color: #7b8087;
}

footer .left .bottom a:hover {
    color: #fff;
}

footer .right {
    color: #fff;
}

footer .right ul {
    display: flex;
    justify-content: space-between;
}

footer .right img {
    max-width: 1.2rem;
}

footer .right li {
    margin-right: .4rem;
    text-align: center;
}

footer .right li:last-child {
    margin-right: 0;
}

/*弹出二维码*/
.qu_shadow {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 999999999;
    background-color: rgba(0, 0, 0, .4);
}

.qu_ww {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.qu_cont {
    background-image: url("../images/qu_ewmbg.png");
    background-position: center center;
    background-size: cover;
    border-radius: .06rem;
    max-width: 2.94rem;
    padding: .2rem;
    font-size: .16rem;
}

.qu_cont span {
    display: block;
    clear: both;
}

.qu_cont img {
    padding: .2rem .3rem .1rem;
    max-width: 2rem;

}

.qu_cont p {
    line-height: 0;
}

.qu_cont .top b {
    font-size: .24rem;
}

.qu_cont .bottom {
    text-align: center;
}

/*快捷菜单*/


.quick {
    position: fixed;
    right: 0;
    z-index: 999999;
    top: calc(50% - 1.98rem);
}

.quick svg {
    width: 0.44rem;
    height: 0.44rem;
    fill: #4162e7;
    -webkit-transition: all 0s ease-out;
    -moz-transition: all 0s ease-out;
    transition: all 0s ease-out;
}

.quick li {
    width: 1.12rem;
    height: 1.12rem;
    background-color: rgba(225, 231, 255, 1);
    border-radius: 4px 0 0 4px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    margin-bottom: 0.12rem;
    position: relative;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    font-size: .18rem;
    font-weight: bold;
}

.quick li:last-child {
    margin-bottom: 0;
    font-size: .12rem;
    color: #4162E7;
    height: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick li:last-child svg {
    width: .2rem;
    height: .2rem;
    margin-right: .08rem;
}

.quick li:last-child:hover {
    color: #fff;
}

.quick li:last-child:hover svg {
    fill: #fff;
}

.quick li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(65, 98, 231, 1);
    width: 100%;
    height: 100%;
}

.quick li a:hover {
    color: #fff;
}

.quick li a:hover svg {
    fill: #fff;
}

.quick li:hover {
    background-color: rgba(65, 98, 231, 1);

}

.quick li:hover a {
    color: #fff;
}

.quick li .cont {
    text-align: center;
}

.quick li .cont span {
    display: block;
    clear: both;
    line-height: 1;
}

.q_telcont {
    width: 2.2rem;
    position: absolute;
    top: 0;
    right: 1.24rem;
    background-color: #fff;
    border-radius: 5px;
    padding: 0.1rem 0.2rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    display: none;
    font-size: .16rem;
}

.q_telcont span {
    font-size: 0.24rem;
    font-weight: bold;
    color: rgba(65, 98, 231, 1);
}

.q_telcont.on {
    display: block;

}

.q_wechat_cont {
    /*width: 2.2rem;*/
    position: absolute;
    top: 0;
    right: 1.24rem;
    background-color: #fff;
    border-radius: 4px;
    padding: 0.3rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    display: none;
    text-align: center;
}

.q_wechat_cont img {
    max-width: 1.6rem;
}

.q_wechat_cont span {
    font-weight: bold;
}

.q_wechat_cont.on {
    display: block;
}

.q_service_cont {
    /*width: 2.2rem;*/
    position: absolute;
    top: 0;
    right: 1.24rem;
    background-color: #fff;
    border-radius: 4px;
    padding: 0.3rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    display: none;
    text-align: center;
}

.q_service_cont img {
    max-width: 1.6rem;
}

.q_service_cont span {
    font-weight: bold;
}

.q_service_cont.on {
    display: block;
}

.tab_ti {
    display: none;
    margin-bottom: 5vw;
}

.tab_ti li {
    margin: 0 3vw;
    cursor: pointer;
    line-height: 3;
    border-bottom: solid 1vw rgba(65, 98, 231, 0);
}

.tab_ti li.on {
    color: #4162E7;
    border-bottom: solid 1vw rgba(65, 98, 231, 1);
}

.nav_ti2 {
    display: none;
}

.nav_ti {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .6rem;
}

.nav_ti li {
    position: relative;

}

.nav_ti2 a {
    display: block;
    line-height: .6rem;
    margin: 0 .4rem;
    color: #333;
    position: relative;

}

.nav_ti2 a::after {
    display: block;
    content: "";
    width: 0;
    height: .03rem;
    background-color: #4162E7;
    position: absolute;
    bottom: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nav_ti2 a:hover::after {
    display: block;
    content: "";
    width: 100%;
    height: .03rem;
    background-color: #4162E7;
}

.nav_ti2 a.on::after {
    display: block;
    content: "";
    width: 100%;
    height: .03rem;
    background-color: #4162E7;
}

.nav_ti2 a.on1::after {
    display: block;
    content: "";
    width: 100%;
    height: .03rem;
    background-color: #4162E7;
}

.blank {
    height: .6rem;
}

.pa_banner {
    height: 3.74rem;
    background-position: center;
    background-repeat: no-repeat;

}

.pa_banner .pub_cont {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.pa_banner .pa_ban_txt {
    text-align: center;
}

.pa_banner .pa_ban_txt b {
    display: block;
    font-size: .44rem;
    line-height: 1;
    margin-bottom: .5rem;
}

.pa_banner .pa_ban_txt .form-search {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa_banner .pa_ban_txt input {
    width: 6.2rem;
    line-height: .48rem;
    height: .48rem;
    background-color: #fff;
    border: solid 1px #4162E7;
    text-indent: .1rem;
}

.pa_banner .pa_ban_txt button {
    height: .48rem;
    width: .48rem;
    border: solid 1px #4162E7;
    background-color: #4162E7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa_banner .pa_ban_txt svg {
    fill: #fff;
    width: .24rem;
    height: .24rem;
}

.search_hot ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .15rem;
}

.search_hot li {
    margin: 0 .05rem;
    color: #666;
}

.search_hot li a:link, .search_hot li a:visited {
    color: #666;
}

.search_hot li a:hover {
    color: #4162E7;
}

.pa_cont {
    padding: .5rem 0;
}

.pa_nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa_nav li {
    margin: 0 .2rem;
}

.pa_nav li a {
    color: #666;
    font-weight: bold;
}

.pa_nav li a:hover {
    color: #4162E7;
}

.pa_nav li a.on {
    color: #4162E7;
}

.pa_list {
    padding: .3rem 0;
    /*min-height: 1.2rem;*/
}

.list_cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #E5E6EC;

}

.list_cont .title {
    line-height: .54rem;
    width: calc(100% - 1rem);
    height: .54rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.list_cont .time {
    color: #A0A9C0;
    line-height: .54rem;
    width: 1rem;
    text-align: right;
}

.list_page {
    padding-top: 0.1rem;
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination li {
    width: .32rem;
    height: .32rem;
    line-height: .32rem;
    text-align: center;
    border: solid 1px #F5F5F7;
    margin: 0 0.05rem;
    background-color: #F5F5F7;
}

.pagination li.disabled {
    color: #999;
}

.pagination li.active {
    background-color: #4162E7;
    border: solid 1px #4162E7;
    color: #fff;
}

.pagination li a {
    display: block;
    width: 100%;
    height: 100%;
}

.pagination li a:hover {
    background-color: #4162E7;
    color: #fff;
}

.nav_ft2 {
    display: none;
}

.nav_ft2 {

}

.nav_ft2 a {
    margin-right: .6rem;
    line-height: 1;
}

.loadmore {
    text-align: center;
}

.zm_nav2 {
    display: none;
}

.pa_detail {

    padding: .5rem 0;
    background-color: #F7F8FA;
}

.detail_cont {
    padding: .35rem;
    background-color: #fff;
}

.detail_crumb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .2rem;
}

.detail_crumb .left a:link, .detail_crumb .left a:visited {
    color: #A0A9C0;
}

.detail_crumb .left a:hover {
    color: #4162E7;
}

.detail_cont .title {
    font-size: .2rem;
    font-weight: bold;
    margin-bottom: .1rem;
}

.detail_cont .time {
    color: #A0A9C0;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #E5E6EC;
    padding-bottom: .2rem;
}

.detail_cont .time svg {
    fill: #A0A9C0;
    width: .2rem;
    height: .2rem;
    margin-right: .12rem;
}

.detail_cont .cont {
    padding: .3rem 0;
    border-bottom: solid 1px #E5E6EC;
    /*min-height: 2.4rem;*/
}

.article-prevnext {
    margin-top: .3rem;
    display: flex;
    justify-content: space-between;

}

.article-prevnext li {
    width: calc((100% - .2rem) / 2);
}

.article-prevnext li span {
    display: block;
    clear: both;
    color: #A0A9C0;
    margin-bottom: .1rem;
}

.r_right {
    text-align: right;
}

.article-prevnext li a {
    display: block;
    width: 100%;
    height: .25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

