/*===================CSS Reset============================*/
@font-face {
    font-family: fontB;
    src: url(/fonts/SourceHanSansCN-Bold.otf);
}

@font-face {
    font-family: fontF;
    src: url(/fonts/fzchsjwgb10.ttf);
}

@font-face {
    font-family: fontN;
    src: url(/fonts/SourceHanSansCN-Normal.otf);
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: auto;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

/*body,button,input,select,textarea{ color: #333; font: 16px fontN,"微软雅黑","microsoft yahei";}*/
body {
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
    color: #333;
}

em, i {
    font-style: normal;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
}

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

/*===================Link Style============================*/
/*a,a:hover,a:active,a:visited,a:link,a:focus{ color: #333; outline:none; text-decoration: none; transition: all ease 400ms; -webkit-transition: all ease 400ms;}*/
a, a:hover, a:active, a:visited, a:link, a:focus {
    outline: none;
    text-decoration: none;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
}

.left-aside a, .left-aside a:hover, .left-aside a:active, .left-aside a:visited, .left-aside a:link, .left-aside a:focus {
    color: #333;
    outline: none;
    text-decoration: none;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
}

.index-page a, .index-page a:hover, .index-page a:active, .index-page a:visited, .index-page a:link, .index-page a:focus {
    color: #333;
    outline: none;
    text-decoration: none;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
}

/*===================Common Style============================*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.wrap {
    width: 100%;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fafafa;
}

.ovh {
    overflow: hidden;
}

.textH {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.textT {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.fontB {
    font-family: "微软雅黑";
}

.fontF {
    font-family: "微软雅黑";
}

.color-f {
    color: #fff !important;
}

.color-3 {
    color: #333 !important;
}

.color-6 {
    color: #666 !important;
}

.color-9 {
    color: #999 !important;
}

.color-b {
    color: #01438d !important;
}

.bg-f {
    background: #fff;
}

.bg-b {
    background: #01438d;
}

.dong {
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    transition: all 400ms;
}

.imgH img {
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -ms-transition: all 500ms;
    transition: all 500ms;
}

.imgH:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/*============================ Header ============================*/
.header {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 999;
    overflow-x: hidden;
    box-shadow: 2px 2px 15px rgb(0 78 162 / 10%);
}

/*.header .logo{ width: 72%;}*/
.header .main-menu {
    width: 255px;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    padding: 25px 0;
}

.header .nav {
    padding: 10px 0 10px;
}

.header .nav li {
    border-bottom: 1px solid #eee;
}

/*.header .nav li:last-child{ border-bottom: none;}*/
.header .nav li a {
    display: block;
    font-size: 18px;
    padding: 10px;
}

.header .nav li a:hover, .header .nav li .slt {
    font-weight: bold;
    color: #01438d;
}

.nav li.dropdown .dropdown_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 240px;
    padding: 28px 8px;
    min-width: 200px;
    height: 100%;
    background-color: #484772db;
    animation: 250ms show1 ease-in;
    -webkit-animation: 250ms show1 ease-in;
    -moz-animation: 250ms show1 ease-in;
    box-shadow: 0 0 4px rgba(0, 0, 0, .3);
    overflow-y: auto;
}

/*.nav li.dropdown .dropdown_menu{
	position: fixed;
	top: 0;
	left: 0;
	padding: 28px 8px;
	min-width: 200px;
	height: 100%;
	background-color: #e5ecf4;
	opacity: 0;
	visibility: hidden;
	transition: visibility 0.6s, transform 0.6s;
	transform: translateX(0);
	z-index: -1;
}*/
@keyframes show1 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes show1 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes show1 {
    0% {
        opacity: 0;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in-left {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fade-in-left {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-moz-keyframes fade-in-left {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav li.dropdown .dropdown_menu a {
    color: white;
    display: block;
    font-size: 16px;
    /*background: #e5ecf4;*/
    line-height: 50px !important;
    padding: 0;
    animation-name: fade-in-left;
    animation-duration: 1.5s;
    animation-fill-mode: both;
}

.nav li.dropdown .dropdown_menu a:nth-child(1) {
    animation-delay: 0.1s;
}

.nav li.dropdown .dropdown_menu a:nth-child(2) {
    animation-delay: 0.2s;
}

.nav li.dropdown .dropdown_menu a:nth-child(3) {
    animation-delay: 0.3s;
}

.nav li.dropdown .dropdown_menu a:nth-child(4) {
    animation-delay: 0.4s;
}

.nav li.dropdown .dropdown_menu a:nth-child(5) {
    animation-delay: 0.5s;
}

.nav li.dropdown .dropdown_menu a:nth-child(6) {
    animation-delay: 0.6s;
}

.nav li.dropdown .dropdown_menu a:nth-child(7) {
    animation-delay: 0.7s;
}

.nav li.dropdown .dropdown_menu a:nth-child(8) {
    animation-delay: 0.8s;
}

.nav li.dropdown .dropdown_menu a:nth-child(9) {
    animation-delay: 0.9s;
}

.nav li.dropdown .dropdown_menu a:nth-child(10) {
    animation-delay: 1s;
}

.nav li.dropdown .dropdown_menu a:nth-child(11) {
    animation-delay: 1.1s;
}

.nav li.dropdown .dropdown_menu a:nth-child(12) {
    animation-delay: 1.2s;
}

.nav li.dropdown .dropdown_menu a:nth-child(13) {
    animation-delay: 1.3s;
}

.nav li.dropdown .dropdown_menu a:nth-child(14) {
    animation-delay: 1.4s;
}

.nav li.dropdown .dropdown_menu a:nth-child(15) {
    animation-delay: 1.5s;
}

.nav li.dropdown .dropdown_menu a:hover {
    background: #fff !important;
    color: #484772;
}

.nav li.dropdown:hover .dropdown_menu {
    display: block;
}

/*.nav li.dropdown:hover .dropdown_menu {
	opacity: 1;
	visibility: visible;
	display: block;
	transform: translateX(238px) translateX(1px);
}*/
.header .lang {
    cursor: pointer;
    margin: 0 20px;
    position: relative;
}

.header .lang p {
    line-height: 40px;
    background: url(/images/index/ixIcon1.png) center left no-repeat;
    background-size: 16px;
    padding-left: 24px;
}

.header .lang p i {
    display: block;
    background: url(/images/index/ixIcon2.png) center right no-repeat;
    background-size: 12px;
    padding-right: 15px;
}

.header .lang span {
    width: 100%;
    display: none;
    background: #eee;
    border-radius: 0 0 4px 4px;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 9;
}

.header .lang span a {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 34px;
    padding-left: 26px;
}

.header .lang span a:hover {
    color: #fff;
    background: #01438D;
}

.header .lang:hover span {
    display: block;
}

.header .search {
    background: #eee;
    border-radius: 20px;
    margin: 20px 8px 20px 8px;
    position: relative;
}

.header .search input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #eee;
    padding: 0 40px 0 20px;
}

.header .search button {
    width: 40px;
    height: 40px;
    font-size: 18px; /* background: url(/images/index/search.png) center left no-repeat; */
    background-size: 20px;
    position: absolute;
    top: 0;
    right: 4px;
    z-index: 1;
    color: #01438d;
    cursor: pointer;
}

.m_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: #0c52a8;
    transition: all ease 500ms;
    -webkit-transition: all ease 500ms;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transform: translateX(-100%);
}

.m_nav.open {
    transform: translateX(0);
}

.m_nav .top {
    height: 60px;
    padding: 20px;
    box-sizing: border-box;
}

.m_nav .top .closed {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    float: right;
    cursor: pointer;
}

/*.m_nav .ul{ margin-top: 30px;}*/
.m_nav .ul li {
    padding: 0 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.m_nav .ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    width: 100%;
}

.m_nav .ul li a:hover {
    font-weight: bold;
    font-size: 18px;
}

.m_nav .ul li .dropdown_menu {
    display: none;
    overflow: hidden;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
    display: block;
}

.m_nav .ul li.dropdown .jt {
    background: url(/images/index/m-nav.png) center right no-repeat;
    background-size: 8px;
}

.m_nav .ul li .dropdown_menu a {
    display: block;
    float: left;
    width: 50%;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    margin-bottom: -1px;
}

.mobile-header {
    display: none
}

.sub-menu {
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    min-width: 160px;
    z-index: 1010;
    animation: 250ms show1 ease-in;
    -webkit-animation: 250ms show1 ease-in;
    -moz-animation: 250ms show1 ease-in;
    box-shadow: 0 0 4px rgb(0 0 0 / 30%);
}

.sub-menu a {
    display: block;
    font-size: 16px;
    background: #e5ecf4;
    line-height: 60px !important;
    padding: 0;
}

.sub-menu a:hover {
    background: #fff !important;
    color: #01438D;
}

.sub-menu-title {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.book-card {
    background-color: #f8fafd;
    width: 18rem;
    border: none;
    max-width: 100%;
    text-align: center;
    margin-top: 2rem;
}
.book-card:hover {
    border: 1px solid rgba(0, 0, 0, .125);
}
.book-card .card-img-top {
    max-height: 240px;
    max-width: 100%;
    width: auto
}


.course-card {
    /*border: 1px solid #ccc;*/
    border: 0;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
}

.course-card:hover {
    /*transform: scale(1.03, 1.03);*/
    /*-webkit-box-shadow: -2px 2px 10px -3px rgba(0,0,0,0.75);*/
    /*-moz-box-shadow: -2px 2px 10px -3px rgba(0,0,0,0.75);*/
    /*box-shadow: -2px 2px 10px -3px rgba(0,0,0,0.75);*/
    color: #3260B1;
    -webkit-box-shadow: 0 2px 2px rgba(41, 47, 56, 0.1), 0 4px 4px rgba(41, 47, 56, 0.1), 0 8px 8px rgba(41, 47, 56, 0.1), 0 16px 16px rgba(41, 47, 56, 0.1), 0 32px 32px rgba(41, 47, 56, 0.1);
    box-shadow: 0 2px 2px rgba(41, 47, 56, 0.1), 0 4px 4px rgba(41, 47, 56, 0.1), 0 8px 8px rgba(41, 47, 56, 0.1), 0 16px 16px rgba(41, 47, 56, 0.1), 0 32px 32px rgba(41, 47, 56, 0.1);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.course-card .card-meeting-title {
    height: 5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
    font-size: 14px;
    /*white-space: nowrap;*/
}

.course-card .news-img {
    min-height: 180px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    /*background-image: ;*/
}

/*============================ Footer ============================*/
.footer {
    margin-right: 0;
    padding: 30px 60px 0;
    background: #013168;
}

.footer .txt p {
    font-size: 18px;
    margin-bottom: 5px;
}

.footer .txt a {
    display: block;
    color: rgba(255, 255, 255, .5);
    line-height: 32px;
}

.footer .code, .footer .copy, .footer .copy a {
    color: rgba(255, 255, 255, .8);
}

.footer .code img {
    max-width: 110px;
    width: 21%;
    margin-bottom: 10px;
}

.footer .copy {
    font-size: 14px;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

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

/*============================ Index ============================*/

.left-aside {
    float: left;
    width: 240px;
    height: 100%;
}

.right-aside {
    float: left;
    margin-left: 240px;
    width: calc(100% - 240px);
    position: relative
}

.ixPart1 {
    position: relative;
}

.ixPart1 .scoll {
    width: 32px;
    height: 32px;
    background: url(/images/index/down.svg) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -24px;
    animation: dong 2s infinite;
}

@keyframes dong {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(0, -15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.ixPart1 .slide .img {
    display: flex;
    /*height: 718px;*/
    /*height: 750px;*/
    height: 100vh;
}

.ixPart1 .slide .img .txt {
    width: 100%;
    padding: 0 8%;
}

.ixPart1 .slide .img .txt p {
    font-size: 76px;
}

.ixPart1 .slide .img .txt a.learn-more {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    line-height: 50px;
    padding: 0 70px 0 30px;
    background: url(/images/index/ixImg1_1.png) center right 5px no-repeat rgba(255, 255, 255, .2);
    background-size: 36px;
    border-radius: 30px;
    margin-top: 20px;
}

.ixPart1 .slide .img .txt a.learn-more:hover {
    color: #01438D;
    background-color: #fff;
}

.ixTit {
    font-size: 28px;
    margin-bottom: 20px;
}

.ixPart2 {
    padding: 50px 40px 40px 60px;
}

.ixPart2 a {
    display: block;
    font-size: 16px;
    padding: 30px 10px 25px;
    margin: 0 10px 30px;
    background-image: url(/images/index/ixImg2_9.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    border-radius: 12px;
}

.ixPart2 a img {
    height: 40px;
}

.ixPart2 .bg1 {
    background-color: #01bcd6;
}

.ixPart2 .bg2 {
    background-color: #8bc349;
}

.ixPart2 .bg3 {
    background-color: #ff9800;
}

.ixPart2 .bg4 {
    background-color: #f44235;
}

.ixPart2 .bg5 {
    background-color: #2196f3;
}

.ixPart2 .bg6 {
    background-color: #663bb7;
}

.ixPart2 .bg7 {
    background-color: #4cb051;
}

.ixPart2 .bg8 {
    background-color: #3f51b6;
}

.ixPart9 {
    margin-right: 50px;
    padding: 50px 40px 40px 60px;
    border-radius: 0 25px 25px 0;
    box-shadow: 0 0 15px rgba(0, 78, 162, .1) inset;
}

.ixPart9 a {
    transition: background-size 1s;
    height: 120px;
    display: block;
    font-size: 20px;
    padding: 20px;
    margin: 0 10px 30px;
    background-image: url(/images/index/ixImg2_9.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% 100%;
    position: relative;
    border-radius: 12px;
}

.ixPart9 a img {
    height: 40px;
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.ixPart9 a .service-title {
    color: #00448d;
    font-weight: 500;
    padding-bottom: 20px;
}

.ixPart9 a:hover {
    font-size: 22px;
    background-color: #ffffff;
    border: 1px solid #e2ecff;
}

.ixPart9 .bg0 {
    background-color: #e2ecff;
}

.ixPart9 .bg1 {
    background-color: #ebe7fd;
}

.ixPart9 .bg2 {
    background-color: #f5e4d9;
}

.ixPart9 .bg3 {
    background-color: #eee5d2;
}

.ixPart9 .bg4 {
    background-color: #f44235;
}

.ixPart9 .bg5 {
    background-color: #2196f3;
}

.ixPart9 .bg6 {
    background-color: #663bb7;
}

.ixPart9 .bg7 {
    background-color: #4cb051;
}

.ixPart9 .bg8 {
    background-color: #3f51b6;
}

.ixPart9 .bg1 .service-title {
    color: #5f4ea2;
}

.ixPart12 {
    padding: 60px 40px 30px 40px;
}

.ixPart12 .service-card {
    width: 20%;
    margin-bottom: 30px;
}
.ixPart12 .service-card.sc0 { width: 10%; }
.ixPart12 .service-card.sc5 { width: 10%; }

/*.ixPart12 .service-card.sc1 { width: 25%; }*/
/*.ixPart12 .service-card.sc2 { width: 25%; }*/
/*.ixPart12 .service-card.sc3 { width: 25%; }*/
/*.ixPart12 .service-card.sc4 { width: 25%; }*/

.ixPart12 .service-title {
    color: #ffffff;
    margin-top: 10px;
    letter-spacing: 3px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 21px;
}
.ixPart12 .service-card:hover .service-title {
    font-weight: bold;
    font-size: 18px;
}

.ixPart12.service-en .service-title {
    font-size: 15px;
    letter-spacing: 0;
}

.ixPart12.service-en:hover .service-title {
    font-size: 16px;
}

.ixPart12 .icon-area {
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.ixPart12 .service-card .service-icon-1 {
    background-image: url(/images/service/new/service1.png);
}
.ixPart12 .service-card:hover .service-icon-1 {
    background-image: url(/images/service/new/service1-reverse.png);
}

.ixPart12 .service-card .service-icon-2 {
    background-image: url(/images/service/new/service2.png);
}
.ixPart12 .service-card:hover .service-icon-2 {
    background-image: url(/images/service/new/service2-reverse.png);
}

.ixPart12 .service-card .service-icon-3 {
    background-image: url(/images/service/new/service3.png);
}
.ixPart12 .service-card:hover .service-icon-3 {
    background-image: url(/images/service/new/service3-reverse.png);
}

.ixPart12 .service-card .service-icon-4 {
    background-image: url(/images/service/new/service4.png);
}
.ixPart12 .service-card:hover .service-icon-4 {
    background-image: url(/images/service/new/service4-reverse.png);
}

.ixPart12 .service-card .service-icon-5 {
    background-image: url(/images/service/new/service5.png);
}
.ixPart12 .service-card:hover .service-icon-5 {
    background-image: url(/images/service/new/service5-reverse.png);
}

.ixPart12 .service-card .service-icon-6 {
    background-image: url(/images/service/new/service6.png);
}
.ixPart12 .service-card:hover .service-icon-6 {
    background-image: url(/images/service/new/service6-reverse.png);
}

.ixPart12 .service-card .service-icon-7 {
    background-image: url(/images/service/new/service7.png);
}
.ixPart12 .service-card:hover .service-icon-7 {
    background-image: url(/images/service/new/service7-reverse.png);
}

.ixPart12 .service-card .service-icon-8 {
    background-image: url(/images/service/new/service8.png);
}
.ixPart12 .service-card:hover .service-icon-8 {
    background-image: url(/images/service/new/service8-reverse.png);
}

.ixPart12 .service-card .service-icon-9 {
    background-image: url(/images/service/new/service9.png);
}
.ixPart12 .service-card:hover .service-icon-9 {
    background-image: url(/images/service/new/service9-reverse.png);
}

.ixPart12 .service-card .service-icon-10 {
    background-image: url(/images/service/new/service10.png);
}
.ixPart12 .service-card:hover .service-icon-10{
    background-image: url(/images/service/new/service10-reverse.png);
}


.ixPart11 {
    padding: 50px 40px 40px 60px;
    border-radius: 0 25px 25px 0;
    margin: 50px 50px 50px 0;
}

.ixPart11 .ixTit {
    margin-bottom: 10px;
}

.ixPart11 .service-title {
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 3px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 21px;
}

.ixPart11.en .service-title {
    font-size: 18px;
    letter-spacing: 0;
    font-weight: 500;
}

.ixPart11 .service-card {
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    border-radius: 15px;
    padding-top: 35px;
    padding-bottom: 30px;
    border: 1px solid #ffffff;
    overflow: hidden;
}

.ixPart11 .service-card:hover {
    /*border: 1px solid rgba(0,0,0,0.10);*/
    /*box-shadow: 0 0 10px 0 rgb(0 0 0 / 5%);*/
    transform: scale(1.1);
    transition: transform 0.5s;
}

.hot-banner {
    padding-top: 20px;
    padding-right: 50px;
    padding-bottom: 40px;
}

.ixPart3 {
    margin-right: 50px;
    margin-bottom: 20px;
    padding: 50px 40px 40px 60px;
    border-radius: 0 25px 25px 0;
    box-shadow: 0 0 15px rgba(0, 78, 162, .1) inset;
}

.ixPart3 .ixTit {
    margin-bottom: 30px;
}

.ixPart3 .left {
    margin-right: 20px;
}

.ixPart3 .left .box1 {
    display: block;
    border-radius: 20px;
    position: relative;
}

.ixPart3 .left .box1 .txt {
    width: 100%;
    padding: 10px 20px;
    background: rgba(0, 0, 0, .4);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.ixPart3 .left .box1 .txt p {
    font-size: 20px;
    margin-bottom: 5px;
}

/*.ixPart3 .left .box1 img{ width: 100%;}*/
.ixPart3 .left .box1 .img {
    width: 100%;
    height: auto
}

.ixPart3 .left .box1 .img img {
    width: 100%;
    height: auto;
}

.ixPart3 .left .box1:hover .txt {
    background: #01438d;
}

.ixPart3 .box2 {
    display: block;
    margin: 0 0 30px 10px;
}

/*.ixPart3 .box2 .img{ border-radius: 16px;}*/
.ixPart3 .box2 .img {
    border-radius: 16px;
    width: 100%;
    height: auto
}

/*.ixPart3 .box2 .img img{ width: 100%;}*/
.ixPart3 .box2 .img img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
}

.ixPart3 .box2 p {
    height: 48px;
    line-height: 24px;
    margin-top: 10px;
    font-size: 14px
}

.ixPart3 .box2:hover {
    color: #01438D;
}

.ixPart4 {
    padding: 50px 40px 40px 60px;
    border-radius: 0 25px 25px 0;
    margin: 50px 50px 0 0;
}

.ixPart4 .ixTit {
    padding-left: 60px;
}

.ixPart4.en-aboutus {
    padding: 80px 100px 70px 60px;
}

.ixPart4.en-aboutus .ixTit {
    padding-left: 0;
}

.ixPart4 .txt {
    font-size: 16px;
    color: rgba(255, 255, 255, .5);
    line-height: 32px;
    margin-bottom: 45px;
}

.ixPart4 .t1 {
    text-align: center;
    border-right: 1px solid #eee;
    padding: 20px 0px 30px 0;
}

.ixPart4 .t1 div {
    height: 70px;
    font-size: 42px;
    line-height: 70px;
}

.ixPart4 .t1 div .counter-suffix {
    font-size: 32px;
}

/*.ixPart4 .t1 span i{ display: inline-block; font-size: 24px; margin-left: 10px;}*/
.ixPart4 .t1 p {
    color: rgba(255, 255, 255, .7);
}

.ixPart4 .about-us-stat .about-us-stat-icon {
    padding-right: 8px;
}

.ixPart4 .about-us-stat .about-us-stat-icon img {
    width: 40px;
}
.ixPart4 .about-us-stat .about-us-stat-title {
    color: #e87a44;
    font-weight: bold;
    font-size: 14px;
}
.ixPart4 .about-us-stat .about-us-stat-number {
    color: #333;
    /*font-weight: 600;*/
    font-size: 1rem;
}

.ixPart4 .about-us-stat .about-us-stat-number .counter-up{
    font-size: 2rem;
    font-family: arial, serif;
}

.ixPart4 .about-us-stat .about-us-stat-chart img{
    width: 150px;
    border-radius: 19px;
}


.ixPart4 .r img {
    width: 100%;
}

.ixPart5 {
    box-shadow: 0 0 15px rgba(0, 78, 162, .1) inset;
    border-radius: 0 25px 25px 0;
    margin-right: 50px;
    padding: 50px 40px 50px 60px;
}

.ixPart5 .tzTit {
    display: inline-block;
    background: #eee;
    border-radius: 30px;
    font-size: 0;
}

.ixPart5 .tzTit span {
    display: inline-block;
    font-size: 26px;
    line-height: 50px;
    padding: 0 24px;
    border-radius: 24px;
    cursor: pointer;
}

.ixPart5 .tzTit span.a {
    font-family: "microsoft yahei";
    color: #fff;
    background: #01438D;
}

.ixPart5 .more {
    display: none;
}

.ixPart5 .more.more-notice {
    display: block;
}

/*.ixPart5 .tzCon {*/
/*    display: none;*/
/*}*/

.ixPart5 .tzCon .box {
    display: block;
    margin: 40px 40px 0 0;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.ixPart5 .tzCon .box .t1 {
    background: #e5ecf3;
}

.ixPart5 .tzCon .box .t1 span {
    display: block;
    width: 90px;
}

.ixPart5 .tzCon .box .t1 span i {
    display: block;
    font-size: 30px;
    margin-top: 5px;
}

/*.ixPart5 .tzCon .box .t1 p{ height: 82px; line-height: 24px;-webkit-line-clamp: 3; background: #fff; padding: 5px 10px;}*/
.ixPart5 .tzCon .box .t1 p {
    height: 82px;
    line-height: 26px;
    -webkit-line-clamp: 3;
    background: #fff;
    padding: 5px 10px;
}

.ixPart5 .tzCon .box .t2 {
    padding: 15px;
}

.ixPart5 .tzCon .box .t2 p {
    height: 48px;
    line-height: 24px;
    margin-bottom: 5px;
    font-size: 14px;
}

.ixPart5 .tzCon .box:hover {
    box-shadow: 0 0 10px rgba(0, 78, 162, .6);
}

.ixPart5 .tzCon .box:hover .t1 {
    background: #01438D;
    color: #fff;
}

.ixPart5 .tzCon .box:hover .t1 p {
    color: #01438D;
}

.ixPart6 {
    padding: 40px 90px 70px 60px;
}

.ixPart6 .hdTit .txt {
    cursor: pointer;
}

.ixPart6 .hdTit .txt .box {
    font-size: 18px;
    margin: 5px 0 15px;
    /* 0.4s完成transform移动效果*/
    transition: all 0.5s ease 0s;
    display: flex;
}

.ixPart6 .hdTit .txt .index-label {
    width: 22px;
    height: 22px;
    line-height: 14px;
    margin-top: 4px;
    margin-right: 14px;
    border: 1px solid #4285f4;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    padding: 3px 6px;
}

.ixPart6 .hdTit .txt.a .index-label {
    background: #5b98ff;
}

.ixPart6 .hdTit .txt p {
    display: none;
    opacity: .3;
    line-height: 24px;
}

/*.ixPart6 .hdTit .txt.a span{ font-family: fontB,"microsoft yahei";}*/
.ixPart6 .hdTit .txt.a .box {
    font-family: "microsoft yahei";
}

.ixPart6 .hdTit .txt .box:hover {
    /* x=16px代表左移10px */
    transform: translateX(16px);
    /* 0.4s完成transform移动效果*/
    transition: all 0.5s ease 0s;
}

.ixPart6 .hdTit .txt.a p {
    display: -webkit-box;
}

/*.ixPart6 .hdCon{ display: none; border-radius: 20px 0 0 20px; margin-right: 20px;}*/
.ixPart6 .hdCon {
    display: none;
    border-radius: 20px;
    margin-right: 20px;
}

/*.ixPart6 .hdCon img{ width: 100%;}*/
.ixPart6 .hdCon .img {
    width: 100%;
    height: auto
}

.ixPart6 .hdCon .img img {
    width: 100%;
    height: 100%;
}


.ixPart10 {
    margin-right: 50px;
    min-height: 470px;
    margin-bottom: 50px;
    padding: 50px 40px 40px 60px;
    border-radius: 0 25px 25px 0;
    box-shadow: 0 0 15px rgba(0, 78, 162, .1) inset;
}

.ixPart10 .hdTit .txt {
    cursor: pointer;
}

.ixPart10 .hdTit .txt .box {
    font-size: 16px;
    margin: 5px 0 15px;
    /* 0.4s完成transform移动效果*/
    /*transition: all 0.5s ease 0s;*/
    display: flex;
}

.ixPart10 .tzTit {
    display: inline-block;
    background: #eee;
    border-radius: 30px;
    font-size: 0;
}

.ixPart10 .more-event {
    line-height: 60px;
}

.ixPart10 .tzTit span {
    display: inline-block;
    font-size: 26px;
    line-height: 50px;
    padding: 0 24px;
    border-radius: 24px;
    cursor: pointer;
}

.ixPart10 .tzTit span.a {
    font-family: "microsoft yahei";
    color: #fff;
    background: #01438D;
}

.ixPart10 .tzCon {
    display: none;
}

.ixPart10 .hdTit .txt .index-label {
    width: 22px;
    height: 22px;
    line-height: 14px;
    margin-top: 4px;
    margin-right: 14px;
    border: 1px solid #1a4288;
    border-radius: 2px;
    /*color: #fff;*/
    font-size: 14px;
    padding: 3px 6px;
}

.ixPart10 .hdTit .txt.a .index-label {
    background: #1a4288;
    color: #ffffff;
}

.ixPart10 .hdTit .txt p {
    display: none;
    opacity: .3;
    line-height: 24px;
}

/*.ixPart10 .hdTit .txt.a span{ font-family: fontB,"microsoft yahei";}*/
.ixPart10 .hdTit .txt.a .box {
    font-family: "microsoft yahei";
    font-weight: 500;
}

.ixPart10 .hdTit .txt .box:hover {
    /* x=16px代表左移10px */
    /*transform: translateX(16px);*/
    /* 0.4s完成transform移动效果*/
    /*transition: all 0.5s ease 0s;*/
    font-weight: 500;
}

.ixPart10 .hdTit .txt.a p {
    display: -webkit-box;
}

/*.ixPart10 .hdCon{ display: none; border-radius: 20px 0 0 20px; margin-right: 20px;}*/
.ixPart10 .hdCon {
    display: none;
    border-radius: 20px;
    margin-right: 20px;
}

/*.ixPart10 .hdCon img{ width: 100%;}*/
.ixPart10 .hdCon .img {
    width: 100%;
    height: auto
}

.ixPart10 .hdCon .img img {
    width: 100%;
    height: 100%;
}


.ixPart7 {
    padding: 50px 60px 70px 60px;
}

.ixPart7 .l a {
    display: block;
    font-size: 15px;
    margin: 0 12px 12px 0;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    line-height: 40px;
    padding: 0 5px;
}

.ixPart7 .l a:hover {
    background: #fff;
    border-color: #fff;
    color: #01438D;
}

.ixPart7 .r img {
    width: 100%;
}

.ixPart8 {
    padding: 50px 60px 70px 60px;
}

.ixPart8 .swiper-slide {
    padding: 0 0 50px 0;
}

.ixPart8 .swiper-slide a {
    display: block;
    color: #fff;
    font-size: 18px;
}

.ixPart8 .swiper-slide .img {
    border-radius: 15px;
    margin-bottom: 10px;
}

.ixPart8 .swiper-slide .img img {
    width: 100%;
}

.ixPart8 .swiper-scrollbar {
    background: rgba(255, 255, 255, .1);
}

.ixPart8 .swiper-scrollbar-drag {
    background: rgba(255, 255, 255, .5);
}

/*============================ 媒体查询 ============================*/
.mobHide {
    display: block;
}

.mobShow {
    display: none;
}

@media (min-width: 1440px) {
    .wrap {
        width: 1440px;
        margin: 0 auto;
    }

    .ixPart1 .slide .slick-dots {
        bottom: 16%;
    }
}

@media (max-width: 1440px) {
    .wrap {
        width: 100%;
    }

    .ixPart1 .slide .slick-dots {
        bottom: 18%;
    }

    /*.header .nav{ padding: 30px 0 ;}*/
    /*.header .nav li a{ padding: 10px 0;}*/
    /*.header .lang{ font-size: 12px; margin: 0 10px;}*/
}

@media (max-width: 1198px) {
    .ixPart1 .slide .slick-dots {
        bottom: 20%;
    }

    /*.ixPart3 .left .box1 .img{ width: 100%; height: 242px}*/
    /*.ixPart3 .box2 .img{ height: 84px;}*/
}

@media (max-width: 990px) {
    .left-aside {
        float: none;
        width: 100%;
    }

    .right-aside {
        width: 100%;
        float: none;
        margin-left: 0;
    }

    .mobile-header {
        display: block;
    }

    .main-menu {
        display: none;
    }

    .mobHide {
        display: none;
    }

    .mobShow, .m_nav {
        display: block;
    }

    .header {
        width: 100%;
        height: auto;
        padding: 20px 10px;
        position: inherit;
    }

    .header .logo {
        margin-bottom: 20px;
    }

    .header .lang {
        margin: 0 10px 0 0;
    }

    .header .search {
        margin: 0 0 0 10px;
    }

    #navToggle {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    #navToggle span {
        display: block;
        width: 30px;
        height: 50px;
        background: url(/images/index/menu.png) center no-repeat;
        background-size: 100%;
    }

    .ixPart1 .slide .img {
        height: 500px;
    }

    .ixPart1 .slide .img .txt p {
        font-size: 62px;
    }

    /*.ixPart4 .t1{ margin: 0 20px 20px 0;}*/
    .ixPart4 .t1 div {
        font-size: 30px;
        height: 40px;
        line-height: 40px;
    }

    .ixPart4 .t1 div .counter-suffix {
        font-size: 24px;
    }

    /*.ixPart4 .t1 span i{ font-size: 18px; margin-left: 5px;}*/
    .ixPart6 .hdTit .txt span, .ixPart6 .hdTit .txt.a p {
        -webkit-line-clamp: 1;
    }

    .ixPart10 .hdTit .txt span, .ixPart10 .hdTit .txt.a p {
        -webkit-line-clamp: 1;
    }

    .ixPart7 .l a {
        margin: 0 10px 20px;
    }

    .ixPart12 .service-card {
        width: 33%;
    }

    .ixPart12 .service-card.sc0 { display: none }
    .ixPart12 .service-card.sc5 { display: none }

}

@media (max-width: 767px) {
    body, button, input, select, textarea {
        font-size: 14px;
    }

    .ixPart1 .scoll {
        display: none;
    }

    /*.ixPart1 .scoll{ width: 40px; height: 40px; margin-left: -20px; bottom: 10px;}*/
    @keyframes dong {
        0% {
            transform: translate(0, 0);
        }
        50% {
            transform: translate(0, -6px);
        }
        100% {
            transform: translate(0, 0);
        }
    }
    .ixPart1 .slide .img {
        height: 240px;
    }

    .ixPart1 .slide .img .txt {
        padding: 0 20px;
    }

    .ixPart1 .slide .img .txt p {
        font-size: 30px;
    }

    .ixPart1 .slide .img .txt a.learn-more {
        font-size: 16px;
        line-height: 36px;
        background-size: 24px;
        padding: 0 45px 0 15px;
        margin-top: 10px;
    }

    .ixPart1 .slide .slick-dots {
        top: 0;
        right: 0;
        padding: 5px;
        bottom: unset;
    }

    /*.ixPart1 .slide .slick-dots{ bottom: 10px; padding: 0 10px;}*/
    /*.ixPart1 .slide .slick-dots li{ width: 26px; height: 5px; margin: 0 3px;}*/
    /*.ixPart1 .slide .slick-dots li.slick-active{ width: 40px;}*/
    .ixTit {
        font-size: 24px;
        text-align: left;
        padding-left: 10px
    }

    .ixPart2 {
        padding: 40px 10px 40px 0;
    }

    .ixPart2 a {
        padding: 15px 10px 10px;
        margin: 0 10px 16px;
    }

    .ixPart9 {
        margin: 0 10px;
        border-radius: 15px;
        padding: 30px 10px;
    }

    .ixPart11 {
        margin: 15px 10px;
        border-radius: 15px;
        padding: 30px 10px;
    }

    .ixPart11 .service-card {
        padding-top: 20px;
        padding-bottom: 0px;
    }

    .hot-banner {
        padding-right: 0;
        padding-bottom: 0;
    }

    .ixPart3 {
        margin: 15px 10px;
        border-radius: 15px;
        padding: 30px 10px;
    }

    .ixPart3 .left {
        margin: 0;
    }

    /*.ixPart3 .left .box1 .img{ width: 100%; height: 372px}*/
    .ixPart3 .left .box1 .txt {
        padding: 10px;
    }

    .ixPart3 .left .box1 .txt p {
        font-size: 18px;
        margin-bottom: 0;
    }

    .ixPart3 .slick-arrow {
        background-size: 16px;
    }

    .ixPart3 .box2 {
        margin: 15px 5px 0;
    }

    /*.ixPart3 .box2 .img{ height: 168px;}*/
    .ixPart3 .box2 p {
        height: 40px;
        line-height: 20px;
        margin-top: 5px;
        font-size: 14px
    }

    .ixPart4 {
        margin: 15px 10px;
        padding: 30px 10px;
        border-radius: 15px;
    }

    .ixPart4 .ixTit {
        padding-left: 20px;
    }

    .ixPart4 .txt {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .ixPart4 .t1 {
        border-bottom: 1px solid #eee
    }

    .ixPart4 .about-us-stat .about-us-stat-icon {
        padding-right: 5px;
    }

    .ixPart4 .about-us-stat .about-us-stat-icon img {
        width: 36px;
    }

    .ixPart4 .about-us-stat .about-us-stat-title {
        font-weight: 400;
        font-size: 13px;
    }

    .ixPart4 .about-us-stat .about-us-stat-number .counter-up{
        font-size: 1.6rem;
    }

    .ixPart4 .about-us-stat .about-us-stat-chart img{
        width: 130px;
    }

    /*.ixPart4 .t1 .counter-up{ font-size: 24px;}*/
    /*.ixPart4 .t1 span i{ font-size: 12px;}*/
    .ixPart5 {
        margin: 0 10px;
        border-radius: 15px;
        padding: 40px 10px 20px;
    }

    .ixPart5 .tzTit {
        margin-bottom: 20px;
    }

    .ixPart5 .tzTit span {
        font-size: 20px;
        line-height: 40px;
    }

    .ixPart5 .tzCon .box {
        margin: 10px 10px 0;
    }

    .ixPart6 {
        padding: 40px 10px;
    }

    .ixPart6 .hdCon {
        margin-right: 0;
    }

    .ixPart6 .hdTit {
        margin-left: 10px;
    }

    .ixPart6 .hdTit .txt span {
        font-size: 16px;
        margin: 0 0 7px;
    }

    .ixPart6 .hdTit .txt.a p {
        display: none;
    }

    .ixPart10 {
        margin: 15px 10px;
        padding: 30px 10px;
        border-radius: 15px;
    }

    .ixPart10 .txt {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .ixPart10 .t1 {
        border-bottom: 1px solid #eee
    }

    .ixPart7 {
        padding: 30px 10px 60px;
    }

    .ixPart7 .l a {
        margin: 0 5px 10px;
    }

    .ixPart8 {
        padding: 0 0 30px;
    }

    .ixPart8 .swiper-slide {
        padding: 0 5px 30px 0;
    }

    .ixPart10 .more-event {
        line-height: 40px;
    }

    .ixPart10 .tzTit span {
        font-size: 16px;
        line-height: 40px;
    }

    .ixPart10 .tzTit span {
        padding: 0 10px;
    }

    .footer {
        margin: 0;
        padding: 30px 15px 5px;
    }

    .footer .txt {
        margin: 0 10px 20px 0;
    }

    .footer .txt a {
        line-height: 28px;
    }

    .footer .code {
        float: left;
    }

    .footer .code img {
        max-width: 110px;
        width: 21%;
        margin-bottom: 5px;
    }

    .footer .copy {
        padding: 10px 0;
        font-size: 12px;
        margin-top: 20px;
    }

    .ixPart12 {
        padding: 30px 10px 10px 10px;
    }

    .ixPart12 .service-card {
        width: 33%;
    }

    .ixPart12 .service-card.sc0 { display: none }
    .ixPart12 .service-card.sc5 { display: none }
}

@media (max-width: 575px) {
    /*.ixPart3 .left .box1 .img{ width: 100%; height: 268px}*/
    /*.ixPart3 .box2 .img{ height: 128px;}*/
    .ixPart5 .tzCon .box {
        margin: 10px 0 0;
    }
}

.banner {
    position: relative;
    min-height: 180px;
    background: url(/images/banner12.jpg) 30% top no-repeat;
    background-size: cover;
}

.banner-cat-1, .banner-cat-141 {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(/images/banner26.jpg) center center no-repeat;
    background-size: cover;
}

.banner-cat-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(/images/banner2.jpg) center center no-repeat;
    background-size: cover;
}

.banner-cat-71, .banner-cat-132 {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(/images/banner23.jpg) center bottom no-repeat;
    background-size: cover;
}

.banner-cat-88, .banner-cat-147 {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(/images/banner25.jpg) center top no-repeat;
    background-size: cover;
}

.banner-cat-59, .banner-cat-144 {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(/images/banner20.png) center top no-repeat;
    background-size: cover;
}

.banner-cat-22, .banner-cat-142 {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(/images/banner21.png) center 80% no-repeat;
    background-size: cover;
}

.banner-cat-76, .banner-cat-145 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url(/images/banner-event.png) center center no-repeat;
    background-size: cover;
}

.banner-cat-84, .banner-cat-146 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)), url(/images/banner27.jpg) center center no-repeat;
    background-size: cover;
}

.banner-cat-47, .banner-cat-143 {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url(/images/banner22.jpg) center bottom no-repeat;
    background-size: cover;
}

.banner .title {
    position: absolute;
    left: 0;
    bottom: 0;
    display: inline-block;
    font-size: 30px;
    color: white;
    font-weight: 600;
    /*padding: 15px 30px;*/
    padding: 15px 3.846%;
    /*background: rgb(64 80 97 / 70%);*/
}

.top_title {
    font-size: 30px;
    color: white;
    font-weight: 600;
    position: absolute;
    bottom: 0;
}

.empty-state {
    margin: 32px 0;
    text-align: center;
}

.empty-state-image {
    height: 50px;
    margin-bottom: 8px;
}

.empty-state-image img {
    height: 100%;
    margin: auto;
}

.empty-state-label {
    font-size: 16px;
    padding: 4px 0;
}

[v-cloak] {
    display: none;
}
.right-side-item {
    padding: 5px 0;
}
.right-side-item:hover {
    background-color: #dddddd;
}
.right-side-item-icon {
    width: 20px;
    height: 20px;
    /*border-radius: 50%;*/
    margin-bottom: 2px;
}
.right-side-item-text {
    font-size: 12px;
    line-height: 1.2;
}