@charset "utf-8";
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
  color: #333;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*, *:after, *:before {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
}
.nav li .submenu {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
@font-face {
  font-family: "Alibaba-PuHuiTi-Regular";
  src: url("../fonts/alibaba-puhuiti-regular.woff2") format("woff2"), url("../fonts/alibaba-puhuiti-regular.woff") format("woff"), url("../fonts/alibaba-puhuiti-regular.ttf") format("truetype"), url("../fonts/alibaba-puhuiti-regular.eot") format("embedded-opentype"), url("../fonts/alibaba-puhuiti-regular.svg") format("svg");
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
  display: inline-block;
}
/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
  font: 12px/1.5;
}
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  padding: 0;
  outline: 0;
}
/* 去掉各Table  cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align*/
th {
  text-align: inherit;
}
/* 去除默认边框 */
fieldset,
img {
  border: 0;
}
/* fluid image */
img {
  /*max-width: 100%;*/
}
/* 解决 IE 缩放失真 */
img {
  -ms-interpolation-mode: bicubic;
}
/* 垂直居中 */
audio,
canvas,
img,
svg,
video {
  vertical-align: middle;
}
/* 重置 fieldset 样式 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* 不可改变 多行文本框 的宽度和高度 */
textarea {
  resize: none;
  overflow: auto;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
  display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
/* 去掉列表前的标识, li 会继承 */
ol,
ul {
  list-style: none;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
  text-align: left;
}
/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
b {
  font-weight: bold;
}
q:before,
q:after {
  content: '';
}
/* 统一上标和下标 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
a {
  text-decoration: none;
}
/* 让链接在 hover 状态下显示下划线 */
a:hover {
  text-decoration: none;
}
a {
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
a:hover {
  color: #162d57;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
}
/* 重置 hr */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/* 清除IE10的叉 */
input::-ms-clear {
  display: none;
}
.cx-nav-list .cx-nav-current a {
  height: 39px;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: ".";
  width: 0;
  height: 0;
  visibility: hidden;
  display: block;
  clear: both;
}
.clear {
  clear: both;
}
/*改变浏览器滚动条*/
::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}
div::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #bcbcbc;
  /*rgba(0,0,0,0.2)*/
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #a8a8a8;
  /*rgba(0,0,0,0.1)*/
}
::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #a8a8a8;
  /*rgba(0,0,0,0.3)*/
}
::-webkit-scrollbar-thumb:vertical:active {
  background-color: #a8a8a8;
  /*rgba(0,0,0,0.7)*/
}
::-webkit-input-placeholder {
  font-family: "Microsoft YaHei";
  /*color:rgba(255,255,255,.8);*/
}
::selection {
  background: #00aeef;
  /*color: #fff;*/
}
::-moz-selection {
  background: #00aeef;
  /* color: #fff;*/
}
:focus {
  outline: 0;
}
body {
  font-size: 14px;
  margin: 0 auto;
  text-align: left;
}
a {
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  color: #333;
}
a:hover {
  color: #0168b7;
}
.w {
  width: 1200px;
  margin: 0 auto;
}
.a_txt {
  display: none;
}
.moblie_head {
  display: none;
}
.top{position:fixed;width:100%;z-index:1000;background:rgba(90,175,235,0.8);}
.h100{height:184px;display:none;}
.header{display:flex;justify-content:space-between;align-items:center;max-width:1380px;margin:30px auto;}
.header > div{line-height:64px;}
.header .bor{width:1px;background-color:#eeeeee;overflow:hidden;margin:0;padding:0;line-height:64px;height:64px;}
.header .website{color:#eeeeee;font-size:18px;}
.header .djs{font-size:18px;color:#eeeeee;display:flex;align-items:center;}
.header .djs b{font-weight:normal;}
.header .djs span{font-size:32px;font-weight:bolder;color:#FF9900;}
.header .lau{font-size:18px;}
.header .lau a.active{color:#eeeeee;}
.nav {
  border-top: 1px solid #A39FE1;
}
.nav .nav_list {
  width: 1200px;
  height: 60px;
  margin: 0 auto;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
}
.nav li {
  height: 60px;
  line-height: 60px;
  width: 160px;
  position: relative;
}
.nav li.last {
  background: none;
}
.nav li a {
  float: left;
  display: block;
  width: 160px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #ffffff;
  font-size:20px;
}
.nav li a:hover {
  background: #5B409D url(navac.png) center bottom no-repeat;
}
.nav li a.selected {
  background: #5B409D url(navac.png) center bottom no-repeat;
}
.nav li.selected .submenu {
  display: block;
}
.nav li .submenu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0px;
  background: #fff url(navlogo.png) center 10px no-repeat;
}
.nav li .submenu {
  width: 160px;
  padding-top: 40px;
  padding-bottom: 10px;
  overflow: hidden;
  border-top: 1px solid #0168b7;
}
.nav li .submenu {
  z-index: 9999;
}
.nav li .submenu li {
  float: left;
  padding: 0 10px;
  background: none;
  height: 41px;
  line-height: 41px;
  text-align: center;
}
.nav li .submenu li a {
  float: none;
  text-align: center;
  height: 40px;
  line-height: 40px;
  background: none;
  color: #333;
  background-color: #eeeeee;
  width: 140px;
  border-bottom: 1px solid #aaaaaa;
  font-size: 14px;
}
.nav li .submenu li a:hover {
  background: #0279CC;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
}
.copyright {
  line-height: 46px;
  background-color: #0279CC;
  color: #fff;
}
.copyright .w {
  display: flex;
  justify-content: space-between;
}
.copyright a {
  color: #fff;
}
.itemimg img {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  width: 80px;
}
.itemimg:hover img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.right-pf {
  width: 200px;
  height: 465px;
  position: fixed;
  right: 10px;
  top: 30%;
  z-index: 100000;
}
.right-pf .right-con {
  background: linear-gradient(to bottom, #236fef 0%, #3bb5fb 100%);
  color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
}
.right-pf .right-con span {
  display: block;
  text-align: center;
  font-size: 16px;
  padding: 10px 0;
}
.right-pf .right-con a {
  display: block;
  text-align: center;
  margin-top: 10px;
  line-height: 35px;
  background-color: white;
  color: #0168b7;
  font-size: 16px;
}
.right-pf .right-con a:hover {
  background-color: #3ab4fc;
  color: #fff;
}
.right-pf .right-con a.active {
  background-color: #3ab4fc;
  color: #fff;
}
#top-back {
  width: 56px;
  height: 56px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 56px;
  margin: 70px auto 0 auto;
  background: linear-gradient(to bottom, #236fef 0%, #3bb5fb 100%);
  color: #fff;
  font-size: 24px;
}
#top-back a {
  display: block;
  color: #FFFFFF;
}
.leftfix {
  display: inline-block;
  position: fixed;
  z-index: 998;
  left: 10px;
  top: 370px;
}
/*移动端导航*/
@media screen and (max-width: 1024px) and (min-width: 0px) {
  .top {
    display: none;
  }
  .w {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .h100 {
    height: 0;
    overflow: hidden;
  }
  .h44 {
    height: 44px;
  }
  .moblie_head .lau {
    line-height: 44px;
  }
  .moblie_head .lau a.active {
    color: #0168b7;
  }
  .moblie_head {
    display: block;
    height: 44px;
    background: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    border-bottom: 1px solid #ddd;
  }
  .moblie_head .w {
    display: flex;
    justify-content: space-between;
  }
  .moblie_head .lf {
    padding-top: 10px;
  }
  .moblie_head .lf img {
    height: 24px;
  }
  .moblie_head .rg {
    padding-top: 14px;
  }
  .moblie_head .rg a img {
    height: 16px;
    vertical-align: top;
  }
  .a_txt {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    overflow: hidden;
    z-index: 10000;
  }
  .a_txt .div1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0b0d19;
    filter: alpha(opacity=0);
    opacity: 0;
    left: 0px;
    top: 0px;
    z-index: 1;
  }
  .a_txt .div2 {
    position: absolute;
    width: 20%;
    left: 0px;
    top: 5%;
    z-index: 100;
    text-align: center;
    filter: alpha(opacity=0);
    opacity: 0;
  }
  .a_txt .div3 {
    position: absolute;
    width: 80%;
    right: 0px;
    top: 0px;
    background: #0b0d19;
    height: 100%;
    z-index: 100;
    right: -80%;
  }
  .a_txt .div3 ul {
    padding-left: 5%;
    padding-right: 5%;
  }
  .a_txt .div3 ul li {
    border-bottom: 1px solid #232530;
  }
  .a_txt .div3 ul li a {
    display: block;
    height: 45px;
    color: #fff;
    line-height: 45px;
    padding-left: 5%;
    font-size: 16px;
  }
  .a_txt .div3 ul li .a_js2 {
    background: url(plus.png) 95% center no-repeat;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
  }
  .a_txt .div3 ul li .a_js2_on {
    background: url(reduce.jpg) 95% center no-repeat;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
  }
  .a_txt .div3 ul li .a_txt2 {
    display: none;
  }
  .a_txt .div3 ul li .a_txt2 a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .copyright {
    padding: 10px;
    line-height: 20px;
    text-align: center;
  }
  .copyright .w {
    display: block;
  }
  .copyright a {
    color: #fff;
  }
  .right-pf {
    display: none;
  }
  .leftfix {
    display: none;
  }
}
.index-contact{
	padding-bottom: 30px;
	border-bottom: 1px solid #e4e4e4;
}
.index-contact-icon{
	display: block;
	text-align: center;
	padding-bottom: 20px;
	font-size: 48px;
	color: #eeeeee;
}
.index-contact-txt{
	text-align: center;
	color: #eeeeee;
}
.index-contact-txt a{
	color: #eeeeee;
}
.index-contact-txt a:hover{
	text-decoration: none;
}
.ft-new-box{padding-top: 40px;margin-top: 30px;}
.bg {
    background-color: #5AAFEB;
  color: #fff;
  overflow: hidden;
}
.header .logo {
    width: 690px;
}

.jeader .hau,.jeader .djs,.header .djs {
    width: 250px;
}
/*底部的导航*/
.ft-nav-box{
	padding-top: 50px;

}
.ft-nav-box dl{
	min-height: 260px;
	margin-bottom: 20px;
}
.ft-nav-box dt{
	margin-bottom: 30px;
}
.ft-nav-box dt a{
	font-size: 16px;
	color: #ffffff;
}
.ft-nav-box dd{
	font-size: 14px;
	line-height: 18px;
	margin: 8px 0;
}
.ft-nav-box dd a{
	color: #eeeeee;
}

/*手机*/
@media (max-width: 767px) { 
	.ft-nav-box dl{
		min-height: 240px;
	}
	.ft-nav-box dl.footwx{
		min-height: 100px;
	}
	.ft-nav-box dd{
		font-size: 12px;
	}
	.ft-nav-box dd img{
		width: 100%;
		max-width: 100px;
	}
}
/*底部*/
.footer-copyright{
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #666;
	height: 55px;
	line-height: 55px;
	background: #000;
}
.footer-copyright a:hover{
	color: #eeeeee;
}
 #pagesize {width: 100%; text-align: center; padding: 15px 0; font-family: Noteworthy, Arial, sans-serif; font-size: 16px; }
 #pagesize li{ display: inline-block;}
 #pagesize a, #pagesize span { display: inline-block; color: #666; line-height: 24px; font-weight: normal; text-align: center;  min-width: 14px; padding: 10px 15px; margin: 0 5px 0 0; background-color: #dcdcdc;}
 #pagesize a:hover { text-decoration: none; background: #2067ed; }
 #pagesize .active { background: #2067ed; color: #FFF;  }
 #pagesize .disabled {opacity: .3; cursor: default; }
 .header .website span {
    display: block;
    line-height:1.5;
}
@media (max-width: 767px) {
table {
width: 100%;
margin-bottom: 15px;
overflow-x: scroll;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
-webkit-overflow-scrolling: touch;
}
table{
margin-bottom: 0;
}

table > thead > tr > th,table > tbody > tr > th,table > tfoot > tr > th,table > thead > tr > td,table > tbody > tr > td,table > tfoot > tr > td {
/**white-space: nowrap;**/
}
}

#homeVideo{height:890px;position:relative;background:#000;}
#homeVideo._pc{}
#homeVideo._pc ._mobileVideoPlay{display:none;}
#homeVideo._mobile ._mobileVideoPlay{width:60px;height:60px;left:50%;top:50%;transform:translate(-50%,-50%);z-index:1400;position:absolute;border-radius:50%;background:rgba(0,0,0,0.5);transition:none;}
#homeVideo ._mobileVideoPlay::before{position:absolute;content:'';border-radius:5px;top:50%;left:67.00%;transform:translate(-50%,-50%);border:14px solid white;border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;border-left-width:20px;}
#homeVideo .video-container{width:100%;height:100%;position:relative;display:block;}
#homeVideo .video-container video{width:100%;height:100%;display:block;}
#homeVideo ._text{width:1045px;text-align:center;position:absolute;color:#fff;top:61.00%;left:50%;padding-top:24px;padding-bottom:24px;background:rgba(0,0,0,0.5);transform:translate(-50%,-50%);}
#homeVideo ._text ._item{line-height:42px;font-size:27px;font-weight:bold;margin-bottom:10px;letter-spacing:1px;display:block;}
#homeVideo ._text ._item span{line-height:28px;font-size:18px;font-weight:normal;display:block;}
#homeVideo ._text ._time{font-size:20px;padding-top:10px;padding-bottom:10px;}

@media (max-width:1700px) and (min-width:768px){
#homeVideo{height:681px;}
#homeVideo ._text{width:800px;padding-top:18px;padding-bottom:18px;}
#homeVideo ._text ._item{line-height:32px;font-size:20px;margin-bottom:7px;letter-spacing:0px;}
#homeVideo ._text ._item span{line-height:21px;font-size:13px;}
#homeVideo ._text ._time{font-size:15px;padding-top:7px;padding-bottom:7px;}
}

@media (max-width:767px){
#homeVideo{height:461px;}
#homeVideo ._mobileVideoPlay{}
#homeVideo ._text{padding-top:18px;padding-bottom:18px;width:85%;padding-left:4%;padding-right:4%;box-sizing:border-box;}
#homeVideo ._text ._item{line-height:32px;font-size:18px;margin-bottom:7px;letter-spacing:0px;}
#homeVideo ._text ._item span{line-height:21px;font-size:12px;}
#homeVideo ._text ._time{font-size:13px;padding-top:7px;padding-bottom:7px;}
}
