﻿/* CSS Document */
.mc{ margin: 0 auto !important;}
.wow {
    transition-delay: 0.3s;
}
.pc {
    display: block;
}
.mob {
    display: none;
}
.wrap{
	width: 90%;
    max-width: 1430px;
    padding: 0 15px;
	margin:0 auto;
}
.header {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 320px;
    z-index: 10;
    transition: all .3s;
    background-color: #FFFFFF;
    box-shadow: 0px -1px 0 #e6e6e6 inset;
    transition: all .3s;
}
.header.no-show{
    transform: translateY(-100%);
}
.header .wrap {
    width: 95%;
    max-width: 1800px;
}
.logo {
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all .3s;
    height: 80px;
}
.logo a {
    display: block;
    transition: all .3s;
}
.logo img {
    height: 41px;
    transition: all .3s;
}
.nav {
    float: right;
}
.navBox {
    margin: 0 auto;
    text-align: center;
}
.navList {
    list-style: none;
    margin: 0;
    font-size: 0;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    transition: all .3s;
}
.navList > li {
    display: inline-block;
    vertical-align: top;
}
.navList > li > a {
    position: relative;
    display: block;
    line-height: 80px;
    font-size: 18px;
    color: #333333;
    position: relative;
    margin: 0 1vw;
    transition: all .3s;
}
.navList > li > a::before{
    display: block;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--baseColor);
    transition: all .3s;
}
.navList > li > a:hover,
.navList > li.cur > a,
.navList > li.active > a{
    color: var(--baseColor);
}
.navList > li > a:hover::before,
.navList > li.cur > a::before,
.navList > li.active > a::before{
    left: 0;
    right: auto;
    width: 100%;
}
.navSecond{
    list-style: none;
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    width: 100%;
    z-index: 2;
    background-color: #FFFFFF;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
    display: none;
    text-align: center;
}
.nav1200{
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
    padding: .2rem 0;
    display: flex;
    justify-content: space-between;
}
.navTit{
    font-size: 22px;
    color: #474747;
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: .2rem;
}
.navItem{
    margin: .2rem 0 0;
}
.navCon{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    color: #474747;
    line-height: 2;
    max-width: 330px;
    margin: 0 auto;
}
.navCon li{
    width: 48%;
    margin-top: .2rem;
}
.navCon li a{
    display: block;
    color: #474747;
}
.navCon li a p{
    margin: .1rem 0;
}
.navCon li a:hover{
    color: var(--baseColor);
}

.navCon li a:hover .navIco img{
    animation: pulse 1s linear 1;
}
.navIco{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 54px;
    margin: 0 auto .1rem;
}
.navIco img{
    display: block;
    width: auto;
    max-height: 100%;
    margin: 0 auto;
}
.navItem1{
    width: 330px;
    flex-shrink: 0;
}
.navItem2,
.navItem4{
    flex: auto;
    padding-left: 80px;
    border-left: 1px solid #e6e6e6;
    padding-left: 0;
}
.navItem3{
    position: relative;
    width: 268px;
    flex-shrink: 0;
}
.navImgTop{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    line-height: 36px;
    z-index: 2;
}
.navImgTit{
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    min-width: 88px;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
}
.navImgNum{
    font-size: 14px;
    color: #474747;
    text-align: right;
    display: none;
}
.navImgNum .active{
    color: var(--baseColor);
}
.navImgLink{
    display: block;
    overflow: hidden;
}
.navImg{
    position: relative;
    height: 0;
    padding-bottom: 116%;
    overflow: hidden;
}
.navImg::before{
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: "";
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to bottom , rgba(0,0,0,0),rgba(0,0,0,0.8));
    z-index: 1;
}
.navImg .imgBg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.navImgName{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
    z-index: 2;
    text-align: left;
    font-weight: normal;
    padding: .1rem .2rem;
}
.navImgPage{
    margin: .1rem 0;
    text-align: center;
}
.navImgPage .swiper-pagination-bullet{
    width: .35rem;
    height: 3px;
    opacity: 1;
    background-color: #d9d9d9;
    border-radius: 5px;
    margin: 0 5px;
}
.navImgPage .swiper-pagination-bullet-active{
    background-color: var(--baseColor);
}
.navItem4 .navCon{
    max-width: 90%;
}
.navItem4 .navTel{
    display: flex;
    width: 100%;
    height: 54px;
    font-size: 28px;
    color: #15af2b;
    justify-content: center;
}
.navItem5{
    flex: auto;
    padding-right: 20px;
}
.navResearch{
    list-style: none;
    display: flex;
}
.navResearch li{
    padding-right: 5%;
}
.navResearch li:nth-child(1){
    width: 32%;
}
.navResearch li:nth-child(2){
    width: 50%;
}
.navResearch li:nth-child(3){
    width: 18%;
}
.navResearch .navTit{
    padding-bottom: .1rem;
    border-bottom: 1px solid #e6e6e6;
}
.navResearchCon{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.1rem;
    font-size: 16px;
    color: #474747;
    line-height: 1.6;
}
.navResearchCon p{
    width: 50%;
    padding: 0 .1rem;
    margin-bottom: .2rem;
}
.navResearchCon p a{
    color: #474747;
}
.navResearchCon p a:hover{
    color: var(--baseColor);
}
.navResearch li:nth-child(3) .navResearchCon p{
    width: 100%;
}
.navInvestor{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 18px;
    color: #474747;
    line-height: 46px;
    width: 100%;
}
.navInvestor li{
    padding: 0 2.6vw;
}
.navInvestor li a{
    color: #474747;
}
.navInvestor li a:hover{
    color: var(--baseColor);
}
.navItem6{
    width: 600px;
}
.navItem6 .navCon{
    max-width: 100%;
}
.navItem6 .navCon li{
    width: 20%;
}
.navItem6 + .navItem2{
    padding-left: 60px;
    padding-left: 0;
}
.navItem7{
    width: 420px;
    flex: none;
}
.navItem7 .navCon{
    max-width: 100%;
}
.navItem7 .navCon li{
    width: 33.33%;
}
.navItem8 .navCon li{
    width: 25%;
}
.navMob{
    display: none;
}
.navList > li:nth-child(5) .navTit,
.navList > li:nth-child(5) .navItem3{
    display: none;
}
.navRig {
    position: relative;
    float: right;
    line-height: 80px;
    text-align: right;
    font-size: 0;
    transition: all .3s;
}
.navRig li {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    position: relative;
}
.navRig li + li{
    margin-left: 20px;
}
.navRig a,
.navRig i,
.navRig span {
    display: inline-block;
    vertical-align: middle;
    color: #333333;
    line-height: 38px;
}
.navRigCon{
    position: absolute;
    left: 50%;
    top: auto;
    background-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateX(-50%);
    white-space: nowrap;
    line-height: 30px;
    box-shadow: .1rem .2rem .3rem rgba(0, 0, 0, 0.1);
    text-align: left;
    padding: .1rem 0;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}
.navRigCon::-webkit-scrollbar{
    width: .04rem;
    border-radius: .04rem;
}
.navRigCon::-webkit-scrollbar-thumb{
    background-color: var(--baseColor);
    border-radius: .04rem;
}
.navRigCon a{
    display: block;
    font-size: 16px;
    color: #333333;
    padding: 0 20px;
}
.navRigCon a:hover{
    color: var(--baseColor);
}
.navRig li.navCompany span{
    padding-right: 16px;
    background: url(../image/icon_arrow.png) right center no-repeat;
    cursor: pointer;
}
.navRig li.navCompany span i{
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(../image/icon_company.png) center center no-repeat;
    margin-top: -4px;
    margin-right: .1rem;
}
.navRig li.navCompany.cur span{
    background-image: url(../image/icon_arrow_green.png);
}
.navRig li.navCompany.cur span i{
    background-image: url(../image/icon_company_green.png);
}
.navRig li.navSearch > span {
    width: 20px;
    height: 50px;
    background: url(../image/icon_search.png) right center no-repeat;
    background-size: 20px auto;
    cursor: pointer;
}
.navRig li.navLang a i{
    width: 20px;
    height: 20px;
    background: url(../image/icon_lang.png) left center no-repeat;
    background-size: 20px auto;
    margin-right: 5px;
    margin-top: -4px;
}
.navRig li.navBtn {
    cursor: pointer;
    display: none;
}
.navRig li.navBtn::before{
    display: none;
}
.navBtn span {
    width: 22px;
    height: 30px;
    position: relative;
}
.navBtn span b {
    display: block;
    width: 100%;
    height: 2px;
    background: #333333;
    position: absolute;
    left: 0;
    top: calc((100% - 4px) / 2);
    transition: all .3s;
}
.navBtn span b:nth-child(1) {
    transform: translateY(6px) rotate(0deg);
}
.navBtn span b:nth-child(3) {
    transform: translateY(-6px) rotate(0deg);
}
.navBtn.active b:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}
.navBtn.active b:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.navBtn.active b:nth-child(2) {
    opacity: 0;
}
.searchCon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-right: 35px;
    opacity: 0;
    visibility: hidden;
    background-color: #FFFFFF;
    overflow: hidden;
    transition: all .3s;
    z-index: 1;
}
.searchWrap{
    position: relative;
    width: 100%;
}
.searchInput {
    display: block;
    width: 100%;
    height: 48px;
    padding: 11px 15px;
    line-height: 24px;
    padding-right: 40px;
    border: none;
    font-size: 16px;
    color: #4D4D4D;
    border: 1px solid #666666;
}
.searchBtn {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background: url(../image/icon_search.png) center center no-repeat;
    border: none;
    cursor: pointer;
}
.searchBtn:focus {
    border: none;
    outline: none;
}
.searchClose {
    display: block;
    width: 35px;
    height: 48px;
    background: url(../image/close1.png) right center no-repeat;
    background-size: 20px auto;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -24px;
    cursor: pointer;
    transition: all .3s ease;
}
.opened .searchCon {
    opacity: 1;
    visibility: visible;
    width: 390px;
}

.mainBg{
    position: relative;
    overflow: hidden;
    font-size: 18px;
    color: #333333;
    line-height: 2;
    background-color: #FFFFFF;
    z-index: 1;
    min-height: 50vh;
}
.grayBg{
    background-color: #F3F3F3;
}
.whiteBg{
    background-color: #FFFFFF;
}
.subComBg{
    padding: .27rem 0;
    background-color: #F8F8F8;
    border-bottom: 1px solid #e2e2e2;
}
.subComBox{
    display: flex;
    line-height: 58px;
}
.subComTit{
    font-size: 20px;
    color: #333;
    font-weight: bold;
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid #e2e2e2;
    white-space: nowrap;
    flex-shrink: 0;
}
.subComList{
    list-style: none;
    flex: auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -.15rem;
}
.subComList li{
    flex: auto;
    padding: 0 .78vw;
}
.subComList li a{
    display: block;
}
.subComList li a img{
    max-width: 7.8vw;
    max-height: 47px;
}
.footBg{
    position: relative;
    overflow: hidden;
    font-size: 16px;
    color: #595757;
    line-height: 1.8;
    background-color: #F8F8F8;
}
.footBg a{
    color: #595757;
}
.footBg a:hover{
    color: var(--baseColor);
}
.ftTop{
    padding: 50px 0;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.ftLef{
    flex: auto;
    padding-right: 100px;
}
.ftNav{
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
}
.ftNav li{
    padding: 0 10px;
}
.ftNav li h3{
    margin-bottom: 10px;
}
.ftNav li h3 a {
    font-size: 18px;
    color: #333333;
    line-height: 2;
    transition: all .3s;
}
.ftCon p{
    margin: 5px 0;
}
.ftCon p a{
    color: #808080;
    transition: all .3s;
}
.ftCon p a:hover {
    color: var(--baseColor);
}
.wxList {
    float: right;
    width: 20%;
    max-width: 110px;
    list-style: none;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}
.wxList li {
    width: 100%;
}
.wxList img {
    display: block;
    max-width: 100%;
    height: auto;
}
.wxList p {
    margin: .1rem 0;
}
.copyright{
    line-height: 2;
    padding: .24rem 0;
    border-top: 1px solid #e2e2e2;
    text-align: center;
}
.copyright a{
    color: #595757;
}

/* 在线客服 */
.onLine {
    list-style: none;
    position: fixed;
    right: 1%;
    bottom: 0%;
    transform: translateY(-25%);
    z-index: 1;
}
.onLine li {
    position: relative;
    margin-top: 6px;
}
.onLine li.onMob {
    display: none;
}
.onLine li a {
    display: block;
}
.onIco {
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    overflow: hidden;
    background-size: 24px auto !important;
}
.onKefu{
    background: url(../image/on_kefu.png) center center #FFFFFF no-repeat;
}
.onTel{
    background: url(../image/on_tel.png) center center #FFFFFF no-repeat;
}
.onWx{
    background: url(../image/on_wx.png) center center #FFFFFF no-repeat;
}
.onIco img {
    width: 100%;
}
.onIco svg{
    display: block;
    margin: 0 auto;
    margin-top: 7px;
}
.onCon {
    position: absolute;
    right: 100%;
    bottom: 0;
    width: auto;
    white-space: nowrap;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    padding-right: 10px;
    margin-right: 10px;
    transition: all .3s linear 0s;
}
.onCon::before{
    display: block;
    content: "";
    position: absolute;
    right: 5px;
    bottom: 15px;
    width: 0;
    height: 0;
    border-left: 6px solid var(--baseColor);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.onText{
    padding: 8px 15px;
    border-radius: 4px;
    background-color: var(--baseColor);
}
.onWx + .onCon{
    width: 130px;
    line-height: 1.2;
    white-space: normal;
}
.onWx + .onCon img{
    width: 100%;
    margin: 0 auto 5px;
}
.onWx + .onCon .onText{
    padding: 10px;
}
.onLine li a:hover .onKefu{
    background: url(../image/on_kefu_white.png) center center var(--baseColor) no-repeat;
}
.onLine li a:hover .onTel{
    background: url(../image/on_tel_white.png) center center var(--baseColor) no-repeat;
}
.onLine li a:hover .onWx{
    background: url(../image/on_wx_white.png) center center var(--baseColor) no-repeat;
}
.onLine li a:hover .onIco img {
    animation: swing 1s linear infinite;
}
.onLine li a:hover .onCon {
    opacity: 1;
    visibility: visible;
    margin: 0;
}
#top .onIco{
    background-color: var(--baseColor);
}

/* home-public */
.hmTit {
    text-align: center;
    margin: .4rem 0;
}
.hmCn {
    font-size: 36px;
    color: #333333;
    line-height: 1.2;
    font-weight: bold;
}
.hmLine {
    display: block;
    width: 100%;
    max-width: .42rem;
    height: .02rem;
    background: #0054A7;
    border-radius: 1px;
    margin: .1rem auto;
}
.hmDes {
    display: block;
    font-size: 18px;
    color: #333333;
    line-height: 2;
    max-width: 1260px;
    margin: .2rem auto;
}
.hmDes img{
    max-width: 100% !important;
    height: auto !important;
}
.hmTit + .hmDes{
    margin: 0 auto .5rem;
}
.hmTit_white .hmCn{
    color: #FFFFFF;
}
.hmTit_white .hmLine{
    background-color: #FFFFFF;
}

.hmPrev,
.hmNext{
    position: absolute;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    color: #484848;
    line-height: 40px;
    background: #FFFFFF;
    box-shadow: 3px 4px 9px 0px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    transition: all .3s;
}
.hmPrev{
    right: 100%;
    padding-right: 2px;
    transform: translateX(-100%);
}
.hmNext{
    left: 100%;
    padding-left: 4px;
    transform: translateX(100%);
}
.hmPrev.swiper-button-disabled,
.hmNext.swiper-button-disabled {
    opacity: .5;
    cursor: no-drop;
}
.hmPrev:not(.swiper-button-disabled):hover,
.hmNext:not(.swiper-button-disabled):hover {
    color: #FFFFFF;
    background: #0054A7;
}

.botBtn{
    margin-top: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.btnPrev,
.btnNext{
    width: 150px;
    height: 40px;
    margin: 0 .3rem;
    background-repeat: no-repeat;
    background-size: 28.67% auto;
    background-color: #F5F5F5;
    border-radius: 20px;
    cursor: pointer;
    transition: all .3s;
}
.btnPrev{
    background-image: url(../image/btnPrev.png);
    background-position: center 45%;
}
.btnPrev:not(.swiper-button-disabled):hover{
    background-color: var(--blueColor);
    background-image: url(../image/btnPrev_hover.png);
}
.btnNext{
    background-image: url(../image/btnNext.png);
    background-position: center 55%;
}
.btnNext:not(.swiper-button-disabled):hover {
    background-color: var(--blueColor);
    background-image: url(../image/btnNext_hover.png);
}
/* swiper-number-page */
.btnPage{
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 .3rem;
    background: url(../image/btnPage.png) center center no-repeat;
    background-size: cover;
    font-family: Arial;
    line-height: 1;
    bottom: 0;
}
.btnPage span{
    position: absolute;
}
.btnPage .current {
    left: 0;
    top: 0;
    font-size: 26px;
    font-family: Arial;
    color: #1B1B1B;
    transform: translate(-25%,-10%);
}
.btnPage .total{
    right: 0;
    bottom: 0;
    font-size: 18px;
    color: #727272;
}
/* swiper-dot-page */
.dotPage{
    margin-top: .5rem;
    text-align: center;
}
.dotPage .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background-color: #CFCFCF;
    opacity: 1;
    border-radius: 5px;
    margin: 0 .04rem;
}
.dotPage .swiper-pagination-bullet-active{
    width: 26px;
    max-width: .26rem;
    background-color: var(--blueColor);
}

/* 页码 */
.page{
    margin: 70px 0;
    text-align: center;
}
.page a,
.page span,
.page p{
    display: inline-block !important;
    vertical-align: middle;
    width: 40px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: #7E7E7E;
}
.page p{
    width: auto;
    margin-left: .5rem;
}
.page p strong{
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    white-space: nowrap;
    font-weight: normal;
}
.page p input{
    display: inline-block;
    vertical-align: middle;
    width: 43px;
    height: 29px;
    background: #FFFFFF;
    border: 1px solid #AAAAAA;
    text-align: center;
    font-size: 16px;
    font-family: Arial;
    color: #7E7E7E;
    margin: 0 .1rem;
}
.page a:hover,
.page a.active{
    color: var(--baseColor);
}
.page a.prev{
    background: url(../image/pagePrev.png) center center no-repeat;
}
.page a.prev:hover{
    background-image: url(../image/pagePrev_Hov.png);
}
.page a.next{
    background: url(../image/pageNext.png) center center no-repeat;
}
.page a.next:hover{
    background-image: url(../image/pageNext_Hov.png);
}


/* 内页banner */
.banIn{
    position: relative;
    height: 460px;
    background-color: #000000;
}
.banMini{
    height: 2.5rem !important;
    max-height: 250px;
}
.banIn .img{
    width: 100%;
    height: 100%;
}
.banIn .banText {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    text-align: center;
    z-index: 2;
}
.inTit{
    font-size: 50px;
    line-height: 1.4;
    margin: .1rem 0;
    font-weight: bold;
}
.inLine{
    display: block;
    width: 80px;
    max-width: 1rem;
    height: .05rem;
    background: #FFFFFF;
    margin: .2rem auto;
}
.inDes{
    font-size: 16px;
    line-height: 1.4;
    max-width: 600px;
}
.banSelect{
    max-width: 600px;
    margin: .1rem auto;
}
.banSelect .layui-form-select {
    font-size: 20px;
    color: #000000;
}
.banSelect .layui-form-select .layui-edge {
    right: .26rem;
    border-width: 10px;
    margin-top: -5px;
    border-top-color: #000000;
}
.banSelect .layui-form-selected .layui-edge {
    margin-top: -15px;
}
.banSelect .layui-form-select .layui-input {
    height: 50px;
    padding: 0 .5rem;
    border-radius: 25px;
}
.banSelect .layui-form-select dl {
    top: 50px;
}
.banSelect .layui-form-select dl dd {
    padding: .04rem 0;
}
.banSelect .layui-form-select dl dd.layui-this {
    background-color: var(--blueColor);
}

.goBack{
    position: absolute;
    right: 15px;
    top: 0;
    display: block;
    width: 150px;
    line-height: 38px;
    border: 1px solid #666666;
    text-align: center;
    font-size: 16px;
    color: #333333;
    transition: all .3s;
}
.goBack i{
    display: inline-block;
    vertical-align: middle;
    width: 19px;
    height: 16px;
    background: url(../image/goBack.png) center center no-repeat;
    background-size: cover;
    margin-right: .1rem;
    margin-top: -4px;
}
.goBack:hover{
    color: #FFFFFF;
    border: 1px solid var(--baseColor);
    background-color: var(--baseColor);
}
.goBack:hover i{
    background-image: url(../image/goBack_white.png);
}
.goBack + .breadNav{
    margin-right: 180px;
}
.goBack.hides{
    display: none;
}
/* 面包屑导航 */
.breadNavBg{
    padding: .15rem 0;
    line-height: 28px;
}
.breadNavBg .wrap{
    position: relative;
}
.breadNav{
    font-size: 0;
    list-style: none;
    background: url(../image/breadBg.png) left center no-repeat;
    background-size: 17px auto;
    padding-left: 25px;
    color: #333333;
}
.breadNav li{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
}
.breadNav li a{
    color: #333333;
}
.breadNav li a:hover{
    color: var(--baseColor);
}
.breadNav li + li{
    padding-left: 12px;
    margin-left: 8px;
    white-space: nowrap;
    max-width: 400px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.breadNav li + li::before{
    display: block;
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 130%;
}

/* 分类 */
.sortBg{
    position: relative;
    box-shadow: 0 1px 0 #D9D9D9;
}
.sort{
    position: relative;
}
.sort .swiper-wrapper{
    align-items: center;
}
.sort .swiper-slide{
    position: relative;
    width: auto;
    padding: 10px 0;
}
.sort .swiper-slide a{
    display: block;
    font-size: 24px;
    line-height: 60px;
    color: #333333;
}
.sort .swiper-slide a:hover{
    color: var(--blueColor);
}
.sort .swiper-slide.active::after{
    display: block;
    content: "";
    width: 60px;
    max-width: .6rem;
    height: 2px;
    background: #0054A7;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.sort .swiper-slide.active a{
    font-size: 32px;
    font-size: 28px;
    color: var(--blueColor);
}
.sortBtn{
    position: absolute;
    top: 50%;
    width: 20px;
    height: 40px;
    line-height: 38px;
    margin-top: -20px;
    text-align: center;
    font-size: 32px;
    color: #C1C1C1;
    z-index: 1;
    cursor: pointer;
}
.sortPrev {
    left: -10px;
    transform: translateX(-100%);
}
.sortNext {
    right: -10px;
    transform: translateX(100%);
}
.sortBtn.swiper-button-disabled{
    display: none;
}
.sortBtn:hover{
    color: var(--baseColor);
}

/* 遮罩 */
.maskBg{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
    display: none;
}
.mask{
    display: block;
    width: 96%;
    max-width: 1200px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    margin: 0 auto;
    padding: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
     transform: translate(-50%,-50%);
}
.close{
    text-align: right;
}
.close span{
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: url(https://www.jiaxun.com/images/close2.png) center center no-repeat;
    background-size: contain;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all .3s;
}
.close span:hover{
    transform: rotate(90deg);
}

/* 锚点 */
.anchor{
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}

@media (max-width:1600px) {
    .navList > li > a{
        font-size: 16px;
    }
    .navTit{
        font-size: 20px;
    }
    .navCon{
        font-size: 16px;
    }
    .navIco{
        height: 44px;
    }
    .navItem4 .navTel{
        height: 44px;
    }
    .navRig li{
        font-size: 16px;
    }
    .navRig li + li{
        margin-left: 15px;
    }
    .navRigCon a{
        font-size: 14px;
    }
    .hmCn{
        font-size: 30px;
    }
    .hmDes{
        font-size: 16px;
    }
    .hmPrev{
        transform: translateX(-50%);
    }
    .hmNext{
        transform: translateX(50%);
    }
    .banIn{
        height: 400px;
    }
    .inTit{
        font-size: 40px;
    }
    .banSelect .layui-form-select{
        font-size: 18px;
    }
    .banSelect .layui-form-select .layui-input{
        height: 44px;
        padding: 0 .3rem;
    }
    .banSelect .layui-form-select dl{
        top: 44px;
    }
    .banSelect .layui-form-select .layui-edge{
        border-width: 6px;
        margin-top: -3px;
    }
    .banSelect .layui-form-selected .layui-edge {
        margin-top: -5px;
    }
    :root .layui-form-selected .layui-edge{
        margin-top: -9px;
    }
    .mainBg {
        font-size: 16px;
    }
    .botBtn{
        margin-top: .4rem;
    }
    .btnPrev,
    .btnNext{
        width: 120px;
        height: 36px;
        margin: 0 .2rem;
    }
    .btnPage{
        margin: 0 .2rem;
    }
    .btnPage .current{
        font-size: 24px;
    }
    .btnPage .total{
        font-size: 16px;
    }
    .dotPage{
        margin-top: .4rem;
    }
    .sort .swiper-slide a{
        font-size: 20px;
    }
    .sort .swiper-slide.active a{
        font-size: 26px;
        font-size: 24px;
    }
    .goBack{
        width: 120px;
        font-size: 14px;
        line-height: 34px;
    }
    .goBack i{
        margin-right: 5px;
    }
    .page a,
    .page span,
    .page p{
        font-size: 18px;
    }
    .page a.prev,
    .page a.next{
        background-size: 18px auto;
    }

}
@media (max-width:1400px) {
    .logo img{
        height: 36px;
    }
    .navRig li.navCompany span i{
        width: 18px;
        height: 18px;
        background-size: 18px auto;
    }
    .navRig li.navLang a i{
        width: 18px;
        height: 18px;
        background-size: 18px auto;
    }
    .navRig li.navSearch > span{
        width: 18px;
        background-size: 18px auto;
    }
    .hmCn{
        font-size: 24px;
    }
    .footBg{
        font-size: 14px;
    }
    .ftNav li h3 a{
        font-size: 16px;
    }
    .wxList{
        font-size: 14px;
    }
    .banIn {
        height: 360px;
    }
    .inTit {
        font-size: 36px;
    }
    .banSelect .layui-form-select {
        font-size: 16px;
    }
    .banSelect .layui-form-select dl dd{
        padding: .1rem 0;
        line-height: 24px;
    }
    .sort .swiper-slide a{
        font-size: 18px;
    }
    .sort .swiper-slide.active a{
        font-size: 24px;
        font-size: 22px;
    }

}
@media (max-width:1200px) {
    .wrap {
        width: 100%;
        max-width: 970px;
    }
    .header .wrap{
        width: 100%;
    }
    .logo {
        float: left;
        height: 60px;
    }
    .logo img {
        height: 30px;
    }
    .navRig {
        position: static;
        float: right;
        line-height: 60px;
        margin: 0;
    }
    .navRig li {
        position: static;
        margin-left: 0;
        font-size: 14px;
    }
    .navRig li + li{
        margin-left: .2rem;
    }
    .navRigCon{
        margin-top: -10px;
    }
    .navRig li.navCompany{
        display: none;
    }
    .navRig li.navLang{
        display: none;
    }
    .navRig li.navSearch > span {
        width: 22px;
        height: 40px;
        margin-top: -2px;
        background-image: url(../image/icon_search_mob.png);
        background-size: 18px auto;
        background-position: center center;
    }
    .searchInput{
        height: 40px;
        padding: 5px 15px;
        padding-right: 40px;
        line-height: 28px;
        font-size: 14px;
    }
    .opened .searchCon{
        width: calc(100% - 30px);
        margin: 0 15px;
    }
    .navRig li.navBtn {
        display: inline-block;
    }
    .navBox {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        width: 62%;
        padding: 0 .3rem;
        overflow-y: auto;
        z-index: 2;
        background-color: #FFFFFF;
        display: none;
    }
    .navShade{
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
    }
    .navTop{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 60px;
        position: sticky;
        top: 0;
        background-color: #FFFFFF;
        z-index: 2;
    }
    .navTop span{
        display: block;
        width: 22px;
        height: 30px;
        background-size: 18px auto;
        background-position: center center;
        background-repeat: no-repeat;
        margin-left: .2rem;
    }
    .searchIcoBtn{
        display: none !important;
        background-image: url(../image/icon_search_mob.png);
    }
    .closeIcoBtn{
        background-image: url(../image/close_mob.png);
    }
    .navList {
        position: relative;
        text-align: left;
        display: block;
        margin: 0 auto;
        border-bottom: 1px solid #e6e6e6;
    }
    .navList > li {
        display: block;
        margin: 0;
        text-align: left;
    }
    .navList > li > a {
        height: auto;
        line-height: 46px;
        padding: 0 !important;
        padding-right: 46px;
    }
    .navList > li > a::before {
        display: none;
    }
    .navSecond{
        position: static;
        transform: translateX(0);
        text-align: left;
        box-shadow: none;
    }
    .navClose{
        display: block;
        position: absolute;
        left: 15px;
        top: 0;
        width: 30px;
        height: 60px;
        background: url(../image/close_mob.png) center center no-repeat;
        background-size: 18px auto;
        z-index: 2;
    }
    .navH2{
        position: sticky;
        top: 0;
        text-align: center;
        height: 60px;
        font-size: 16px;
        color: #0C0C0C;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        background-color: #FFFFFF;
        font-weight: normal;
        z-index: 1;
    }
    .nav1200{
        display: block;
        width: 100%;
        max-width: 100%;
        height: calc(100% - 60px);
        padding: 0 .3rem;
        overflow-y: auto;
    }
    .navItem{
        width: 100%;
        border: none;
        padding: 0;
        margin: 0 0 .3rem;
    }
    .navTit{
        font-size: 16px;
        border-bottom: 1px solid #e6e6e6;
        padding-bottom: .1rem;
    }
    .navItem4 .navCon,
    .navCon{
        max-width: 100%;
        text-align: center;
        font-size: 14px;
        line-height: 1.4;
    }
    .navCon li{
        width: 25% !important;
    }
    .navCon li p{
        margin: .15rem 0;
    }
    .navItem4 .navTel,
    .navIco{
        max-height: .6rem;
    }
    .navIco img{
        margin: 0 auto;
    }
    .navItem3{
        margin-bottom: .6rem;
    }
    .navImgTop{
        position: static;
        border-bottom: 1px solid #e6e6e6;
        padding-bottom: .1rem;
        margin-bottom: .2rem;
    }
    .navImgList{
        max-width: 335px;
    }
    .navImgList .swiper-slide{
        width: 70%;
    }
    .navImgTit{
        color: #474747;
        background: transparent;
        min-width: 0;
        font-weight: bold;
    }
    .navImgNum{
        display: block;
    }
    .navImg{
        border-radius: .1rem;
        overflow: hidden;
    }
    .navImg::before{
        display: none;
    }
    .navImgName{
        position: static;
        color: #000000;
        padding: .1rem 0;
        font-size: 14px;
    }
    .navImgPage{
        display: none;
    }
    .navItem4 .navCon li:nth-child(2){
        width: 50% !important;
    }
    .navItem4 .navTel{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: .32rem;
    }
    .navSecond.fixed{
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: block;
    }
    .navMob{
        display: block;
        border: none;
        margin: .3rem 0;
    }
    .navMob .subCompany{
        display: inline-block;
        vertical-align: middle;
        margin-top: -4px;
        margin-right: 5px;
        width: 18px;
        height: 18px;
        background: url(../image/icon_company.png) center center no-repeat;
        background-size: 18px auto;
    }
    .navMob .langEn{
        display: inline-block;
        vertical-align: middle;
        margin-top: -4px;
        margin-right: 5px;
        width: 18px;
        height: 18px;
        background: url(../image/icon_lang.png) center center no-repeat;
        background-size: 18px auto;
    }
    .navResearch{
        display: block;
    }
    .navResearch li{
        padding: 0 !important;
        width: 100% !important;
        margin-bottom: .2rem;
    }
    .navResearchCon{
        text-align: center;
        font-size: 14px;
    }
    .navResearchCon p{
        width: 50% !important;
    }
    .navResearchCon p a{
        display: block;
        height: 100%;
        background-color: #F8F8F8;
        padding: .15rem .1rem;
        line-height: 1.6;
    }
    .navInvestor{
        font-size: 14px;
        text-align: center;
        margin: 0 -.1rem;
    }
    .navInvestor li{
        width: 50%;
        padding: 0 .1rem;
        margin-bottom: .2rem;
    }
    .navInvestor li a{
        display: block;
        background-color: #F8F8F8;
    }
    .navSecond .navRigCon{
        display: block;
        box-shadow: none;
        position: static;
        max-height: none;
        margin: 0;
        transform: translateX(0);
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -.1rem;
        text-align: center;
    }
    .navSecond .navRigCon p{
        width: 50%;
        padding: 0 .1rem;
        margin-bottom: .2rem;
    }
    .navSecond .navRigCon p a{
        display: block;
        background-color: #F8F8F8;
        padding: .1rem;
        height: 100%;
    }
    .navList > li:nth-child(5) .navTit,
    .navList > li:nth-child(5) .navItem3{
        display: block;
    }

    .subComList{
        text-align: center;
    }
    .subComList li{
        flex: 0 0 25%;
    }
    .subComList li img{
        max-width: 100%;
        height: auto;
    }

    .hmBtn{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: .3rem 0;
    }
    .hmPrev,
    .hmNext{
        position: static;
        margin: 0 .1rem;
        transform: translateX(0);
        width: 36px;
        height: 36px;
        line-height: 34px;
        font-size: 24px;
        color: var(--blueColor);
        border: 1px solid var(--blueColor);
        box-shadow: none;
    }

    .page{
        margin: .5rem 0;
    }
    .page a,
    .page span{
        width: 32px;
        height: 32px;
        line-height: 30px;
    }

    .banIn{
        height: 3.8rem;
    }
    .banIn .banText{
        text-align: center;
    }
    .inTit{
        font-size: .32rem;
    }
    .inDes{
        font-size: 14px;
        margin: 0 auto;
    }

    .sort{
        padding: 0 10px;
    }
    .sortPrev{
        left: 4px;
    }
    .sortNext{
        right: 4px;
    }
}

@media (max-width:991px) {
    .subComBg{
        background-color: #FFFFFF;
        border: none;
    }
    .subComBox{
        display: block;
    }
    .subComTit{
        position: relative;
        border: none;
        padding: 0;
        margin: 0;
        text-align: center;
        font-size: 24px;
        margin-bottom: .3rem;
    }
    .subComTit::after{
        display: block;
        width: 100%;
        content: "";
        max-width: .42rem;
        height: .02rem;
        background: #0054A7;
        border-radius: 1px;
        margin: .1rem auto;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
    }
    .subComList{
        margin: 0 -.1rem;
    }
    .subComList li{
        flex: 0 0 33.33%;
        padding: .1rem;
    }
    .subComList li a{
        border: 1px solid #E2E2E2;
        min-height: 1.4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .subComList li a img{
        max-width: 80%;
        max-height: 80%;
    }
    .ftTop{
        display: block;
        padding: 0;
        overflow: hidden;
    }
    .ftLef{
        padding: 0;
        margin: .3rem 0 .5rem;
    }
    .ftNav{
        display: block;
    }
    .ftNav li{
        margin-top: .15rem;
    }
    .ftNav li h3{
        border-bottom: 1px solid #DADADA;
    }
    .ftNav li h3 a{
        position: relative;
        display: block;
        line-height: 40px;
    }
    .ftNav li.dropdown h3 a::after{
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        content: "";
        width: 14px;
        height: 40px;
        background: url(../image/ftIco.png) right center no-repeat;
        background-size: 12px auto;
        transition: all .3s;
    }
    .ftNav li.cur h3 a::after{
        transform: rotate(-180deg);
    }
    .ftCon{
        display: none;
        overflow: hidden;
    }
    .wxList{
        float: none;
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin: .3rem 0;
    }
    .wxList img{
        margin: 0 auto;
        max-width: 1.6rem;
    }

    .sort .swiper-slide a{
        font-size: 16px;
        line-height: 30px;
    }
    .sort .swiper-slide.active a{
        font-size: 20px;
    }
    .breadNavBg .goBack{
        display: none;
    }
    .goBack.hides{
        position: static;
        display: block;
        margin: .3rem auto;
    }
    .goBack + .breadNav{
        margin-right: 0;
    }

}
@media (max-width:767px) {
    .hmCn{
        font-size: 20px;
    }
    .hmDes{
        font-size: 14px;
    }
    .mainBg {
        font-size: 14px;
    }
    .page a,
    .page span,
    .page p{
        font-size: 16px;
    }
    .page a.prev,
    .page a.next{
        background-size: 16px auto;
    }
    .page p{
        display: block !important;
        margin: .1rem auto 0;
    }
    .page p strong{
        font-size: 14px;
    }
    .page p input{
        width: 40px;
        height: 26px;
        line-height: 26px;
        font-size: 14px;
    }
}

@media (max-width:640px) {
    .navList > li > a{
        font-size: 14px;
    }
    .navItem6 .navCon li{
        width: 25%;
    }
    .navItem6 + .navItem2{
        padding-left: 0;
    }
    .searchInput {
        font-size: 14px;
    }
    .searchBtn{
        background-size: 18px auto;
    }
    .searchClose{
        background-size: 16px auto;
    }
    .ftRig{
        display: none;
    }
    .ftNav{
        flex-wrap: wrap;
    }
    .ftNav li{
        width: 100%;
    }
    .ftNav li h3{
        margin: 10px 0 0;
    }
    .ftTit{
        line-height: 1.2;
    }
    .ftCon{
        margin: 0 -5px;
    }
    .ftCon p{
        display: inline-block;
        vertical-align: middle;
        padding: 0 5px;
    }
    .copyright{
        font-size: 12px;
        padding: 10px 15px;
    }
    .banSelect .layui-form-select {
        font-size: 14px;
    }
    .banSelect .layui-form-select .layui-input{
        height: 38px;
    }
    .banSelect .layui-form-select dl{
        top: 38px;
    }
    :root .layui-form-selected .layui-edge{
        margin-top: -9px;
    }

    .sort .swiper-slide a{
        font-size: 14px;
    }
    .sort .swiper-slide.active a{
        font-size: 16px;
    }
    .sortBtn{
        font-size: 24px;
    }

    /* 页码 */
    .page{
        margin: .3rem 0;
    }
    .breadNav{
        background-size: 14px auto;
        background-position: left 5px;
        padding-left: 16px;
    }
    .breadNav li + li{
        padding-left: 10px;
        margin-left: 6px;
        max-width: 2.8rem;
    }

}
@media (max-width:460px) {
    /* 页码 */
    /* .page a{
        display: none;
    }
    .page a.first,
    .page a.prev,
    .page a.next,
    .page a.last{
        display: inline-block;
    } */
    .navImgList{
        max-width: 100%;
    }
    .page{
        font-size: 0;
    }
    .page a,
    .page span{
        width: 26px;
        height: 26px;
        line-height: 24px;
        font-size: 14px;
        margin: 1px;
    }
    .onLine{
        right: 0;
    }
    .onIco{
        width: 34px;
        height: 34px;
        background-size: 20px auto !important;
    }
    .onCon::before{
        bottom: 10px;
    }
    .onText{
        padding: 2px 15px;
    }

    .hmPrev,
    .hmNext{
        width: 32px;
        height: 32px;
        line-height: 30px;
    }

    .dotPage{
        margin-top: .2rem;
    }
    .dotPage .swiper-pagination-bullet{
        width: 8px;
        height: 8px;
        margin: 0 0.08rem;
    }
    .dotPage .swiper-pagination-bullet-active{
        width: .4rem;
        max-width: .4rem;
    }

    .btnPrev,
    .btnNext{
        width: 80px;
        height: 28px;
        margin: 0 .1rem;
    }
    .btnPage{
        width: 30px;
        height: 30px;
    }
    .btnPage .current{
        font-size: 18px;
    }
    .btnPage .total{
        font-size: 14px;
    }

    .sort .swiper-slide a{
        font-size: 12px;
        line-height: 24px;
    }
    .sort .swiper-slide.active a{
        font-size: 14px;
    }
}