@charset "UTF-8";
/* *{
    
    -webkit-tap-highlight-color:transparent;
 
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    -o-user-select:none;
    user-select:none;
} */
body{
    position: relative;
    /* padding-top: 1.6rem; */
    font-family: 'Microsoft YaHei', 'Microsoft YaHei UI', 'WenQuanYi Micro Hei', Arial, sans-serif;
    overflow-x: hidden;
}
/* bootstrap modal闪动问题 */
body.modal-open { 
    padding-right: 0 !important;
    overflow-y: scroll;
}
/* 重置bootstrap的样式 */
[class^="col-"]{
    padding: 0;
}
.row{
    margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    margin-bottom: 0; 
}

a:hover {
	color: #0350a0;
    text-decoration: none;
}
ul, dl, li{
    list-style: none;
    padding: 0;
}
input,textarea{      
    -webkit-user-select:auto;
    -ms-user-select:auto;
    -ms-user-select:auto;
    -o-user-select:auto;
    user-select:auto;
}  
/* 清除浮动 */
.clearfix:after{
    display:block;
    overflow:hidden; 
    clear:both; 
    height:0; 
    visibility:hidden; 
    content:".";
}
.clearfix{
    *zoom:1;
}
img{
    display: block;
    max-width: 100%;
}
/* 图片放大 */
.scale-img  {
    overflow: hidden;
}
.scale-img img{
    -webkit-transition: all .5s;
    -ms-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.scale-img:hover img{
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.modal-dialog {
    max-width: inherit !important;
}
/* .modal-dialog video{
    display: block;
    width: 100%;
} */
.modal-dialog img{
    display: block;
    max-width: 100%;
}
.modal-header{
    padding: 0;
}
.modal-header .close{
    padding: 0;
    margin: 0;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 9;
}
.modal-content{
    display: inline-block;
    width: auto;
    margin: 0 auto;
}
/* 公共样式 */
@media (max-width: 1200px){
    .modal-dialog {
        max-width: 94%;
    }
}
@media (max-width: 768px){
    .modal-header{
        padding: 0;
    }
    .modal-title{
        height: 40px;
        padding: 0 16px;
        line-height: 40px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .modal-header .close{
        top: 5px;
        right: 5px;
    }
    .modal-body {
        padding: 5px;
    }
}
.w1200 {
    width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1200px){
    .w1200 {
        width: 100%;
        padding: 0 .6rem;
    }
}


.button {
    position: relative;
    display: block;
    width: 140px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 40px;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}
.button-inner {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 22px;
    font-size: 14px;
    color: #010101;
    text-align: center;
    -webkit-transition: color 0.2s ease-in;
    -ms-transition: color 0.2s ease-in;
    -o-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in;
}
.button-mask {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: #222021;
    -webkit-transition: top 0.2s ease-in;
    -ms-transition: top 0.2s ease-in;
    -o-transition: top 0.2s ease-in;
    transition: top 0.2s ease-in;
}
.button:hover .button-inner{
    color: #fff;
}
.button:hover .button-mask{
    top: 0;
}


.loadingContainer{
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
}
.loading4 {
    width: 150px;
    margin: 50px auto;
    text-align: center;
}

.loading4>div {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: inline-block;
    background-color: #e60012;
    -webkit-animation: three 1.4s infinite ease-in-out;
    animation: three 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.loading4 .three1 {
    -webkit-animation-delay: -0.30s;
    animation-delay: -0.30s;
}

.loading4 .three2 {
    -webkit-animation-delay: -0.15s;
    animation-delay: -0.15s;
}

@-webkit-keyframes three {

    0%,
    100%,
    80% {
        -webkit-transform: scale(0.0);
        transform: scale(0.0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@keyframes three {

    0%,
    100%,
    80% {
        -webkit-transform: scale(0.0);
        transform: scale(0.0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.mCSB_inside > .mCSB_container {
    margin-right: 0;
}
.mCSB_scrollTools {
    width: 6px;
    right: 2px;
}
.mCSB_scrollTools .mCSB_draggerRail {
    width: 6px;
    background-color: transparent;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background-color: rgba(0, 0, 0, 0.2) !important;
}

/* 头部样式 */
.header {
    position: relative;
    z-index: 99;
    /* position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;  */
}
.header .header-dark {
    -webkit-transition: ease .5s;
    -ms-transition: ease .5s;
    transition: ease .5s;
}
.header .navbar {    
    flex-flow: column nowrap;
    position: relative;
    z-index: 99;
    width: 100%;
    padding: 0;
    background: #fff;
}
.header .navbar-inner{
    width: 100%;
    padding: .56rem 0;
    border-bottom: 1px solid #eee;
}
.header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .navbar-brand {
    padding: 0;
    margin: 0 .1rem;
}
.header .navbar-brand img {
    height: .96rem;
    min-height: 36px;
    margin: 0 auto;
    -webkit-transition: ease .5s;
    -ms-transition: ease .5s;
    transition: ease .5s;

}
.languages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.language-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: .72rem;
    margin-left: .4rem;
    padding: 0 .3rem 0 .2rem;
    font-size: 14px;
    line-height: .72rem;
    color: #444;
    background-color: #f1f1f1;
    border-radius: .72rem;
}
.language-item img {
    width: .5rem;
    height: .5rem;
    margin-right: .2rem;
    border-radius: .5rem;
}
.navbar-toggler{
    /* position: absolute;
    right: .6rem;
    top: 50%;
    float: right; */
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    -webkit-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    /* -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); */
}
.navbar-toggler .line{
    display: block;
    height: 2px;
    width: 30px;
    margin-bottom: 5px;
    background-color: #555;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    backface-visibility: hidden;
}
.navbar-toggler .line:last-child{
    margin-bottom: 0;
}
.navbar-toggler.on .line{
    background-color: #000;
}
.navbar-toggler.on .line1{
    -webkit-transform: rotate(45deg) translate(6px, 9px);
    -ms-transform: rotate(45deg) translate(6px, 9px);
    -o-transform: rotate(45deg) translate(6px, 9px);
    transform: rotate(45deg) translate(6px, 9px);
}
.navbar-toggler.on .line2{
    opacity: 0;
}
.navbar-toggler.on .line3{
    -webkit-transform: rotate(-45deg) translate(0, -5px);
    -ms-transform: rotate(-45deg) translate(0, -5px);
    -o-transform: rotate(-45deg) translate(0, -5px);
    transform: rotate(-45deg) translate(0, -5px);
}

.header .navbar-collapse {
    position: relative;
    width: 100%;
}
.header .navbar-nav {
    /* position: relative;
    flex: 1; */
}
.header .nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex: 1;
    height: 1.24rem;
}
.header .navbar-nav .nav-link {
    padding: 0 !important;
    font-size: .36rem;
    line-height: 1.2rem;
    color: #333;
    /* -webkit-transition: ease .5s;
    -ms-transition: ease .5s;
    transition: ease .5s; */
    border-bottom: .04rem solid transparent;
}
.header .nav-item.active .nav-link{
    color: #333;
    border-bottom-color: #0350a0;
}

.pro-subnav {
    position: absolute;
    left: 0;
    top: 3.34rem;
    z-index: 98;
    display: none;
    width: 100%;
    background-color: #f4f4f4;
    border-top: .04rem solid #eee;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
}
.pro-subnav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.pro-subnav-left {
    width: 33.75%;
    height: 12.24rem;
    padding: .72rem 0;
}
.pro-subnav-right {
    width: 45.5%;
    height: 12.24rem;
    padding: .72rem 0;
    background-color: #fff;
}
.subnav-left-ul,
.subnav-right-ul {
    margin: 0;
}
.subnav-right-ul {
    display: none;
}
.subnav-left-li a,
.subnav-right-li a {
    display: block;
    line-height: 1.64rem;
    color: #5a5a5a;
    cursor: pointer;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    transition: all .2s;
}
.subnav-left-li a {
    padding: 0 .72rem;
    font-size: .4rem;
}
.subnav-right-li a {
    padding: 0 1.1rem;
    font-size: .36rem;
}
.subnav-right-li .iconfont {
    margin-right: .3rem;
    color: #999;
}
.subnav-right-ul.active {
    display: block;
}
.subnav-left-li.active {
    background-color: #fff;
}
.subnav-left-li.active a {
    color: #0350a0;
}
.subnav-right-li a:hover,
.subnav-right-li a:hover .iconfont {
    color: #0350a0;
}


@media (max-width: 1200px){
    body {
        padding-top: 50px;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    .header .navbar-inner {
        height: 50px;
        padding: 10px 15px;
    }
    .header-top {
        padding: 0;
    }
    .header .navbar-brand img {
        height: 30px;
        min-height: 30px;
    }
    .languages {
        display: none;
    }
    /* .header .navbar {
        height: 1.6rem;
        box-shadow: 3px 0 7px 0 rgb(0 0 0 / 10%);
    } */
}
@media (max-width: 768px){
    /* body{
        padding-top: 70px;
    } */
    /* .header .navbar {
        height: 70px;
    } */
}

/* 手机端导航样式 */
.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 98;
    display: none;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    background-color: #fff;
}
.mobile-menu-cont {
    width: 100%;
    height: 100%;
    /* padding: .6rem; */
    overflow-y: auto;
}
.mobile-subnav {
    display: none;
}
.menu-nav-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.menu-nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    
}
.menu-nav-link:focus, 
.menu-nav-link:hover {
    color: #333;
}
.mobile-menu-nav .active .menu-nav-link {
    color: #0350a0;
    border-bottom-color: transparent;
}
.mobile-menu-nav .active .menu-nav-icon::before {
    background-color: #0350a0;
}
.mobile-menu-nav .active .menu-nav-icon::after {
    display: none;
}
/* .mobile-menu-nav .active .mobile-subnav {
    display: block;
} */
.menu-nav-icon {
    position: relative;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
}

.mobile-subnav {
    margin-top: 15px;
}
.mobile-subnav-item {
    padding: 15px;
    border-top: .02rem solid #eee;
}
.mobile-subnav-item:last-child {
    padding-bottom: 0;
}
.mobile-subnav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    font-size: 16px;
    color: #333;
}
.mobile-language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    font-size: 14px;
}
.mobile-language a {
    display: inline-block;
    height: 24px;
    padding: 0 .4rem;
    line-height: 24px;
    border-radius: 12px;
}
.mobile-language a.active {
    color: #fff;
    background-color: #0350a0;
}
@media (min-width: 1201px){
    .mobile-menu {
        display: none !important;
    }
}
@media (max-width: 1200px){
    /* .mobile-menu {
        padding-top: 1.6rem;
    } */
}
@media (max-width: 768px){
    /* body{
        padding-top: 70px;
    } */
    /* .header .navbar {
        height: 70px;
    }
    .mobile-menu {
        padding-top: 70px;
    } */
}





/* 底部 */
.footer {
    background-color: #1b1b1b;
}
.footer-inner {
    border-bottom: 1px solid #3d3d3d;
}
.footer-top {
    padding: 1.1rem 0 .8rem;
}
.footer-nav {
    float: left;
    padding: 0 6.25% 0 1.67%;
    border-left: 1px solid #3d3d3d;
}
.footer-nav-title {
    display: block;
    margin-bottom: .3rem;
    font-size: 18px;
    line-height: 24px;
}
.footer-nav-title a {  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.footer-nav-icon {
    display: none;
}
.footer-nav-item {
    margin: 0;
    font-size: 14px;
    line-height: 28px;
    color: #7c7c7c;
}
.footer-nav-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    color: #7c7c7c;
}
.footer-nav-item .point {
    display: none;
    margin: 0 0 0 .4rem;
}
.footer-nav-item .point,
.footer-nav-item .point::before,
.footer-nav-item .point::after {
    background-color: #0350a0;
}
.footer-nav-item:hover a {
    color: #0350a0;
}
/* .footer-nav-item:hover .point {
    display: block;
} */
.nav-right {
    float: right;
    padding-right: 0;
}
.footer-bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: .4rem 0;
    font-size: 14px;
    line-height: 26px;
    color: #7c7c7c;
}
.footer-bot a {
    color: #7c7c7c;
}
.footer-bot a:hover {
    color: #0350a0;
}
@media (max-width: 1200px){
    /* .footer-top {
        padding: 1.1rem .6rem 2rem;
    }
    .footer-bot {
        padding: .4rem .6rem;
    } */
    .footer {
        padding: 0 .6rem;
    }
    /* .footer-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    } */
    .footer-nav {
        float: left;
        padding: 0 1rem 0 0;
        border-left: none;
    }
    .footer-nav-cont {
        display: none;
    }
    .nav-right {
        width: 100%;
    }
    .nav-right .footer-nav-cont {
        display: block;
    }
}
@media (max-width: 1360px){
    /* .footer-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }
    .footer-nav {
        width: 33.333333% !important;
        margin-left: 0;
        margin-bottom: .6rem;
    } */
}

@media (min-width: 993px){
    /* .footer-nav-cont {
        display: block!important;
    } */
}
@media (max-width: 992px){
    /* .footer-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }
    .footer-nav {
        float: none;
        width: 30.3333% !important;
        margin: 0 1.5%;
        padding-left: 1.76470588235294%;
        border-left: none;
    }
    .footer-nav-title {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 40px;
    }
    .footer-nav.active .footer-nav-icon {
        -webkit-transform: rotateZ(135deg);
        -ms-transform: rotateZ(135deg);
        -o-transform: rotateZ(135deg);
        transform: rotateZ(135deg);
    }
    .footer-nav-icon {
        display: block;
        width: 40px;
        height: 40px;
        font-size: 24px;
        line-height: 40px;
        text-align: center;
        -webkit-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }
    .footer-nav-cont {
        display: none;
        padding-bottom: .3rem;
    } */
}
@media (max-width: 768px){
    /* .footer-nav {
        width: 100% !important;
        padding: 0 0 0 .3rem;
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    .footer-bot {
        flex-wrap: wrap;
    }
    .fbr {
        width: 100%;
    } */
}


.common-banner {
    position: relative;
    height: 6.0rem;
}
.common-banner>img {
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    max-width: inherit;
    height: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}
.banner-text {
    position: relative;
    z-index: 3;
    padding: 1.9rem 1rem 0;
    
}
.banner-title {
    font-weight: bold;
    font-size: 40px;
    line-height: 50px;
    color: #fff;
}
.crumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: .4rem;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
}
.crumbs a {
    color: #fff;
}
.crumbs a:hover {
    color: #0350a0;
}
@media (max-width: 768px){
    .common-banner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .banner-text {
        padding: 0;
    }
    .banner-title {
        font-size: 24px;
        line-height: 50px;
        text-align: center;
    }
    .crumbs {
        display: none;
    }
}




.navtab-box {
    position: relative;
    z-index: 9;
    margin-top: -30px;
    background-color: #fff;
    -webkit-box-shadow: 0 .1rem .1rem #e7e7e7;
    -moz-box-shadow: 0 .1rem .1rem #e7e7e7;
    box-shadow: 0 .1rem .1rem #e7e7e7;
}
.navtab-title {
    position: relative;
    display: none;
    height: 48px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 48px;
    color: #444;
}
.navtab-arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.navtab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    font-size: .32rem;
    line-height: 1.2rem;
    color: #444;
}
.navtab-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    color: #444;
}
.navtab-t {
    display: block;
    padding: 0 .4rem;
    font-size: .32rem;
    line-height: 1.2rem;
    color: #444;
}
.navtab-tag {
    position: relative;
    display: block;
    padding: 0 .2rem;
}
.down {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: -3px 0 0 .1rem;
    vertical-align: middle;
    background: url(../images/s_down.png) no-repeat;
    background-size: 100% 100%;
}
.subnav-link {
    display: block;
    padding: 7px 5px;
    color: #444;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
}


.navtab-item.active .navtab-t {
    color: #0350a0;
}
.navtab-item.active .navtab-tag::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: .04rem;
    background-color: #0350a0;
}
.navtab-item.active .down {
    background: url(../images/s_on_dwon.png) no-repeat;
    background-size: 100% 100%;
}
.navtab-item:hover .navtab-t {
    color: #0350a0;
}
.navtab-item:first-child .subnav {
	left: 0;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}
.navtab-item:last-child .subnav {
	left: inherit;
	right: 0;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}
.subnav {
    position: absolute;
    left: 50%;
    top: 1.2rem;
	z-index: 9;
    display: none;
	width: 6rem;
    padding: 0 .4rem;
    background-color: #fff;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}


@media (min-width: 769px){
    .navtab-item:hover .subnav {
        display: block;
    }
}
@media (max-width: 768px){
    .navtab-box {
        padding: 0;
        margin-top: 0;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    .navtab-title {
        display: block;
        border-bottom: solid 1px #d8d8d8;
    }
    .navtab-title.active .navtab-arrow {
        -webkit-transform: rotateZ(90deg);
        -ms-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    .navtab {
        position: absolute;
        top: 48px;
        left: 0;
        width: 100%;
        display: none;
    }
    .navtab-item {
        display: block;
        margin: 0;
    }
    .navtab-t {
        display: block;
        height: 48px;
        padding: 0 20px;
        font-size: 16px;
        line-height: 48px;
        color: #444;
        background-color: #fff;
        border-bottom: solid 1px #d8d8d8;
    }
    .navtab-t.active .down {
        -webkit-transform: rotateZ(90deg);
        -ms-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
    }
    .navtab-tag {
        padding: 0;
    }
    .down {
        position: absolute;
        right: -20px;
        top: 0;
        width: 48px;
        height: 48px;
        margin: 0;
        background: url(../images/tabnav_arrow.png) no-repeat center !important;
        background-size: 48px 48px !important;
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -moz-transition: all .3s ease;
        transition: all .3s ease;
    }
    .subnav {
        position: relative;
        left: inherit;
        top: inherit;
        display: none;
        width: 100%;
        background-color: #fff;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
    }

    .navtab-item.active .navtab-t {
        color: #fff;
        background: #0350a0;
        border-bottom: solid 1px #fff;
    }
    .navtab-item.active .navtab-tag::after {
        display: none;
    }
    .navtab>span {
        display: none;
    }
    .subnav-link {
        padding: 0 0 0 40px;
        color: #444;
        line-height: 48px;
        font-size: 14px;
        text-align: left;
        border-bottom: solid 1px #d8d8d8;
    }
}

.about-tit{
    text-align:center;
    font-size:30px;
    line-height:60px;
    color:#333
}
@media(max-width:991px){
    .about-tit{font-size:24px;line-height:40px}
}
@media(max-width:767px){
    .about-tit{font-size:20px;line-height:30px}
}


.msg-box-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10001;
    background: rgba(0,0,0,.5)
}
.msg-box {
    width: 17.2rem;
	max-width: 90%;
    /* height: 5.04rem; */
    padding: 1rem .6rem .6rem;
    background-color: #f3f3f3;
    position: absolute;
	top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
}
.msg-box video {
	display: block;
	width: 100%;
}
.msg-box .close-box {
	position: absolute;
	right: .1rem;
	top: .1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	width: .8rem;
	height: .8rem;
	padding: .15rem;	
	-webkit-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}
.msg-box .close-box img {
	display: block;
	width: 100%;
}
.msg-box .close-box:hover {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg)
}



.pages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: .76rem;
    min-width: 30px;
    padding: .3rem 0;
    height: .76rem;
    min-height: 30px;
    margin: 0 3px;
    font-weight: bold;
    font-size: 14px;
    color: #666;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e5e5e5;
}
.page:hover {
    color: #0350a0;
}
.page.active {
    color: #fff;
    background-color: #0350a0;
    border: 1px solid #0350a0;
}


.prev-next {
    padding: .6rem 0;
    border-top: 1px solid #e2e2e2;
}
.pn-item{
    height: 32px;
    font-size: 16px;
    line-height: 32px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pn-a{
    height: 34px;
    font-size: 16px;
    line-height: 32px;
    color: #76787b;
    overflow: hidden;
}
.pn-a:hover{
    color: #0350a0;
}

@media (max-width: 768px){
    
}
