@charset "utf-8";

/*CSS Document*/
/* ==========================================================================================================================
										全局默认样式
========================================================================================================================== */
body {
    font-family: "微软雅黑", Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    color: #2E2E2E;
    line-height: 1.6;
}
*,html,div {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

ul,li,dd,dl,dt,ol{
    list-style: none;
    padding: 0px;
    margin: 0px;
}
em,i{
    font-style: normal;
}
hr{
    color: #eee;
    background: #eee;
}
a {
    color: #363636;
    text-decoration: none;
}
a:hover,.hov a,.navusb li a:hover {
    color: #1d4277;
    text-decoration: none !important;
}
li,a,p,span,em.i,div {
    outline: none;
}
h1,h2,h3,h4,h5,h6,p,ul,ol,dl,dt,li,body,form,input,button,img,cite,strong,em,table,td,th {
    padding: 0;
    margin: 0;
}
img {
    vertical-align: middle;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    box-shadow: none;
    -webkit-text-fill-color: #825e4c;
}
input:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
input {
    outline-color: invert;
    outline-style: none;
    outline-width: 0px;
    border: none;
    border-style: none;
    text-shadow: none;
    -webkit-appearance: none;
    -webkit-user-select: text;
    outline-color: transparent;
    box-shadow: none;
}
select:focus,textarea:focus,input:focus,.form-control:focus,.form-control,button,button:focus,video:focus,
button,input,optgroup,option,select,textarea {
    border: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
}
button,input[type="button"],input[type="reset"],input[type="submit"] {
    cursor: pointer;
    -webkit-transition: all;
    transition: all;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    text-align: center;
    vertical-align: top;
    white-space: nowrap;
    color: #825e4b;
    border: none;
    background-color: #fff;
    background-clip: padding-box;
}
/* ============================================================================================================================
													more-更多按钮
===============================================================================================================================*/
.more{
    position: relative;
    color: #2e2e2e;
    font-size:18px;
    overflow: hidden;
    padding-bottom:12px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.more1{
    color: #00a0e9;
}
.more2{
    color: #ffffff;
}
.more:hover{
    text-shadow: none!important;
    color: #1d2088;
    -webkit-transform: translateX(2%);
    transform: translateX(2%);
}
.more::before{
    content: "";
    display: block;
    width: 100%;
    bottom:0;
    left: 0;
    height: 3px;
    background-color: #2e2e2e;
    position: absolute;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index:1;
}
.more1::before{
    background-color: #00a0e9;
}
.more2::before{
    background-color: #ffffff;
}

.more::after{
    content: "";
    display: block;
    width: 0;
    bottom:0;
    left: 0;
    height: 3px;
    background-color: #1d2088;
    position: absolute;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 3;
}
.more2::after{
    background-color: #1d2088;
}
.more:hover:after{
    width: 100%;
}



/*======================================
全局display:flex排列布局
========================================*/
.dflex {
    display: -webkit-box;
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;
    /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;
    /* 混合版本语法: IE 10 */
    display: -webkit-flex;
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
}

/*从左至右*/
.dflex-lr {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

/*从右至左*/
.dflex-rl {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/*从上至下*/
.dflex-tb {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/*从下至上*/
.dflex-bt {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

/*主轴居中*/
.dflex-pack-center {
    -webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

/*主轴居左*/
.dflex-pack-start {
    -webkit-box-pack: start;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

/*主轴居右*/
.dflex-pack-end {
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

/*主轴左右不留白*/
.dflex-pack-between {
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/*主轴左右留白*/
.dflex-pack-around {
    -moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

/*交叉轴居中对齐*/
.dflex-align-center {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

/*交叉轴居左对齐*/
.dflex-align-start {
    -webkit-box-align: start;
    -moz-align-items: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

/*交叉轴居右对齐*/
.dflex-align-end {
    -webkit-box-align: end;
    -moz-align-items: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

/**指定子元素居中对齐**/
.self-align-center {
    align-self: center;
    -webkit-align-self: center;
    margin: 0 auto;
}

/**指定子元素顶部对齐**/
.self-align-start {
    align-self: flex-start;
    -webkit-align-self: flex-start;
}

/**指定子元素底部对齐**/
.self-align-end {
    align-self: flex-end;
    -webkit-align-self: flex-end;
}

/**指定子元素拉伸**/
.self-align-stretch {
    align-self: stretch;
    -webkit-align-self: stretch;
}

/*--换行--*/
.wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*--不换行--*/
.nwrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

/*允许子元素伸展（1倍）*/
.flex {
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    /*如果值是2 那么当前元素就是其他元素宽的2倍了*/
}

/*允许子元素收缩(1倍)*/
.shrink {
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    flex-shrink: 1;
}

/**水平居中*/
.dflex-center-center {
    display: -webkit-box;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    display: -moz-box;
    -moz-box-align: center;
    -moz-box-pack: center;
    text-align: center;
}

/* ============================================================================================================================
													超出省略
===============================================================================================================================*/
.ellipsis-1 {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ellipsis-2 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.ellipsis-3 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.ellipsis-4 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 4;
}

.ellipsis-5 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 5;
}

.ellipsis-6 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 6;
}

.ellipsis-7 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 7;
}

.ellipsis-8 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 8;
}
/*============================================================================================================================
	侧栏样式
/*============================================================================================================================*/
.sider_box{
	border-bottom: 4px solid #e4e4e4;
	height: 110px;
}
.sider_box ul{
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 106px;
}
.sider_box ul li{
	padding: 0 25px;
}
.sider_box ul li a{
	font-size: 25px;
	color: #2E2E2E;
	border-bottom: 4px solid transparent;
	position: relative;
	overflow: initial;
}
.sider_box ul li a::after{
	content: '';
	position: absolute;
	background: url(/themes/skin_en/default/static/images/sider-active.png) no-repeat;
	width: 20px;
	height: 20px;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
}
.sider_box ul li a::before{
	content: '';
    position: absolute;
	width: 14px;
	height: 14px;
	background: #fff;
	border: 1px solid #1D4277;
	border-radius: 50%;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
	opacity: 0;
}
.sider_box ul li.active a{
	border-bottom: 4px solid #1D4277;
	font-weight: bold;
}
.sider_box ul li.active a::after,
.sider_box ul li.active a::before{
	opacity: 1;
}
/*============================================================================================================================
动画过渡样式
/*============================================================================================================================*/
.transition {
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

/* ============================================================================================================================
css3动画
===============================================================================================================================*/
@keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-moz-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-o-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes bounce-up {
    25% {
        -webkit-transform: translateY(4px);
    }

    50%,
    100% {
        -webkit-transform: translateY(0);
    }

    75% {
        -webkit-transform: translateY(-4px);
    }
}

@keyframes bounce-up {
    25% {
        transform: translateY(4px);
    }

    50%,
    100% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-4px);
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.animate-bounce-up {
    position: absolute;
    top: -20px;
    right: -25px;
    -webkit-animation: bounce-up 1.6s linear infinite;
    animation: bounce-up 1.6s linear infinite;
    display: block;
}

.btn:focus {
    outline: none !important;
}

::-webkit-scrollbar {
    background-color: #f1f1f1;
    display: block;
}

::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}


@keyframes xia {
    0% {
      transform: translateY(-60%);
    }
    100% {
      transform: translateY(00%);
    }
}





/* ============================================================================================================================
													全局宽度
===============================================================================================================================*/
.container {
    width: 100%;
    max-width: 1400px;
    min-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* ==========================================================================================================================
										翻页
========================================================================================================================== */
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: #1d2088!important;
  border-color: #1d2088!important;
  color: #fff;
}
.pagination > li.active span{
	border: 1px solid #ccc;
}
.pagination > li{
	padding-left: 0;
}
.pagination > li > a,
.pagination > li > span {
  color: #333;
  margin-left: -1px;
  font-family: "microsoft yahei";
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
  margin: 50px 0 20px;
}

/* ==========================================================================================================================
										header 头部
========================================================================================================================== */
.header{
	position: fixed;
	width: 100%;
	z-index: 999;
	left: 0;
	top: 0;
}
.header .container{
	display: flex;
	align-items: center;
}
.header .header_box{
	width: 100%;
	height: 90px;
	background: rgba(67,67,67,0.45);
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.header .header_box:hover,
.header .header_fixed{
	background: #fff;
    color: #2E2E2E;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
/* 电话 */
.header .header_tel{
	overflow: hidden;
	color: #fff;
	font-size: 18px;
	border: 1px solid #fff;
	border-radius: 30px;
	width: 188px;
	height: 35px;
	padding: 0 10px;
}
.header .header_box:hover .header_tel,.header_fixed .header_tel{
	background: #00A0E9;
	border: 1px solid #00A0E9;
}
.header .header_tel img{
	width: 20px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 4px;
}
.header .header_tel a{
	color: #fff;
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
}
/* logo */
.header .header_logo{
	position: absolute;
	width: 173px;
	height: 64px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
/* 导航 */
.header .header_nav {
	height: 90px;
	padding: 0 35px;
	box-sizing: border-box;
	flex: 1;
	margin-left: -2.5%;
	margin-right: -1%;
}
.header .header_nav ul .navli{
	float: left;
	line-height: 90px;
	text-align: center;
	box-sizing: border-box;
	width: 10%;
}
.header .header_nav ul .navli:nth-child(5){
	margin-left: 20%;
    border-left: none;	
}
.header .header_nav ul .navli .navlia{
	color: #fff;
	font-size: 16px;
	position: relative;
	display: block;
}
.header .header_box:hover .header_nav ul .navli .navlia,
.header_fixed .header_nav ul .navli .navlia{
	color: #2E2E2E;
}
.header .header_nav ul .navli .navlia.menuon,
.header .header_nav ul .navli .navlia.menuon i{
	color: #00A0E9!important;
}
.header .header_nav ul .navli .navlia::before{
	content: '';
	position: absolute;
	width: 0%;
	height: 4px;
	background: #00A0E9;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.header .header_nav ul .navli .navlia.menuon::before{
	content: '';
	position: absolute;
	width: 80%;
	height: 4px;
	background: #00A0E9;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.header .header_nav ul .navli:first-child .navlia.menuon::before{
	content: '';
	position: absolute;
	width: 35%;
	height: 4px;
	background: #00A0E9;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.header .header_nav ul .navli .navsub{
	display: none;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 90px;
    text-align: center;
    background-size: cover;
    width: 100%;
    height: auto;
    background: #EBEFF8;
    overflow: hidden;
    z-index: 2;
}
.header .header_nav ul .navli .navsub ._picture{
	overflow: hidden;
	width: 60%;
	top: 0;
	left: 0;
	position: relative;
	float: left;
}
.header .header_nav ul .navli .navsub ._picture img{
	width: 100%;
	display: block;
}
.header .header_nav ul .navli .navsub ._picture ._title{
	overflow: hidden;
	position: absolute;
	top: 30px;
	left: 23%;
}
.header .header_nav ul .navli .navsub ._picture ._title h3{
	font-size: 35px;
	color: #fff;
	font-weight: normal;
}
.header .header_nav ul .navli .navsub .hd{
	overflow: hidden;
	float: right;
	width: 40%;
	line-height: 1.7;
	text-align: left;
	padding-top: 30px;
}
.header .header_nav ul .navli .navsub .hd h3{
	font-size: 25px;
	color: #2E2E2E;
	padding-left: 34px;
	font-weight: normal;
}
.header .header_nav ul .navli .navsub .hd ol{
	overflow: hidden;
	margin-top: 20px;
}
.header .header_nav ul .navli .navsub .hd ol li a{
	width: 100%;
	line-height: 48px;
	font-size: 16px;
	color: #2E2E2E;
	display: block;
	padding-left: 46px;
	position: relative;
}
.header .header_nav ul .navli .navsub .hd ol li a::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 34px;
	width: 2px;
	height: 14px;
	background: #1D2088;
	transform: translateY(-50%);
}
.header .header_nav ul .navli .navsub .hd ol li:hover a{
	background: #fff;
}
/* 语言切换 */
.header .header_language {
	overflow: hidden;
	color: #fff;
	line-height: 90px;
}
.header .header_language a{
	font-size: 14px;
	color: #fff;
	font-weight: bold;
}
.header .header_box:hover .header_language,
.header .header_box:hover .header_language a,
.header_fixed .header_language,
.header_fixed .header_language a{
	color: #2E2E2E;
}
.header .header_language a:last-child{
	color: #00A0E9!important;
}
/* 网站切换 */
.header .header_web {
	width: 90px;
	height: 35px;
	line-height: 35px;
	color: #fff;
	border: 1px solid #fff;
	margin-right: 16px;
	text-align: center;
	cursor: pointer;
	position: relative;
}
.header .header_box:hover .header_web,
.header_fixed .header_web{
	border: 1px solid #2E2E2E;
	color: #2E2E2E;
}
.header .header_web ul{
	position: absolute;
	top: 45px;
	width: 118px;
	right: 0;
	background: #fff;
	display: none;
}
.header .header_web ul::before{
	content: '';
	position: absolute;
	width:0;
	height:0;
	border-top:6px solid transparent;
	border-bottom:6px solid transparent;
	border-right:6px solid #F3F3F3;
	top: -6px;
	right: 0;
}
.header .header_web ul li a{
	width: 100%;
	display: block;
	border: 1px solid #EEEEEE;
	border-top: none;
	color: #2e2e2e;
}
.header .header_web ul li:hover a{
	background: #f3f3f3;
} 
/* ==========================================================================================================================
										footer 底部
========================================================================================================================== */
.footer {
    width: 100%;
	overflow: hidden;
    padding-top: 35px;
    background: #161a25;
	color: #fff;
}
.footer .footer_top{
	overflow: hidden;
	width: 100%;
	margin-bottom: 30px;
}
.footer .footer_top .footer_nav{
	overflow: hidden;
}
.footer .footer_top .footer_nav li{
	float: left;
	padding: 0 20px;
}
.footer .footer_top .footer_nav li:first-child{
	padding-left: 0;
}
.footer .footer_top .footer_nav li a{
	color: #fff;
	font-size: 16px;
	display: block;
	height: 40px;
}
.footer .footer_top .footer_tel{
	font-size: 16px;
	color: #fff;
	margin-top: -4px;
	display: flex;
	align-items: center;
}
.footer .footer_top .footer_tel b{
	font-size: 30px;
	line-height: initial;
}
.footer .footer_bottom{
	overflow: hidden;
	width: 100%;
	margin-bottom: 20px;
}
.footer .footer_bottom .footer_info{
	overflow: hidden;
}
.footer .footer_bottom .footer_info span{
	width: 176px;
	height: 66px;
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
}
.footer .footer_bottom .footer_info p{
	font-size: 16px;
	color: #fff;
	line-height: 26px;
}
.footer .footer_bottom .footer_code{
	overflow: hidden;
	width: 300px;
} 
.footer .footer_bottom .footer_code li{
	overflow: hidden;
	text-align: center;
	margin-left: 20px;
	font-size: 16px;
	color: #fff;
}
.footer .footer_bottom .footer_code li span{
	width: 100%;
	display: block;
	max-width: 131px;
	margin: 0 auto;
	margin-bottom: 4px;
}
.footer .footer_bottom .footer_code li span img{
	width: 100%;
}
.footer .footer_copyright{
	border-top: 1px solid #434343;
	padding: 30px 0;
}
.footer .footer_copyright .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer .footer_copyright_fl{
	display: flex;
	align-items: center;
	font-size: 14px;
}
.footer .footer_copyright_fl a{
	font-size: 14px;
	color: #fff;
}
.footer .footer_link{
	width: 190px;
	position: relative;
}
.footer .footer_link h5{
	border-bottom: 1px solid #fff;
	padding-bottom: 12px;
	font-size: 16px;
	font-weight: normal;
}
.footer .footer_link ul{
	width: 100%;
    max-height: 120px;
    position: absolute;
    top: -120px;
    left: 0;
	opacity: 0;
    background-color: #f7f7f7;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    overflow: hidden;
    overflow-y: initial;
	visibility: hidden;
}
.footer .footer_link ul li a{
	height: 38px;
	line-height: 38px;
	display: block;
	color: #666;
	padding: 0 20px;
	font-size: 14px;
}
.footer .footer_link:hover ul{
	visibility: visible;
	opacity: 1;
}

/* ==========================================================================================================================
								sidebar	侧栏浮动
========================================================================================================================== */
.sidebar_consult{
	position: fixed;
	top: 300px;
	right: 0;
	width: 50px;
    z-index: 10;
    display: none;
}
.sidebar_consult li {
    width: 62px;
    height: 50px;
    z-index: 20;
}
.sidebar_consult li a {
    display: block;
    color: #FFF;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    background-color: #1d2088;
    opacity: 0.85;
    border-radius: 6px;
}
.sidebar_consult li a img {
    display: block;
    float: left;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin: 12px 12px 14px 14px;
}
.sidebar_consult li.sidebar_li1,
.sidebar_consult li.sidebar_li4{
	position: absolute;
	left: 0;
}
.sidebar_consult li.sidebar_li1{
    top: 0;
    width: 172px;
}
.sidebar_consult li.sidebar_li2{
    position: absolute;
    top: 51px;
    left: 0;
}
.sidebar_consult li.sidebar_li3{
    position: absolute;
    top: 102px;
    left: 0;
    width: 126px;
}
.sidebar_consult li.sidebar_li4{
    top: 153px;
}
.sidebar_consult .sidebar_code{
    display: none;
    position: absolute;
    top: -120px;
    left: -160px;
    padding-bottom: 9px;
}
.sidebar_consult .sidebar_code img {
    padding: 4px;
    background-color: #FFF;
    width: 155px;
    border: 1px solid rgba(0,0,0,0.1);
}
.sidebar_consult .sidebar_code{
    top: -50px;
}
/* ==========================================================================================================================
										index 首页
========================================================================================================================== */

/* banner 海报 */
.banner_box {
    position: relative;
}
.banner_box,
.banner_box .banner_container,
.banner_box a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.banner_box .swiper-slide {
    position: relative;
}

.banner_box .swiper-slide a {
    position: relative;
    z-index: 1;
}

.banner_box img {
    width: 100%;
    display: block;
}

.banner_box .swiper-pagination{
    text-align: center;
    bottom: 70px;
}

.banner_box .swiper-pagination-bullet {
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: initial;
  width: 12px;
  height: 12px;
  opacity: 1;
  margin: 0 6px !important;
}
.banner_box .swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.banner_box .banner_prev,
.banner_box .banner_next {
    position: absolute;
    width:16px;
    height:30px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 2;
    opacity: 0;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;

}
.banner_box .banner_prev {
    left:0px;
    background: url(/themes/skin_en/default/static/images/b-left.png) no-repeat center;
    background-size: 100%;
}

.banner_box .banner_next {
    right:0px;
    background: url(/themes/skin_en/default/static/images/b-right.png) no-repeat center;
    background-size: 100%;
}
.banner_box:hover .banner_prev {
    left:40px;
}

.banner_box:hover .banner_next {
    right:40px;
}
.banner_box:hover .banner_prev,
.banner_box:hover .banner_next {
    opacity:0.5;
}
.banner_box .banner_prev:hover,
.banner_box .banner_next:hover{
    opacity:1;
}
.banner_box .banner_prev:focus,
.banner_box .banner_next:focus {
    outline: none;
}
/* banner 点击下拉 */
.netbox{
    position: absolute;
    bottom:1%;
    left: 50%;
    width: 80px!important;
    height: auto!important;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 888;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: block;
}
.netbox img {
    width: 23px;
    height: 20px;
    display: block;
    margin:10px auto 0;
    animation: xia 0.5s linear infinite alternate;
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}
.netbox span {
    color: #fff;
    font-size:12px;
}

/* ny-banner 内页海报 */
.page-banner {
    overflow: hidden;
    width: 100%;
	position: relative;
}
.page-banner .container{
	position: relative;
}
.page-banner img {
    width: 100%;
    display: block;
}
.page-banner-title{
	position: absolute;
	overflow: hidden;
	left: 0;
	bottom: 85px;
}
.page-banner-title h3{
	font-size: 35px;
	color: #fff;
	line-height: initial;
}
.page-banner-title h4{
	font-size: 30px;
	color: #fff;
	font-weight: normal;
	text-transform: uppercase;
}


/* crumb 面包屑 */
.crumb{
    overflow: hidden;
	height: 60px;
	background: #fff;
	border-bottom: 1px solid #eeeeee;
}
.crumb .crumb_box{
	overflow: hidden;
	float: left;
	height: 60px;
	line-height: 60px;
}
.crumb .crumb_box ul li{
	float: left;
}
.crumb .crumb_box ul li a{
	color: #878787;
	font-size: 14px;
}
.crumb .crumb_box ul li em{
	width: 14px;
	height: 14px;
	display: inline-block;
}
.crumb .crumb_nav{
	float: right;
	overflow: hidden;
	height: 60px;
	line-height: 60px;
}
.crumb .crumb_nav li{
	float: left;
	margin-left: 30px;
	position: relative;
    transition: all .4s ease;
}
.crumb .crumb_nav li::after{
	content: "";
	width: 0;
	left: 0;
	background: #1D2088;
	height: 2px;
	transition: all .6s ease;
	position: absolute;
	bottom: 1px;
}
.crumb .crumb_nav li a{
	font-size: 16px;
}
.crumb .crumb_nav li.active::after,
.crumb .crumb_nav li:hover::after{
	width: 100%;
}
.crumb .crumb_nav li.active a{
	color: #1D2088;
}

/* ==========================================================================================================================
										lists 列表
========================================================================================================================== */
/* list_pro 产品模型 */
.list_pro{
	overflow: hidden;
	padding: 50px 0;
	background: #fafafa;
}
.list_pro .list_pro_main{
	overflow: hidden;
}
.list_pro_main ul li{
	width: 49%;
	background: #fff;
	position: relative;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
	padding: 30px;	
}
.list_pro_main ul li:nth-child(2n){
	margin-right: 0;
}
.list_pro_main ul li dt{
	width: 50%;
    float: left;
	overflow: hidden;
	text-align: center;
}
.list_pro_main ul li dt img{
    max-width: 100%;
    transform: scale(.96);	
}
.list_pro_main ul li dd{
    width: 46%;
    float: right;
    padding-top: 24px;
}
.list_pro_main ul li dd h3{
	font-size: 30px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: initial;
}
.list_pro_main ul li dd p{
    font-size: 14px;
    color: #878787;
    line-height: 25px;
    margin: 20px 0 25px 0;
}
.list_pro_main ul li dd ._btn{
	overflow: hidden;
	margin-top: 20px;
	padding-bottom: 10px;
}
.list_pro_main ul li dd span{
	font-size: 18px;
	color: #2e2e2e;
	padding-bottom: 10px;
	border-bottom: 3px solid #2e2e2e;
}
.list_pro_main ul li:hover dt img{
	transform: scale(.98) translateY(-10px);
}
.list_pro_main ul li:hover dd h3{
	color: #1D2088;
}
.list_pro_main ul li:hover dd span{
	color: #1D2088;
	border-bottom: 3px solid #1D2088;
}

/* list_article 文章模型 */
.list_article{
	overflow: hidden;
	padding: 45px 0 55px;
}
.list_article .list_article_main{
	overflow: hidden;
	margin-bottom: -2%;
}
.list_article_main ul li{
	width: 32%;
	overflow: hidden;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid #e5e5e5;
}
.list_article_main ul li:nth-child(3n){
	margin-right: 0;
}
.list_article_main ul li dt{
	width: 100%;
	overflow: hidden;
}
.list_article_main ul li dt img{
	width: 100%;
	display: block;
}
.list_article_main ul li dd{
	overflow: hidden;
	padding: 25px;
}
.list_article_main ul li dd em{
	font-size: 18px;
	color: #a3a3a3;
}
.list_article_main ul li dd h3{
	font-size: 25px;
	color: #2e2e2e;
	font-weight: normal;
	line-height: 1.4;
	margin: 15px 0;
	height: 70px;
}
.list_article_main ul li dd p{
	font-size: 16px;
	color: #a3a3a3;
	height: 50px;
}
.list_article_main ul li:hover dt img{
	transform: scale(1.05);
}
.list_article_main ul li:hover dd h3{
	color: #1D4277;
}

/* list_mutil 图文模型 */
.list_mutil{
	overflow: hidden;
	padding: 50px 0;
	background: #fafafa;
}
.list_mutil .list_mutil_main{
	overflow: hidden;
}
.list_mutil_main ul li{
	width: 23.5%;
	float: left;
	overflow: hidden;
	margin-right: 2%;
	margin-bottom: 3%;
}
.list_mutil_main ul li:nth-child(4n){
	margin-right: 0;
}
.list_mutil_main ul li dt{
	width: 100%;
	overflow: hidden;
	padding: 25px 52px;
	border: 1px solid #e3e3e3;
	background: #fff;
}
.list_mutil_main ul li dt img{
	width: 100%;
	display: block;
}
.list_mutil_main ul li dd{
	overflow: hidden;
	padding-top: 20px;
	text-align: left;
}
.list_mutil_main ul li dd h3{
	font-size: 24px;
	color: #2e2e2e;
	font-weight: normal;
}
.list_mutil_main ul li dd ._btn{
	overflow: hidden;
	margin-top: 20px;
	padding-bottom: 10px;
}
.list_mutil_main ul li dd span{
	font-size: 18px;
	color: #2e2e2e;
	padding-bottom: 10px;
	border-bottom: 3px solid #2e2e2e;
}
.list_mutil_main ul li:hover dt img{
	transform: scale(1.05);
}
.list_mutil_main ul li:hover h3{
	color: #1d2088;
}
.list_mutil_main ul li:hover span{
	border-bottom: 3px solid #1D2088;
	color: #1D2088;
}

/* list_application 应用领域 */
.list_application{
	overflow: hidden;
	padding: 50px 0;
	background: #fafafa;
}
.list_application .list_application_main{
	overflow: hidden;
}
.list_application_main ul li{
	width: 32%;
	float: left;
	overflow: hidden;
	margin-right: 2%;
	margin-bottom: 3%;
}
.list_application_main ul li:nth-child(3n){
	margin-right: 0;
}
.list_application_main ul li dt{
	width: 100%;
	overflow: hidden;
	border: 1px solid #e3e3e3;
	background: #fff;
}
.list_application_main ul li dt img{
	width: 100%;
	display: block;
}
.list_application_main ul li dd{
	overflow: hidden;
	padding-top: 20px;
	text-align: left;
}
.list_application_main ul li dd h3{
	font-size: 24px;
	color: #2e2e2e;
	font-weight: normal;
}
.list_application_main ul li dd ._btn{
	overflow: hidden;
	margin-top: 20px;
	padding-bottom: 10px;
}
.list_application_main ul li dd span{
	font-size: 18px;
	color: #2e2e2e;
	padding-bottom: 10px;
	border-bottom: 3px solid #2e2e2e;
}
.list_application_main ul li:hover dt img{
	transform: scale(1.05);
}
.list_application_main ul li:hover h3{
	color: #1d2088;
}
.list_application_main ul li:hover span{
	border-bottom: 3px solid #1D2088;
	color: #1D2088;
}
/* ==========================================================================================================================
										detail 详情
========================================================================================================================== */
/* 图文详情 */
.detail_multi{
	overflow: hidden;
	padding: 45px 0;
}
.detail_multi .detail_multi_main{
    overflow: hidden;
    width: 100%;
    float: left;
    margin-right: 2%;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    padding: 30px;
    border-radius: 5px;
}
.detail_multi .detail_multi_main ._title {
    overflow: hidden;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.detail_multi .detail_multi_main ._title ._title_top {
    overflow: hidden;
}
.detail_multi .detail_multi_main ._title ._title_top p{
    font-size: 14px;
    color: #2E2E2E;
    float: left;
}
.detail_multi .detail_multi_main ._title h2 {
    font-size: 24px;
    font-weight: normal;
    color: #2E2E2E;
    clear: both;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}
.detail_multi .detail_multi_main ._content {
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    min-height: 300px;
}
.detail_multi .detail_multi_main .return{
    overflow: hidden;
    padding-top: 20px;
    display: flex;
    justify-content: space-around;
}
.detail_multi .detail_multi_main .return a{
    font-size: 16px;
    color: #333;
}

/* 文章详情 */

.detail_article{
	overflow: hidden;
	padding: 45px 0;
}
.detail_article .detail_article_main{
    overflow: hidden;
    width: 73%;
    float: left;
    margin-right: 2%;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    padding: 30px;
    border-radius: 5px;
}
.detail_article .detail_article_main ._title {
    overflow: hidden;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}
.detail_article .detail_article_main ._title ._title_top {
    overflow: hidden;
}
.detail_article .detail_article_main ._title ._title_top p{
    font-size: 14px;
    color: #2E2E2E;
    float: left;
}
.detail_article .detail_article_main ._title h2 {
    font-size: 24px;
    font-weight: normal;
    color: #2E2E2E;
    clear: both;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}
.detail_article .detail_article_main ._content {
    overflow: hidden;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    min-height: 300px;
}
.detail_article .detail_article_main .return{
    overflow: hidden;
    padding-top: 20px;
    display: flex;
    justify-content: space-around;
}
.detail_article .detail_article_main .return a{
    font-size: 16px;
    color: #333;
}
.detail_article .recommend-mian{
    overflow: hidden;
    width: 25%;
    float: right;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 30px;
}
.detail_article .recommend-mian h3{
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.detail_article .recommend-mian ul{
    overflow: hidden;
}
.detail_article .recommend-mian ul li a{
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #2E2E2E;
    height: 35px;
    line-height: 35px;
}

/* product 产品详情 */
.detail_pro{
	overflow: hidden;
	position: relative;
}
.detail_pro .pro_banner{
    width: 100%;
    display: block;
    height: 670px;
    object-fit: cover;
}
.detail_pro .detail_pro_box{
	overflow: hidden;
	position: absolute;
	top: 165px;
	left: 0;
	width: 100%;
	height: 100%;
}
.detail_pro .detail_pro_thumb{
	overflow: hidden;
	width: 52%;
	float: left;
	height: 424px;
	background: #fff;
	text-align: center;
	line-height: 424px;
	position: relative;
}
.detail_pro_thumb .detail_pro_next, 
.detail_pro_thumb .detail_pro_prev{
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
}
.detail_pro_thumb .detail_pro_prev{
    width:28px;
    height: 55px;
    background: url(/themes/skin_en/default/static/images/big-arrow-left.png) no-repeat;
	background-size: 100%;
    left: 20px;
}
.detail_pro_thumb .detail_pro_next{
    width: 28px;
    height: 55px;
    background: url(/themes/skin_en/default/static/images/big-arrow-right.png) no-repeat;
	background-size: 100%;
    right: 20px;
}
.detail_pro .detail_pro_thumb_list{
	overflow: hidden;
	width: 80%;
	margin: 0 auto;
}
.detail_pro .detail_pro_thumb_list li span{
	position: absolute;
	width: 50%;
	z-index: 999;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
}
.detail_pro .detail_pro_thumb_list li a{
    width: 100%;
    display: block;
    position: relative;
    padding-top: 74.5%;
}
.detail_pro .detail_pro_thumb_list li a img{
    width: 80%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.detail_pro .detail_pro_text{
	overflow: hidden;
	float: right;
	text-align: right;
	width: 48%;
	color: #fff;
	padding-top: 80px;
	padding-left: 20px;
}
.detail_pro .detail_pro_text h2{
	font-size: 40px;
	font-weight: normal;
	margin-bottom: 15px;
}
.detail_pro .detail_pro_text h3{
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 10px;
}
.detail_pro .detail_pro_text span{
	font-size: 30px;
	display: block;
	cursor: pointer;
}
.detail_pro .detail_pro_text span img{
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}

.detail_pro_content{
	padding: 50px 0;
}
.detail_pro_content .detail_pro_content_tab{
	display: flex;
	align-items: center;
	background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);	
}
.detail_pro_content .detail_pro_content_tab a{
	line-height: 80px;
	width: 25%;
	border-right: 1px solid #E6E6E6;
	display: block;
	text-align: center;
	border-bottom: 2px solid #fff;
	font-size: 25px;
	color: #2e2e2e;
}
.detail_pro_content .detail_pro_content_list{
	background: #fff;
	padding: 0 28px;
	margin-top: 50px;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
}
.detail_pro_content .detail_pro_content_list ._content{
	border-bottom: 1px solid #eeeeee;
	padding: 30px 0;
	line-height: 36px;
	font-size: 16px;
	color: #717171;
}
.detail_pro_content .detail_pro_content_list ._content:last-child{
	border-bottom: none;
}
.detail_pro_content .detail_pro_content_list ._content ._title{
	display: flex;
	align-items: center;
	color: #2e2e2e;
	font-size: 20px;
	margin-bottom: 10px;
}
.detail_pro_content .detail_pro_content_list ._content ._title i {
    width: 5px;
    height: 18px;
    background: #1d2088;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.detail_pro_content .detail_pro_content_list ._content ._text{
	color: #717171;
}
.detail_pro_content .detail_pro_content_list ._content ._table{
	display: flex;
	align-items: flex-start;
}
.detail_pro_content .detail_pro_content_tab a:hover{
	border-bottom: 2px solid #1D2088;
	color: #1D2088;
}
.detail_pro_content .detail_pro_content_list ._content ._text ul{
	overflow: hidden;
	margin-top: 20px;
}
.detail_pro_content .detail_pro_content_list ._content ._text ul li{
	width: 19%;
	float: left;
	overflow: hidden;
	position: relative;
	margin-right: 1.25%;
}
.detail_pro_content .detail_pro_content_list ._content ._text ul li:last-child{
	margin-right: 0;
}
.detail_pro_content .detail_pro_content_list ._content ._text ul li img{
	width: 100%;
	display: block;
}
.detail_pro_content .detail_pro_content_list ._content ._text ul li dd{
	position: absolute;
	width: 100%;
	background: rgba(46,46,46,0.7);
	left: 0;
	bottom: 0;
	font-size: 14px;
	color: #fff;
	padding: 6px;
	text-align: center;
}

.detail_pro_inquiry{
	overflow: hidden;
	background: #eceff4;
	padding: 50px 0 50px;
}
.detail_pro_inquiry ._title{
	overflow: hidden;
	text-align: left;
	margin-bottom: 50px;
}
.detail_pro_inquiry ._title h2{
	font-size: 35px;
	font-weight: normal;
	color: #2E2E2E;
    margin-bottom: 5px;
}
.detail_pro_inquiry ._title p{
	font-size: 16px;
	color: #8a8a8a;
}
.detail_pro_inquiry form{
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: -45px;
}
.detail_pro_inquiry form .form-row{
	overflow: hidden;
	width: 48%;
	margin-bottom: 45px;
}
.detail_pro_inquiry form .form-row .row-controls{
	margin-left: 0;
}
.detail_pro_inquiry form .form-row input{
	overflow: hidden;
	width: 100%;
	height: 60px;
	line-height: 60px;
	padding: 0 25px;
    font-size: 16px;
	color: #8a8a8a;
}
.detail_pro_inquiry form .form-row:nth-child(3){
	width: 100%;
}
.detail_pro_inquiry form .form-row textarea{
	width: 100%;
	padding: 25px;
	font-size: 16px;
	color: #8A8A8A;
}
.detail_pro_inquiry form .form-row:nth-child(4) input{
	width: 45%;
}
.detail_pro_inquiry form .form-row:nth-child(4) .verifyimg{
	height: 60px;
	width: 180px;
	cursor:pointer;
	top: 0; 
	position: relative;
	margin-left: 30px;
}
.detail_pro_inquiry form .form-row .btn{
	width: 210px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	font-size: 20px;
	color: #fff;
	background: #1d2088;
	border-radius: 0;
	float: right;
	padding: 0;
}

/* about 关于我们 */
.detail_about{
	overflow: hidden;
	padding: 60px 0 0 0;
}
.detail_about .detail_about_fl{
	overflow: hidden;
	width: 50%;
}
.detail_about .detail_about_fl img{
	width: 100%;
	display: block;
}
.detail_about .detail_about_fl:hover img{
	transform: scale(1.1);
}
.detail_about .detail_about_fr{
	overflow: hidden;
	width: 50%;
	padding-left: 45px;
	padding-top: 10px;
}
.detail_about .detail_about_fr h1{
    font-size:48px;
	color: #2E2E2E;
	font-weight: normal;
	margin:0;
	line-height: initial;
}

.detail_about .detail_about_fr h2{
	font-size: 35px;
	color: #1d2088;
	line-height: initial;
	margin-bottom: 20px;
}
.detail_about .detail_about_fr ._text{
	overflow: hidden;
}
.detail_about .detail_about_fr ._text p{
	font-size: 16px;
	color: #878787;
}
.detail_about .detail_about_fr ._text p span{
	font-size: 20px;
	color: #1D2088;
}

.detail_support{
	overflow: hidden;
	padding: 90px 0 0;
}
.detail_support .detail_support_fl{
	overflow: hidden;
	width: 50%;
	padding-right: 95px;
	padding-top: 50px;
}
.detail_support .detail_support_fl ._title span{
	display: block;
	width: 95%;
}
.detail_support .detail_support_fl ._title img{
	width: 100%;
	display: block;
}
.detail_support .detail_support_fl h2{
	font-size: 48px;
	color: #2E2E2E;
	font-weight: normal;
	line-height: initial;
	display: none;
}
.detail_support .detail_support_fl h3{
	font-size: 35px;
	color: #1d2088;
	line-height: initial;
	margin-bottom: 35px;
    text-transform: uppercase;
}

.detail_support .detail_support_fl ul{
	overflow: hidden;
	margin-bottom: -20px;
}
.detail_support .detail_support_fl ul li{
	float: left;
	color: #fff;
	background: #00a0e9;
	font-size: 14px;
	border-radius: 30px;
	text-align: center;
	width: 40%;
	height: 36px;
	line-height: 36px;
	margin-right: 28px;
	font-weight: normal;
	margin-bottom: 20px;
	padding: 0 10px;
}
.detail_support .detail_support_fr{
	width: 50%;
	overflow: hidden;
}
.detail_support .detail_support_fr img{
	max-width: 100%;
	display: block;
}
.detail_support .detail_support_fr:hover img{
	transform: scale(1.1);
}

.detail_advantages{
	overflow: hidden;
	position: relative;
	padding-top: 85px;
	padding-bottom: 45px;
}
.detail_advantages .container{
	position: relative;
}
.detail_advantages::after{
	content: '';
	width: 100%;
	height: 50%;
	bottom: 0;
	left: 0;
	position: absolute;
	background: #eee;
}
.detail_advantages .detail_advantages_box{
	overflow: hidden;
	margin: 0 100px;
	position: relative;
}
.detail_advantages .detail_advantages_box .swiper-slide{
	position: relative;
	width: 672px;
}
.detail_advantages .detail_advantages_box ul li dt{
	overflow: hidden;
	margin-bottom: 20px;
}
.detail_advantages .detail_advantages_box ul li dt img{
    transition: all 1s ease;
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
.detail_advantages .detail_advantages_box ul li:hover dt img{
	transform: scale(1.1);
}
.detail_advantages .detail_advantages_box ul li dd{
	overflow: hidden;
	text-align: center;
	opacity: 0;
}
.detail_advantages .detail_advantages_box ul li dd h3{
	font-size: 35px;
	color: #2e2e2e;
	font-weight: normal;
	line-height: initial;
}
.detail_advantages .detail_advantages_box ul li dd p{
	font-size: 20px;
	color: #2E2E2E;
	margin-top: 5px;
}
.detail_advantages .detail_advantages_box ul .swiper-slide-active dd{
	opacity: 1;
}
.detail_advantages .adv-next,
.detail_advantages .adv-prev{
	position: absolute;
	top: 40%;
	z-index: 10;
	cursor: pointer;
}
.detail_advantages .adv-prev{
	width: 38px;
	height: 65px;
	background: url(/themes/skin_en/default/static/images/big-arrow-left.png) no-repeat;
	left: 0;
}
.detail_advantages .adv-next{
	width: 38px;
	height: 65px;
	background: url(/themes/skin_en/default/static/images/big-arrow-right.png) no-repeat;
	right: 0;
}

.detail_development{
	overflow: hidden;
	padding-top: 80px;
}
.detail_development ._title{
	overflow: hidden;
	text-align: center;
}
.detail_development ._title span{
	display: block;
	width: 440px;
	overflow: hidden;
	margin: 0 auto;
}
.detail_development ._title h2{
	font-size: 48px;
	color: #2e2e2e;
	font-weight: normal;
	line-height: initial;
	display: none;
}
.detail_development ._title h3{
	font-size: 35px;
	color: #1d2088;
	line-height: initial;
	text-transform: uppercase;
}

.detail_development .detail_development_box{
	position: relative;
	overflow: hidden;
	margin-top: 50px;
}
.detail_development ul {
    position: relative;
    padding-bottom: 30px;
}
.detail_development ul::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    height: 100%;
    width: 1px;
    border-right: 1px dashed #1d2088;
}
.detail_development li {
    position: relative;
    padding: 30px;
    z-index: 2;
}
.detail_development li:nth-child(2n) {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}
.detail_development ul li::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    height:20px;
    width: 20px;
    display: block;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px dashed #1d2088;
}
.detail_development ul li::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    height: 10px;
    width: 10px;
    display: block;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #1d2088;
}
.detail_development ul li:first-child:after, 
.detail_development ul li:first-child::before {
    top: 10px;
}
.detail_development li dl, 
.detail_development li dd {
    width: 40%;
    max-width: 360px;
    padding: 0 50px;
}
.detail_development li dl img {
    float: left;
    max-width: 207px;
    overflow: hidden;
}
.detail_development li:nth-child(2n-1) dd {
    text-align: right;
}
.detail_development li dd h4 {
    color: #1d2088;
    font-size: 20px;
}
.detail_development li dd p {
    margin-top: 10px;
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}




.detail_culture{
	overflow: hidden;
	padding: 80px 0 60px;
}
.detail_culture ._title{
	overflow: hidden;
	text-align: center;
	margin-bottom: 45px;
}
.detail_culture ._title span{
	display: block;
	width: 660px;
	overflow: hidden;
	margin: 0 auto;
}
.detail_culture ._title h2{
	font-size: 48px;
	color: #2e2e2e;
	font-weight: normal;
	line-height: initial;;
	display: none;
}
.detail_culture ._title h3{
	font-size: 35px;
	color: #1d2088;
	line-height: initial;
	text-transform: uppercase;
}


.detail_culture .detail_culture_list{
	width: 100%;
	overflow: hidden;
}
.detail_culture .detail_culture_list li{
    width: 32%;
    float: left;
    margin-right: 2%;
    position: relative;
    overflow: hidden;
}
.detail_culture .detail_culture_list li:last-child{
	margin-right: 0;
}
.detail_culture .detail_culture_list li .img{
    display: block;
    width: 100%;
    object-fit: cover;
}
.detail_culture .detail_culture_list li dl{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: rgba(29, 32, 136, .4);
    transition: all .6s ease;
    display: flex;
    align-items: center;
}
.detail_culture .detail_culture_list li dl dt{
    width: 100%;
    text-align: center;
	padding: 0 15px;
}
.detail_culture .detail_culture_list li dl dt span{
    width: 100%;
    height: 80px;
	display: block;
    line-height: 80px;
}
.detail_culture .detail_culture_list li dl dt span img{
	max-height: 100%;
}
.detail_culture .detail_culture_list li dl dt h3{
    font-size: 35px;
    color: #fff;
    margin-top: 30px;
}
.detail_culture .detail_culture_list li dl dt p{
	font-size: 16px;
	color: #fff;
	margin-top: 20px;
	height: 0;
	overflow: hidden;
	transition: all .4s ease;
}
.detail_culture .detail_culture_list li:hover .img{
    transform: scale(1.04);
}
.detail_culture .detail_culture_list li:hover dl{
    background: rgba(29, 32, 136, 1);
}
.detail_culture .detail_culture_list li:hover p{
	height:  98px;
}

/* 联系我们 */
.detail_contact{
	overflow: hidden;
	padding: 50px 0;
}
.detail_contact .detail_contact_box{
	overflow: hidden;
	background: url(/themes/skin_en/default/static/images/contact-bg.png) no-repeat center;
	border-radius: 30px;
	background-size: cover;
	padding: 35px 50px 55px;
}
.detail_contact .detail_contact_fl{
	overflow: hidden;
	width: 48%;
	color: #fff;
}
.detail_contact .detail_contact_fl ._title h2{
	font-size: 30px;
	line-height: initial;
}
.detail_contact .detail_contact_fl ._title p{
	font-size: 16px;
	text-transform: uppercase;
}
.detail_contact .detail_contact_fl ._title span{
	width: 60px;
	height: 4px;
	background: #fff;
	display: block;
	margin-top: 15px;
}
.detail_contact .detail_contact_fl ul{
	overflow: hidden;
	margin-top: 25px;
}
.detail_contact .detail_contact_fl ul li{
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
}
.detail_contact .detail_contact_fl ul li dt{
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.detail_contact .detail_contact_fl ul li dt img{
	width: 18px;
	margin-right: 6px;
}
.detail_contact .detail_contact_fl ul li dd{
	font-size: 18px;
}
.detail_contact .detail_contact_fl .img{
	width: 100%;
	display: block;
	margin-top: 45px;
}
.detail_contact .detail_contact_fr{
	overflow: hidden;
	width: 48%;
	background: #fff;
	border-radius: 18px;
	padding: 30px;
}
.detail_contact .detail_contact_fr ._title{
	overflow: hidden;
	text-align: center;
	color: #2e2e2e;
	margin-bottom: 25px;
}
.detail_contact .detail_contact_fr ._title h2{
	font-size: 30px;
	line-height: initial;
}
.detail_contact .detail_contact_fr ._title p{
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.detail_contact .detail_contact_fr ._title span{
	font-size: 16px;
	color: #8a8a8a;
}
.detail_contact .detail_contact_fr form{
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.detail_contact .detail_contact_fr .form-row{
	overflow: hidden;
    width: 48%;
}
.detail_contact .detail_contact_fr .row-controls {
    margin-left: 0;
}
.detail_contact .detail_contact_fr .form-row input {
    overflow: hidden;
    width: 100%;
    height: 54px;
    line-height: 54px;
    padding: 0 20px;
    font-size: 16px;
    color: #878787;
	background: #f1f1f1!important;
	border-radius: 10px;
}
.detail_contact .detail_contact_fr .form-row:nth-child(3) {
    width: 100%;
	margin-bottom: 10px;
}
.detail_contact .detail_contact_fr .form-row textarea {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    color: #878787;
	background: #F1F1F1;
	max-height: 185px;
	border-radius: 10px;
}
.detail_contact .detail_contact_fr .form-row:nth-child(4){
	width: 70%;
	margin-bottom: 0;
}
.detail_contact .detail_contact_fr .form-row:nth-child(4) input {
    width: 45%;
}
.detail_contact .detail_contact_fr .form-row:nth-child(4) .verifyimg {
    height: 54px;
    width: 158px;
    cursor: pointer;
    top: 0;
    position: relative;
    margin-left: 10px;
}
.detail_contact .detail_contact_fr .form-row:nth-child(5){
	width: 30%;
	margin-bottom: 0;
}
.detail_contact .detail_contact_fr .form-row .btn {
    width: 180px;
    height: 54px;
    text-align: center;
    line-height: 54px;
    font-size: 20px;
    color: #fff;
    background: #1d2088;
    border-radius: 0;
    float: right;
    padding: 0;
}

.detail_recruitment{
	overflow: hidden;
	padding: 30px 0 50px;
	background: url(/themes/skin_en/default/static/images/contact-bg3.jpg) no-repeat;
}
.detail_recruitment ._title{
	overflow: hidden;
	text-align: center;
}
.detail_recruitment ._title h2{
	font-size: 35px;
	color: #2e2e2e;
	font-weight: normal;
	line-height: initial;
}
.detail_recruitment ._title p{
	color: #2e2e2e;
	font-size: 16px;
	text-transform: uppercase;
}
.detail_recruitment ._title span{
	width: 35px;
	height: 5px;
	display: block;
	margin: 18px auto 0;
	background: #1D2088;
}
.detail_recruitment .detail_recruitment_box{
	overflow: hidden;
	margin-top: 40px;
}
.detail_recruitment .detail_recruitment_head{
	overflow: hidden;
	margin: 0 95px;
	position: relative;
}
.detail_recruitment .detail_recruitment_head ul li{
	overflow: hidden;
	background: #ffffff;
	padding: 30px 20px;
	position: relative;
}
.detail_recruitment .detail_recruitment_head ul li h2{
	color: #2e2e2e;
	font-size: 25px;
	line-height: initial;
	position: relative;
	padding-left: 12px;
	z-index: 2;
}
.detail_recruitment .detail_recruitment_head ul li h2::after{
	content: '';
	position: absolute;
	width: 5px;
	height: 20px;
	background: #1D2088;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.detail_recruitment .detail_recruitment_head .attr{
	overflow: hidden;
	margin-top: 10px;
}
.detail_recruitment .detail_recruitment_head .attr dl{
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #2e2e2e;
	font-size: 14px;
	position: relative;
	z-index: 2;
}
.detail_recruitment .detail_recruitment_head .attr dl:first-child{
	font-size: 20px;
	font-weight: bold;
}
.detail_recruitment .detail_recruitment_head ul li span{
	display: block;
    position: absolute;
    font-size: 200px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: initial;
	color: #2e2e2e;
	opacity: 0.2;
}
.detail_recruitment .detail_recruitment_head ul li.swiper-slide-thumb-active h2,
.detail_recruitment .detail_recruitment_head ul li.swiper-slide-thumb-active .attr dl:first-child,
.detail_recruitment .detail_recruitment_head ul li.swiper-slide-thumb-active span{
	color: #1D2088;
}
.detail_recruitment .detail_recruitment_head ul li.swiper-slide-thumb-active::after{
	content: '';
	height: 4px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #1D2088;
}
.recruitment-next,
.recruitment-prev{
	position: absolute;
	top: 40%;
	z-index: 10;
	cursor: pointer;
	width: 50px;
	height: 50px;
}
.recruitment-prev{
	background: url(/themes/skin_en/default/static/images/round-arrow-left.png) no-repeat;
	left: 0;
}
.recruitment-next{
	background: url(/themes/skin_en/default/static/images/round-arrow-right.png) no-repeat;
	right: 0;
}
.detail_recruitment_body {
	overflow: hidden;
	position: relative;
	margin-top: 50px;
	background: #fff;
}
.detail_recruitment_list ._title{
	text-align: left;
	padding: 25px 36px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eaeaea;
}
.detail_recruitment_list ._title h2{
	font-size: 35px;
	color: #2e2e2e;
	line-height: initial;
	font-weight: normal;
	margin-left: 10px;
}
.detail_recruitment_list ._content{
	overflow: hidden;
	min-height: 500px;
	padding: 26px 36px;
	position: relative;
}
.detail_recruitment_list ._content::before{
	content: '';
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 457px;
	height: 336px;
	background: url(/themes/skin_en/default/static/images/contact-bg4.png) no-repeat;
	z-index: -1;
}



/*--视频--*/
.video_box {
    position:fixed;
    left: 50%;
    top: 50%;
    width: 60%;
    z-index: 100;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
}
.video_main {
    width: 100%;
	height: 600px;
}
.video_main span {
    position: absolute;
    right: -10px;
    top: -15px;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: block;
    background: url(/themes/skin_en/default/static/images/up.png) no-repeat;
    background-size: 100%;
}

.video_main .vi {
    position: relative;
    z-index: 1;
	width: 100%;
	height: 100%;
}
#video {
    width: 100%;
	height: 100%;
    object-fit: contain;
}
@media (max-width: 992px) {
    .video_box {
        top: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
    }
    .video_main span {
        top: auto;
        bottom: -80px;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
    }
}
.videozk {
    display: none;
    position:fixed;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}