/* 重置
   ========================================================================== */
/*重置padding margin*/
* {
    padding: 0;
    margin: 0;
}

html {
    height: 100%;
/*	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);-webkit-filter: grayscale(100%);	*/
}

body {
    padding: 0;
    margin: 0;
    font-family: "Graphik Web", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif !important;
    color: #333;
    height: 100%;
    word-break: break-word;
/*	-webkit-filter: grayscale(100%); /* webkit */	*/
/*	-moz-filter: grayscale(100%); /*firefox*/	*/
/*	-ms-filter: grayscale(100%); /*ie9*/	*/
/*	-o-filter: grayscale(100%); /*opera*/	*/
/*	filter: grayscale(100%);
/*	filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); 	*/
/*	filter:gray;	*/
}

a, a:hover {
    text-decoration: none;
    cursor: pointer !important;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: inline-block;
}

*:focus {
    outline: none;
}

.main-content {
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 120px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-white {
    color: #fff;
}

.ft-color6{
    color: #666;
}

.ft-color3{
    color: #333;
}


.scrollbar {
    /*三角箭头的颜色*/
    scrollbar-arrow-color: #c9c3e3;
    /*滚动条滑块按钮的颜色*/
    scrollbar-face-color: #c9c3e3;
    /*滚动条整体颜色*/
    scrollbar-highlight-color: #fff;
    /*滚动条阴影*/
    scrollbar-shadow-color: #c9c3e3;
    /*滚动条轨道颜色*/
    scrollbar-track-color: #fff;
    /*滚动条3d亮色阴影边框的外观颜色——左边和上边的阴影色*/
    scrollbar-3dlight-color: #c9c3e3;
    /*滚动条3d暗色阴影边框的外观颜色——右边和下边的阴影色*/
    scrollbar-darkshadow-color: #c9c3e3;
    /*滚动条基准颜色*/
    scrollbar-base-color: #c9c3e3;
}

/*滚动条整体部分,必须要设置*/
.scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: rgba(241, 241, 241, 1);
}

/*滚动条的轨道*/
.scrollbar::-webkit-scrollbar-track {
    background-color: rgba(241, 241, 241, 1);
}

/*滚动条的滑块按钮*/
.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: rgba(201, 195, 227, 1);
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.5);
}

/*滚动条的上下两端的按钮*/
.scrollbar::-webkit-scrollbar-button {
    height: 0;
    background-color: rgba(255, 255, 255, 0);
}

/* 布局
   ========================================================================== */
/*布局*/
.fixed {
    position: fixed;
    top: 0px;
    z-index: 500;
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.relative {
    position: relative;
}

.mb40 {
    margin-bottom: 40px;
}

.mt40 {
    margin-top: 40px;
}

.fr {
    float: right !important;
}

.fl {
    float: left !important;
}

.bk-f1 {
    background-color: #F1F1F1;
}

.bk-img1 {
    background-image: url("/cn/static/images/bk-news.jpg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top left;
}

/* flex布局
   ========================================================================== */
/* 父元素-flex容器 */
.flex {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

/* 父元素-横向排列（主轴） */
.flex-h {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: horizontal;
    /* 12版 */
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}

/* 父元素-横向换行 */
.flex-hw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-水平居中（主轴是横向才生效） */
.flex-hc {
    /* 09版 */
    -webkit-box-pack: center;
    /* 12版 */
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    /* 其它取值如下：
      align-items     主轴原点方向对齐
      flex-end        主轴延伸方向对齐
      space-between   等间距排列，首尾不留白
      space-around    等间距排列，首尾留白
     */
}

/* 两端对齐*/
.flex-bt {
    /* 09版 */
    -webkit-box-pack: space-between;
    /* 12版 */
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}

/* 两端对齐*/
.flex-ar {
    /* 09版 */
    -webkit-box-pack: space-around;
    /* 12版 */
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}

/* 父元素-纵向排列（主轴） */
.flex-v {
    display: box; /* OLD - Android 4.4- */
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    /* 09版 */
    -webkit-box-orient: vertical;
    /* 12版 */
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

/* 父元素-纵向换行 */
.flex-vw {
    /* 09版 */
    /*-webkit-box-lines: multiple;*/
    /* 12版 */
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 父元素-竖直居中（主轴是横向才生效） */
.flex-vc {
    /* 09版 */
    -webkit-box-align: center;
    /* 12版 */
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
}

.flex-end {
    /* 09版 */
    -webkit-box-align: flex-end;
    /* 12版 */
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    -o-align-items: flex-end;
    align-items: flex-end;
}

.flex-stretch {
    /* 09版 */
    -webkit-box-align: stretch;
    /* 12版 */
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch;
}

/* header
   ========================================================================== */
.header {
    width: 100%;
    position: relative;
}

header {
    width: 1200px;
    height: 88px;
    margin: 0 auto;
    /*position: relative;*/
    /*overflow: hidden;*/
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header-left {
    /*width: 340px;*/
    position: relative;
    height: 88px;
}

.header-left .icon-logo {
    position: relative;
    height: 35px;
}

.header-left .icon-logo:after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 28px;
    background: #979797;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    right: 0;
}

.header-left .icon-stock {
    margin-left: 10px;
    height: 35px;
}

.header-nav {
    width: 650px;
}

/*
.active .header-left:after{
    content: '';
    width: 1200px;
    height: 1px;
    background-color: #D8D8D8;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}*/

.header-right {
    width: 140px;
}

.nav {
    font-size: 18px;
}

.nav li {
    height: 88px;
    line-height: 88px;
    /*padding: 30px 0;*/
    flex: 1;
    cursor: pointer;
    letter-spacing: -0.05em;
}

.nav li a,
.nav li span {
    width: 100%;
    height: 100%;
    display: inline-block;
    text-align: center;
    /* display:-moz-inline-box;!* Firefox *!
     display:-webkit-inline-box; !* Safari, Chrome, and Opera *!
     display:inline-box;!* W3C *!*/
    /*height: 18px;*/
    color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav li:hover a span,
.nav li.active a span {
    color: #2A1774;
    font-weight: bold;
}

.sub-nav {
    font-size: 14px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 88px;
    line-height: 52px;
    /*margin-top: 30px;*/
    background-color: #fff;
    /*border-top: 1px solid #D8D8D8;*/
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    cursor: default;
}


.sub-nav li {
    display: none;
    padding: 0px 35px;
    height: 52px;
    line-height: 52px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


.sub-nav.active li {
    display: inline-block;
}

.nav .sub-nav li a span {
    color: #333333;
    font-weight: normal;
}

.nav .sub-nav li:hover a span,
.nav .sub-nav li.active a span {
    color: #2A1774;
    font-weight: bold;
}

.login {
    background-color: #2A1774;
    border-radius: 500px;
    padding: 5px 5px;
    -webkit-box-shadow: 0px 0px 10px rgba(42, 23, 116, 0.6);
    -moz-box-shadow: 0px 0px 10px rgba(42, 23, 116, 0.6);
    box-shadow: 0px 0px 10px rgba(42, 23, 116, 0.6);
    margin-right: 10px;
}

.login li {
    padding: 0 5px;
}

.login a span {
    color: #fff;
}

.login .customer {
    font-size: 14px;
    /*border-right: 1px solid #fff;*/
}

.login .staff {
    font-size: 18px;
}

.login i {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url("/cn/static/images/icon-user.png") no-repeat center;
    background-size: auto;
}

.header-right .language {
    font-size: 12px;
    color: #2A1774;
    padding: 0 10px;
}

/* footer
   ========================================================================== */
.footer {
    background: #2A1774;
    padding: 50px 0 30px 0;
    font-size: 14px;
    color: #fff;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer .main-content {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.footer a {
    color: #fff;
    line-height: 1;
}

.footer a:hover {
    color: #FF6A07;
}

.footer-left {
    overflow: hidden;;
}

.footer-left .fr {
    margin-left: 20px;
}

.footer-left li {
    margin-bottom: 18px;
    line-height: 24px;
}

.footer-mid li {
    margin-bottom: 14px;
}

.footer-mid p {
    line-height: 25px;
}

.footer-mid .links a {
    border-right: 1px solid #fff;
    padding: 0 15px 0 10px;
}

.footer-mid .links a:last-child {
    border-right: none;
}

.footer-mid .links a:first-child {
    padding-left: 0;
}

.footer-right {
    /*margin-right: 40px;*/
}

.footer-right .links select {
    width: 236px;
    text-align: center;
    text-align-last: center;
}

.footer-right .search {
    width: 236px;
    position: relative;
}

.footer-right .links2 li{
    margin-right: 10px;
}

.footer-right .links2 li:last-child{
    margin-right: 0;
}

.footer-right .links {
    margin: 10px 0;
}

.footer-right .search,
.footer-right select,
.footer-right input {
    height: 30px;
    overflow: hidden;
    border: none;
}

.footer-right .search select {
    width: 170px;
    text-indent: 10px;
    border-right: 1px solid #E7E1E1;
}

.footer-right input {
    width: 270px;
    text-indent: 10px;
}

.btn-search {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
    cursor: pointer;
    top: 50%;
    margin-top: -12px;
}

.footer .language {
    width: 1200px;
    margin: 10px auto;
}

.footer .language,
.footer .language a {
    text-align: right;
}

.footer .language .active {
    color: #FF6A07;
}

/* 内页
   ========================================================================== */

/*banner*/
.inner-banner {
    width: 100%;
}

.inner-banner img {
    display: block;
}

/* 面包屑 */
.crumbs {
    padding: 20px 0;
}

.crumbs,
.crumbs a {
    font-size: 16px;
    color: #A193D8;
    line-height: 32px;
}

.crumbs .active {
    color: #2A1774;
    text-decoration: underline;
}

/*标题*/
.inner-title,
.news-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}

.color-333 {
    color: #333;
}

.img {
    width: 100%;
}

/*新闻列表*/
.news-list .item {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.news-list .item .date {
    width: 140px;
    height: 140px;
    background: #C9C3E3;
    border: 1px solid #979797;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
}

.news-list .item .day {
    font-size: 52px;
}

.news-list .item .content {
    margin-left: 50px;
    width: 1010px;

}

.news-list .item .list-title {
    width: 100%;
    font-size: 20px;
    color: #333;
    font-weight: bold;
    line-height: 1.6;
    overflow: hidden;
    white-space: nowrap; /*不换行*/
    text-overflow: ellipsis; /*超出部分文字以...显示*/
    text-align: left;
}

.news-list dl,
.news-list dd {
    margin: 0;
}

.news-list .item .intro {
    font-size: 16px;
    color: #666666;
    width: 100%;
    line-height: 1.6;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 15px;
}

.news-list .item .read-all {
    font-size: 16px;
    color: #666;
    font-weight: bold;
}

.news-list .item .read-all img {
    margin-left: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.news-list .item:hover .read-all img {
    transform: translateX(10px);
}

.page {
    text-align: right;
    margin-top: 60px;
}

.page-box{
    display: inline-block;
    vertical-align: middle;
    margin: 10px 0;
    font-size: 0;
    box-sizing: content-box;
}

.page-box>a:first-child,
.page-box>a:first-child em{
    border-radius: 2px 0 0 2px;
}

.page-box a {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px;
    height: 28px;
    line-height: 28px;
    margin: 0 -1px 5px 0;
    background-color: #fff;
    color: #333;
    font-size: 12px;
    border: 1px solid #e2e2e2;
}

.page-box em{
    font-style: normal;
}

.page-box .page-prev,
.page-box .page-next{
    font-family: Sim sun;
    font-size: 16px;
}

.page .layui-laypage a:hover,
.page .page-box a:hover {
    color: #2A1774;
}

.page-box .page-curr{
    background-color: #2A1774;
    color: #fff;
    border: 1px solid #2A1774;
}

.page-box .page-disable em{
    color: #d2d2d2;
    cursor: not-allowed;
}

.page-box .page-sqr{
    color: #999;
    font-weight: 700;
    cursor: none;
}

.page-box .page-curr:hover {
    color: #fff !important;
}

.shadow {
    -webkit-box-shadow: 0 0 100px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 100px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.2);
}

.contact-img {
    width: 460px;
}

.news-date {
    color: #999;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}

.pre {
    margin-top: 50px;
}

.pre a {
    color: #666;
    font-size: 18px;
    display: inline-block;
    line-height: 1.6;
    margin-bottom: 10px;
}

.pre a:hover {
    color: #2A1774;
}

/*人才政策*/
.sub-title {
    margin-bottom: 30px;
}

.sub-title li {
    text-align: center;
    width: 100%;
    flex: 1;
}

.sub-title a {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    width: 100%;
    display: block;
    padding-bottom: 30px;
    border-bottom: 1px solid #C9C3E3;
    position: relative;
}

.sub-title a:after {
    content: '';
    width: 0%;
    height: 3px;
    display: inline-block;
    background-color: #2A1774;
    position: absolute;
    bottom: -2px;
    left: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sub-title li.active a:after,
.sub-title li:hover a:after {
    content: '';
    width: 100%;
    height: 3px;
    display: inline-block;
    background-color: #2A1774;
    position: absolute;
    bottom: -2px;
    left: 0;
}

/*.sub-title li:hover a:after {
    content: '';
    width: 100%;
    height: 3px;
    display: inline-block;
    background-color: #2A1774;
    position: absolute;
    bottom: -2px;
    left: 0;
}*/

.staff-list .item,
.department-list .item {
    width: 390px;
    box-sizing: border-box;
    padding: 15px;
    padding-top: 0;
    margin-right: 15px;
    margin-bottom: 30px;
    -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
}

.staff-list .item:hover {
    -webkit-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    -moz-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
}

.staff-list .item:nth-child(3n) {
    margin-right: 0;
}

.staff-list .list-title,
.department-list .list-title {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 15px;
}

.staff-list .date {
    font-size: 18px;
    color: #cccccc;
    padding: 20px 0;
}

.department-box {
    margin-bottom: 80px;
}

.department-box .title {
    font-size: 24px;
    color: #333;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.department-box .sub-title {
    font-size: 18px;
    color: #333;
    text-align: center;
}

.department-list {
    height: 380px;
    position: relative;
}

.department-list .item {
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.department-list .item .num {
    background-color: #C9C3E3;
    color: #fff;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 500px;
}

.department-list .item .list-title,
.department-list .item .num {
    margin-top: 60px;
    margin-bottom: 15px;
}

.department-list .swiper-slide:hover .item,
.department-list .swiper-slide-active .item {
    border-bottom: 4px solid #2A1774;
    -webkit-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    -moz-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
}

.swiper-btn1.swiper-button-next {
    background-image: url("/cn/static/images/btn-next.png");
    right: -70px;
}

.swiper-btn1.swiper-button-next:hover {
    background-image: url("/cn/static/images/btn-nex-on.png");
    right: -70px;
}

.swiper-btn1.swiper-button-prev {
    background-image: url("/cn/static/images/btn-pre.png");
    left: -70px;
}

.swiper-btn1.swiper-button-prev:hover {
    background-image: url("/cn/static/images/btn-pre-on.png");
    left: -70px;
}

.swiper-btn1.swiper-button-next,
.swiper-btn1.swiper-button-prev {
    width: 60px;
    height: 60px;
    background-size: 60px;
    margin-top: -30px;
}

/**/
.swiper-btn2.swiper-button-next {
    background-image: url("/cn/static/images/btn-next2.png");
    right: 0;
}

.swiper-btn2.swiper-button-next:hover {
    background-image: url("/cn/static/images/btn-next2-on.png");
    right: 0;
}

.swiper-btn2.swiper-button-prev {
    background-image: url("/cn/static/images/btn-pre2.png");
    left: 300px;
}

.swiper-btn2.swiper-button-prev:hover {
    background-image: url("/cn/static/images/btn-pre2-on.png");
    left: 300px;
}

.swiper-btn2.swiper-button-next,
.swiper-btn2.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: #FFF;
    background-size: 50px;
    background-position: center;
    bottom: 0;
    top: inherit;
}

/**/

.position-list .title {
    font-size: 20px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 40px;
    margin-bottom: 0;
}

.position-list .item {
    position: relative;
}

.position-list .item a {
    padding: 20px 40px;
    border-bottom: 1px solid #ccc;
    font-size: 19px;
    display: block;
}

.position-list .item:hover a,
.position-list .item:hover:after {
    color: #2A1774;
}

.position-list .item:after {
    content: '>';
    font-size: 20px;
    color: #333333;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
}

.position-list .name {
    width: 40%;
    line-height: 1.6;
    overflow: hidden;
    white-space: nowrap; /*不换行*/
    text-overflow: ellipsis; /*超出部分文字以...显示*/
    text-align: left;
}

.position-list .department {
    width: 30%;
    line-height: 1.6;
    overflow: hidden;
    white-space: nowrap; /*不换行*/
    text-overflow: ellipsis; /*超出部分文字以...显示*/
    text-align: left;
}

.position-list .addr {
    width: 20%;
    line-height: 1.6;
    overflow: hidden;
    white-space: nowrap; /*不换行*/
    text-overflow: ellipsis; /*超出部分文字以...显示*/
    text-align: left;
}

.inner-img {
    margin-bottom: 40px;
}

.position-description {
    border-top: 1px solid #ccc;
    padding: 0 15px;
}

.position-description h2 {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.position-description .description-content {
    margin-bottom: 60px;
}

.position-description .description-content:last-child {
    margin-bottom: 0;
}

.position-description .description-title {
    font-size: 20px;
    color: #666666;
    margin-bottom: 30px;
    position: relative;
}

.position-description .description-title:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: #2A1774;
    position: absolute;
    left: -10px;
    top: 50%;
    margin-top: -9px;
}

.position-description .description {
    margin-left: 0;
    line-height: 1.8;
    font-size: 18px;
    color: #666666;
}

.btn-read {
    width: 82px;
    height: 36px;
    background: url("/cn/static/images/btn-read.png") no-repeat center;
    background-size: contain;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.staff-list .item:hover .btn-read {
    background: url("/cn/static/images/btn-read-on.png") no-repeat center;
    background-size: contain;
}

/*关于我们*/
.nums {
    margin-top: 50px;
}

.nums .name {
    font-size: 24px;
    font-weight: bold;
}

.nums .num {
    font-size: 80px;
    font-weight: bold;
    position: relative;
}

.nums dd {
    margin-left: 0;
}

.nums .num span {
    font-size: 20px;
}

.nums .num:before {
    content: '';
    width: 52px;
    height: 52px;
    display: inline-block;
}

.ziben .num:before {
    background: url("/cn/static/images/icon-ziben.png") no-repeat center;
    background-size: contain;
}

.zichan .num:before {
    background: url("/cn/static/images/icon-zichan.png") no-repeat center;
    background-size: contain;
}

.wangluo .num:before {
    background: url("/cn/static/images/icon-ditu.png") no-repeat center;
    background-size: contain;
}

.jigou .num:before {
    background: url("/cn/static/images/icon-fenzhi.png") no-repeat center;
    background-size: contain;
}

.about-intro {
    margin-bottom: 120px;
    display: table;
    /*min-height: 600px;*/
}

.about-intro .left,
.about-intro .right {
    width: 50%;
    height: 100%;
    background-color: #2A1774;
    display: table-cell;
    float: none !important;
}

.about-intro .img {
    height: 100%;
}

.about-intro .text {
    width: 85%;
    height: 100%;
    margin: 5% auto;
}

.about-intro .text .title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.about-intro .text .content {
    /*height: 100%;*/
}

/*大事记*/
.history {
    position: relative;
    margin-top: -90px;
}

.timeline {
    position: relative;
}

.year .text {
    font-size: 18px;
    color: #2A1774;
    text-align: center;
    padding: 10px 40px;
    border-radius: 500px;
    border: 1px solid #2A1774;
    background-color: #fff;
    cursor: pointer;
}

.swiper-slide-active .year .text {
    background-color: #2A1774;
    color: #fff;
}

.lone-line {
    width: 100%;
    height: 2px;
    background-color: #818181;
    position: absolute;
    top: 50%;
    margin-top: -1px;
}

.history .dot {
    text-align: center;
    margin-bottom: 50px;
}

.history .dot i {
    width: 36px;
    height: 36px;
    border: 5px solid rgba(255, 255, 255, 1);
    background-color: #818181;
    border-radius: 50%;
    display: inline-block;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.swiper-slide-active .dot i {
    width: 36px;
    height: 36px;
    background-color: #2A1774;
    position: relative;
}

.swiper-slide-active .dot i:after {
    content: '';
    width: 26px;
    height: 26px;
    display: inline-block;
    box-sizing: border-box;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -13px;
    left: 50%;
    margin-left: -13px;
}

.history .swiper-wrapper {
    margin-top: 100px;
}

.history-content .date {
    font-size: 24px;
    font-weight: bold;
    color: #2A1774;
}

.history-content {
    padding: 5% 0;
    padding-bottom: 0;
}

.history-content .history-list {
    margin: 0% 18%;
}

/*
.history-content .swiper-slide .editor-box{
    max-height: 660px;
    overflow-y: auto;
}*/

.history-content .swiper-wrapper {
    margin-top: 0;
}

.history-content .txt {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.history-content .item {
    margin-bottom: 50px;
}

.history-content .item.active .txt {
    color: #2A1774;
}

/*资质证书*/
.qualification .sort {
    padding-bottom: 20x;
    border-bottom: 1px solid #C9C3E3;
}

.qualification .sort:last-child {
    border-bottom: none;
}

.qualification .sort dt {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
    text-indent: 10px;
}

.qualification .sort dt:before {
    content: '';
    width: 4px;
    height: 18px;
    background-color: #2A1774;
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    left: 0;
}

.qualification dd {
    margin-left: 0;
}

.qualification .item {
    width: 260px;
    margin-bottom: 20px;
    padding: 10px 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.qualification .item:hover {
    z-index: 2;
    -webkit-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    -moz-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
}

.qualification .item .img {
    height: 200px;
    overflow: hidden;
}

.qualification .item .img a,
.qualification .item .img img {
    display: block;
    height: 100%;
    /*width: 100%;*/
    margin: 0 auto;
}

.qualification .item .txt {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    padding: 20px 0;
    height: 50px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*产品服务*/
.product-sort {
    position: relative;
    margin-bottom: 60px;
}

.product-sort .swiper-slide {
    /*width: 150px;*/
    width: 11.11%;
}

.product-sort .item {
    cursor: pointer;
    width: 100%;
    border-bottom: 1px solid #C9C3E3;
    position: relative;
    padding-bottom: 10px;
    color: #333;
}

.product-sort .item:after {
    content: '';
    width: 0%;
    height: 3px;
    display: inline-block;
    background-color: #2A1774;
    position: absolute;
    bottom: -2px;
    left: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.product-sort .swiper-slide:hover .item:after,
    /*.product-sort .swiper-slide-active .item:after,*/
.product-sort .swiper-slide.active .item:after {
    content: '';
    width: 100%;
    height: 3px;
    display: inline-block;
    background-color: #2A1774;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.product-sort .name {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    width: 120px;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-sort .img {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin: 0 auto;
}

.product-sort .img img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.product-sort .swiper-slide:hover img,
    /*.product-sort .swiper-slide-active img,*/
.product-sort .swiper-slide.active img {
    -webkit-transform: translateY(-60px);
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    -o-transform: translateY(-60px);
    transform: translateY(-60px);
}

.product-sort .swiper-slide:hover .item,
    /*.product-sort .swiper-slide-active .item,*/
.product-sort .swiper-slide.active .item {
    color: #2A1774;
}

.product-sort .swiper-button-next.swiper-button-disabled,
.product-sort .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.product-sort .swiper-button-next,
.product-sort .swiper-button-prev {
    display: none;
}

/*全球合作网络*/
.inland-map {
    height: auto;
}

.sub-title.sub-title2 span {
    position: relative;
}

.sub-title.sub-title2 span:before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    background-color: #2A1774;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    left: -38px;
}

.sub-title.sub-title2 li:nth-child(2) span:before {
    background-color: #2F8BD4;
}

.sub-title.sub-title2 li:nth-child(2).active a:after,
.sub-title.sub-title2 li:nth-child(2):hover a:after {
    background-color: #2F8BD4;
}

.inner-title2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 1.6;
    margin: 70px 0 20px 0;
}

.sub-title2 {
    font-size: 18px;
    color: #333;
    text-align: center;
    line-height: 1.8;
}

.card-list .item {
    position: relative;
    width: 580px;
    height: 320px;
    overflow: auto;
    border: 1px solid #979797;
    padding: 20px 30px;
    margin: 20px 0;
    background: url("/cn/static/images/bk-card.png") no-repeat bottom right;
    background-size: auto;
    box-sizing: border-box;
    -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
}


.card-list .item:hover {
    -webkit-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    -moz-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
}

.card-list .name {
    text-align: left;
    margin-bottom: 10px;
}

.card-list .name span {
    font-size: 20px;
    color: #2A1774;
    font-weight: bold;
    position: relative;
    padding: 10px;
}

.card-list .name span:before {
    content: '「';
    font-size: 20px;
    color: #2A1774;
    font-weight: bold;
    position: absolute;
    left: -10px;
    top: 6px;
}

.card-list .name span:after {
    content: '」';
    font-size: 20px;
    color: #2A1774;
    font-weight: bold;
    position: absolute;
    right: -10px;
    top: 6px;
}

.card-list .business,
.card-list .air-line {
    font-size: 18px;
    color: #2F8BD4;
    margin-bottom: 10px;
    line-height: 1.6;
}

.card-list .air-line {
    color: #333;
}

.card-list .business .title,
.card-list .air-line .title {
    display: block;
    text-align: left;
}

.card-list .other .title {
    width: 100px;
    text-align: left;
}
.card-list-en .other .title{
    width: auto;
}
.card-list ul .business .content,
.card-list ul .air-line .content {
    max-height: 56px;
    overflow: hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}

.card-list ul .business .content,
.card-list ul .air-line .content {
    max-height: 56px;
    overflow: hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
}

.card-list ul .other .content{
    width: 440px;
}

.card-list-en ul .other .content{
    width: auto;
}

.card-list .other {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.card-list.card-list-en .other .title{
    color: #333;
}

.card-list .other .content {
    color: #666;
}

.card-list .btn-more {
    position: absolute;
    right: 30px;
    bottom: 20px;
    text-align: right;
    margin-top: 10px;
}

.card-list .btn-more a {
    color: #666;
}

.card-modal .modal-dialog {
    width: 1000px;
    margin-top: 5%;
}

@media (min-width: 576px) {
    .card-modal .modal-dialog {
        max-width: 1000px;
    }
}

.card-modal .modal-content{
    background: url("/cn/static/images/bk-card.png") #fff no-repeat bottom right;
    background-size: auto;
    -webkit-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    -moz-box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
    box-shadow: 0px 0px 30px rgba(42, 23, 116, 0.6);
}

.card-modal .modal-header {
    border-bottom: none;
}

.card-modal .modal-body {
    margin: 0 80px;
    margin-bottom: 50px;
}

.card-modal .name{
    margin-bottom: 30px;
}

.card-modal .name:after {
    content: '';
    display: block;
    margin-top: 15px;
    width: 170px;
    height: 1px;
    background: #2A1774;
}
.card-modal .business,
.card-modal .air-line{
    margin-bottom: 20px;
}
.card-modal .business,
.card-modal .air-line,
.card-modal .other{
    font-size: 16px;
}

.card-modal .business .title,
.card-modal .air-line .title{
    font-weight: bold;
}

.card-modal .other .title{
    width: 82px;
}

.card-modal .other .content{
    width: auto;
}

.card-modal button.close{
    outline: none;
}

/*世界地图*/
.world-map-sec .world-map {
    width: 100%;
    height: 700px;
    position: relative;
}

.world-map-sec .map-img {
    width: 100%;
    height: 100%;
    /*background-image: url("/cn/static/images/inex-map-world-map.jpg");*/
    background-image: url("/cn/static/images/index-all-map.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position-x: center;
    background-position-y: 0px;
}

.world-map-sec .area-name {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    font-size: 28px;
    font-weight: bold;
    color: #2A1774;
}

.world-map-sec .area-name .item {
    position: absolute;
}

.world-map-sec .map-contents {
    position: absolute;
    cursor: pointer;
}

.world-map-sec .country {
    position: absolute;
    top: -98px;
    left: -30px;
    display: none;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.world-map-sec .country-name {
    width: 100px;
    height: 60px;
    text-align: center;
    /*line-height: 60px;*/
    /*display: inline-block;*/
    font-size: 18px;
    color: #2A1774;
    border: 2px solid #2A1774;
    background-color: rgba(255, 255, 255, 0.76);
    position: absolute;
    box-sizing: border-box;
}

.world-map-sec .line {
    width: 1px;
    display: inline-block;
    height: 50px;
    border-right: 1px dotted #2A1774;
    position: absolute;
    top: 62px;
    left: 50px;
}

.world-map-sec .cir-bg {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.world-map-sec .cir-pos {
    position: relative;
    width: 100%;
    height: 100%;
}

.world-map-sec .dot {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(42, 23, 116, 0.2);
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
}

.world-map-sec .pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: rgba(42, 23, 116, 1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    -webkit-animation: warn 2s ease-out infinite;
    -moz-animation: warn 2s ease-out infinite;
    animation: warn 2s ease-out infinite;
    box-shadow: 1px 1px 30px #fff;
}

.world-map-sec .pulse1 {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    background: rgba(42, 23, 116, 0.6);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    -webkit-animation: warn1 2s ease-out infinite;
    -moz-animation: warn1 2s ease-out infinite;
    animation: warn1 2s ease-out infinite;
    box-shadow: 1px 1px 30px #fff;
}

.world-map-sec .country.country-groups {
    background-color: rgba(42, 23, 116, 0.5);
    width: 220px;
    max-height: 280px;
    overflow: hidden;
    border-radius: 12px;
    color: #fff;
}

.world-map-sec .country-groups .box {
    margin: 20px;
}

.world-map-sec .group-name {
    font-size: 18px;
    border-bottom: 1px solid #D8D8D8;
    padding: 0 10px 10px 0px;
}

.world-map-sec .country-list {
    max-height: 200px;
    overflow: auto;
    margin-top: 10px;
}

.world-map-sec .country-list .item {
    margin: 5px 0;
}

@keyframes warn {
    0% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.0;
    }

    25% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.1;
    }

    50% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.3;
    }

    75% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0.0;
    }
}

@keyframes warn1 {
    0% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.0;
    }

    25% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.1;
    }

    50% {
        transform: scale(0.3);
        -webkit-transform: scale(0.3);
        opacity: 0.3;
    }

    75% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.8);
        -webkit-transform: scale(0.8);
        opacity: 0.0;
    }
}


/*登录系统*/
.login-list{
    height: auto;
}
.login-list .item{
    padding: 30px;
    margin: 20px;
    width: 360px;
    border-bottom: 4px solid #fff;
    box-sizing: border-box;
}

.login-list .item:hover{
    border-bottom: 4px solid #2A1774;
    -webkit-box-shadow: 0px 0px 10px rgba(42, 23, 116, 0.6);
    -moz-box-shadow: 0px 0px 10px rgba(42, 23, 116, 0.6);
    box-shadow: 0px 0px 10px rgba(42, 23, 116, 0.6);
}

.login-list .item .list-title{
    height: auto;
    margin: 0;
}

.login-list .item .num{
    margin: 0;
}
<!--0.00016093254089355-->