/*
    ----------------------------------- 
            方法变量    
                     
    Create Time : 2014-07-22
    Update Time : 2015-08-03
    Author      : Trueland Development Department
    -----------------------------------
*/
/*
    ---------------------- 
            普通方法 
    ---------------------- 

    1 .opc()              // 透明度     - 传整数 50 代表 0.5   
    2 .pos(r)             // 定位方式 - 必须传参，r 代表relative || a 代表absolute ||  f 代表 fixed
    3 .font()             // 字体大小 - 默认12px 
    4 .align()            // 文本对齐 - 默认 center
    5 .lineH()            // 行高设置 - 默认 20px
   11 .arrow(r)           // 三角箭头 - 必须传参    l:向左箭头 | r:向右箭头 | t:向上箭头 | b:向下箭头
   12 .float()            // 快速浮动 - 默认为 left ||  left: 向左浮动   | right:向右浮动
   13 .fontC(d)           // 字大小写 - 比传参数 d 为 大写 s 为首字母大写
   14 .fontB()            // 字体粗细 - 默认加粗  fontB(100) 传100 就是 变细

   ----------------------
   CSS3 方法 
   ---------------------- 

   01 .borderR()          // 圆角设置 - 默认为 5px
   02 .linearG(red,blue)  // 线性渐变 - 两个颜色值 是开始到结束  目前支持 *上下* 渐变
   03 .bgFull             // 背景充满 - 背景等比例拉伸 使用 ：bgFull;
   04 .css3Tansition()    // 过度属性 - 默认两个值 前者是过渡动画时间 后者是过渡动画效果 使用 : .css3tansition(.4s,ease)
   

   //滤镜

   05 .filterBlur()       // 滤镜模糊 - 使用 ：.filterBlur(2px); 默认 5px
   06 .filterGrayscale()  // 滤镜灰度 - 使用 ：.filterGrayscale(100%); 默认100% ★注意参数 是 0%~100$; 100%代表全灰
   07 .filterSepia()      // 滤镜褐色 - 使用 ： .filterSepia(1); 默认1 ★注意参数 (同上)
   08 .filterBrightness() // 滤镜亮度 - 使用 ： .filterBrightness(10); 默认5 ★注意参数 10代表100% 5代表50%
   09 .filterHue()        // 滤镜色相 - 使用 ： .filterHue(180deg); 默认180deg ★注意参数 0deg~360deg
   10 .filterInvert()     // 滤镜反色 - 使用 ： .filterInvert(1); 默认1 ★注意参数 0.1~1 1代表100%
   11 .filterSaturate()   // 滤镜饱和 - 使用 ： .filterSaturate(5); 默认5 ★注意参数 5 代表 50%
   12 .filterContrast()   // 滤镜对比 - 使用 ： .filterContrast(1.5); 默认1.5 ★注意参数 1.5代表 15%
    
   ----------------------
        普通嵌套 
   ---------------------- 

   01 .vcenter            // 垂直水平居中
   02 .tHide              // 文本超出隐藏省略
   03 .blockFull          // 块状元素 宽高100%
   04 .block              // 块状元素 没有设置宽高
   05 .centerBlock        // 左右居中
   05 .clearfix           // 清除浮动

    -----------------------------------
*/
.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(/css/css/cover.htc);
  behavior: url(/css/css/cover.htc);
}
.vcenter {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tHide {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.blockFull {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.block {
  display: block;
  position: relative;
}
.centerBlock {
  margin-left: auto;
  margin-right: auto;
}
.clearfix {
  clear: both;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-loading .slick-list {
  background: #ffffff url("/images/ajax-loader.gif") center center no-repeat;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.about_box4 .slick-slider .slick-track{
  margin: 0 auto;
}
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-prev,
.slick-next {
  z-index: 20;
  position: absolute;
  display: block;
  height: 60px;
  width: 30px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -30px;
  padding: 0;
  border: none;
  outline: none;
  border: 1px solid red;
}
.slick-prev {
  left: 30px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: 30px;
}
.slick-next {
  right: 30px;
}
[dir="rtl"] .slick-next {
  left: 30px;
  right: auto;
}
.slick-dots {
  position: absolute;
  bottom: 20px;
  height: auto;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  line-height: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  height: 10px;
  width: 10px;
  padding: 0;
  margin: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: #cccccc;
  border-radius: 0px;
}
.slick-dots li.slick-active button {
  background: #333333;
}
body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.container {
  margin-right: auto;
  margin-left: auto;
  width: 69%;
}
img {
  max-width: 100%;
}
.title {
  text-align: center;
}
.title h3 {
  color: #333333;
  font-size: 30px;
  position: relative;
  z-index: 1;
}
.title h4 {
  margin-top: -25px;
  color: #f5f5f5;
  font-size: 36px;
  font-weight: normal;
  font-family: Arial;
}
.title p {
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  max-width: 810px;
  width: 100%;
  margin: 15px auto 0;
}
.page {
  text-align: center;
}
.page a {
  background: #f6f6f6;
  line-height: 60px;
  display: inline-block;
  min-width: 60px;
  padding: 0 20px;
  color: #666;
  border-radius: 3px;
  font-size: 16px;
}
.page a:hover,
.page a.cur {
  background: #13458f;
  color: #fff;
}
.bread {
  background: #fcfcfc;
  border-bottom: 1px solid #f7f7f7;
  line-height: 54px;
  color: #999999;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.bread a {
  color: #999999;
}
.bread a:hover {
  color: #134693;
}
.header {

}
.header .logo {
  display: block;
  float: left;
  line-height: 0;
}
.header .logo img{max-width: 320px;margin-left: 50px;
    margin-top: 20px;}
.header .header_right {
  float: right;
  height: 78px;
  padding: 0 60px;
}
.header .header_right .nav {
  float: left;
}
.header .header_right .nav ul {
  padding-top: 2px;
}
.header .header_right .nav ul li {
  float: left;
  font-size: 16px;
  margin-left: 46px;
  position: relative;
}
.header .header_right .nav ul li:first-child {
  margin-left: 0;
}
.header .header_right .nav ul li a {
  line-height: 74px;
  display: block;
  color: #333333;
  border-bottom: 2px solid transparent;
}
.header .header_right .nav ul li:hover a,
.header .header_right .nav ul li.cur a {
  color: #1565af;
  border-bottom: 2px solid #1565af;
}

.header .header_right .search {
  margin-top: 34px;
  float: left;
  width: 13px;
  height: 13px;
 /* background: url(../images/search.png) no-repeat center center; */
  background: url(../image/search_hei.png) no-repeat center center;
  line-height: 0;
  display: block;
  margin-left: 60px;
}
.header .header_right .dh {
  margin-top: 28px;
  margin-left: 20px;
  float: left;
  /* color: #ffffff; */
	color: #000;
  font-size: 22px;
  font-family: arial;
  font-weight: bold;
}
.header2 .header_right {
  background: url(../image/bg2.png);
}
.header2 .header_right .nav ul li:before {
  background: #0d2a70;
}
.header2 .header_right .nav ul li a {
  color: #333333;
}
.header2 .header_right .nav ul li:hover a,
.header2 .header_right .nav ul li.cur a {
  color: #0d2a70;
}
.header2 .header_right .search {
  background: url(../image/search2.png) no-repeat center center;
}
.header2 .header_right .dh {
  color: #0d2a70;
}
.fixed-head {
  z-index: 9;
  /*position: fixed;*/
  top: 0px;
  /* left: 0px; */
  width: 100%;
 /* background: url(../image/bg2.png); */
 background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.fixed-head .header_right .nav ul li a{
	color: #000;
}
.fixed-head .header_right {
  background: none;
}

/*design by maxwo*/

/* 头部搜索 */
.topSearchModal .modal-content{box-shadow: none;background:none;border-radius: 0;}
.topSearchModal .modal-body{padding:0;}
.topSearchModal .modal-dialog{margin-top:22.5vh;}
.topSearchForm{position: relative;display: block;width:100%;height:50px;background:#fff;}
.topSearchForm input{display: block;width:100%;height:100%;border:none;background:none;box-shadow: none;outline: none;padding-left:15px;padding-right:65px;font-size:16px;color:#000;}
.topSearchForm .btn{position: absolute;width:50px;padding:0;height:100%;right:0;top:0;border:none;background:none;box-shadow: none;outline: none;background-image: url(../image/i3.png);background-size:auto 20px;background-repeat: no-repeat;background-position: center;}
@media (max-width: 767px) {
	.topSearchModal .modal-dialog{margin-left:20px;margin-right:20px;}
}
@media (min-width: 768px) {
	.topSearchModal .modal-dialog{width:80%;max-width:1000px;}
}
@media (min-width: 1200px) {
	.topSearchForm{height:60px;}
	.topSearchForm input{padding-left:20px;padding-right:90px;}
	.topSearchForm .btn{width:70px;}
}

.box1 a {
    display: block;
    width: 50%;
    position: relative
}

.box1 .text {
    position: absolute;
    left: 15%;
    top: 25%;
    color: #fff
}

.box1 .text .iconfont {
    font-size: 56px;
    margin-right: 50px
}

.box1 .text .t {
    font-size: 28px
}

.box1 .text .t-en {
    font-size: 18px;
    text-transform: uppercase
}

.box1 .text .read {
    font-size: 16px;
    background-color: #00a7a9;
    color: #fff;
    line-height: 30px;
    border-radius: 30px;
    display: inline-block;
    padding: 0 25px;
    margin-top: 20px
}
.box1{    padding: 50px 60px 50px;}
.box1 .left{float: left;}
.box1 .right{float: right;}
.box1 .right .text .read {
    background-color: #fffc00;
    color: #cf140b
}

.box1 a:hover .text .read {
    box-shadow: 0 3px 20px rgba(55, 55, 55, .5)
}
.box1 .text>*{float: left;}
/*maxwo end*/

.footer {
  background: #1b242e;
  padding: 45px 180px;
}
.footer .tit {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: arial;
}
.footer .tit i {
  margin-top: 20px;
  display: block;
  width: 36px;
  height: 2px;
  background: #495058;
}
.footer .left {
  float: left;
}
.footer .left .foot_nav {
  margin-top: 80px;
  padding-bottom: 15px;
  border-bottom: 1px solid #3d454d;
}
.footer .left .foot_nav a {
  display: block;
  float: left;
  color: #8d9297;
  font-size: 15px;
  margin-right: 35px;
}
.footer .left .foot_nav a:last-child {
  margin-right: 0;
}
.footer .left .bottom {
  margin-top: 20px;
  color: #8d9297;
}
.footer .left .bottom a {
  color: #8d9297;
}
.footer .min {
  float: left;
  margin-left: 100px;
}
.footer .min ol {
  margin-top: 10px;
  width: 388px;
}
.footer .min ol li {
  float: left;
  width: 100%;
}
.footer .min ol li input {
  float: left;
  width: 100%;
  height: 47px;
  background: none;
  border: none;
  border-bottom: 1px solid #323a43;
  color: #8d9297;
  -webkit-appearance: none;
  border-radius: 0;
}
.footer .min ol .li1,
.footer .min ol .li2 {
  width: 176px;
}
.footer .min ol .li2 {
  float: right;
}
.footer .min ol .btn {
  margin-top: 20px;
  width: 92px;
}
.footer .min ol .btn input {
  background: #323a43;
  height: 30px;
  line-height: 30px;
  border: none;
}
.footer .right {
  float: right;
}
.footer .right .text {
  margin-top: 45px;
  color: #8d9297;
  font-size: 14px;
  line-height: 30px;
}
.footer .right .text span {
  color: #ffffff;
  font-size: 30px;
  font-family: arial;
  font-weight: bold;
}
.footer img.foot_code{height: 90px;margin-top: 20px;}
.partner {
  background: #f9f9f9;
  padding: 50px 0;
}
.foot_info{    margin-left: 1%;
    line-height: 2;}
.fm_links{display:flex;}
/* .partner .box .t_box div{
  width: 16.66666667%;
  float: left;
  line-height: 0;
  height: 45px;
} */
.banner_box {
  position: relative;
}
.banner_box .icon {
  position: absolute;
  left: 60px;
  bottom: 0;
  width: 6px;
  z-index: 2;
}
.banner_box .fx {
  position: absolute;
  z-index: 2;
  left: 60px;
  bottom: 20px;
  width: 15px;
  display: none;
}
.banner_box .fx a {
  display: block;
  width: 15px;
  line-height: 0;
  margin: 20px 0 0 0; 
	height: 12px;
}

.banner_box .num {
	display: none;
  position: absolute;
  right: 60px;
  bottom: 20px;
  color: #fff;
  font-size: 15px;
}
/*.banner_box .inquire {
  background: #ffffff;
  position: absolute;
  right: 60px;
  top: 262px;
  z-index: 2;
  width: 322px;
  border-radius: 3px;
  padding: 35px 35px 0;
}
.banner_box .inquire .d {
  color: #999999;
  font-size: 18px;
  text-transform: uppercase;
}
.banner_box .inquire h3 {
  color: #333333;
  font-size: 16px;
  margin-top: 5px;
}
.banner_box .inquire ol li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  padding: 35px 0;
}
.banner_box .inquire ol li .icon01 {
  float: left;
  width: 52px;
  line-height: 0;
}
.banner_box .inquire ol li .text {
  float: right;
  width: 170px;
}
.banner_box .inquire ol li .text .info_search {
  width: 100%;
  height: 34px;
  position: relative;
}
.banner_box .inquire ol li .text .info_search .ch {
  display: block;
  width: 100%;
  height: 34px;
  line-height: 32px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  padding: 0 10px;
  color: #cccccc;
  font-size: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.banner_box .inquire ol li .text .info_search .ch:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 15px;
  width: 11px;
  height: 6px;
  background: url(../image/jt_icon1.png) no-repeat center center;
}
.banner_box .inquire ol li .text .info_search .con {
  display: none;
  z-index: 8;
  margin-top: 0;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #ffffff;
  padding: 5px 10px;
}
.banner_box .inquire ol li .text .info_search .con a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #cccccc;
  font-size: 12px;
  display: block;
  line-height: 26px;
}
.banner_box .inquire ol li .text .info_search .con a:hover {
  color: #666;
}
.banner_box .inquire ol li .text p {
  margin-top: 5px;
  color: #999999;
  font-size: 12px;
}*/
.banner_box .inquire {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 2;
  width: 100%;
  border-radius: 3px;
}
.banner_box .inquire .box {
  background: #ffffff;
  padding: 40px 60px;
}
.banner_box .inquire .box .left {
  float: left;
  width: 150px;
}
.banner_box .inquire .box .left .d {
  color: #999999;
  font-size: 16px;
  text-transform: uppercase;
}
.banner_box .inquire .box .left h3 {
  color: #3a3a3a;
  font-size: 16px;
  margin-top: 5px;
  font-weight: normal;
}
.banner_box .inquire .box ol {
  float: right;
  padding-top: 10px;
}
.banner_box .inquire .box ol li {
  float: left;
  margin-left: 80px;
}
.banner_box .inquire .box ol li:first-child {
  margin-left: 0;
}
.banner_box .inquire .box ol li .icon01 {
  float: left;
  width: 52px;
  line-height: 0;
  margin-right: 20px;
}
.banner_box .inquire .box ol li .text {
  float: right;
  width: 170px;
}
.banner_box .inquire .box ol li .text .info_search {
  width: 100%;
  height: 34px;
  position: relative;
}
.banner_box .inquire .box ol li .text .info_search .ch {
  display: block;
  width: 100%;
  height: 34px;
  line-height: 32px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  padding: 0 10px;
  color: #cccccc;
  font-size: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.banner_box .inquire .box ol li .text .info_search .ch:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 15px;
  width: 11px;
  height: 6px;
  background: url(../image/jt_icon1.png) no-repeat center center;
}
.banner_box .inquire .box ol li .text .info_search .con {
  display: none;
  z-index: 8;
  margin-top: 0;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #ffffff;
  padding: 5px 10px;
}
.banner_box .inquire .box ol li .text .info_search .con a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #cccccc;
  font-size: 12px;
  display: block;
  line-height: 26px;
}
.banner_box .inquire .box ol li .text .info_search .con a:hover {
  color: #666;
}
.banner_box .inquire .box ol li .text p {
  margin-top: 5px;
  color: #bebebe;
  font-size: 12px;
}
.banner {
  position: relative;
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .slick-prev,
.banner .slick-next {
  width: 70px;
  height: 70px;
  border: none;
  top: auto;
  bottom: 0;
  margin-top: 0;
}
.banner .slick-prev {
  background: url(../image/prev.jpg) no-repeat center center / cover;
  left: 30.1%;
}
.banner .slick-next {
  background: url(../image/next.jpg) no-repeat center center / cover;
  left: 33.8%;
  right: auto;
}
.banner .slick-dots {
  bottom: 50px;
}
.banner .slick-dots li button {
  width: 58px;
  height: 8px;
  background: #fff;
  opacity: 0.34;
}
.banner .slick-dots li.slick-active button {
  opacity: 1;
}

/*new by maxwo*/
/*
.inquire .box1 a {
    display: block;
    width: 50%;
    position: relative
}

.inquire .box1 .text {
    position: absolute;
    left: 15%;
    top: 25%;
    color: #fff
}

.inquire .box1 .text .iconfont {
    font-size: 56px;
    margin-right: 50px
}

.inquire .box1 .text .t {
    font-size: 28px
}

.inquire .box1 .text .t-en {
    font-size: 18px;
    text-transform: uppercase
}

.inquire .box1 .text .read {
    font-size: 16px;
    background-color: #00a7a9;
    color: #fff;
    line-height: 30px;
    border-radius: 30px;
    display: inline-block;
    padding: 0 25px;
    margin-top: 20px
}

.inquire .box1 .right .text .read {
    background-color: #fffc00;
    color: #cf140b
}

.inquire .box1 a:hover .text .read {
    box-shadow: 0 3px 20px rgba(55, 55, 55, .5)
}*/
/*.home_pro {
  padding: 80px 60px;
}
.home_pro ul li {
  position: relative;
  float: left;
  width: 26.5%;
  text-align: center;
}
.home_pro ul li .img {
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.home_pro ul li .img:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -13.5px;
  width: 27px;
  height: 14px;
  background: url(../images/home_jt1.png) no-repeat center center;
}
.home_pro ul li .img img {
  width: 100%;
}
.home_pro ul li .text {
  background: #fff;
  padding: 15.5% 0;
}
.home_pro ul li .text h3 {
  color: #333333;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 10px;
}
.home_pro ul li .text p {
  color: #999999;
  font-size: 14px;
  text-transform: uppercase;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_pro ul li .text i {
  display: block;
  width: 40px;
  height: 3px;
  background: #134692;
  margin: 20px auto 0;
}
.home_pro ul li .text a.more {
  margin-top: 30px;
  color: #999999;
  line-height: 38px;
  padding: 0 40px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid #999999;
}
.home_pro ul li:first-child {
  width: 47%;
}
.home_pro ul li:first-child .img::before {
  display: none;
}
.home_pro ul li:first-child .text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 294px;
  padding-top: 10.5%;
}
.home_pro ul li:last-child .img::before {
  top: auto;
  bottom: 0;
  background: url(../images/home_jt2.png) no-repeat center center;
}*/

.home_search {
  background: url(../image/home_bg.jpg) no-repeat center top / cover;
  min-height: 750px;
  padding: 175px 60px 0;
}
.home_search ol li {
  float: left;
  width: 50%;
  text-align: center;
}
.home_search ol li .icon {
  line-height: 0;
}
.home_search ol li .icon img {
  height: 50px;
}
.home_search ol li h3 {
  color: #666666;
  font-size: 30px;
  font-weight: normal;
  margin: 15px 0 12px;
}
.home_search ol li .t {
  font-size: 14px;
  color: #666666;
}
.home_search ol li .search_box {
  height: 42px;
  background: #fff;
  width: 456px;
  margin: 35px auto 0;
  border-radius: 3px;
}
.home_search ol li .search_box input.text {
  float: left;
  border: none;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  color: #333;
  width: 80%;
  padding: 0 15px;
  -webkit-appearance: none;
  border-radius: none;
}
.home_search ol li .search_box input.btn {
  float: right;
  height: 42px;
  background: #134590;
  width: 80px;
  color: #fff;
  border: none;
  font-size: 14px;
  -webkit-appearance: none;
  border-radius: none;
}
.home_search ol li .text_Box {
  margin-left: 140px;
  margin-top: 60px;
  text-align: left;
}
.home_search ol li .text_Box a {
  display: block;
  float: left;
  width: 50%;
  color: #666666;
  font-size: 16px;
  line-height: 40px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_search ol li:last-child h3,
.home_search ol li:last-child .t,
.home_search ol li:last-child .text_Box a {
  color: #fff;
}
.home_search ol li:last-child .search_box .btn {
  background: #d00707;
}
.home_search ol li:last-child .text_Box {
  margin-left: 160px;
}
.home_brand {
  background: url(../image/home_bg2.jpg) no-repeat center top;
  padding: 100px 60px 50px;
}
.home_brand .left {
  margin-left: 13.4%;
  float: left;
  width: 46.6%;
  padding-top: 25px;
  position: relative;
}
.home_brand .left::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  width: 6px;
  height: 108px;
  background: url(../image/home_brand_icon.png) no-repeat left top;
}
.home_brand .left h3.tit {
  color: #000;
  font-size: 30px;
  font-weight: normal;
  line-height: 38px;
}
.home_brand .left h3.tit span {
  color: #333333;
  font-size: 16px;
  display: inline-block;
  margin-left: 10px;
}
.home_brand .left .t {
  margin-top: 25px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
  width: 81%;
}
.home_brand .left ol {
  margin-top: 50px;
}
.home_brand .left ol li {
  text-align: center;
  float: left;
  width: 19%;
  margin-right: 4%;
}
.home_brand .left ol li:last-child {
  margin-right: 0;
}
.home_brand .left ol li .icon {
  line-height: 0;
}
.home_brand .left ol li .icon img {
  height: 40px;
}
.home_brand .left ol li h3 {
  margin-top: 15px;
  color: #333333;
  font-size: 16px;
}
.home_brand .left ol li p {
  margin-top: 10px;
  color: #999999;
  font-size: 14px;
  line-height: 20px;
}
.home_brand .left ol li a {
  height: 28px;
  width: 90px;
  border: 1px solid #d5d5d5;
  text-align: center;
  line-height: 26px;
  color: #999999;
  font-size: 12px;
  display: block;
  margin: 35px auto 0;
}
.home_brand .img {
  float: right;
  width: 40%;
  line-height: 0;
}
.home_brand .img img {
  width: 100%;
}
.home_news {
  padding: 80px 0 70px;
}
.home_news .top .tit {
  float: left;
}
.home_news .top .tit h4 {
  float: left;
  color: #999999;
  font-size: 20px;
  font-weight: normal;
}
.home_news .top .tit h4 span {
  font-size: 30px;
  text-transform: uppercase;
  display: block;
  color: #66b822;
}
.home_news .top .tit h3 {
  margin-top: 23px;
  float: left;
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  margin-left: 15px;
}
.home_news .top .tab {
  margin-top: 20px;
  float: right;
}
.home_news .top .tab a {
  display: block;
  float: left;
  width: 102px;
  height: 44px;
  background: #f3f3f3;
  line-height: 44px;
  margin-left: 5px;
  text-align: center;
  color: #666666;
  font-size: 14px;
}
.home_news .top .tab a:hover,
.home_news .top .tab a.cur {
  background: #134590;
  color: #fff;
}
.home_news .box {
  margin: 35px 0 60px;
}
.home_news .box .left {
  float: left;
  width: 47.2%;
  max-height: 600px;
  overflow: hidden;
}
.home_news .box .left p.date {
  color: #999999;
  font-size: 14px;
  text-transform: uppercase;
}
.home_news .box .left h3 {
  margin-top: 10px;
  color: #333333;
  font-size: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: normal;
}
.home_news .box .left span {
  margin-top: 40px;
  display: block;
  width: 188px;
  height: 50px;
  background: #fff;
  margin-bottom: -50px;
  position: relative;
  z-index: 1;
  line-height: 50px;
  color: #999999;
  font-size: 12px;
  text-transform: uppercase;
}
.home_news .box .left span i {
  display: inline-block;
  width: 25px;
  height: 5px;
  margin-left: 10px;
  vertical-align: middle;
  background: url(../image/icon_jt2.png) no-repeat center center / cover;
}
.home_news .box .left .img {
  line-height: 0;
  height: 100%;
}

.home_news .box .right {
  float: right;
  width: 48%;
}
.home_news .box .right ol li {
  float: left;
  width: 100%;
  border: 6px solid #fff;
  padding: 17px 45px;
  transition: all 0.5s ease-out 0s;
}
.home_news .box .right ol li a {
  display: block;
}
.home_news .box .right ol li p.date {
  color: #999999;
  font-size: 12px;
  background: url(../image/date1.png) no-repeat left center;
  line-height: 13px;
  padding-left: 20px;
}
.home_news .box .right ol li p.description{
  line-height: 1.8;
}
.home_news .box .right ol li h3 {
  margin-top: 5px;
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .box .right ol li span {
  margin-top: 25px;
  display: inline-block;
  color: #999999;
  font-size: 12px;
  text-transform: uppercase;
}
.home_news .box .right ol li span i {
  display: inline-block;
  width: 15px;
  height: 5px;
  background: url(../image/icon_jt3.png) no-repeat center center / cover;
  vertical-align: middle;
  margin-left: 10px;
}
.home_news .box .right ol li:hover {
  border-color: #023f8f;
}
.home_news .box .right ol li:hover h3 {
  color: #023f8f;
}
.home_news .more_btn,.pro_box.maxbox .more_btn{
  text-align: center;
}
.pro_box.maxbox .more_btn{margin-top:3%;}
.home_news .more_btn a,.pro_box.maxbox .more_btn a{
  display: inline-block;
  background: #f3f3f3;
  color: #999999;
  font-size: 14px;
  padding: 0 45px;
  line-height: 56px;
  text-transform: uppercase;
}
.nybanner {
  position: relative;
}
.nybanner .img {
  width: 100%;
  height: 750px;
}
.nybanner .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  padding-top: 235px;
}
.nybanner .text .wz {
  line-height: 0;
}
.nybanner .text .wz h2{
    color: #fff;
}
.nybanner .text .search {
  width: 760px;
  height: 62px;
  background: #fff;
  margin: 62px auto 0;
}
.nybanner .text .search .t {
  float: left;
  width: 80%;
  height: 62px;
  line-height: 62px;
  border: none;
  font-size: 16px;
  color: #999999;
  padding: 0 15px;
  -webkit-appearance: none;
  border-radius: 0;
}
.nybanner .text .search .btn {
  float: right;
  background: #13458f;
  color: #fff;
  font-size: 24px;
  width: 100px;
  height: 62px;
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.nybanner .icon {
  position: absolute;
  left: 60px;
  top: 142px;
  width: 6px;
  z-index: 2;
}
.nybanner .fx {
  position: absolute;
  z-index: 2;
  left: 60px;
  bottom: 50px;
  width: 15px;
}
.nybanner .fx a {
  display: block;
  width: 15px;
  line-height: 0;
  margin: 20px 0 0 0;
	
}
.pro_box {
  padding: 60px 0 100px;
}
.pro_box .pro_qh {
  margin-top: 40px;
}
.pro_box .pro_qh ol li {
  float: left;
  width: 33.333333%;
  border-left: 1px dotted #e6e9f0;
  text-align: center;
	    overflow: hidden;
}
.pro_box .pro_qh ol li:first-child {
  border-left: none;
}
.pro_box .pro_qh ol li:nth-child(4){border-left:none;}
.pro_box .pro_qh ol li .img {
  line-height: 0;
}

.pro_box .pro_qh ol li .img img {
  width: 68%;
transition: all 1s;
	-o-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-webkit-transition: all 1s;
}

.pro_box .pro_qh ol li:hover .img img {
transform: scale(1.2);
-o-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-webkit-transform: scale(1.2);
}

.pro_box .pro_qh ol li .text {
  margin-top: 30px;
  color: #333333;
  font-size: 14px;
}
.pro_box .pro_qh ol li .text h3 {
  font-weight: normal;
}
.pro_box .pro_qh ol li .text p {
  margin-top: 5px;
}
.pro_box .pro_qh .slick-dots {
  bottom: -50px;
}
.pro_box .pro_qh .slick-dots li button {
  width: 15px;
  height: 4px;
  background: #d0dae9;
  border-radius: 5px;
}
.pro_box .pro_qh .slick-dots li.slick-active button {
  background: #13458f;
}
.pro_box .pro_qh ol{display:flex;flex-wrap:wrap;justify-content:space-between;}


.pro_box2 {
  background: #fcfcfc;
  padding: 60px 0 80px;
}
.pro_box2 .tab {
  margin-top: 30px;
 text-align: center;
}
.pro_box2 .tab a {
  display: inline-block;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  margin: 0 20px;
  padding-bottom: 20px;
  position: relative;
	text-align: center; 
	width: 180px;
}
.pro_box2 .tab a:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -17px;
  width: 34px;
  height: 2px;
  background: #13458f;
}
.pro_box2 .tab a.cur,
.pro_box2 .tab a:hover {
  color: #13458f;
}
.pro_box2 .tab a.cur:before,
.pro_box2 .tab a:hover:before {
  display: block;
}
.pro_box2 .pro_text {
  margin-top: 50px;
}
.pro_box2 .pro_text .box .img {
  float: left;
  line-height: 0;
  width: 42%;
  text-align: center;
}
.pro_box2 .pro_text .box .text {
  float: right;
  width: 50%;
}
.pro_box2 .pro_text .box .text .icon {
  line-height: 0;
  height: 12px;
}
.pro_box2 .pro_text .box .text h3 {
  margin-top: 15px;
  color: #333333;
  font-size: 30px;
  font-weight: normal;
}
.pro_box2 .pro_text .box .text .t {
  margin-top: 20px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
}
.pro_box2 .pro_text .box .text .cklb {
  display: block;
  width: 146px;
  height: 32px;
  background: #d00707;
  border-radius: 50px;
  text-align: center;
  line-height: 32px;
  color: #fff;
  margin-top: 50px;
}
.pro_box2 .pro_text .box .text a i {
  display: inline-block;
  background: url(../image/jt_icon.jpg) center center / cover;
  width: 4px;
  height: 7px;
  margin-left: 10px;
}
.pro_box2 .pro_text .box .text .qh_xiaotu {
  margin-top: 63px;
  margin-left: -70px;
  width: 510px;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .text_box {
  background: #fff;
  width: 100%;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .text_box .text01 {
  float: left;
  width: 45%;
  padding: 35px;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .text_box .text01 .num {
  color: #cccccc;
  font-size: 12px;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .text_box .text01 .icon01 {
  height: 12px;
  line-height: 0;
  margin-top: 5px;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .text_box .text01 .bt {
  margin-top: 25px;
  color: #333333;
  font-size: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .text_box .text01 .t01 {
  margin-top: 35px;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
  height: 36px;
  overflow: hidden;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .text_box .img01 {
  float: right;
  width: 55%;
  line-height: 0;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .slick-prev,
.pro_box2 .pro_text .box .text .qh_xiaotu .slick-next {
  width: 100px;
  height: 50px;
  border: none;
  top: auto;
  bottom: 0;
  margin-top: 0;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .slick-prev {
  background: url(../image/prev2.jpg) no-repeat center center / cover;
  left: auto;
  right: 0;
}
.pro_box2 .pro_text .box .text .qh_xiaotu .slick-next {
  background: url(../image/next2.jpg) no-repeat center center / cover;
  right: -100px;
}
.pro_filter {
  background: #fcfcfc;
  border-bottom: 1px solid #efefef;
}
.pro_filter .tab {
  position: relative;
  z-index: 1;
  /* height: 90px; */
  margin-top: -44px;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  line-height: 90px;
  color: #333333;
  font-size: 18px;

}
.pro_filter .tab span {
  margin: 0 20px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.pro_filter .tab span:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  margin-left: -18px;
  width: 36px;
  height: 3px;
  background: #13458f;
}
.pro_filter .tab span:hover,
.pro_filter .tab span.cur {
  font-weight: bold;
  color: #13458f;
}
.pro_filter .tab span:hover:before,
.pro_filter .tab span.cur:before {
  display: block;
}
.pro_filter .filter_box {
  padding: 10px 0;
  position: relative;
}
.pro_filter .filter_box ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #efefef;
  padding: 20px 0;
}
.pro_filter .filter_box ul li:last-child {
  border-bottom: none;
}
.pro_filter .filter_box ul li span {
  display: block;
  float: left;
  text-align: right;
  width: 70px;
  color: #999999;
  font-size: 14px;
  line-height: 34px;
}
.pro_filter .filter_box ul li .t {
  float: right;
  width: 94%;
}
.pro_filter .filter_box ul li .t a {
  float: left;
  display: block;
  line-height: 34px;
  margin-right: 25px;
  color: #666666;
}
.pro_filter .filter_box ul li .t a:hover,
.pro_filter .filter_box ul li .t a.cur {
  color: #13458f;
}
.pro_list {
  padding: 30px 0 70px;
}
.pro_list ul {
  margin-bottom: 60px;
}
.pro_list ul li {
  float: left;
  width: 23.5%;
  text-align: center;
  margin-top: 2%;
  border: 1px solid #efefef;
  margin-right: 2%;
}
.pro_list ul li:nth-child(4n) {
  margin-right: 0;
}
.pro_list ul li .img {
  line-height: 0;
  overflow: hidden;
	height: 230px;
}
.pro_list ul li .text {
  color: #666666;
  font-size: 14px;
  padding: 20px 10px 30px;
}
.pro_list ul li .text h3 {
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.proshow_banner .img {
  height: 400px;
}
.proshow_banner .text {
  padding-top: 200px;
}
.proshow_top {
  padding: 50px 0 90px;
}
.proshow_top .img_box {
  border: 1px solid #efefef;
  float: left;
  width: 35%;
  line-height: 0;
}
.proshow_top .img_box .slick-dots {
  bottom: 34px;
}
.proshow_top .img_box .slick-dots li button {
  width: 15px;
  height: 4px;
  background: #d0dae9;
  border-radius: 5px;
}
.proshow_top .img_box .slick-dots li.slick-active button {
  background: #13458f;
}
.proshow_top .right {
  float: right;
  width: 60%;
}
.proshow_top .right h1 {
  color: #333333;
  font-size: 30px;
}
.proshow_top .right h4 {
  font-weight: normal;
  color: #333333;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 8px;
}
.proshow_top .right .tables {
  margin-top: 20px;
}
.proshow_top .right .tables ol li {
  float: left;
  width: 60%;
  color: #666666;
  font-size: 16px;
  line-height: 36px;
}
.proshow_top .right .tables ol li:nth-child(2n) {
  float: right;
  width: 35%;
}
.proshow_top .right .tables ol li span {
  color: #999999;
}
.proshow_top .right .text {
  margin-top: 20px;
  color: #666666;
  font-size: 16px;
  line-height: 36px;
}
.proshow_top .right .text span {
  color: #999999;
}
.proshow_top .right .down_btn {
  margin-top: 40px;
}
.proshow_top .right .down_btn a {
  display: block;
  float: left;
  line-height: 56px;
  border: 1px solid #efefef;
  background: #ffcfcfc;
  width: 215px;
  text-align: center;
  margin-right: 20px;
  color: #999999;
  font-size: 16px;
}
.proshow_top .right .down_btn a i {
  display: inline-block;
  height: 18px;
  width: 22px;
  vertical-align: middle;
  margin-right: 10px;
}
.proshow_top .right .down_btn a i.i1 {
  background: url(../image/xz.png) no-repeat center center / cover;
}
.proshow_top .right .down_btn a i.i2 {
  background: url(../image/downloads.png) no-repeat center center / cover;
}
.proshow_top .right .down_btn a:last-child {
  background: #d00707;
  color: #fff;
}
.proshow_top .right .dh {
  background: url(../image/dh.png) no-repeat left center;
  height: 33px;
  padding-left: 43px;
  margin-top: 35px;
}
.proshow_top .right .dh .d1 {
  color: #666666;
  font-size: 14px;
}
.proshow_top .right .dh .d1 span {
  display: inline-block;
  margin-right: 10px;
  font-size: 2rem;
}
.proshow_top .right .dh .d2 {
  color: #999999;
  font-size: 12px;
}
.proshow_box {
  background: url(../image/proshow_bg.jpg) repeat-x left top;
}
.proshow_box .tab span {
  line-height: 60px;
  color: #333333;
  font-size: 16px;
  float: left;
  display: block;
  cursor: pointer;
  padding: 0 30px;
}
.proshow_box .tab span:hover,
.proshow_box .tab span.cur {
  background: #134693;
  color: #fff;
  font-weight: bold;
}
.proshow_box .text_box {
  padding: 50px 0 70px;
}
.proshow_box .text_box .box1 {
  display: none;
}
.proshow_box .text_box .box2 .left {
  margin-top: 30px;
  float: left;
  width: 50%;
}
.proshow_box .text_box .box2 .left .bt {
  color: #333333;
  font-size: 16px;
  line-height: 30px;
  font-weight: bold;
}
.proshow_box .text_box .box2 .left p {
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.proshow_box .text_box .box2 .right {
  margin-top: -135px;
  width: 50%;
  float: right;
  border: 1px solid #efefef;
  background: #fff;
  line-height: 0;
}
.proshow_box2 {
  background: url(../image/proshow_bg.jpg) repeat-x left top #fcfcfc;
}
.proshow_box2 .top .tab {
  float: left;
}
.proshow_box2 .top .tab span {
  line-height: 60px;
  color: #333333;
  font-size: 16px;
  float: left;
  display: block;
  cursor: pointer;
  padding: 0 30px;
}
.proshow_box2 .top .tab span:hover,
.proshow_box2 .top .tab span.cur {
  background: #134693;
  color: #fff;
  font-weight: bold;
}
.proshow_box2 .top a.more {
  float: right;
  line-height: 60px;
  display: block;
  color: #666666;
  font-size: 12px;
}
.proshow_box2 .text_box {
  padding: 50px 0 60px;
}
.proshow_box2 .text_box .detail ul li {
  float: left;
  width: 23.5%;
  margin-right: 2%;
}
.proshow_box2 .text_box .detail ul li:nth-child(4n) {
  margin-right: 0;
}
.proshow_box2 .text_box .detail ul li .img {
  line-height: 0;
  text-align: center;
}
.proshow_box2 .text_box .detail ul li .img img {
  width: 100%;
}
.proshow_box2 .text_box .detail ul li .text {
  padding-top: 20px;
}
.proshow_box2 .text_box .detail ul li .text h3 {
  color: #333333;
  font-size: 16px;
  line-height: 30px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.proshow_box2 .text_box .detail ul li .text p {
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.system_box {
  padding: 60px 0 80px;
}
.system_box ol {
  margin-top: 50px;
}
.system_box ol li {
  float: left;
  width: 32%;
  text-align: center;
  border-left: 1px solid #e2e2e2;
  padding: 0 5%;
}
.system_box ol li .img {
  line-height: 0;
}
.system_box ol li .text {
  margin-top: 35px;
}
.system_box ol li .text h3 {
  color: #333333;
  font-size: 16px;
}
.system_box ol li .text p {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.system_box ol li.li1 {
  border-left: none;
  padding-left: 0;
}
.system_box ol li.li2 {
  width: 36%;
}
.system_box ol li.li3 {
  padding-right: 0;
}
.program_banner .text {
  padding-top: 270px;
}
.program_banner .text .search .cbox {
  width: 145px;
  height: 62px;
  float: left;
  background: #747474;
  position: relative;
}
.program_banner .text .search .cbox .ch {
  display: block;
  width: 100%;
  height: 62px;
  line-height: 62px;
  padding: 0 25px;
  font-size: 16px;
  color: #ffffff;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.program_banner .text .search .cbox .ch:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 28px;
  width: 9px;
  height: 5px;
  background: url(../image/icon4.jpg) no-repeat center center;
}
.program_banner .text .search .cbox .con {
  display: none;
  z-index: 999;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #747474;
  text-align: left;
  border-top: 1px solid #fff;
  padding: 10px 25px;
}
.program_banner .text .search .cbox .con a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  display: block;
  line-height: 30px;
}
.program_banner .text .search .t {
  width: 64%;
  padding: 0 25px;
}
.program_banner .text .search .btn {
  font-size: 16px;
  background: #0d2a70;
}
.program_box {
  background: #fafafa;
  padding-bottom: 70px;
}
.program_box .menu {
  display: flex;
  position: relative;
  z-index: 2;
  background: #fff;
  height: 50px;
  line-height: 50px;
  max-width: 300px;
  margin: -130px auto 0;
  text-align: center;
}
.program_box .menu a {
  display: block;
  float: left;
  color: #333333;
  font-size: 16px;
  width: 50%;
}
.program_box .menu a:hover,
.program_box .menu a.cur {
  background: #d00707;
  color: #fff;
}
.program_box .tab {
  text-align: center;
  margin-top: 50px;
  border-bottom: 1px solid #ededed;
  background: #fff;
}
.program_box .tab a {
  color: #000;
  display: inline-block;
  font-size: 16px;
  margin: 0 20px;
  border-bottom: 2px solid #fafafa;
  line-height: 68px;
}
.program_box .tab a:hover,
.program_box .tab a.cur {
  color: #cc0000;
  border-bottom-color: #cc0000;
}
.program_box .box {
  margin-top: 35px;
}
.program_box .box .left {
  width: 70%;
  float: left;
}
.program_box .box .left .program_list {
  background: #fff;
  padding: 4.5% 4.5% 60px;
}
.program_box .box .left .program_list .tit {
  line-height: 36px;
  border-bottom: 1px dotted #e5e5e5;
  padding-bottom: 18px;
}
.program_box .box .left .program_list .tit h3 {
  color: #333333;
  font-size: 30px;
  float: left;
}
.program_box .box .left .program_list .tit span {
  display: inline-block;
  margin-left: 20px;
  color: #d6d6d6;
  font-size: 24px;
}
.program_box .box .left .program_list ol {
  margin-top: 30px;
  margin-bottom: 30px;
}
.program_box .box .left .program_list ol li {
  float: left;
  width: 31.3333%;
  margin-bottom: 3%;
  margin-right: 3%;
}
.program_box .box .left .program_list ol li:nth-child(3n) {
  margin-right: 0;
}
.program_box .box .left .program_list ol li .img {
  line-height: 0;
  overflow: hidden;
}
.program_box .box .left .program_list ol li .text {
  padding-top: 18px;
}
.program_box .box .left .program_list ol li .text h3 {
  color: #333333;
  font-size: 16px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.program_box .box .left .program_list ol li .text p {
  margin-top: 8px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.program_box .box .cp_left {
  width: 100%;
  float: left;
}
.program_box .box .cp_left .program_list {
  background: #fff;
  padding: 4.5% 4.5% 60px;
}
.program_box .box .cp_left .program_list .tit {
  line-height: 36px;
  border-bottom: 1px dotted #e5e5e5;
  padding-bottom: 18px;
}
.program_box .box .cp_left .program_list .tit h3 {
  color: #333333;
  font-size: 30px;
  float: left;
  position: relative;
  padding-left: 15px;
}
.program_box .box .cp_left .program_list .tit h3:before{

    width: 6px;
    background: #0c419a;
    height: 12px;
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}
.program_box .box .cp_left .program_list .tit h3:after{

    width: 6px;
    background: #66b822;
    height: 12px;
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
}
.program_box .box .cp_left .program_list .tit span {
  display: inline-block;
  margin-left: 20px;
  color: #d6d6d6;
  font-size: 24px;
}
.program_box .box .cp_left .program_list ol {
  margin-top: 30px;
  margin-bottom: 30px;
}
.program_box .box .cp_left .program_list ol li {
  float: left;
  width: 18%;
  margin-bottom: 3%;
  margin-right: 2.5%;
}
.program_box .box .cp_left .program_list ol li:nth-child(5n) {
  margin-right: 0;
}
.program_box .box .cp_left .program_list ol li .img {
  line-height: 0;
  overflow: hidden;
}
.program_box .box .cp_left .program_list ol li .text {
  padding-top: 18px;
}
.program_box .box .cp_left .program_list ol li .text h3 {
  color: #333333;
  font-size: 16px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.program_box .box .cp_left .program_list ol li .text p {
  margin-top: 8px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.program_box .box .right {
  float: right;
  width: 27%;
}
.program_box .box .right .tuijian {
  border-bottom: 1px dotted #cbd0de;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.program_box .box .right .tuijian .img {
  line-height: 0;
  overflow: hidden;
}
.program_box .box .right .tuijian .text {
  padding-top: 20px;
}
.program_box .box .right .tuijian .text h3 {
  color: #333333;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.program_box .box .right .tuijian .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
}
.program_box .box .right .tuijian .text span {
  margin-top: 12px;
  display: inline-block;
  color: #023f8f;
  font-size: 12px;
  text-transform: uppercase;
  background: url(../image/jt.png) no-repeat right center;
  padding-right: 33px;
}
.program_box .box .right .rmyy .bt {
  color: #333333;
  font-size: 18px;
  height: 24px;
  border-left: 2px solid #d00707;
  padding-left: 15px;
}
.program_box .box .right .rmyy ul {
  margin-top: 20px;
}
.program_box .box .right .rmyy ul li {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.program_box .box .right .rmyy ul li .img {
  float: left;
  line-height: 0;
  width: 38%;
}
.program_box .box .right .rmyy ul li .text {
  float: right;
  width: 58%;
  padding-top: 5px;
}
.program_box .box .right .rmyy ul li .text p {
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}
.program_box .box .right .rmyy ul li .text span {
  display: block;
  margin-top: 8px;
  color: #999999;
  font-size: 12px;
}
.program_show {
  /*margin-top: 55px;*/
  background: #fff;
  padding: 4%;
}
.program_show .show_top {
  border-bottom: 1px dotted #cbd0de;
  padding-bottom: 60px;
}
.program_show .show_top .img_box {
  float: left;
  width: 52.4%;
}
.program_show .show_top .img_box .slick-dots {
  bottom: 20px;
}
.program_show .show_top .img_box .slick-dots li button {
  width: 15px;
  height: 4px;
  background: #1c1d26;
  border-radius: 5px;
}
.program_show .show_top .img_box .slick-dots li.slick-active button {
  background: #d00707;
}
.program_show .show_top .img_box .slick-prev,
.program_show .show_top .img_box .slick-next {
  width: 58px;
  height: 96px;
  border: none;
  margin-top: -48px;
}
.program_show .show_top .img_box .slick-prev {
  left: 0;
  background: url(../image/prev3.png) no-repeat center center / cover;
}
.program_show .show_top .img_box .slick-next {
  right: 0;
  background: url(../image/next3.png) no-repeat center center / cover;
}
.program_show .show_top .right {
  float: right;
  width: 43%;
  padding-top: 30px;
}
.program_show .show_top .right h1 {
  color: #333333;
  font-size: 30px;
  font-weight: normal;
}
.program_show .show_top .right .t {
  margin-top: 25px;
  color: #666666;
  font-size: 14px;
  line-height: 36px;
}
.program_show .show_top2 {
  padding-top: 60px;
  /*width: 64%;*/
    color: #666666;
    font-size: 14px;
    line-height: 36px;
}
.program_show .show_top2 .left {
  float: left;
  width: 64%;
  color: #666666;
  font-size: 14px;
  line-height: 36px;
}
.program_show .show_top2 .right {
  float: right;
  width: 31%;
}
.xg_solution {
  background: url(../image/xg_solution.jpg) repeat-x left 18px #ffffff;
  padding-top: 55px;
}
.brand_banner .text {
  padding-top: 250px;
  text-align: left;
}
.brand_box {
  padding: 50px 0 55px;
  background: url(../image/brand_bg.jpg) repeat-x left bottom;
}
.brand_box .left {
  float: left;
  width: 60%;
}
.brand_box .left .tit h4 {
  float: left;
  color: #999999;
  font-size: 20px;
  font-weight: normal;
}
.brand_box .left .tit h4 span {
  font-size: 30px;
  text-transform: uppercase;
  display: block;
}
.brand_box .left .tit h3 {
  margin-top: 23px;
  float: left;
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  margin-left: 15px;
}
.brand_box .left .text {
  margin-top: 90px;
  color: #333333;
  font-size: 16px;
  line-height: 36px;
}
.brand_box .right {
  float: right;
  line-height: 0;
  width: 35%;
}
.brand_box2 {
  height: 450px;
  background: url(../image/brand_bg2.jpg) no-repeat center center;
  padding: 70px 0 0;
}
.brand_box2 .title .icon {
  line-height: 0;
}
.brand_box2 .title h3 {
  margin-top: 30px;
  color: #fff;
  font-size: 30px;
}
.brand_box2 .title h4 {
  margin-top: -40px;
  font-size: 60px;
  color: #fff;
  opacity: .1;
}
.brand_box2 .text {
  color: #ffffff;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  max-width: 955px;
  margin: 25px auto 0;
}
.brand_box3 {
  height: 483px;
  background: url(../image/brand_bg3.jpg) no-repeat center center;
  padding: 60px 0 0;
}
.brand_box3 .left {
  float: left;
  width: 60%;
  padding-top: 20px;
}
.brand_box3 .left .tit h4 {
  float: left;
  color: #999999;
  font-size: 20px;
  font-weight: normal;
}
.brand_box3 .left .tit h4 span {
  font-size: 30px;
  text-transform: uppercase;
  display: block;
}
.brand_box3 .left .tit h3 {
  margin-top: 23px;
  float: left;
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  margin-left: 15px;
}
.brand_box3 .left .text {
  margin-top: 30px;
  color: #333333;
  font-size: 16px;
  line-height: 36px;
}
.brand_box3 .right {
  float: right;
  line-height: 0;
  width: 35%;
}
.case_box {
  padding: 60px 0 70px;
  background: url(../image/case_bg2.jpg) repeat-x left bottom;
}
.case_box .title h4 {
  color: #eaeaea;
}
.case_box .title p {
  color: #333333;
}
.case_box .box {
  margin-top: 40px;
}
.case_box .box ul li {
  float: left;
  position: relative;
  margin-bottom: 1.5%;
}
.case_box .box ul li .img {
  line-height: 0;
}
.case_box .box ul li .text {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20% 10%;
  background: url(../image/case_bg.png);
  text-align: center;
}
.case_box .box ul li .text .icon {
  line-height: 0;
}
.case_box .box ul li .text h3 {
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
}
.case_box .box ul li .text p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.case_box .box ul li:hover .text {
  display: block;
}
.case_box .box ul li.li1 {
  width: 49%;
}
.case_box .box ul li.li1 .text {
  padding: 30% 10%;
}
.case_box .box ul li.li2 {
  width: 24%;
  margin-left: 1.5%;
}
.case_box .box ul li.li2.cut5{
    width: 20%;
}
.case_box .box ul li.li3 {
  margin-left: 1.5%;
  width: 24%;
}
.case_box .box ul li.li4 {
  margin-left: 1.5%;
  width: 49.5%;
}
.case_box .box ul li.li4 .text {
  padding: 10%;
}
.case_box .box .img_box {
  margin-top: 30px;
  line-height: 0;
}
.case_box2 {
  padding: 60px 0 80px;
}
.case_box2 .title h4 {
  color: #eaeaea;
}
.case_box2 .title p {
  color: #333333;
}
.case_box2 ul {
  margin-top: 20px;
  margin-bottom: 70px;
}
.case_box2 ul li {
  float: left;
  width: 23.5%;
  text-align: center;
  background: #f9f9f9;
  margin-top: 2%;
  margin-right: 2%;
}
.case_box2 ul li:nth-child(4n) {
  margin-right: 0;
}
.case_box2.index_case ul li .img {
  max-height: 170px;
}
.case_box2 ul li .img {
  line-height: 0;
  overflow: hidden;
}
.case_box2 ul li .text {
  background: #f9f9f9;
  line-height: 60px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  margin-left: 8%;
  margin-right: 8%;
  font-size: 16px;
}
.case_box2 ul li p.detail{
  padding: 3%;
  text-align: left;
  text-indent: 2em;
}
.case_box2 ul li .text p {
  color: #666666;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.case_box2 .more_btn {
  text-align: center;
}
.case_box2 .more_btn a {
  display: inline-block;
  background: #f3f3f3;
  line-height: 62px;
  color: #666666;
  padding: 0 78px;
  font-size: 20px;
}

.case_box .img_box ul li {
  float: left;
  position: relative;
  margin-bottom: 1.5%;
}
.case_box .img_box ul li .img {
  line-height: 0;
}
.case_box .img_box ul li .text {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20% 10%;
  background: url(../image/case_bg.png);
  text-align: center;
}
.case_box .img_box ul li .text .icon {
  line-height: 0;
}
.case_box .img_box ul li .text h3 {
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
}
.case_box .img_box ul li .text p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.case_box .img_box ul li:hover .text {
  display: block;
}
.case_box .img_box ul li.li1 {
  width: 49%;
}
.case_box .img_box ul li.li1 .text {
  padding: 30% 10%;
}
.case_box .img_box ul li.li2 {
  width: 24%;
  margin-left: 1.5%;
}
.case_box .img_box ul li.li2.cut5{
    width: 18.8%;
}
.case_box .img_box ul li.li3 {
  margin-left: 1.5%;
  width: 24%;
}
.case_box .img_box ul li.li4 {
  margin-left: 1.5%;
  width: 49.5%;
}
.case_box .img_box ul li.li4 .text {
  padding: 10%;
}
.case_box .box .img_box {
  margin-top: 0px;
  line-height: 0;
}
.case_box .img_box ul li:first-child{margin-left:0}
.service_box {
  background: url(../image/service_bg.jpg) repeat-x left bottom;
  padding: 70px 0 40px;
}
.service_box .left {
  float: left;
  width: 50%;
}
.service_box .left .tit h4 {
  float: left;
  color: #999999;
  font-size: 20px;
  font-weight: normal;
}
.service_box .left .tit h4 span {
  font-size: 30px;
  text-transform: uppercase;
  display: block;
}
.service_box .left .tit h3 {
  margin-top: 23px;
  float: left;
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  margin-left: 15px;
}
.service_box .left .text {
  margin-top: 60px;
  color: #333333;
  font-size: 16px;
  line-height: 36px;
}
.service_box .left .text span {
  font-weight: bold;
}
.service_box .right {
  float: right;
  line-height: 0;
  width: 46%;
}
.service_box2 {
  padding: 80px 0 60px;
  background: url(../image/service_bg2.jpg) no-repeat left bottom;
}
.service_box2 ol li {
  float: left;
  width: 32%;
  background: #fff;
  margin-left: 2%;
}
.service_box2 ol li:first-child {
  margin-left: 0;
}
.service_box2 ol li .img {
  line-height: 0;
  overflow: hidden;
}
.service_box2 ol li .text {
  padding: 0 8% 30px;
}
.service_box2 ol li .text h3 {
  background: #fff;
  color: #333333;
  font-size: 18px;
  text-align: center;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  padding-top: 25px;
}
.service_box2 ol li .text p {
  margin-top: 16px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 96px;
}
.service_box2 .bottom {
  margin-top: 35px;
  text-align: center;
  color: #333333;
  font-size: 16px;
  font-weight: bold;
}
.service_box2 .bottom span {
  color: #cc0000;
  font-size: 30px;
}
.service_box3 {
  padding: 60px 0 80px;
}
.service_box3 .top .tit {
  float: left;
}
.service_box3 .top .tit h4 {
  float: left;
  color: #999999;
  font-size: 20px;
  font-weight: normal;
}
.service_box3 .top .tit h4 span {
  font-size: 30px;
  text-transform: uppercase;
  display: block;
}
.service_box3 .top .tit h3 {
  margin-top: 23px;
  float: left;
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  margin-left: 15px;
}
.service_box3 .top .tab {
  margin-top: 20px;
  float: right;
}
.service_box3 .top .tab a {
  display: block;
  float: left;
  width: 102px;
  height: 44px;
  background: #f3f3f3;
  line-height: 44px;
  margin-left: 5px;
  text-align: center;
  color: #666666;
  font-size: 14px;
}
.service_box3 .top .tab a:hover,
.service_box3 .top .tab a.cur {
  background: #134590;
  color: #fff;
}
.service_box3 .box {
  margin-top: 40px;
}
.service_box3 .box .left {
  float: left;
  width: 33%;
}
.service_box3 .box .left .img {
  float: left;
  line-height: 0;
  overflow: hidden;
}
.service_box3 .box .left a {
  float: right;
  display: block;
  width: 155px;
  height: 55px;
  margin-top: -65px;
  margin-right: -20px;
}
.service_box3 .box .right {
  float: right;
  width: 60%;
  padding-top: 20px;
}
.service_box3 .box .right .top {
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}
.service_box3 .box .right .top .bt {
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  background: url(../image/q.jpg) no-repeat left center;
  padding-left: 44px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.service_box3 .box .right .top .text {
  margin-top: 20px;
  padding-left: 44px;
  background: url(../image/a.jpg) no-repeat left top;
}
.service_box3 .box .right .top .text p {
  color: #666666;
  font-size: 14px;
  line-height: 25px;
  height: 50px;
  overflow: hidden;
}
.service_box3 .box .right ol {
  margin-top: 10px;
}
.service_box3 .box .right ol li {
  width: 48%;
  border-bottom: 1px dotted #d9d9d9;
  line-height: 54px;
  font-size: 16px;
  padding-left: 44px;
  background: url(../image/down_g.png) no-repeat 10px center;
  float: left;
}
.service_box3 .box .right ol li:nth-child(2n) {
  float: right;
}
.service_box3 .box .right ol li a {
  display: block;
  color: #666666;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.service_box3 .box .right ol li:hover {
  background: url(../image/down_b.png) no-repeat 10px center;
}
.service_box3 .box .right ol li:hover a {
  color: #134693;
}
.news_box .menu {
  width: 544px;
}
.news_box .menu a {
  /*width: 20%;*/
}
.news_box .box {
  margin-top: 0;
}
.news_box .box .right {
  margin-top: 60px;
}
.news_list {
  background: #fff;
  padding: 60px 4.5% 60px;
}
.news_list .news_top .img {
  line-height: 0;
  float: left;
  width: 48%;
}
.news_list .news_top .text {
  float: right;
  width: 48%;
  padding-top: 18px;
}
.news_list .news_top .text span {
  font-size: 14px;
  color: #999999;
  margin-bottom: 22px;
  display: block;
}
.news_list .news_top .text h3 {
  font-size: 20px;
  color: #333333;
  margin-bottom: 16px;
}
.news_list .news_top .text p {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
}
.news_list .news_top .text a.more {
  margin-top: 15px;
  display: inline-block;
  color: #023f8f;
  font-size: 12px;
  text-transform: uppercase;
  background: url(../image/jt.png) no-repeat right center;
  padding-right: 33px;
}
.news_list ol {
  margin-top: 40px;
  border-bottom: 1px dashed  #e5e5e5;
  margin-bottom: 45px;
}
.news_list ol li {
  float: left;
  width: 100%;
  border-top: 1px dashed  #e5e5e5;
  padding: 25px 0;
}
.news_list ol li .img {
  float: left;
  max-width: 186px;
  width: 100%;
  line-height: 0;
}
.news_list ol li .text {
  float: right;
  width: 74%;
}
.news_list ol li .text .date {
  display: block;
  color: #999999;
  font-size: 12px;
  background: url(../image/new_sz.png) no-repeat left center;
  padding-left: 20px;
}
.news_list ol li .text h4 {
  color: #333333;
  font-size: 18px;
  margin-top: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_list ol li .text span {
  margin-top: 15px;
  display: inline-block;
  color: #999999;
  font-size: 12px;
  text-transform: uppercase;
  background: url(../image/jt_hui.png) no-repeat right center;
  padding-right: 33px;
}
.news_list ol li:hover .text h4 {
  color: #023f8f;
}
.newsshow_box {
  padding-top: 40px;
}
.newsshow_box .box {
  margin-top: 0;
}
.newsshow_box .newsshow {
  background: #fff;
  padding: 40px 4.5% 60px;
}
.newsshow_box .newsshow h1 {
  text-align: center;
  color: #333;
  font-size: 26px;
  font-weight: normal;
}
.newsshow_box .newsshow .date {
  padding: 15px 0 18px;
  text-align: center;
  border-bottom: 1px solid  #e5e5e5;
}
.newsshow_box .newsshow .date span {
  display: inline-block;
  margin: 0 40px;
}
.newsshow_box .newsshow .detail {
  padding-top: 20px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.newsshow_box .newsshow .detail p{
   font-size: 16px!important; max-font-size: 18px!important; min-font-size: 14px!important;
}
.newsshow_box .fenye_box {
  margin-top: 40px;
}
.newsshow_box .fenye_box ul {
  max-width: 70%;
  float: left;
}
.newsshow_box .fenye_box ul li {
  line-height: 36px;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.newsshow_box .fenye_box .fanhui {
  float: right;
  line-height: 36px;
  color: #666;
  font-size: 16px;
  border: 1px solid #ddd;
  padding: 0 25px;
}
.about_box {
  padding: 70px 0 80px;
  background: url(../image/about_bg.jpg) repeat-x left bottom;
}
.about_box .left {
  float: left;
  width: 60%;
}
.about_box .left .tit h4 {
  float: left;
  color: #f1f1f1;
  font-size: 20px;
  font-weight: normal;
}
.about_box .left .tit h4 span {
  font-size: 30px;
  text-transform: uppercase;
  display: block;
}
.about_box .left .tit h3 {
  margin-top: 23px;
  float: left;
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  margin-left: 15px;
}
.about_box .left .text {
  margin-top: 50px;
  color: #666666;
  font-size: 16px;
  line-height: 36px;
}
.about_box .left .box {
  margin-top: 45px;
}
.about_box .left .box .top .bt {
  color: #484c52;
  font-size: 24px;
}
.about_box .left .box .top .d {
  margin-top: 5px;
  color: #484c52;
  font-size: 18px;
}
.about_box .left .box ol {
  margin-top: 25px;
}
.about_box .left .box ol li {
  float: left;
  color: #666666;
  font-size: 16px;
  line-height: 36px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 48%;
}
.about_box .left .box ol li:nth-child(2n) {
  float: right;
}
.about_box .right {
  float: right;
  line-height: 0;
  width: 35%;
}
.about_box2 {
  background: url(../image/about_bg2.jpg) no-repeat center top;
  padding: 55px 0 70px;
}
.about_box2 .title h3 {
  margin-top: 30px;
  color: #fff;
  font-size: 30px;
}
.about_box2 .title h4 {
  margin-top: -35px;
  font-size: 48px;
  color: #e4ebed;
  opacity: .1;
}
.about_box2 .title p {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}
.about_box2 ol {
  margin-top: 39px;
}
.about_box2 ol li {
  float: left;
  width: 23.5%;
  background: #fff;
  background: url(../image/about_bg3.jpg) no-repeat center bottom;
  margin-left: 2%;
}
.about_box2 ol li:first-child {
  margin-left: 0;
}
.about_box2 ol li .img {
  line-height: 0;
  overflow: hidden;
}
.about_box2 ol li .text {
  padding: 0 8% 30px;
  text-align: center;
}
.about_box2 ol li .text h3 {
  background: #fff;
  color: #333333;
  font-size: 18px;
  text-align: center;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  padding-top: 25px;
}
.about_box2 ol li .text p {
  margin-top: 16px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.about_box3 {
  padding: 0 0 70px;
}
.about_box3 ol.ol_list {
  margin-top: 30px;
  text-align: center;
}
.about_box3 ol.ol_list li {
  display: inline-block;
  height: 37px;
  margin: 0 12px;
}
.about_box3 #focus_Box {
  position: relative;
  width: 1020px;
  height: 410px;
  margin: 50px auto 0;
}
.about_box3 #focus_Box ul {
  position: relative;
  width: 1020px;
  height: 410px;
}
.about_box3 #focus_Box li {
  z-index: 0;
  position: absolute;
  width: 0px;
  background: #787878;
  height: 0px;
  top: 0;
  cursor: pointer;
  left: 0;
}
.about_box3 #focus_Box li img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.about_box3 #focus_Box .prev,
.about_box3 #focus_Box .next {
  display: block;
  z-index: 100;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  width: 20px;
  height: 35px;
  top: 173px;
}
.about_box3 #focus_Box .prev {
  background: url(../image/about_left.jpg) no-repeat center center;
  left: -59px;
}
.about_box3 #focus_Box .next {
  background: url(../image/about_right.jpg) no-repeat center center;
  right: -59px;
}
.about_box4 {
  background: #f7f7f7;
  padding: 80px 0 0;
}
.about_box4 .path_text {
  margin-top: 30px;
  position: relative;
}
.about_box4 .path_text .box {
  padding: 50px 9%;
}
.about_box4 .path_text .box span.num {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #f1f1f1;
  font-size: 500px;
  font-weight: bold;
  line-height: 400px;
  text-align: center;
}
.about_box4 .path_text .box .img {
  float: left;
  width: 55%;
  position: relative;
}
.about_box4 .path_text .box .img span {
  float: right;
  width: 85%;
  display: block;
  line-height: 0;
}
.about_box4 .path_text .box .img em {
  display: block;
  position: absolute;
  left: 0;
  top: 31%;
  width: 33%;
  line-height: 0;
}
.about_box4 .path_text .box .text {
  position: relative;
  float: right;
  width: 40%;
  padding-top: 60px;
}
.about_box4 .path_text .box .text h3 {
  color: #333333;
  font-size: 16px;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.about_box4 .path_text .box .text .t {
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.about_box4 .path_text .box .text a {
  margin-top: 42px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #666666;
  text-transform: uppercase;
}
.about_box4 .path_text .box .text a i {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 9px solid #1b1b1b;
  border-radius: 50px;
  position: relative;
  top: 7px;
  margin-right: 10px;
}
.about_box4 .path_num {
  margin: 70px 7% 0;
  text-align: center;
}
.about_box4 .path_num span {
  display: inline-block;
  color: #999999;
  font-size: 14px;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
.about_box4 .path_num .slick-current span {
  color: #002f87;
  border-bottom: 2px solid #002f87;
}

.about_box4 .path_num .slick-prev,
.about_box4 .path_num .slick-next {
  width: 28px;
  height: 52px;
  border: none;
  margin-top: -290px;
  top: 0;
}
.about_box4 .path_num .slick-prev {
  left: -7%;
  background: url(../image/prev.png) no-repeat center center / cover;
}
.about_box4 .path_num .slick-next {
  right: -7%;
  background: url(../image/next.png) no-repeat center center / cover;
}
.about_box5 {
  padding: 60px 0 0;
}
.about_box5 ol {
  margin-top: 25px;
  text-align: center;
}
.about_box5 ol li {
  display: inline-block;
  color: #666666;
  font-size: 18px;
  margin: 0 25px;
  padding-bottom: 15px;
  cursor: pointer;
  position: relative;
}
.about_box5 ol li:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -18px;
  width: 36px;
  height: 3px;
  background: #66b822;
}
.about_box5 ol li.cur {
  color: #103b82;
}
.about_box5 ol li.cur:before {
  display: block;
}
.about_box5 .box {
  margin-top: 40px;
  background: #0e3379;
  width: 45%;
  position: relative;
  z-index: 1;
  min-height: 328px;
}
.about_box5 .box .text_box {
  display: none;
  padding: 38px 40px;
  color: #ffffff;
  font-size: 15px;
  line-height: 36px;
}
.about_box5 .box .text_box:first-child {
  display: block;
}
.about_box5 .box .text_box p {
  /*text-overflow: ellipsis;*/
  overflow: hidden;
  white-space: wrap;
}
.about_box5 .box .text_box .dq_2 {
  /*text-overflow: ellipsis;*/
 display: flex;
 
}
.about_box5 .box .text_box .dq_1 {
  /*text-overflow: ellipsis;*/
 display: inline-block;
 
}
.about_box5 .box .text_box .dq{display:inline-block;width:100px;text-align:right}
.about_box5 #allmap {
  margin-top: -280px;
  height: 500px;
  width: 100%;
}
.navbtn {
  display: none;
  z-index: 2;
  position: absolute;
  width: 42px;
  line-height: 0;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.navBox {
  width: 100%;
  height: 100%;
  position: fixed;
  right: auto;
  top: 0;
  bottom: 0;
  left: -100%;
  overflow: hidden;
  background: #fff;
  z-index: 999;
}
.navBox .nav-title {
  height: 70px;
  padding: 0 15px;
  line-height: 70px;
  position: relative;
  border-bottom: 1px solid rgba(204, 204, 204, 0.4);
}
.navBox .nav-title .navclose {
  width: 32px;
  height: 32px;
  display: block;
  font-size: 0;
  line-height: 32px;
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -16px;
}
.navBox .nav-title h1 {
  text-align: center;
  width: 130px;
  margin: 0 auto;
  vertical-align: top;
}
.navBox .nav-title h1 img {
  margin-top: 18px;
}
.navBox .navSearch {
  border-bottom: 1px solid rgba(204, 204, 204, 0.4);
  padding: 0 15px;
}
.navBox .navSearch .btn {
  float: right;
  width: 20px;
  height: 20px;
  background: url(../image/navSearch_btn.png) no-repeat center center / cover;
  border: none;
  margin-top: 15px;
}
.navBox .navSearch .text {
  float: left;
  width: 80%;
  height: 50px;
  line-height: 50px;
  background: none;
  border: none;
  font-size: 14px;
  color: #333;
}
.navBox .navlist {
  margin-top: 20px;
  width: 100%;
}
.navBox .navlist ul li {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 50px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.navBox .navlist ul li:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -8px;
  width: 9px;
  height: 16px;
  background: url(../image/icon_jt.png) no-repeat center center / cover;
}
.navBox .navlist ul li a {
  display: block;
  color: #333;
  padding: 0 15px;
}
.mobile_honor {
  margin: 20px 8px 0;
  display: none;
}
.mobile_honor .img {
  margin: 0 7px;
}
.mobile_honor .img img {
  width: 100%;
}
.mobile_honor .slick-prev,
.mobile_honor .slick-next {
  width: 20px;
  height: 35px;
  border: none;
  margin-top: -17.5px;
}
.mobile_honor .slick-prev {
  background: url(../image/about_left.jpg) no-repeat center center / cover;
  left: 7px;
}
.mobile_honor .slick-next {
  background: url(../image/about_right.jpg) no-repeat center center / cover;
  right: 7px;
}
.mobile_pro {
  background: #fcfcfc;
  position: relative;
}
.mobile_pro ul li {
  float: left;
  width: 25%;
  text-align: center;
}
.mobile_pro ul li span {
  padding: 0 15px;
  display: block;
  line-height: 66px;
  position: relative;
  color: #747474;
}
.mobile_pro ul li span i {
  margin-left: 5px;
  display: inline-block;
  width: 15px;
  height: 9px;
  background: url(../image/car_icon1.png) no-repeat center center / cover;
  position: relative;
  top: 0;
}
.mobile_pro ul li span:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: #eaebec;
}
.mobile_pro ul li .text_con {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.mobile_pro ul li .text_con a {
  width: 25%;
  float: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  line-height: 46px;
  height: 46px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.mobile_pro ul li .text_con a:nth-child(4n) {
  border-right: none;
}


.inputerror { border: 1px solid #f00 !important; background-color: #ffe6e6 !important;}
@-webkit-keyframes inputerrors{
  0%{
    background-color: #fff;
	}
	100%{
    background-color: #ffe6e6;
	}
}
 
.inputerror{
	animation: inputerrors 0.5s 3 ease;
}

.header .header_right .nav ul li .navbox{
	position: absolute;
	top: 100%;
	padding: 18px 0;
	opacity: 0;
	z-index: 9;
	transition: opacity 0.7s;
}

.header .header_right .nav ul li:hover .navbox{
	display: block;
	opacity: 1;
	transition: opacity 0.7s;
}

.fixed-head .header_right .nav ul li .navbox{
	background: #fff;
	left: -66%;
	width: 150px;
	text-align: center;
	box-shadow: 0  1px 0 rgba(0, 0, 0, 0.1);
}

/**2019-2-18**/
.fixed-head .header_right .dh{
	color: #000;
}
.fixed-head .header_right .search{
	background: url(../image/search3.png) no-repeat center center;
}
.banner .box{
	position: relative;
}
.banner .img1 {
	position: absolute;
	left: 0;
	top: 0;
  width: 32%;
  margin-left: 15.4%;
  margin-top: 18%;
  z-index: 9;
}
.banner .img2 {
  width: 100%;
  overflow: hidden;
}
.left_animate {
  transition: all 2s;
  opacity: 0;
  -webkit-transform: translateX(-40%);
  -moz-transform: translateX(-40%);
  -ms-transform: translateX(-40%);
  -o-transform: translateX(-40%);
  transform: translateX(-40%);
}
.banner_animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.right_animate{
    transition: all 4s;
    -webkit-transform: scale(1.2);
    -moz-transform:  scale(1.2);
    -ms-transform:  scale(1.2);
    -o-transform: scale(1.2);
    transform:  scale(1.2);
}
.banner_zoom{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.t_gengduo{
	width: 5%;
	float: left;
}

.t_gengduo a{
	  color: #666;
    font-size: 18px;
}

.t_pinpai{
	width:100%;
	float:left;
	overflow: hidden;
}

.pro_filter .filter_box ul li .more{
	  color: #13458f;
		line-height: 34px;
		font-weight: bold;
}
/**/
/**2017-12-1**/
.state {
  padding: 120px 0 60px;
}
.state .state-tit {
  margin-bottom: 40px;
  text-align: center;
}
.state .state-tit a {
  display: inline-block;
  font-size: 16px;
  color: #333333;
  padding: 10px 25px;
}
.state .state-tit a.cur {
  background: #13458f;
  color: #fff;
}
.state .tag-box {
  font-size: 14px;
  color: #A9A9A9;
  line-height: 28px;
}
.state .tag-box .state-content {
  display: none;
}
.state .tag-box .state-content:first-child {
  display: block;
}
.state .tag-box .state-content h3 {
  font-size: 15px;
  color: #999999;
  display: block;
}

/*案例css*/
.detail_box {
  background: #fff;
  margin-top: 28px;
  padding: 30px;
}
.detail_box h1 {
  text-align: center;
  color: #000000;
  font-size: 30px;
  font-weight: normal;
  border-bottom: 1px solid #eeebdf;
  padding-bottom: 25px;
}
.detail_box .data {
  margin-top: 20px;
  text-align: center;
  color: #a8a8a8;
  font-size: 14px;
  line-height: 20px;
  font-family: arial;

}
.detail_box .data span {
  display: inline-block;
  margin: 0 10px;
}
.detail_box .data .fx {
  display: inline-block;
    position: relative;
    top: 20px;	

}
.detail_box .data .fx span {
  margin-right: 0;
}
.detail_box .data .fx a {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 0;
  position: relative;
  top: 4px;
	float: none;
	margin: auto auto;
}
.detail_box .detail {
  padding-top: 30px;
  line-height: 24px;
  color: #666666;
	text-align: left;
}

.detail_box .detail p{
	line-height: 30px;
}

.detail_box .detail .table table tr td {
  border: 1px solid #cccccc;
  padding: 10px 40px;
}

/*案例分类样式19-3-18*/
.case_box2 .title .t_fenlei{
	margin-top: 25px;
}


.case_box2 .title .t_fenlei  a{
	display: inline-block;
	border: 1px solid #dadada;
	border-radius: 25px;
	padding: 5px 12px;
	margin-right: 15px;
	color: #666666;
}

.case_box2 .title .t_fenlei  a:hover,.case_box2 .title .t_fenlei  a.cur{
	background: #134590;
  color: #fff;
	border: 1px solid #134590;
}

.case_box2 .title .t_fenlei a:last-child{
	margin-right: 0;
}

/**2019-4-10**/
.home_pro {
  padding: 80px 60px;
}
.home_pro ul li {
  float: left;
  width: 23.5%;
  padding: 15px;
  background: #f3f3f3;
  text-align: center;
  margin-left: 2%;
}
.home_pro ul li:first-child {
  margin-left: 0;
}
.home_pro ul li a {
  display: block;
  border: 1px solid #d2d2d2;
  position: relative;
}
.home_pro ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 69, 140, 0.85);
  transition: all .5s;
  opacity: 0;
  z-index: 2;
}
.home_pro ul li a .img {
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.home_pro ul li a .img:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  opacity: 0;
  background: url(../image/Hcp_more.png) no-repeat center center / cover;
  z-index: 3;
  transition: all .5s;
}
.home_pro ul li a .img img {
  transition: all 1s;
}
.home_pro ul li a .text {
  transition: all .5s;
}
.home_pro ul li a .text h3 {
  color: #333333;
  font-size: 20px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all .5s;
}
.home_pro ul li a .text p {
  margin-top: 10px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all .5s;
}
.home_pro ul li a .text i {
  display: block;
  width: 39px;
  height: 3px;
  background: #1565af;
  margin: 30px auto;
  transition: all .5s;
}
.home_pro ul li a .text span {
  display: inline-block;
  border: 1px solid #d5d5d5;
  line-height: 36px;
  padding: 0 40px;
  background: #fff;
  font-size: 14px;
  border-radius: 3px;
  margin-bottom: 50px;
  color: #999999;
  transition: all .5s;
}
.home_pro ul li:hover a:before {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.home_pro ul li:hover .img:before {
  opacity: 1;
}
.home_pro ul li:hover .img img {
  transform: scale(1.2);
}
.home_pro ul li:hover .text {
  position: relative;
  z-index: 2;
}
.home_pro ul li:hover .text h3,
.home_pro ul li:hover .text p {
  color: #fff;
}
.home_pro ul li:hover .text i {
  background: #66b822;
}
.home_pro ul li:hover .text span {
  color: #2f5f9b;
  border-color: #fff;
}
.home_pro.program_box ul{
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.home_pro.program_box ul li{
    margin: 10px;
}
.links_box{
	background: #161d25;
	padding: 20px 0;
}
.links_box .link{
	float: left;
	max-width: 80%;
	line-height: 24px;
}
.links_box .link span{
	float: left;
	color: #a7a7a7;
	font-size: 13px;
	font-weight: bold;
	margin-right: 30px;
}
.links_box .link a{
	float: left;
	color: #a7a7a7;
	font-size: 13px;
	margin-right: 30px;
}
.links_box p{
	float: right;
	color: #a7a7a7;
	font-size: 13px;
	line-height: 24px;
}

/*19-5-5t产品列表*/
/**2019-5-5**/
.Gpro_box2 {
  background: #fcfcfc;
  padding: 60px 0 70px;
}
.Gpro_box2 .pro_menu {
  float: left;
  width: 21.5%;
}
.Gpro_box2 .pro_menu .bt{
	background: #13458f;
	padding: 0 30px;
	position: relative;
	overflow: hidden;
}
.Gpro_box2 .pro_menu .bt h3{
	color: #ffffff;
	font-size: 18px;
	line-height: 56px;
}
.Gpro_box2 .pro_menu .bt p{
	color: #2b589a;
	font-size: 40px;
	font-family: arial;
	position: absolute;
	right: -5px;
	bottom: -10px;
	display: none;
}
.Gpro_box2 .pro_menu ol{
	border: 1px solid #eeeeee;
	padding: 0 20px;
	background: #fff;
}
.Gpro_box2 .pro_menu ol li{
	float: left;
	width: 100%;
	line-height: 42px;
	border-bottom: 1px solid #eeeeee;
	padding: 0 10px;
	font-size: 14px;
}
.Gpro_box2 .pro_menu ol li:last-child{
	border-bottom: none;
}
.Gpro_box2 .pro_menu ol li a{
	display: block;
	color: #333333;
}
.Gpro_box2 .right_list{
	width: 77%;
	float: right;
}
.Gpro_box2 .right_list .cp_tj{
	border: 1px solid #eeeeee;
	line-height: 54px;
	padding: 0 20px;
}
.Gpro_box2 .right_list .cp_tj span{
	float: left;
	color: #333333;
	font-size: 18px;
}
.Gpro_box2 .right_list .cp_tj .con{
	float: left;
	color: #666666;
	font-size: 14px;
}
.Gpro_box2 .right_list .cp_tj .con a{
	display: inline-block;
	color: #666666;
	margin: 0 10px;
}
.Gpro_box2 .right_list .Gpro_t{
	margin-top: 22px;
}
.Gpro_box2 .right_list .Gpro_t ol{
	
}
.Gpro_box2 .right_list .Gpro_t li{
	float: left;
	width: 49%;
	border: 1px solid #eeeeee;
	margin-right: 2%;
	margin-bottom: 2%;
	position: relative;
}

.Gpro_box2 .right_list .Gpro_t li:nth-child(5){
	margin-right: 0;
}

.Gpro_box2 .right_list .Gpro_t li:nth-child(3){
	margin-right: 0;
}
.Gpro_box2 .right_list .Gpro_t li .img{
	line-height: 0;
	width: 100%;
	text-align: center;
}
.Gpro_box2 .right_list .Gpro_t li .text2{
	background: #fff;
	padding: 0 20px 15px;
	color: #000;
	text-align: center;
}
.Gpro_box2 .right_list .Gpro_t li .text2 h3{
	font-size: 18px;
	text-overflow: ellipsis;
  	overflow: hidden;
  	white-space: nowrap;
}
.Gpro_box2 .right_list .Gpro_t li .text2 p{
	font-size: 14px;
	margin-top: 5px;
}
.Gpro_box2 .right_list .Gpro_t li:first-child{
	width: 100%;
	background: #13458f;
	position: relative;
}
.Gpro_box2 .right_list .Gpro_t li:first-child::before{
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 444px;
	height: 65px;
	background: url(../image/bh.jpg) no-repeat center center/cover;
}
.Gpro_box2 .right_list .Gpro_t li:first-child .img{
	width: 50%;
	float: left;
/* 	min-height: 467px; */
}
.Gpro_box2 .right_list .Gpro_t li:first-child .text{
	width: 50%;
	float: right;
	padding: 72px 30px 0;
	color: #fff;
}
.Gpro_box2 .right_list .Gpro_t li:first-child .text .icon{
	line-height: 0;
}
.Gpro_box2 .right_list .Gpro_t li:first-child .text h3{
	margin-top: 18px;
	font-size: 28px;
	font-weight: normal;
}
.Gpro_box2 .right_list .Gpro_t li:first-child .text .t{
	margin-top: 20px;
	font-size: 16px;
	line-height: 30px;
	height: 90px;
	overflow: hidden;
}

.Gpro_box2 .right_list .Gpro_t li:first-child .text .t span{
	    background: none;
			padding: initial;
			line-height: initial;
			border-radius: initial;
			color: #eeeeee;
			font-size: initial;
			margin-top:auto;
}

.Gpro_box2 .right_list .Gpro_t li:first-child .text span{
	display: inline-block;
	background: #66b822;
	padding: 0 50px;
	line-height: 50px;
	border-radius: 50px;
	color: #eeeeee;
	font-size: 18px;
	margin-top: 40px;
	position: relative;
	z-index: 3;
}


/**/
.Glist_box{
	background: #fff;
	border-bottom: 1px solid #eee;
	padding: 10px 0;
}
.Glist_box ul{
	float: left;
	width: 93%;
	overflow: hidden;
}
.Glist_box ul li{
	float: left;
	width: 16%;
	line-height: 50px;
	text-align: center;
	border: 1px solid #cccccc;
	margin-right: 0.8%;
	margin-top: 0.4%;
	margin-bottom: 0.4%;
	    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.Glist_box ul li:nth-child(6n){
	margin-right: 0;
}
.Glist_box ul li a{
	color: #666;
	font-size: 16px;
}
.Glist_box ul li.cur,
.Glist_box ul li:hover{
	background: #13458f;
	border-color: #13458f;
}
.Glist_box ul li.cur a,
.Glist_box ul li:hover a{
	color: #fff;
}

.Glist_box .more{
	float: right;
	width: 50px;
	height: 50px;
	margin-top: 30px;
}
.Glist_box .more.cur{
	transform: rotate(-180deg);
}
/*foot*/
.slogan p{padding-bottom: 15px;font-size: 16px;}
.gotop{width:40px;height:40px;background:url(../images/icon/gotop.png) no-repeat center;background-size:contain;position:fixed;right:5px;bottom:50px;cursor:pointer;display:none;transition:all .5s;z-index: 2;}
.ds_mobile{display: none}
.footer{position: relative;background:#00040b;color:rgba(255,255,255,0.8);width:100%;overflow: hidden;line-height:20px;z-index: 3;}
.zIndex .footer{z-index: 1;}
.footer a{color:rgba(255,255,255,0.8);}
.foot_top{padding:30px 0;border-top:1px solid rgba(255,255,255,0.2);font-size:14px;}
.foot_top .container{width: 100%;}
.foot_img_left{display: flex;}
.ft_logo{margin-bottom:20px;}
.ft_logo>a{display: block;}
.foot_img_left .ft_logo img{height: 150px;max-height:150px;margin: 0 50px;}
.foot_ewms img{width: 120px}
.foot_ewms{text-align: center;display: flex;flex-flow: row wrap;}
.foot_ewms .item{margin-right:20px;max-width:130px;}
.foot_ewms .item:last-child{margin-right:0;}
.foot_ewms img{margin:0 auto 10px;display: block;}
.foot_nav a{display: block;margin-bottom:15px;}
.foot_nav a:hover{color:#fff!important;opacity: 1;}
.foot_nav dt{position: relative;margin-bottom:15px;}
.foot_nav dt>a{color:#fff;font-size:14px;font-weight: 400;line-height:36px;margin-bottom:0;border-bottom:1px solid rgba(255,255,255,0.2);display: inline-block;}
.foot_nav dd a{color:rgba(255,255,255,0.5);}
.foot_nav dd a:last-child{margin-bottom:0;}
.foot_nav .dropdown>dd{display: none;}
.foot_nav dt>.icon{position: absolute;width:30%;height:100%;right:0;top:0;z-index: 2;display: none;}
.foot_nav dt>.icon:before,
.foot_nav dt>.icon:after{content: '';display: block;position: absolute;background:#cccccc;transition: all 0.3s;}
.foot_nav dt>.icon:before{width:12px;height:1px;right:0;top:50%;}
.foot_nav dt>.icon:after{height:12px;width:1px;right:5px;top:50%;margin-top:-6px;margin-right:0;}
.foot_nav .active dt>a{color:#fff;}
.foot_nav .active dt>.icon:before{background:#fff;}
.foot_nav .active dt>.icon:after{background:#fff;height:0;}

.foot_middle{padding:15px 0;line-height:24px;border-top:1px solid rgba(255,255,255,0.2);}
.fm_links span,
.fm_links a{margin-right:15px;min-width: 80px;}
.fm_links a:last-child{margin-right:0;}
.fm_links a:hover{text-decoration: underline;color:#fff;}

.foot_bottom{padding:15px 0;line-height:24px;border-top:1px solid rgba(255,255,255,0.2);}
.fb_hrefs{margin-bottom:20px;}
.fb_hrefs>a{display: inline-block;}
.fb_hrefs>a:hover{text-decoration: underline;color:#fff;}
.copyright{line-height:20px;}
.copyright a{display: inline-block;}
.copyright img,
.copyright a img{display:inline-block;vertical-align:middle;}
.copyright a:hover{text-decoration: underline;}
img.support{display:block;height:14px;vertical-align: -2px!important;}



/* foot - è”ç³»æˆ‘ä»¬ */
.foot_contact{padding:75px 0 50px;background-image: url(../images/fb.jpg);background-repeat: no-repeat;background-size:cover;background-position: center;font-size:14px;}
.footer_contatct_row>div{margin-bottom:25px;}
.footer_contatct_row .index_title{margin-bottom:20px;}
.footer_contatct_row .InfoContent{margin-bottom:15px;}
.footer_contatct_row form{position: relative;display: block;width:390px;height:46px;max-width:100%;}
.footer_contatct_row form>input{display: block;width:100%;height:100%;padding:0 60px 0 20px;border:1px solid #fff;box-shadow: none;background:none;}
.footer_contatct_row form>input:focus{border-color:#fff;background-color:rgba(255,255,255,0.1)}
.footer_contatct_row form>input::-moz-placeholder{color:#ccc;opacity:1}
.footer_contatct_row form>input:-ms-input-placeholder{color:#ccc}
.footer_contatct_row form>input::-webkit-input-placeholder{color:#ccc}
.footer_contatct_row form>button{position: absolute;width:40px;height:100%;top:0;right:0;background:url(../images/icon/i5.png) no-repeat center;background-size:auto;border:none;box-shadow: none;}
.footer_contatct_row .tel{font-size:26px;}


/*导航*/
.navbar-default {
  background-color:#fff;
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
  transition: all 0.5s;
  border-bottom:1px solid #999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  height: auto;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right:0;
  display: block;
  transition: all 0.5s;
}
.navbar-brand img {
  display: block;
  height: 46px;
  transition: all 0.5s;
}
.navbar-default .navbar-toggle {
  border: 0;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #18488e;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}
.navbar-default .icon-bar:nth-child(1){width:16px;}
.navbar-default .icon-bar:nth-child(3){width:18px;}
.navbar-default .menu_close .icon-bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  top: 6px;
  width:22px;
}
.navbar-default .menu_close .icon-bar:nth-child(2) {
  display: none;
}
.navbar-default .menu_close .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width:22px;
}
.navbar-default .navbar-nav>li>a {
  line-height:20px;
  display: block;
  color:#393939;
  font-size:16px;
  text-transform: uppercase;
  position: relative;
  transition: all .5s;
}
.navbar-default .navbar-nav>li>a:after{content: '';position: absolute;width:0;height:3px;background:#18488e;left:50%;bottom: -1px;transform: translateX(-50%);transition: all 0.5s;}
.navbar-default .navbar-nav>li>i{display: none;}
.navbar-default .nav>li>a:focus,
.navbar-default .nav>li>a:hover,
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
  color: #18488e;
  background-color: transparent;
}
.navbar-default .nav>li>a:hover::before,
.navbar-default .nav>.active>a::before,
.navbar-default .nav>li>a:hover::after,
.navbar-default .nav>.active>a::after{width:100%;}
.navbar-collapse::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.navbar-other{padding-top:15px;padding-bottom:15px;display: flex;transition: all 0.5s;}
.navbar-other>div{position: relative;padding:0;}
/* .navbar-other>div:after{content: '';position: absolute;width:1px;height:12px;background:#8c8c8c;right:0;top:50%;margin-top:-6px;} */
.navbar-other>div:last-child:after{display: none;}
.navbar-other a{display: block;width:30px;height:30px;line-height:30px;text-align: center;cursor: pointer;font-size:16px;font-family: arial;}
.navbar-other a:hover{color:#18488e;}
.navbar-other .tel{font-size: 18px;font-weight: bold;color: #333;}
/* 二级导航 */
.navbar-default .dropdown-menu{width:100%;border:none;left:50%;right:auto;background:#fff;top:100%;-webkit-transform: translateX(-50%);transform: translateX(-50%);border-radius: 0;padding:0;margin:0;box-shadow:none;}
.dropdown-menu>li{position: relative;text-align: center;border-bottom:1px solid #eaeaea;}
.dropdown-menu>li>a{position: relative;font-size:14px;color:#393939;padding:10px;line-height:20px;transition: all 0.3s;display: block;white-space: normal;}
.dropdown-menu>li>a:hover{color:#18488e!important;}
.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover{background:none;}
.dropdown-menu-one .dropdown-menu-two{left:100%;top:0;-webkit-transform: none;transform: none;overflow: hidden;background:#f5f5f5!important;flex-flow: row wrap;padding:10px;}
.dropdown-menu-one .dropdown-menu-two>li{text-align: left;width:50%;float:left;}
.dropdown-menu-one .dropdown-menu-two>li>a:hover{color:#fff!important;background:#18488e!important;}
.dropdown-menu-one>li>i{display: none;}
@media (max-width: 767px) {
  .program_box .box .cp_left .program_list ol li{width:40%;    width: 50%;    margin: 0;    padding: 2%;}
  .filter>*:not(.header){filter:blur(5px);}
  .header .container{position: relative;}
  .navbar-other{position: absolute;padding:0;right:60px;top:15px}
  
  .navbar-default .navbar-toggle{margin:14px 10px 0;}
  .navbar-default .navbar-nav{margin-left:0;margin-right:0;}
  .navbar-default .navbar-nav>li>a{padding:13px 0;}
  .navbar-default .navbar-nav>li>a:after{height:1px;background:#ccc;width:100%;}
  .navbar-default .nav>li>a:hover::before, .navbar-default .nav>.active>a::before, .navbar-default .nav>li>a:hover::after, .navbar-default .nav>.active>a::after{background:#1a1a1a;}
  
  .header .navbar-fixed-bottom .navbar-collapse,
  .header .navbar-fixed-top .navbar-collapse {
    max-height: calc(100vh - 60px);
  }
  .navbar-other .tel{font-size: 1rem;    line-height: 30px;}

  /* 二级导航 */
  .navbar-default .navbar-nav>.dropdown>i{position: absolute;width:50%;height:44px;right:0;top:1px;display: block;z-index: 2;cursor: pointer;}
  .navbar-default .navbar-nav>.dropdown>i:before,
  .navbar-default .navbar-nav>.dropdown>i:after{content: '';position: absolute;background:#1a1a1a;transition: all 0.3s;}
  .navbar-default .navbar-nav>.dropdown>i:before{width:14px;height:2px;right:0;top:50%;margin-top:-1px;}
  .navbar-default .navbar-nav>.dropdown>i:after{width:2px;height:14px;right:6px;top:15px;}
  .navbar-default .navbar-nav>.dropdown.open>i:before,
  .navbar-default .navbar-nav>.dropdown.open>i:after{background:#1a1a1a;}
  .navbar-default .navbar-nav>.dropdown.open>i:after{height:0;}
  
  .navbar-default .dropdown-menu{position: static;margin:0;float:none;-webkit-box-shadow: 0 0 0 rgba(0,0,0,0);box-shadow: 0 0 0 rgba(0,0,0,0);background:none;padding:0;-webkit-transform: none;transform: none;}
  .dropdown-menu>li{border-bottom-style: dashed;}
  .dropdown-menu>li>a,
  .navbar-nav .open .dropdown-menu>li>a{text-align: left;line-height:20px;padding:10px 15px 10px 25px;color:#393939;}
  
  .dropdown-menu-one .dropdown-menu-two{display: flex;padding:0;}
  .dropdown-menu-one .dropdown-menu-two>li>a{font-size:13px;padding:10px 15px!important;}
  .dropdown-menu-one>li>i{position: absolute;width:30px;height:40px;right:25px;top:0;display: block;z-index: 2;cursor: pointer;}
  .dropdown-menu-one>li>i:before{content: '';position: absolute;width:10px;height:10px;border-top:1px solid #1a1a1a;border-right:1px solid #1a1a1a;transform: rotate(135deg);right:3px;top:12px;transition: all 0.3s;}
}
@media (max-width: 360px) {
  .navbar-other>div{padding:0 10px;}
}
@media (min-width: 768px) {
  .navbar-other{float:right;margin-right:-20px;padding-top:25px;padding-bottom:25px;}
  .navbar-other>div{padding:0 10px;line-height: 30px;}
  .navbar-brand{padding-top: 12px;padding-bottom: 12px;}
  .navbar-brand img{height:46px;}
  .navbar-default .navbar-collapse{float:right;}
  .navbar-default .navbar-nav>li{padding:0 8px;}
  .navbar-default .navbar-nav>li>a{padding:30px 0;}
  
  .navbar-default .dropdown-menu{min-width:140px;}
  .dropdown-menu-one .dropdown-menu-two{min-width:340px;border-radius:0 3px 3px 0;}
  .dropdown-menu-one>li:hover>.dropdown-menu-two{display: flex!important;}

}
@media (min-width: 992px) {
  .navbar-default .navbar-nav>li{padding:0 20px;}

}
@media (min-width: 1200px) {
  .navbar-other{padding-top:20px;padding-bottom:10px;}
  .navbar-brand{padding-top: 12px;padding-bottom: 10px;}
  .navbar-default .navbar-nav>li{padding-left:25px;padding-right:25px;}
  .navbar-default .navbar-nav>li>a{padding-top:25px;padding-bottom:25px;}
  
  .headerEffect .navbar-other{padding-top:25px;padding-bottom:25px;}
  .headerEffect .navbar-brand{padding-top: 12px;padding-bottom: 12px;}
  .headerEffect .navbar-default .navbar-nav>li>a{padding-top:20px;padding-bottom:20px;}
}
@media (min-width: 1450px) {
  .navbar-default .navbar-nav>li{padding-left:30px;padding-right:30px;}
}
@media (min-width: 1650px) {
  .navbar-default .navbar-nav>li{padding-left:37px;padding-right:37px;}
}