/*
    ----------------------------------- 
            方法变量    
                     
    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(../images/cover.htc);
  behavior: url(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;
}
.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;
}
@font-face {
  font-family: "Cambria Bold";
  src: url("../fonts/Cambria Bold.svg");
  src: url("../fonts/cambria bold.eot");
  src: url("../fonts/Cambria Bold.otf");
  src: url("../fonts/Cambria Bold.ttf");
  src: url("../fonts/cambria bold.woff");
}
@font-face {
  font-family: 'DINEngschriftStd';
  src: url('../fonts/dinengschriftstd.eot');
  src: url('../fonts/dinengschriftstd.eot') format('embedded-opentype'), url('../fonts/dinengschriftstd.woff') format('woff'), url('../fonts/dinengschriftstd.ttf') format('truetype'), url('../fonts/dinengschriftstd.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
.w1260 {
  margin-right: auto;
  margin-left: auto;
  width: 1260px;
}
.f-l 							{	float: left;					}
	.f-r 							{	float: right;					}
img {
  max-width: 100%;
}
.bread {
  background: #f6f9f9;
}
.bread a {
  color: #222;
  margin: 0 auto;
  line-height: 50px;
  font-size: 14px;
}
.title {
  text-align: center;
}
.title h3 {
  font-size: 25px;
  font-weight: normal;
  color: #000;
}
.title p {
  color: #989898;
  font-size: 16px;
  padding-top: 10px;
}
.title2 p {
  text-align: center;
  font-size: 13px;
  color: #616162;
}
.title3 {
  text-align: center;
}
.title3 h3 {
  color: #232323;
  font-size: 30px;
}
.title3 p {
  margin-top: 10px;
  color: #888;
  font-size: 18px;
}
.title4 {
  text-align: center;
}
.title4 h3 {
  color: #232323;
  font-size: 30px;
}
.title4 p {
  margin-top: 10px;
  color: #333;
  font-size: 16px;
}
.header_top {
  position: relative;
  z-index: 2;
}
.header_top .top {
  border-bottom: 1px solid #EEEEEE;
  height: 30px;
  line-height: 30px;
}
.header_top .top span {
  font-size: 12px;
  color: #999;
}
.header_top .top .f-r a {
  display: block;
  float: left;
  font-size: 12px;
  color: #999;
  padding: 0 11px;
  position: relative;
}
.header_top .top .f-r a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: 10px;
  background: #D3D3D3;
}
.header_top .top .f-r a:last-child {
  padding-right: 0;
}
.header_top .top .f-r a:last-child:before {
  display: none;
}
.header_top .header {
  padding: 22px 0 22px;
}
.header_top .header span.f-l {
  padding-top: 3px;
  font-size: 14px;
  color: #565656;
  font-weight: bold;
}
.header_top .header span.bt {
  color: #1a58ab;
  font-size: 40px;
  line-height: 40px;
  font-weight: bold;
  padding-top: 2px;
  position: relative;
}
.header_top .header span.bt img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

.header_top .header .f-r ol li {
  float: left;
  margin-left: 30px;
}
.header_top .header .f-r ol li:first-child {
  margin-left: 0;
}
.header_top .header .f-r ol li .icon {
  width: 43px;
  height: 43px;
  float: left;
}
.header_top .header .f-r ol li .v1 {
  background: url(../images/h_icon1.png) no-repeat center center;
}
.header_top .header .f-r ol li .v2 {
  background: url(../images/h_icon2.png) no-repeat center center;
}
.header_top .header .f-r ol li .v3 {
  background: url(../images/h_icon3.png) no-repeat center center;
}
.header_top .header .f-r ol li .text {
  padding-top: 3px;
  float: left;
  margin-left: 10px;
}
.header_top .header .f-r ol li .text h3 {
  font-size: 14px;
  color: #626262;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header_top .header .f-r ol li .text p {
  font-size: 12px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header_top .header .f-r ol li:hover .text h3,
.header_top .header .f-r ol li:hover .text p {
  color: #6283BE;
}
.header_top .nav {
  background: #1a58ab;
  height: 72px;
}
.header_top .nav .logo {
  float: left;
  display: block;
  margin-top: 20px;
}
.header_top .nav .logo img {
  height: 32px;
}
.header_top .nav ol li {
  float: left;
  border-right: 1px solid #3469B4;
  height: 72px;
  text-align: center;
  position: relative;
  display: table;
}
.header_top .nav ol li:first-child {
  border-left: 1px solid #3469B4;
}
.header_top .nav ol li a {
  color: #ffffff;
  font-size: 15px;
  display: table-cell;
  vertical-align: middle;
  padding: 0 25px;
}
.header_top .nav ol li a i {
  display: inline-block;
  width: 11px;
  height: 5px;
  background: url(../images/em.png) no-repeat center center;
  position: relative;
  top: -2px;
  margin-left: 5px;
}
.header_top .nav ol li a span {
  font-size: 11px;
  text-transform: capitalize;
  color: #89A0CB;
  display: block;
  text-indent: -99em;
  overflow: hidden;
}
.header_top .nav ol li a .s1 {
  background: url(../images/home_nav1.png) no-repeat center;
}
.header_top .nav ol li a .s2 {
  background: url(../images/home_nav2.png) no-repeat center;
}
.header_top .nav ol li a .s3 {
  background: url(../images/home_nav3.png) no-repeat center;
}
.header_top .nav ol li a .s4 {
  background: url(../images/home_nav4.png) no-repeat center;
}
.header_top .nav ol li a .s5 {
  background: url(../images/home_nav5.png) no-repeat center;
}
.header_top .nav ol li a .s6 {
  background: url(../images/home_nav6.png) no-repeat center;
}
.header_top .nav ol li a .s7 {
  background: url(../images/home_nav7.png) no-repeat center;
}
.header_top .nav ol li a .s8 {
  background: url(../images/home_nav8.png) no-repeat center;
}
.header_top .nav ol li .navbox {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  text-align: center;
  background: #1E468C;
}
.header_top .nav ol li .navbox a {
  display: block;
  padding: 15px 0;
  text-align: center;
  position: relative;
}
.header_top .nav ol li .navbox a p {
  margin-top: 5px;
}
.header_top .nav ol li .navbox a s {
  position: absolute;
  bottom: -8px;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #1E468C;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
.header_top .nav ol li .navbox a:nth-child(2n) {
  background: #2A57AA;
}
.header_top .nav ol li .navbox a:nth-child(2n) s {
  border-top-color: #2350A6;
}
.header_top .nav ol li .navbox a:hover {
  background: #142d6e;
}
.header_top .nav ol li .navbox a:hover s {
  border-top-color: #063370;
}
.header_top .nav ol li:hover {
  background-color: #25519E;
}
.header_top .nav ol li.cur {
  background-color: #25519E;
}
.footer {
  background: #2f3034;
  color: #fff;
}
.footer .footertop {
  padding: 60px 0 40px;
}
.footer .footertop .left {
  border-right: 1px solid #444549;
  width: 260px;
  float: left;
}
.footer .footertop .left h3 {
  font-size: 16px;
  background: url(../images/telbj.jpg) no-repeat left center;
  padding-left: 30px;
  font-weight: normal;
}
.footer .footertop .left p {
  padding-left: 30px;
  padding-bottom: 15px;
  padding-top: 20px;
}
.footer .footertop .left .ewm {
  margin-left: 30px;
  width: 110px;
  text-align: center;
}
.footer .footertop .left .ewm span {
  font-size: 12px;
}
.footer .footertop .right {
  float: right;
  width: 1000px;
}
.footer .footertop .right ul {
  margin-left: 110px;
}
.footer .footertop .right ul li {
  float: left;
  width: 25%;
}
.footer .footertop .right ul li span {
  font-size: 16px;
}
.footer .footertop .right ul li .box {
  margin-top: 10px;
}
.footer .footertop .right ul li .box a {
  font-size: 14px;
  display: block;
  color: #a0a1a3;
  line-height: 26px;
}
.footer .footertop .right ul li .box a:hover {
  color: #fff;
}
.footer .links {
  border-bottom: 1px solid #414246;
  padding-bottom: 20px;
}
.footer .links span {
  float: left;
  color: #fff;
}
.footer .links .t {
  float: left;
}
.footer .links .t a {
  float: left;
  display: block;
  margin: 0 9px;
  color: #a0a1a3;
  font-size: 14px;
}
.footer .banquan {
  text-align: center;
  padding: 15px 0;
  color: #a6a7a9;
}
.banner {
  position: relative;
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .text {
  position: absolute;
  left: 50%;
  top: 100px;
  width: 1260px;
  transform: translateX(-50%);
}
.banner .text h3 {
  font-size: 40px;
  color: #fff;
  padding-top: 125px;
  font-weight: normal;
}
.banner .text p {
  font-size: 22px;
  color: #FFF;
  padding-bottom: 40px;
  padding-top: 10px;
}
.banner .text a {
  color: #fff;
  font-size: 15px;
  border: 1px solid #fff;
  padding: 8px 40px;
  display: inline-block;
}
.banner .text a:hover {
  background: #0c8cf1;
  border-color: #0c8cf1;
}
.banner .text2 {
  padding-top: 90px;
}
.banner .text2 .bt {
  font-size: 18px;
  padding: 0;
  font-weight: bold;
}
.banner .text2 h3 {
  padding-top: 10px;
}
.banner .text2 h3 span {
  color: #1a72e7;
  font-size: 70px;
  display: block;
  font-family: arial;
}
.banner .text2 h3 span em {
  font-style: normal;
  font-size: 45px;
  position: relative;
  bottom: 6px;
  font-family: "微软雅黑";
}
.banner .text2 .d {
  margin-top: 18px;
  padding-top: 20px;
  font-size: 22px;
  display: inline-block;
  padding-right: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}
.banner .text3 {
  padding-top: 88px;
}
.banner .text3 .bt {
  color: #1a1b1d;
  font-size: 18px;
  padding: 0;
  font-weight: bold;
}
.banner .text3 h3 {
  padding-top: 12px;
  color: #1a1b1d;
}
.banner .text3 h3 em {
  font-style: normal;
  color: #1a58ab;
}
.banner .text3 h3 span {
  display: block;
}
.banner .text3 .bottom {
  margin-top: 25px;
  font-size: 20px;
  padding-top: 20px;
  position: relative;
}
.banner .text3 .bottom:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 605px;
  height: 1px;
  background: #d0d1d2;
}
.banner .text3 .bottom p {
  color: #1a1b1d;
  line-height: 36px;
  padding: 0;
}

.banner .slick-dots {
  bottom: 115px;
}
.banner .slick-dots li {
  margin: 0 10px;
}
.banner .slick-dots li button {
  width: 40px;
  height: 4px;
  background: #fff;
  opacity: 0.4;
}
.banner .slick-dots li.slick-active button {
  background: #fff;
  opacity: 1;
}
.banner_box {
  position: relative;
}
.banner_box .bannernav {
  margin: 0 auto;
  height: 95px;
  position: absolute;
  bottom: 1px;
  width: 100%;
  min-width: 1260px;
  background: url(../images/bjd.png) repeat;
	max-width: 1920px;
	left: 0;
    right: 0;
}
.banner_box .bannernav ol li {
  float: left;
  width: 25%;
  padding: 28px 20px;
  /*border-left: 1px solid #252628;*/
}
.banner_box .bannernav ol li:first-child {
  border-left: none;
}
.banner_box .bannernav ol li span {
  width: 40px;
  height: 40px;
  background: url(../images/tubiao.png) no-repeat -2px 0px;
  display: inline-block;
  float: left;
}
.banner_box .bannernav ol li span.icon2 {
  background-position: 0px -47px;
}
.banner_box .bannernav ol li span.icon3 {
  background-position: 0px -89px;
}
.banner_box .bannernav ol li span.icon4 {
  background-position: 0px -131px;
}
.banner_box .bannernav ol li .fr {
  padding-left: 6px;
  width: 234px;
  font-size: 16px;
  color: #fff;
  float: right;
}
.banner_box .bannernav ol li .fr h3 {
  color: #fff;
  font-size: 18px;
}
.banner_box .bannernav ol li .fr p {
  font-size: 12px;
  color: #c1c1c1;
}
.banner_box .bannernav ol li:hover {
  background: #1b1b1b;
  opacity: 0.9;
}
.home_box {
  padding: 60px 0 70px;
}
.home_box .btn_ol {
  margin-top: 30px;
}
.home_box .btn_ol li {
  float: left;
  width: 20%;
  text-align: center;
}
.home_box .btn_ol li a {
  display: inline-block;
  border-bottom: 3px solid #fff;
  padding: 10px 10px 25px;
}
.home_box .btn_ol li span{
  display: block;
  margin: 0 auto;
  width: 51px;
  height: 51px;
  background-position: -73px 0px;
  padding: 30px 0px;
  background-image: url(../images/tubiao.png);
 
}
.home_box .btn_ol li span:hover{
	 
	 background-image: url(../images/tubiao2.png);
}
	
.home_box .btn_ol li p {
  color: #333;
  font-size: 16px;
}
.home_box .btn_ol li:nth-child(2) span {
  background-position: -124px 0px;
}
.home_box .btn_ol li:nth-child(3) span {
  background-position: -174px 0px;
}
.home_box .btn_ol li:nth-child(4) span {
  background-position: -224px 0px;
}
.home_box .btn_ol li:nth-child(5) span {
  background-position: -276px 0px;
}
.home_box .btn_ol li:hover a {
  border-bottom: 3px solid #108cee;
  color: #108cee;
}
.home_box .btn_ol li.cur{
	background: none;
}
.home_box .webconetent {
  background: #f7f8fa;
  height: 316px;
	margin-top: 20px;
}
.home_box .webconetent ul li {
  float: left;
  width: 100%;
}
.home_box .webconetent ul li .left {
  float: left;
  width: 500px;
  padding: 40px;
  height: 316px;
  background: url(../images/t.jpg) right center no-repeat;
}
.home_box .webconetent ul li .left h3 {
  font-size: 18px;
  color: #313131;
  padding-top: 50px;
  font-weight: normal;
}
.home_box .webconetent ul li .left h3 span {
  border: 1px solid #fa7400;
  color: #fa7400;
  font-size: 10px;
  padding: 2px;
  vertical-align: middle;
  display: inline-block;
}
.home_box .webconetent ul li .left .t {
  padding-top: 20px;
  font-size: 14px;
  color: #949597;
  line-height: 26px;
}
.home_box .webconetent ul li .left .t span {
  color: #000;
}
.home_box .webconetent ul li .left .t a {
  float: right;
  color: #949597;
}
.home_box .webconetent ul li .right {
  float: left;
  width: 760px;
  background: url(../images/b.jpg) no-repeat center center;
  height: 316px;
}
.home_box .webconetent ul li .right .webcrbox {
  width: 750px;
  height: 316px;
  padding: 50px 0;
  background: url(../images/t.jpg) center center no-repeat;
}
.home_box .webconetent ul li .right .webcrbox .webinfo {
  float: left;
  width: 50%;
  padding: 0 50px 0;
  font-size: 14px;
  margin-bottom: 50px;
  color: #858688;
}
.home_box .webconetent ul li .right .webcrbox .webinfo h3 {
  font-size: 16px;
  color: #000;
  padding-bottom: 15px;
}
.home_box .webconetent ul li .right .webcrbox .webinfo p {
  line-height: 23px;
}
.home_box2 {
  background: url(../images/home_bg05.jpg) no-repeat center top / cover;
  padding-top: 90px;
  min-height: 682px;
}

.home_box2 .img{
	margin-top: 40px;
}
/*.home_box2 .box1 {
  margin-top: 60px;
}
.home_box2 .box1 .left {
  float: left;
  width: 636px;
}
.home_box2 .box1 .left ul li {
  float: left;
  width: 100%;
  background: #09182b;
  margin-bottom: 15px;
  padding: 12px 11px 12px 15px;
}
.home_box2 .box1 .left ul li .icon {
  float: left;
  display: block;
  line-height: 0;
  width: 70px;
}
.home_box2 .box1 .left ul li .t {
  margin-top: 8px;
  float: right;
  width: 525px;
}
.home_box2 .box1 .left ul li .t h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: normal; 
}
.home_box2 .box1 .left ul li .t p {
  color: #d9d9d9;
  font-size: 14px;
  margin-top: 10px;
}
.home_box2 .box1 .right {
  float: right;
  line-height: 0;
  width: 590px;
}*/
.home_box3 {
  padding: 70px 0;
}
.home_box3 ol {
  margin-top: 50px;
}
.home_box3 ol li {
  float: left;
  overflow: hidden;
  border: 1px solid #f9f9f9;
  background: #fbfbfb;
  width: 32%;
  margin-right: 2%;
}
.home_box3 ol li:last-child {
  margin-right: 0;
}
.home_box3 ol li .img {
  line-height: 0;
}
.home_box3 ol li .img img {
  width: 100%;
}
.home_box3 ol li .text {
  padding: 35px 26px;
}
.home_box3 ol li .text h3 {
  color: #363636;
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
}
.home_box3 ol li .text p {
  color: #858585;
  font-size: 14px;
  line-height: 24px;
  height: 72px;
}
.home_box4 {
  text-align: center;
  background: #f5f6fa url(../images/home_bg06.jpg) no-repeat center bottom;
  padding-top: 80px;
}
.home_box4 .top{
	border-bottom: none;
}
.home_box4 .top h3{
    font-size: 30px;
    color: #333;
}
.home_box4 .top h4{
	margin-top: 5px;
    font-size: 30px;
    color: #1A58AB;
}
.home_box4 ol{
	margin-top: 35px;
}
.home_box4 ol li{
	display: inline-block;
	margin: 0 25px;
}
.home_box4 ol li .icon{
	width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #A0A1A2;
    display: inline-block;
    line-height: 74px;
    
}
.home_box4 ol li .t{
	display: inline-block;
    margin-left: 10px;
    font-size: 14px;
    color: #606161;
    line-height: 20px;
    text-align: left;
}
.home_box4 ol li .t p{
	position: relative;
	top: 10px;
}
.home_box4 .img_box{
	margin-top: 70px;
	position: relative;
}
.home_box4 .img_box .img{
	line-height: 0;
}

.home_box4 .img_box .bg{
	position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -648px;
    width: 1296px;
    height: 536px;
}


.home_box5 {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-width: 1260px;
  height: 598px;
  background:#000 url(../images/home_img1.jpg) no-repeat center top;
}
.home_box5 .ul_list {
  position: relative;
  z-index: 2;
  font-size: 16px;
  padding: 29px 0;
  background: rgba(0, 0, 0, 0.7);
  width: 230px;
}
.home_box5 .ul_list li {
  width: 230px;
  height: 90px;
  padding-top: 20px;
  padding-left: 30px;
  cursor: pointer;
  background-repeat: repeat-x;
  background-position: left bottom;
  border-bottom: 1px solid #272727;
}
.home_box5 .ul_list li h3 {
  color: #fff;
  font-size: 18px;
}
.home_box5 .ul_list li p {
  color: #8c8c8c;
  font-size: 14px;
  padding-top: 10px;
}
.home_box5 .ul_list li.cur {
  background: -webkit-gradient(linear, 100% 0, 0 0, from(#00a0fe), to(#0a64ff));
  background: -webkit-linear-gradient(to right, #00a0fe 0%, #0a64ff 100%);
  background: -moz-linear-gradient(to right, #00a0fe 0%, #0a64ff 100%);
  background: -o-linear-gradient(to right, #00a0fe 0%, #0a64ff 100%);
  background: linear-gradient(to right, #00a0fe 0%, #0a64ff 100%);
}
.home_box5 .ul_list li.cur p {
  color: #fff;
}
.home_box5 .scheme {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 598px;
}
.home_box5 .scheme .bg {
  width: 100%;
  height: 598px;
}
.home_box5 .scheme .box {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1260px;
}
.home_box5 .scheme .text {
  width: 750px;
  margin-left: 380px;
  padding-top: 90px;
}
.home_box5 .scheme .text h3 {
  color: #fff;
  font-size: 23px;
}
.home_box5 .scheme .text p {
  color: #ececec;
  font-size: 14px;
  padding: 25px 0;
  line-height: 26px;
}
.home_box5 .scheme .text .more {
  padding-bottom: 45px;
  margin-bottom: 50px;
  border-bottom: 1px dashed #c0c0c0;
}
.home_box5 .scheme .text .more a {
  display: inline-block;
  border: 1px solid #c0c0c0;
  color: #c0c0c0;
  padding: 5px 40px;
  font-size: 14px;
}
.home_box5 .scheme .text .caseimg {
  margin-top: 30px;
}
.home_box5 .scheme .text .caseimg a {
  float: left;
  width: 166px;
  height: 100px;
  overflow: hidden;
  margin-right: 20px;
}
.home_box6 {
  padding: 70px 0 50px;
}
.home_box6 ol {
  margin-top: 50px;
}
.home_box6 ol li {
  float: left;
  position: relative;
  width: 32%;
  margin-right: 2%;
}
.home_box6 ol li:last-child {
  margin-right: 0;
}
.home_box6 ol li span {
  position: absolute;
  background: #317ef3;
  text-align: center;
  right: 20px;
  top: -13px;
  width: 86px;
  height: 35px;
  font-size: 14px;
  z-index: 2;
  line-height: 35px;
  color: #fff;
}
.home_box6 ol li .proimg {
  position: relative;
}
.home_box6 ol li .proimg .img {
  line-height: 0;
}
.home_box6 ol li .proimg .img img {
  width: 100%;
}
.home_box6 ol li .proimg .t {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  background: url(../images/bjd.png) repeat;
  color: #fff;
}
.home_box6 ol li .prolist {
  padding: 10px 0;
}
.home_box6 ol li .prolist a {
  display: block;
  font-size: 14px;
  color: #313131;
  padding: 2px 10px 2px 0;
}
.home_box6 ol li .prolist a:hover {
  color: #317ef3;
}
.home_box7 {
  background: url(../images/main-bg01.jpg);
  padding: 70px 0;
}
.home_box7 .ol_list {
  text-align: center;
  margin-top: 30px;
}
.home_box7 .ol_list a {
  display: inline-block;
  line-height: 40px;
  border: 1px solid #000;
  padding: 0 20px;
  margin: 0 8px;
  font-size: 15px;
  color: #333;
}
.home_box7 .ol_list a.cur{
	background: none;
}
.home_box7 .news_Box {
  margin-top: 50px;
}
.home_box7 .news_Box ul li {
  float: left;
  width: 32%;
  margin-right: 2%;
}
.home_box7 .news_Box ul li:last-child {
  margin-right: 0;
}
.home_box7 .news_Box ul li .img {
  line-height: 0;
}
.home_box7 .news_Box ul li .img img {
  width: 100%;
}
.home_box7 .news_Box ul li .text {
  padding-top: 15px;
}
.home_box7 .news_Box ul li .text h3 {
  font-size: 16px;
  font-weight: normal;
  color: #333;
}
.home_box7 .news_Box ul li .text p {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}
.home_box7 .news_Box2 {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #EBEBEC;
}
.home_box7 .news_Box2 ol {
  height: 90px;
  overflow: hidden;
}
.home_box7 .news_Box2 ol li {
  float: left;
  width: 32%;
  font-size: 15px;
  line-height: 30px;
  position: relative;
  padding-left: 18px;
  margin-right: 2%;
}
.home_box7 .news_Box2 ol li:nth-child(3n) {
  margin-right: 0;
}
.home_box7 .news_Box2 ol li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border: 2px solid #C7C7C7;
  border-radius: 50%;
}
.home_box7 .news_Box2 ol li a {
  display: block;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home_box7 .news_Box2 .moreBtn {
  display: block;
  width: 40px;
  line-height: 0;
  margin: 30px auto 0;
}
.home_box7 .news_Box2 .moreBtn img {
  width: 100%;
}
.nybanner {
  height: 560px;
}
.nybanner .text {
  float: left;
  width: 580px;
}
.nybanner .text h1 {
  font-size: 44px;
  color: #fff;
  padding-top: 200px;
  font-weight: normal;
}
.nybanner .text p {
  font-size: 15px;
  color: #d5d5d5;
  padding-bottom: 40px;
  padding-top: 10px;
}
.nybanner .text a {
  color: #fff;
  font-size: 15px;
  border: 1px solid #fff;
  padding: 8px 40px;
}
.nybanner .text a:hover {
  background: #0c8cf1;
  border-color: #0c8cf1;
}
.waibao_banner {
  background: #0c1523;
}
.waibao_banner .img {
  float: right;
  width: 444px;
  line-height: 0;
  margin-top: 78px;
}
.service_waibao {
  padding: 60px 0;
  background: #f6f9f9;
}
.service_waibao .video {
  float: left;
  width: 490px;
  height: 300px;
}
.service_waibao .text {
  float: right;
  width: 642px;
  padding-top: 30px;
}
.service_waibao .text h3 {
  font-size: 18px;
  color: #000;
}
.service_waibao .text h3 span {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  height: 26px;
  width: 24px;
  background: url(../images/icon.png) no-repeat -39px -30px;
}
.service_waibao .text .d {
  font-size: 14px;
  color: #646464;
  line-height: 25px;
  padding: 25px 0;
}
.service_waibao .text .t {
  line-height: 16px;
}
.service_waibao .text .t p {
  font-size: 14px;
  color: #646464;
  padding: 4px 0;
  margin-bottom: 5px;
}
.service_waibao .text .t p span {
  height: 16px;
  width: 16px;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  background: url(../images/icon.png) no-repeat -34px -242px;
}
.service_waibao .text .t p a {
  color: #1688f3;
}
.service_waibao2 {
  padding: 60px 0;
}
.service_waibao2 ol {
  margin-top: 20px;
}
.service_waibao2 ol li {
  float: left;
  width: 49%;
  margin: 1% 0;
  border: 1px solid #e6e6e6;
  padding: 30px;
  font-size: 14px;
}
.service_waibao2 ol li:nth-child(2n) {
  float: right;
}
.service_waibao2 ol li span {
  float: left;
  display: inline-block;
  width: 52px;
  height: 52px;
  background: url(../images/icon.png) no-repeat -149px -21px;
}
.service_waibao2 ol li .text {
  float: right;
  width: 87%;
}
.service_waibao2 ol li .text h3 {
  font-size: 18px;
  color: #323232;
}
.service_waibao2 ol li .text p {
  margin-top: 5px;
  line-height: 24px;
}
.service_waibao2 ol li:nth-child(2) span {
  background-position: -211px -21px;
}
.service_waibao2 ol li:nth-child(3) span {
  background-position: -273px -21px;
}
.service_waibao2 ol li:nth-child(4) span {
  background-position: -341px -27px;
}
.service_waibao3 {
  background: #f6f9f9;
  padding: 60px 0;
}
.service_waibao3 ol {
  margin-top: 35px;
  background: #fff;
  padding: 30px;
}
.service_waibao3 ol li {
  float: left;
  background: #fafafa;
  height: 420px;
  width: 216px;
}
.service_waibao3 ol li h3 {
  background: #1c2e49;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 42px;
}
.service_waibao3 ol li .t {
  margin-top: 15px;
}
.service_waibao3 ol li .t a {
  padding: 2.5px 15px;
  display: block;
  color: #646464;
  font-size: 12px;
  line-height: 20px;
}
.service_waibao3 ol li.li2 {
  background: #fff;
  width: 30px;
}
.service_waibao3 ol li.li2 span {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-top: 170px;
  margin-bottom: 160px;
  background: url(../images/icon.png) no-repeat -32px -162px;
}
.service_waibao4 {
  padding: 60px 0;
}
.service_waibao4 ol {
  margin-top: 35px;
}
.service_waibao4 ol li {
  width: 30%;
  float: left;
  margin-right: 5%;
}
.service_waibao4 ol li:last-child {
  margin-right: 0;
}
.service_waibao4 ol li .img {
  line-height: 0;
  text-align: center;
}
.service_waibao4 ol li .text h4 {
  font-weight: normal;
  font-size: 20px;
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
  color: #222;
}
.service_waibao4 ol li .text p {
  line-height: 24px;
  font-size: 14px;
  color: #616161;
}
.service_waibao5 {
  padding: 60px 0;
  background: #f6f9f9;
}
.service_waibao5 .priceinfo {
  margin-top: 35px;
  padding-bottom: 20px;
  font-size: 14px;
  color: #222;
}
.service_waibao5 .tables table tr {
  background: #fff;
}
.service_waibao5 .tables table tr th {
  background: #f2f2f2 !important;
  line-height: 40px;
  border: 1px solid #e6e6e6;
  padding: 5px 0;
	text-align: center;
	color: #333;
	font-weight: bold;
}
.service_waibao5 .tables table tr td {
  text-align: center;
  border: 1px solid #e6e6e6;
  padding: 12px 0;
}
.service_waibao5 .tables table tr:nth-child(2n-1) {
  background: #f2f2f2;
}
.service_waibao6 {
  padding: 60px 0;
}
.service_waibao6 ul {
  margin-top: 40px;
  margin-left: -15px;
}
.service_waibao6 ul li {
  float: left;
  width: 410px;
  overflow: hidden;
  background: #fff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  transition: all .2s;
  margin-left: 15px;
  margin-bottom: 15px;
}
.service_waibao6 ul li .img {
  width: 410px;
  height: 332px;
  overflow: hidden;
}
.service_waibao6 ul li .img img {
  width: 100%;
	    transition: transform 0.8s ease-in-out;
}

.service_waibao6 ul li:hover .img img {
  transform:scale(1.1);
}

.service_waibao6 ul li .text {
  padding: 15px;
}
.service_waibao6 ul li .text .top {
  line-height: 24px;
}
.service_waibao6 ul li .text .top h3 {
  color: #333333;
  font-size: 18px;
  font-weight: normal;
  float: left;
}
.service_waibao6 ul li .text .top span {
  float: right;
  color: #333333;
  font-size: 16px;
}
.service_waibao6 ul li .text .bt {
  margin: 10px 0;
  color: #333333;
  font-size: 14px;
  font-weight: bold;
}
.service_waibao6 ul li .text .bt span {
  color: #e33932;
}
.service_waibao6 .more {
  text-align: center;
  margin-top: 35px;
}
.service_waibao6 .more a {
  border: 1px solid #666;
  display: inline-block;
  color: #333;
  line-height: 48px;
  font-size: 16px;
  padding: 0 100px;
}
.service_waibao7 {
  padding: 60px 0 70px;
  background: #f6f9f9;
}
.service_waibao7 ol {
  margin-top: 40px;
}
.service_waibao7 ol li {
  background: #fff;
  -moz-box-shadow: 0px 5px 5px #ededee;
  -webkit-box-shadow: 0px 5px 5px #ededee;
  box-shadow: 0px 5px 5px #ededee;
  float: left;
  width: 32%;
  font-size: 12px;
  color: #878787;
  height: 240px;
  margin-right: 2%;
}
.service_waibao7 ol li:nth-child(3n) {
  margin-right: 0;
}
.service_waibao7 ol li h3 {
  font-size: 16px;
  color: #fff;
  background: #1c2e49;
  line-height: 60px;
  text-align: center;
}
.service_waibao7 ol li .t {
  padding: 0 30px;
  line-height: 26px;
  padding-top: 25px;
  font-size: 14px;
  color: #656565;
}
.guwen_banner {
  background: url(../images/guwen-banner.jpg) no-repeat center center / cover;
}
.service_guwen2 ol li span {
  background: url(../images/icon.png) no-repeat -211px -21px;
}
.service_guwen2 ol li:nth-child(2) span {
  background-position: -274px -90px;
}
.service_guwen2 ol li:nth-child(3) span {
  background-position: -145px -97px;
}
.service_guwen2 ol li:nth-child(4) span {
  background-position: -211px -97px;
}
.service_guwen3 ol li {
  width: 277px;
  height: 360px;
}
.service_guwen4 {
  padding: 60px 0 70px;
}
.service_guwen4 ol {
  margin-top: 45px;
}
.service_guwen4 ol li {
  float: left;
  position: relative;
  width: 48%;
}
.service_guwen4 ol li:nth-child(2n) {
  float: right;
}
.service_guwen4 ol li .img {
  line-height: 0;
}
.service_guwen4 ol li .img img {
  width: 100%;
}
.service_guwen4 ol li .text {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 100px;
  width: 100%;
  color: #fff;
}
.service_guwen4 ol li .text h4 {
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.service_guwen4 ol li .text p {
  font-size: 14px;
  color: #f1eef0;
  padding: 0 50px;
  padding-top: 25px;
  line-height: 26px;
}
.service_guwen5 {
  background: #f6f9f9;
  padding: 60px 0;
}
.service_guwen5 .btn {
  height: 43px;
  margin: 0 auto;
  border-bottom: 1px solid #e4e7e7;
  border-left: 1px solid #e4e7e7;
  position: relative;
  margin-top: 50px;
  margin-bottom: 40px;
}
.service_guwen5 .btn ul {
  position: absolute;
  bottom: -1px;
  left: 0px;
}
.service_guwen5 .btn ul li {
  border-bottom: 1px solid #f6f9f9;
  border-top: 1px solid #108def;
}
.service_guwen5 .btn ul li span {
  display: inline-block;
  height: 40px;
  text-align: center;
  padding: 0 35px;
  line-height: 40px;
  border-top: 1px solid #f6f9f9;
  border-right: 1px solid #e4e7e7;
  font-size: 14px;
  border-top: 1px solid #108def;
  color: #108def;
}
.service_guwen5 ol li {
  float: left;
  width: 23.5%;
  background: #fff;
  height: 230px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  border: 1px solid #e6e6e6;
  padding-top: 18px;
  font-size: 12px;
  margin-right: 2%;
  color: #666666;
}
.service_guwen5 ol li:nth-child(4n) {
  margin-right: 0;
}
.service_guwen5 ol li span {
  position: absolute;
  right: 0;
  top: 0;
}
.service_guwen5 ol li .t {
  line-height: 28px;
}
.service_guwen5 ol li .bottom {
  text-align: center;
  color: #fe7a00;
  font-size: 18px;
  padding: 10px 0;
}
.service_guwen5 ol li .bottom em {
  font-style: normal;
  color: #fe7a00;
  font-size: 14px;
}
.service_guwen5 ol li a {
  width: 120px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: block;
  margin: 0 auto;
  color: #656565;
  font-size: 14px;
  border: 1px solid #e9e9e9;
}
.service_guwen5 .dingjia {
  font-size: 14px;
  color: #777a7a;
  line-height: 30px;
  margin-top: 30px;
}
.service_guwen5 .dingjia span {
  float: left;
}
.service_guwen5 .dingjia .t {
  float: left;
}
.service_waibao6 ol {
  margin-top: 35px;
}
.service_waibao6 ol li {
  float: left;
  width: 23.5%;
  margin-right: 2%;
  position: relative;
  border: 1px solid #e6e6e6;
  height: 240px;
}
.service_waibao6 ol li:nth-child(4n) {
  margin-right: 0;
}
.service_waibao6 ol li .show {
  text-align: center;
  padding-top: 80px;
}
.service_waibao6 ol li .show span {
  display: block;
  height: 42px;
  line-height: 0;
  line-height: 42px;
}
.service_waibao6 ol li .show p {
  font-size: 18px;
  padding-top: 20px;
}
.service_waibao6 ol li .hide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #646464;
  font-size: 12px;
  padding: 20px;
  display: none;
}
.service_waibao6 ol li .hide p {
  line-height: 24px;
}
.service_waibao6 ol li .hide h3 {
  text-align: right;
  border-bottom: 1px solid #e6e6e6;
  padding: 15px 0;
  margin-bottom: 15px;
}
.service_waibao6 ol li .hide div span {
  float: left;
  color: #666666;
  margin-right: 10px;
}
.service_waibao6 ol li .hide div span:last-child {
  margin-right: 0;
}
.service_waibao6 ol li .hide div span em {
  padding-bottom: 5px;
  display: block;
  font-style: normal;
  color: #1791f1;
}
.service_waibao6 ol li:hover {
  border: 1px solid #1791f1;
}
.service_waibao6 ol li:hover .show {
  display: none;
}
.service_waibao6 ol li:hover .hide {
  display: block;
}
.jianzhan_banner {
  background: url(../images/jianzhan_banner.jpg) no-repeat center center / cover;
}
.building_box {
  padding: 60px 0;
}
.building_box .box {
  margin-top: 40px;
}
.building_box .box .text {
  width: 784px;
  border: 1px solid #e6e6e6;
  height: 220px;
  padding: 35px 40px 0px;
  border-right: none;
  float: left;
}
.building_box .box .text p {
  font-size: 14px;
  color: #666;
  background: url(../images/ld.png) no-repeat left 8px;
  padding-left: 15px;
  letter-spacing: 1px;
  line-height: 26px;
}
.building_box .box .text ol {
  overflow: hidden;
  padding-left: 15px;
  padding-top: 30px;
}
.building_box .box .text ol li {
  float: left;
  font-size: 14px;
  margin-right: 80px;
  width: 130px;
  color: #666;
  text-align: center;
}
.building_box .box .text ol li span {
  display: block;
  width: 44px;
  margin: 0 auto;
  height: 44px;
  background: url(../images/iconnew1.png) no-repeat -210px -125px;
}
.building_box .box .text ol li em {
  display: block;
  margin: 0 auto;
  padding-top: 10px;
  font-style: normal;
}
.building_box .box .text ol li:nth-child(2) span {
  background: url(../images/iconnew1.png) no-repeat -210px -74px;
}
.building_box .box .text ol li:nth-child(3) span {
  background: url(../images/iconnew1.png) no-repeat -210px -24px;
}
.building_box .box .img {
  float: right;
  line-height: 0;
}
.building_box2 ol {
  margin-top: 35px;
}
.building_box2 ol li {
  float: left;
  width: 33.33333333%;
  position: relative;
}
.building_box2 ol li .img {
  line-height: 0;
}
.building_box2 ol li .img img {
  width: 100%;
}
.building_box2 ol li .text {
  position: absolute;
  left: 0px;
  bottom: 30px;
  padding: 0 4%;
  width: 100%;
}
.building_box2 ol li .text h3 {
  font-size: 20px;
  color: #fff;
  padding-bottom: 10px;
}
.building_box2 ol li .text p {
  font-size: 14px;
  color: #d9d9d9;
  line-height: 26px;
  height: 52px;
  overflow: hidden;
}
.building_box3 {
  background: #f7f8fa;
  padding: 60px 0;
}
.building_box3 ol {
  margin-top: 35px;
}
.building_box3 ol li {
  float: left;
  width: 16.66666667%;
  text-align: center;
  font-size: 16px;
  color: #666;
}
.building_box3 ol li span {
  display: block;
  margin: 0 auto;
  width: 70px;
  text-align: center;
  height: 70px;
  line-height: 70px;
  background: #212634;
  border-radius: 35px;
  padding-top: 15px;
}
.building_box3 ol li span i {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  background: url(../images/iconnew1.png) no-repeat -273px -25px #212634;
}
.building_box3 ol li div {
  background: url(../images/tmx.png) repeat-x left center;
  padding: 0 92px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.building_box3 ol li div em {
  display: block;
  height: 16px;
  width: 16px;
  background: #fff;
  margin: 0 auto;
  border-radius: 8px;
  border: 4px solid #bbbbbb;
}
.building_box3 ol li:nth-child(2) span i {
  background: url(../images/iconnew1.png) no-repeat -273px -77px #212634;
}
.building_box3 ol li:nth-child(3) span i {
  background: url(../images/iconnew1.png) no-repeat -273px -129px #212634;
}
.building_box3 ol li:nth-child(4) span i {
  background: url(../images/iconnew1.png) no-repeat -273px -177px #212634;
}
.building_box3 ol li:nth-child(5) span i {
  background: url(../images/iconnew1.png) no-repeat -273px -226px #212634;
}
.building_box3 ol li:nth-child(6) span i {
  background: url(../images/iconnew1.png) no-repeat -273px -274px #212634;
}
.building_box4 {
  padding: 60px 0;
}
.building_box4 ol {
  margin-top: 35px;
}
.building_box4 ol li {
  float: left;
  width: 25%;
}
.building_box4 ol li .img {
  line-height: 0;
}
.building_box4 ol li .img img {
  width: 100%;
}
.building_box4 ol li .text {
  margin-top: 30px;
  border-left: 1px solid #E6E6E6;
}
.building_box4 ol li .text h3 {
  font-size: 18px;
  text-align: center;
  color: #333;
}
.building_box4 ol li .text p {
  font-size: 14px;
  color: #666;
  line-height: 26px;
  padding: 0 20px;
  height: 115px;
  letter-spacing: 1px;
  padding-top: 15px;
}
.building_box4 ol li:last-child .text {
  border-right: 1px solid #E6E6E6;
}
.building_box5 {
  background: #f7f8fa;
  padding: 60px 0;
}
.building_box5 .box {
  width: 800px;
  margin: 0 auto;
  margin-top: 50px;
  -moz-box-shadow: 2px 2px 5px #e8e8e8, -2px 2px 5px #e8e8e8;
  -webkit-box-shadow: 2px 2px 5px #e8e8e8, -2px 2px 5px #e8e8e8;
  box-shadow: 2px 2px 5px #e8e8e8, -2px 2px 5px #e8e8e8;
}
.building_box5 .box .text {
  height: 140px;
  font-size: 40px;
  padding-top: 25px;
  text-align: center;
  color: #fff;
  background: #317ef3;
}
.building_box5 .box .text p {
  font-size: 14px;
  padding-top: 5px;
}
.building_box5 .box ol {
  background: #fff;
}
.building_box5 .box ol li {
  overflow: hidden;
  height: 70px;
  line-height: 70px;
  color: #333;
  font-size: 16px;
}
.building_box5 .box ol li span {
  float: left;
  padding-left: 18px;
  margin-left: 50px;
  background: url(../images/hfk.png) no-repeat left center;
}
.building_box5 .box ol li .t {
  float: right;
  width: 150px;
  height: 70px;
  text-align: center;
  margin-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.building_box5 .box ol li .t i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/iconnew1.png) no-repeat -333px -36px;
}
.building_box5 .box ol li:nth-child(2n) {
  background: #fafcff;
}
.building_box5 .box ol li:hover {
  background: #f7f8fa;
}
.building_box6 {
  background: url(../images/time.jpg) no-repeat center center / cover #212634;
  height: 600px;
  padding: 60px 0;
}
.building_box6 .box {
  width: 800px;
  padding: 20px;
  background: url(../images/b10d.png) repeat;
  margin: 40px auto 0;
}
.building_box6 .box .bjdiv {
  background: url(../images/b10d.png) repeat;
  padding-top: 30px;
  padding-bottom: 35px;
}
.building_box6 .box .bjdiv ul {
  width: 450px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.building_box6 .box .bjdiv ul li {
  float: left;
  width: 100%;
  padding: 25px 0 0px;
  background: url(../images/ulbj.png) repeat-x left bottom;
}
.building_box6 .box .bjdiv ul li .rdiv {
  position: relative;
  background: url(../images/h160.png) no-repeat left bottom;
  background-size: 100% 6px;
  padding-bottom: 20px;
}
.building_box6 .box .bjdiv ul li .rdiv span {
  color: #fff;
  font-size: 14px;
}
.building_box6 .box .bjdiv ul li .rdiv em {
  color: #17fffc;
  font-size: 14px;
  position: absolute;
  right: -5px;
  font-style: normal;
}
.building_box6 .box .bjdiv .t {
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 30px;
}
.building_box7 {
  padding: 60px 0;
}
.building_box7 .box {
  margin-top: 40px;
}
.building_box7 .box .left {
  float: left;
  width: 750px;
  height: 360px;
  background: #e84a0c;
  overflow: hidden;
  position: relative;
}
.building_box7 .box .left .img {
  text-align: center;
  line-height: 0;
}
.building_box7 .box .left .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 48px 70px 0;
}
.building_box7 .box .left .text span.info {
  position: absolute;
  right: 0px;
  top: 0px;
  display: block;
  width: 100px;
  height: 34px;
  line-height: 34px;
  color: #fff;
  text-align: center;
  z-index: 1;
  background: #ce4612;
  font-size: 14px;
  letter-spacing: 1px;
}
.building_box7 .box .left .text h3 {
  font-size: 24px;
  color: #fff;
}
.building_box7 .box .left .text .t {
  color: #fff;
  padding-top: 155px;
}
.building_box7 .box .left .text .t span {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  padding: 0 20px;
  margin-right: 10px;
  border: 1px solid #fff;
}
.building_box7 .box .left .text p {
  color: #fff;
  padding-top: 10px;
  font-size: 15px;
  line-height: 24px;
}
.building_box7 .box .right {
  width: 509px;
  float: right;
}
.building_box7 .box .right a.list {
  position: relative;
  display: block;
  width: 509px;
  height: 180px;
}
.building_box7 .box .right a.list span.info {
  position: absolute;
  right: 0px;
  top: 0px;
  display: block;
  width: 100px;
  height: 34px;
  line-height: 34px;
  color: #fff;
  text-align: center;
  z-index: 1;
  background: #18528e;
  font-size: 14px;
  letter-spacing: 1px;
}
.building_box7 .box .right a.list .t {
  position: absolute;
  top: 0px;
  font-size: 18px;
  color: #fff;
  padding: 40px;
  left: 0px;
}
.building_box8 ol li h3 {
  background: url(../images/bg.jpg) no-repeat center top / cover;
}
.ruanwen_banner {
  background: url(../images/ruanwen_banner.jpg) no-repeat center center / cover;
}
.ruanwen_box {
  background: #f7f8fa;
  padding: 60px 0;
}
.ruanwen_box ol {
  margin-top: 40px;
}
.ruanwen_box ol li {
  float: left;
  width: 23.5%;
  margin-right: 2%;
  transition: transform 0.4s;
  height: 224px;
  -moz-box-shadow: 2px 2px 5px #e8e8e8, -2px 2px 5px #e8e8e8;
  -webkit-box-shadow: 2px 2px 5px #e8e8e8, -2px 2px 5px #e8e8e8;
  box-shadow: 2px 2px 5px #e8e8e8, -2px 2px 5px #e8e8e8;
}
.ruanwen_box ol li:nth-child(4n) {
  margin-right: 0;
}
.ruanwen_box ol li h3 {
  background: #108cee;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 50px;
  display: block;
}
.ruanwen_box ol li .t {
  color: #666;
  font-size: 14px;
  padding: 35px 15px 0;
  letter-spacing: 1px;
  line-height: 24px;
}
.ruanwen_box2 {
  padding: 60px 0;
}
.ruanwen_box2 ol {
  margin-top: 35px;
}
.ruanwen_box2 ol li {
  float: left;
  width: 32%;
  position: relative;
  margin-right: 2%;
}
.ruanwen_box2 ol li:nth-child(3n) {
  margin-right: 0;
}
.ruanwen_box2 ol li .img {
  line-height: 0;
}
.ruanwen_box2 ol li .img img {
  width: 100%;
}
.ruanwen_box2 ol li .text {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  color: #fff;
}
.ruanwen_box2 ol li .text h3 {
  font-size: 18px;
  padding-top: 50px;
  text-align: center;
  display: block;
  font-weight: normal;
}
.ruanwen_box2 ol li .text p {
  font-size: 14px;
  padding: 0 20px;
  display: block;
  letter-spacing: 1px;
  padding-top: 10px;
  line-height: 24px;
}
.ruanwen_box3 {
  background: #f7f8fa;
  padding: 60px 0;
}
.ruanwen_box3 ol {
  margin-top: 35px;
}
.ruanwen_box3 ol li {
  float: left;
  width: 23.5%;
  margin-right: 2%;
  height: 244px;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 20px;
}
.ruanwen_box3 ol li:nth-child(4n) {
  margin-right: 0;
}
.ruanwen_box3 ol li span {
  display: block;
  margin: 0 auto;
  margin-top: 22px;
  width: 60px;
  height: 60px;
  background: url(../images/iconnew1.png) no-repeat -19px -19px #108cee;
}
.ruanwen_box3 ol li h3 {
  font-size: 18px;
  color: #333;
  text-align: center;
  padding-top: 20px;
  font-weight: normal;
}
.ruanwen_box3 ol li p {
  font-size: 14px;
  color: #666;
  text-align: center;
  padding-top: 15px;
  text-align: left;
  -webkit-box-orient: ;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ruanwen_box3 ol li:nth-child(2) span {
  background: url(../images/iconnew1.png) no-repeat -17px -80px #108cee;
}
.ruanwen_box3 ol li:nth-child(3) span {
  background: url(../images/iconnew1.png) no-repeat -18px -135px #108cee;
}
.ruanwen_box3 ol li:nth-child(4) span {
  background: url(../images/iconnew1.png) no-repeat -19px -195px #108cee;
}
.ruanwen_box4 ol li span {
  background: url(../images/iconnew1.png) no-repeat -92px -23px;
}
.ruanwen_box4 ol li:nth-child(2) span {
  background: url(../images/iconnew1.png) no-repeat -92px -93px;
}
.ruanwen_box4 ol li:nth-child(3) span {
  background: url(../images/iconnew1.png) no-repeat -92px -155px;
}
.ruanwen_box4 ol li:nth-child(4) span {
  background: url(../images/iconnew1.png) no-repeat -92px -228px;
}
.ruanwen_box5 {
  background: #f7f8fa;
  padding: 60px 0;
}
.ruanwen_box5 .box {
  margin-top: 35px;
  position: relative;
  background: #fff;
  min-height: 235px;
  -moz-box-shadow: 2px 2px 5px #e8e8e8, -2px 2px 5px #e8e8e8;
  -webkit-box-shadow: 2px 2px 5px #e8e8e8, -2px 2px 5px #e8e8e8;
  box-shadow: 2px 2px 5px #e8e8e8, -2px 2px 5px #e8e8e8;
}
.ruanwen_box5 .box .btn {
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-top: none;
  background: #f5f5f5;
  border-bottom: none;
}
.ruanwen_box5 .box .btn li {
  float: left;
  border-top: 1px solid #e6e6e6;
  height: 44px;
  position: relative;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
  width: 16.66666667%;
  cursor: pointer;
}
.ruanwen_box5 .box .btn li span {
  font-size: 16px;
  line-height: 42px;
  color: #333;
  display: block;
  top: 0px;
  left: 0px;
  border-top: 1px solid #f5f5f5;
  width: 100%;
}
.ruanwen_box5 .box .btn li.cur,
.ruanwen_box5 .box .btn li:hover {
  border-top: 1px solid #108cee;
  border-bottom: 1px solid #fff;
  background: #fff;
}
.ruanwen_box5 .box .btn li.cur span,
.ruanwen_box5 .box .btn li:hover span {
  border-top: 1px solid #108cee;
  color: #108cee;
}
.ruanwen_box5 .box .con {
  padding: 40px;
}
.ruanwen_box5 .box .con .t {
  font-size: 14px;
  color: #666;
}
.ruanwen_box5 .box .con .t a {
  color: #108cee;
}
.jiangquan_banner {
  background: url(../images/kongbai.jpg) no-repeat center center / cover;
}
.mian {
  padding: 30px 0 60px;
}
.mian .mian_nav {
  float: left;
  width: 250px;
  background: #f7fafa;
}
.mian .mian_nav h3 {
  font-size: 16px;
  padding-left: 28px;
  color: #9a9d9c;
  line-height: 50px;
  font-weight: normal;
}
.mian .mian_nav ul li {
  float: left;
  width: 100%;
}
.mian .mian_nav ul li a {
  display: block;
  font-size: 16px;
  /*border-left: 4px solid #f7fafa;*/
  padding-left: 28px;
  color: #2f3232;
  border-top: 1px solid #fff;
  line-height: 50px;
}
.mian .mian_nav ul li a i {
  display: inline-block;
  width: 29px;
  height: 14px;
  background: url(../images/hot.png) no-repeat center center / cover;
  margin-left: 3px;
  position: relative;
  top: 3px;
}
.mian .mian_nav ul li:hover,
.mian .mian_nav ul li.cur {
  border-left: 4px solid #118dec;
  background: #ecefef;
}
.mian .mian_content {
  float: right;
  width: 950px;
}
.mian .mian_content h2 {
  color: #262626;
  font-size: 22px;
}
.mian .mian_content .info {
  font-size: 15px;
  color: #626262;
  padding-top: 20px;
}
.mian .mian_content .portalstext {
  padding-top: 20px;
  color: #626262;
  font-size: 15px;
}
.mian .mian_content h3 {
  font-size: 18px;
  color: #262626;
  padding-top: 30px;
  border-top: 1px solid #e6e6e6;
  margin-top: 30px;
  padding-bottom: 20px;
}
.mian .mian_content .service_nr {
  margin-bottom: -10px;
}
.mian .mian_content .service_nr li {
  float: left;
  width: 49%;
  height: 105px;
  border: 1px solid #e6e6e6;
  padding: 20px;
  margin-bottom: 2%;
  cursor: pointer;
}
.mian .mian_content .service_nr li:nth-child(2n) {
  float: right;
}
.mian .mian_content .service_nr li .bt {
  font-size: 15px;
  color: #000;
}
.mian .mian_content .service_nr li p {
  color: #696969;
  font-size: 15px;
  line-height: 20px;
  padding-top: 5px;
}
.mian .mian_content .thirdbox h3 {
  padding-bottom: 10px;
}
.mian .mian_content .thirdbox p {
  color: #656565;
  line-height: 24px;
  font-size: 15px;
}
.youhua_banner {
  text-align: center;
  position: relative;
}
.youhua_banner span {
  display: block;
  line-height: 0;
}
.youhua_box {
  padding-bottom: 80px;
}
.youhua_box .w1260 {
  position: relative;
}
.youhua_box .w1260 .img {
  position: absolute;
  right: -50px;
  top: -57px;
  width: 710px;
  z-index: 0;
}
.youhua_box .box {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  padding: 75px 75px 50px 90px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.youhua_box .box ol {
  margin-top: 50px;
}
.youhua_box .box ol li {
  float: left;
  width: 328px;
  margin-left: 50px;
}
.youhua_box .box ol li:first-child {
  margin-left: 0;
}
.youhua_box .box ol li .icon {
  height: 86px;
  line-height: 0;
}
.youhua_box .box ol li .text {
  padding-top: 15px;
}
.youhua_box .box ol li .text h3 {
  color: #232323;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.youhua_box .box ol li .text p {
  color: #666666;
  font-size: 15px;
  line-height: 28px;
}
.youhua_box2 {
  background: url(../images/yhzz_bg2.jpg) no-repeat center center / cover;
  height: 712px;
  padding-top: 115px;
}
.youhua_box2 .left {
  float: left;
  width: 435px;
  padding-top: 30px;
}
.youhua_box2 .left h3 {
  color: #6b89bf;
  font-size: 41px;
  font-family: arial;
  text-transform:Uppercase;
  line-height: 56px;
}
.youhua_box2 .left i {
  display: block;
  width: 42px;
  height: 3px;
  background: #6b89bf;
  margin: 20px 0 25px;
}
.youhua_box2 .left h4 {
  color: #ffffff;
  font-size: 30px;
}
.youhua_box2 .left p {
  margin-top: 15px;
  color: #ced6e7;
  font-size: 16px;
  line-height: 30px;
}
.youhua_box2 .left a {
  margin-top: 80px;
  display: inline-block;
  line-height: 50px;
  color: #000000;
  font-size: 16px;
  padding: 0 25px;
  background: #ffffff;
}
.youhua_box2 .right {
  float: right;
  width: 760px;
  height: 516px;
  background: url(../images/yh_pic2.jpg) no-repeat center center;
  padding: 68px 72px 0;
  margin-top: -15px;
}
.youhua_box2 .right .tit {
  color: #373737;
  font-size: 22px;
}
.youhua_box2 .right .tit i {
  display: inline-block;
  width: 108px;
  height: 2px;
  background: #e4e3e3;
  position: relative;
  top: -6px;
  margin-right: 16px;
}
.youhua_box2 .right ol {
  margin-top: 25px;
  padding-bottom: 30px;
}
.youhua_box2 .right ol li {
  float: left;
  width: 100%;
  margin-bottom: 25px;
}
.youhua_box2 .right ol li span {
  width: 50px;
  height: 50px;
  float: left;
  display: block;
  border: 2px solid #dadddc;
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
  color: #515151;
  font-size: 22px;
  font-weight: bold;
  font-family: arial;
}
.youhua_box2 .right ol li .t {
  float: right;
  width: 540px;
  color: #313131;
  font-size: 16px;
  line-height: 26px;
}
.youhua_box2 .right .bottom {
  text-align: center;
  color: #515151;
  font-size: 16px;
  letter-spacing: 3px;
}
.youhua_box3 {
  padding: 80px 0;
}
.youhua_box3 ol {
  margin-top: 50px;
}
.youhua_box3 ol li {
  float: left;
  width: 33.33333333%;
  text-align: center;
}
.youhua_box3 ol li .icon {
  width: ;
  border: 3px solid #cdcccc;
  width: 179px;
  line-height: 0;
  margin: 0 auto;
}
.youhua_box3 ol li .text {
  margin-top: -18px;
}
.youhua_box3 ol li .text h4 {
  color: #cdcccc;
  font-size: 18px;
  background: #fff;
  padding: 0 10px;
  display: inline-block;
  line-height: 30px;
  font-weight: normal;
  font-family: arial;
}
.youhua_box3 ol li .text h3 {
  margin-top: 5px;
  color: #333333;
  font-size: 24px;
  font-weight: normal;
}
.youhua_box3 ol li .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}
.youhua_box4 {
  background: #f5f7f8 url(../images/yhzz_bg4.jpg) no-repeat center top;
  padding: 80px 0;
}
.youhua_box4 ol {
  margin-top: 50px;
}
.youhua_box4 ol li {
  float: left;
  width: 400px;
  background: #fff;
  margin-left: 30px;
}
.youhua_box4 ol li:first-child {
  margin-left: 0;
}
.youhua_box4 ol li .img {
  line-height: 0;
  overflow: hidden;
}
.youhua_box4 ol li .text {
  padding: 30px 40px;
}
.youhua_box4 ol li .text h3 {
  color: #333333;
  font-size: 18px;
  line-height: 30px;
}
.youhua_box4 ol li .text h3 em {
  font-style: normal;
  display: block;
  color: #1a58ab;
  position: relative;
}
.youhua_box4 ol li .text h3 em:before {
  content: "";
  position: absolute;
  left: -40px;
  top: 13px;
  width: 20px;
  height: 3px;
  background: #c3d1e7;
}
.youhua_box4 ol li .text p {
  margin-top: 12px;
  color: #666666;
  font-size: 15px;
  line-height: 24px;
}
.youhua_box4 ol li .text span {
  display: inline-block;
  margin-top: 20px;
  color: #efefef;
  font-size: 20px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  letter-spacing: 5px;
}
.youhua_box5 {
  background: url(../images/yhzz_bg5.jpg) no-repeat center center;
  height: 778px;
  padding-top: 160px;
}
.youhua_box5 .box {
  width: 724px;
  height: 450px;
  background: url(../images/yh_pic3.png);
  padding: 60px 65px 0;
  position: relative;
}
.youhua_box5 .box:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 35px;
  width: 97px;
  height: 92px;
  background: url(../images/yh_pic4.png) no-repeat center center;
}
.youhua_box5 .box .title3 {
  text-align: left;
}
.youhua_box5 .box .title3 h3 {
  color: #fff;
}
.youhua_box5 .box .icon {
  display: block;
  width: 37px;
  height: 3px;
  background: #4a7bbd;
  margin: 18px 0 30px;
}
.youhua_box5 .box .t {
  color: #d2deee;
  font-size: 16px;
  line-height: 28px;
}
.youhua_box6 {
  padding: 80px 0 40px;
}
.youhua_box6 .left {
  margin-right: -70px;
  margin-left: -30px;
  line-height: 0;
  width: 840px;
  float: right;
}
.youhua_box6 .right {
  float: left;
  width: 517px;
  margin-top: 20px;
}
.youhua_box6 .right .title3 {
  text-align: left;
}
.youhua_box6 .right .name {
  margin-top: 20px;
  color: #333333;
  font-size: 16px;
  line-height: 28px;
}
.youhua_box6 .right ol {
  margin-top: 35px;
}
.youhua_box6 .right ol li {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.youhua_box6 .right ol li:last-child {
  margin-bottom: 0;
}
.youhua_box6 .right ol li .icon {
  width: 55px;
  text-align: center;
  float: left;
  line-height: 0;
}
.youhua_box6 .right ol li .t {
  float: right;
  width: 446px;
}
.youhua_box6 .right ol li .t h3 {
  color: #333333;
  font-size: 18px;
  text-transform: uppercase;
}
.youhua_box6 .right ol li .t p {
  margin-top: 5px;
  color: #7a7a7a;
  font-size: 14px;
  line-height: 24px;
}
.youhua_box7 {
  background: #f9f9f9;
  padding: 80px 0;
}
.youhua_box7 ol {
  margin-top: 50px;
}
.youhua_box7 ol li {
  float: left;
  width: 406px;
  margin-left: 21px;
}
.youhua_box7 ol li:first-child {
  margin-left: 0;
}
.youhua_box7 ol li .img {
  line-height: 0;
  overflow: hidden;
}
.youhua_box7 ol li .text {
  padding-top: 20px;
}
.youhua_box7 ol li .text h3 {
  color: #333333;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 5px;
}
.youhua_box7 ol li .text span {
  color: #666666;
  font-size: 14px;
  font-family: arial;
}
.youhua_box7 ol li .text p {
  margin-top: 5px;
  color: #6a6a6a;
  font-size: 14px;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
}
.zhixing_box {
  background: url(../images/zhixing_bg.jpg) no-repeat center center;
  height: 732px;
  padding-top: 100px;
}
.zhixing_box .title3 h3 span {
  position: relative;
}
.zhixing_box .title3 h3 span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  background: #1b5caa;
  height: 6px;
  z-index: 0;
  opacity: 0.8;
}
.zhixing_box .title3 p {
  color: #000000;
  font-size: 16px;
  line-height: 32px;
}
.zhixing_box ol {
  margin-top: 60px;
}
.zhixing_box ol li {
  float: left;
  width: 265px;
  height: 260px;
  background: url(../images/zx_bg.png);
  margin-right: 10px;
  padding: 58px 45px 0;
}
.zhixing_box ol li:first-child,
.zhixing_box ol li:first-child + li + li {
  margin-top: 58px;
}
.zhixing_box ol li .icon {
  line-height: 0;
}
.zhixing_box ol li .text {
  padding-top: 16px;
}
.zhixing_box ol li .text h3 {
  color: #232323;
  font-size: 18px;
}
.zhixing_box ol li .text p {
  margin-top: 5px;
  color: #232323;
  font-size: 15px;
  line-height: 24px;
}
.zhixing_box2 {
  background: #f6f6f6;
  padding: 80px 0 90px;
}
.zhixing_box2 .title3 p {
  color: #333;
  font-size: 16px;
}
.zhixing_box2 ol {
  position: relative;
  z-index: 1;
  margin-top: 70px;
}
/*.zhixing_box2 ol:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -100px;
  top: -45px;
  width: 107px;
  height: 432px;
  background: url(../images/zx_pic4.jpg) no-repeat center center;
}*/
.zhixing_box2 ol li {
  position: relative;
  z-index: 3;
  float: left;
  width: 414px;
  background: #ffffff;
}
.zhixing_box2 ol li .img {
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.zhixing_box2 ol li .text {
  padding: 55px 50px;
}
.zhixing_box2 ol li .text h3 {
  color: #1b5caa;
  font-size: 20px;
  line-height: 26px;
}
.zhixing_box2 ol li .text i {
  display: block;
  width: 33px;
  height: 2px;
  background: #c9c9ca;
  margin: 15px 0 20px;
}
.zhixing_box2 ol li .text p {
  color: #333333;
  font-size: 14px;
  line-height: 20px;
}
.zhixing_box2 ol li:first-child .img:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -11px;
  width: 22px;
  height: 18px;
  background: url(../images/zx_pic1.png) no-repeat center center;
}
.zhixing_box2 ol li:nth-child(2) {
  background: #1b5caa;
  width: 838px;
  float: right;
}
.zhixing_box2 ol li:nth-child(2) .img {
  float: right;
  width: 419px;
}
.zhixing_box2 ol li:nth-child(2) .img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  width: 20px;
  height: 24px;
  background: url(../images/zx_pic2.png) no-repeat center center;
}
.zhixing_box2 ol li:nth-child(2) .text {
  padding: 50px;
  width: 419px;
  float: left;
}
.zhixing_box2 ol li:nth-child(2) .text h3 {
  color: #fff;
}
.zhixing_box2 ol li:nth-child(2) .text i {
  background: #5082be;
}
.zhixing_box2 ol li:nth-child(2) .text p {
  color: #dfe5f0;
}
.zhixing_box2 ol li:nth-child(3) {
  margin-top: 10px;
  width: 838px;
  float: right;
}
.zhixing_box2 ol li:nth-child(3) .img {
  float: left;
  width: 419px;
}
.zhixing_box2 ol li:nth-child(3) .img:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
  width: 20px;
  height: 24px;
  background: url(../images/zx_pic3.png) no-repeat center center;
}
.zhixing_box2 ol li:nth-child(3) .text {
  padding: 50px;
  width: 419px;
  float: left;
}
.zhixing_box3 {
  padding: 80px 0 90px;
}
.zhixing_box3 ol {
  margin-top: 60px;
  border-top: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
}
.zhixing_box3 ol li {
  float: left;
  text-align: center;
  width: 16.66666667%;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}
.zhixing_box3 ol li .icon {
  line-height: 0;
}
.zhixing_box3 ol li p {
  margin-top: 10px;
  color: #444444;
  font-size: 15px;
}
.zhixing_box3 .img {
  margin-top: 60px;
  text-align: center;
  line-height: 0;
}
.zhixing_box4 {
  background: url(../images/zhixing_bg4.jpg) no-repeat center bottom;
  height: 757px;
  padding-top: 85px;
}
.zhixing_box4 .box {
  padding-top: 120px;
}
.zhixing_box4 .box ol {
  width: 234px;
}
.zhixing_box4 .box ol:first-child {
  text-align: right;
}
.zhixing_box4 .box ol li {
  float: left;
  width: 100%;
  margin-bottom: 47px;
}
.zhixing_box4 .box ol li:last-child {
  margin-bottom: 0;
}
.zhixing_box4 .box ol li h3 {
  color: #333333;
  font-size: 16px;
}
.zhixing_box4 .box ol li p {
  color: #333333;
  font-size: 14px;
}
.zhixing_box5 {
  background: url(../images/zhixing_bg5.jpg) no-repeat center center;
  height: 742px;
  padding-top: 100px;
}
.zhixing_box5 .box {
  width: 1110px;
  height: 520px;
  margin: 0 auto;
  padding: 70px 220px 0;
  background: #1b5caa;
}
.zhixing_box5 .box .title4 h3 {
  color: #fff;
}
.zhixing_box5 .box .title4 p {
  color: #d5ddeb;
}
.zhixing_box5 .box .text {
  margin-top: 20px;
  text-align: center;
}
.zhixing_box5 .box .text p {
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
}
.zhixing_box5 .box .text .img {
  margin-top: 25px;
  margin-bottom: 40px;
  line-height: 0;
}
.zhixing_box5 .box .text a {
  margin-top: 20px;
  display: inline-block;
  border: 1px solid #94b1d4;
  line-height: 46px;
  color: #fff;
  padding: 0 20px;
}
.zhixing_box6 {
  background: url(../images/zhixing_bg6.jpg) no-repeat center center;
  height: 796px;
  padding-top: 90px;
}
.zhixing_box6 .box .left {
  float: left;
  width: 215px;
  padding-top: 120px;
}
.zhixing_box6 .box .left .icon {
  line-height: 0;
  width: 109px;
}
.zhixing_box6 .box .left .text {
  padding-top: 20px;
}
.zhixing_box6 .box .left .text h3 {
  color: #444444;
  font-size: 20px;
}
.zhixing_box6 .box .left .text p {
  margin-top: 10px;
  color: #444444;
  font-size: 14px;
  line-height: 24px;
}
.zhixing_box6 .box .right {
  float: right;
  width: 946px;
}
.zhixing_box6 .box .right .ol_list1,
.zhixing_box6 .box .right .ol_list2 {
  margin-top: 50px;
}
.zhixing_box6 .box .right .ol_list1 li,
.zhixing_box6 .box .right .ol_list2 li {
  float: left;
  width: 150px;
  margin-left: 49px;
}
.zhixing_box6 .box .right .ol_list1 li:first-child,
.zhixing_box6 .box .right .ol_list2 li:first-child {
  margin-left: 0;
}
.zhixing_box6 .box .right .ol_list1 li .icon,
.zhixing_box6 .box .right .ol_list2 li .icon {
  line-height: 0;
  width: 70px;
}
.zhixing_box6 .box .right .ol_list1 li .text,
.zhixing_box6 .box .right .ol_list2 li .text {
  padding-top: 15px;
}
.zhixing_box6 .box .right .ol_list1 li .text h3,
.zhixing_box6 .box .right .ol_list2 li .text h3 {
  color: #444444;
  font-size: 16px;
}
.zhixing_box6 .box .right .ol_list1 li .text p,
.zhixing_box6 .box .right .ol_list2 li .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.zhixing_box6 .box .right .ol_list2 {
  margin-top: 80px;
}
.zhixing_box6 .box .right .ol_list2 li {
  width: 170px;
}
.zhixing_box7 {
  padding: 80px 0 90px;
}
.zhixing_box7 .box {
  position: relative;
  margin-top: 50px;
  min-height: 428px;
}
.zhixing_box7 .box .left {
  position: absolute;
  left: 0;
  top: 10px;
  width: 510px;
  line-height: 0;
  z-index: 2;
}
.zhixing_box7 .box .right {
  float: right;
  width: 1178px;
}
.zhixing_box7 .box .right .top {
  background: #1a58ab;
  padding-left: 470px;
  padding-right: 60px;
  padding-top: 35px;
  padding-bottom: 35px;
}
.zhixing_box7 .box .right .top h3 {
  color: #ffffff;
  font-size: 18px;
}
.zhixing_box7 .box .right .top span {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}
.zhixing_box7 .box .right .top p {
  margin-top: 10px;
  color: #c5d4ea;
  font-size: 14px;
  line-height: 24px;
}
.zhixing_box7 .box .right ol {
  background: #f9f9f9;
  width: 740px;
  float: right;
  margin-top: 10px;
  height: 210px;
  padding-left: 30px;
  padding-right: 60px;
  padding-top: 30px;
}
.zhixing_box7 .box .right ol li {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
.zhixing_box7 .box .right ol li:last-child {
  margin-bottom: 0;
}
.zhixing_box7 .box .right ol li em {
  width: 30px;
  height: 30px;
  border: 1px solid #7b7b7b;
  border-radius: 50%;
  display: block;
  float: left;
  text-align: center;
  color: #5f5f5f;
  font-size: 18px;
  font-family: arial;
  line-height: 30px;
}
.zhixing_box7 .box .right ol li .t {
  float: right;
  width: 610px;
  line-height: 30px;
  text-align: left;
  color: #5f5f5f;
  font-size: 15px;
}
.custom_box {
  background: #fff;
}
.custom_box ol {
  margin-top: 50px;
}
/*.custom_box ol:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: auto;
  right: -145px;
  top: -110px;
  width: 112px;
  height: 432px;
  background: url(../images/custom_1.jpg) no-repeat center center;
}*/
.custom_box ol li {
  background: #f7f7f7;
}
.custom_box2 {
  background: #f3f3f3;
  height: 830px;
  padding-top: 80px;
}
.custom_box2 .top {
  text-align: center;
}
.custom_box2 .top .tit {
  color: #1b5caa;
  font-size: 30px;
  font-weight: bold;
}
.custom_box2 .top .tit span {
  display: inline-block;
}
.custom_box2 .top .tit span em {
  display: block;
  color: #bababa;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: arial;
}
.custom_box2 .top .t {
  margin-top: 20px;
  color: #333333;
  font-size: 16px;
  line-height: 32px;
}
.custom_box2 .img {
  margin-top: 30px;
  text-align: center;
  line-height: 0;
}
.custom_box3 {
  background: url(../images/custom_bg3.jpg) no-repeat center top;
  height: 816px;
  padding-top: 182px;
}
.custom_box3 ol {
  margin-top: 50px;
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}
.custom_box3 ol li {
  float: left;
  width: 33.33333333%;
  border-bottom: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  padding: 40px 55px;
}
.custom_box3 ol li .icon {
  height: 56px;
  line-height: 0;
  vertical-align: bottom;
}
.custom_box3 ol li .text {
  padding-top: 25px;
}
.custom_box3 ol li .text h3 {
  color: #232323;
  font-size: 18px;
}
.custom_box3 ol li .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}

.slideimg {padding-bottom:30px;}
.swiper-pagination-bullet{bottom:0;}


.custom_box4 {
  background: url(../images/custom_bg4.jpg) no-repeat center top;
  height: 612px;
  padding-top: 90px;
}
.custom_box4 .box {
  float: right;
  width: 500px;
}
.custom_box4 .box .title4 {
  text-align: left;
}
.custom_box4 .box .title4 h3 {
  color: #fff;
}
.custom_box4 .box .d {
  padding: 17px 0 25px;
  border-bottom: 1px solid #2a73b5;
  color: #dee5f0;
  font-size: 18px;
  line-height: 28px;
}
.custom_box4 .box ol {
  margin-top: 40px;
}
.custom_box4 .box ol li {
  float: left;
  width: 100%;
  margin-bottom: 40px;
}
.custom_box4 .box ol li .icon {
  width: 65px;
  text-align: right;
  line-height: 0;
  float: left;
}
.custom_box4 .box ol li .t {
  float: right;
  width: 420px;
}
.custom_box4 .box ol li .t h3 {
  color: #ffffff;
  font-size: 18px;
}
.custom_box4 .box ol li .t p {
  margin-top: 5px;
  color: #c2d7ea;
  font-size: 14px;
}
.custom_box5 {
  background: url(../images/custom_bg5.jpg) no-repeat center top;
  height: 297px;
  padding-top: 60px;
}
.custom_box5 ol li {
  float: left;
  width: 240px;
  text-align: center;
  margin-left: 100px;
}
.custom_box5 ol li:first-child {
  margin-left: 0;
}
.custom_box5 ol li .icon {
  line-height: 0;
}
.custom_box5 ol li .text {
  padding-top: 23px;
}
.custom_box5 ol li .text h3 {
  color: #ffffff;
  font-size: 18px;
}
.custom_box5 ol li .text p {
  margin-top: 15px;
  color: #c2c4c7;
  font-size: 14px;
  line-height: 24px;
}
.custom_box6 {
  padding: 80px 0;
}
.custom_box6 .left {
  float: left;
  width: 502px;
  padding-top: 25px;
}
.custom_box6 .left .title4 {
  text-align: left;
}
.custom_box6 .left .title4 p {
  margin-top: 0;
  margin-bottom: 5px;
}
.custom_box6 .left i {
  display: block;
  width: 43px;
  height: 2px;
  background: #e8e8e8;
  margin: 20px 0 15px;
}
.custom_box6 .left .name {
  color: #666666;
  font-size: 16px;
  line-height: 36px;
  padding-right: 50px;
}
.custom_box6 .left ol li {
  float: left;
  margin-top: 40px;
  width: 212px;
}
.custom_box6 .left ol li:nth-child(2n) {
  float: right;
}
.custom_box6 .left ol li .icon {
  float: left;
  width: 35px;
  line-height: 0;
}
.custom_box6 .left ol li .text {
  float: right;
  width: 160px;
}
.custom_box6 .left ol li .text h3 {
  color: #333333;
  font-size: 16px;
}
.custom_box6 .left ol li .text p {
  margin-top: 1px;
  color: #999999;
  font-size: 12px;
}
.custom_box6 .right {
  width: 777px;
  float: right;
  line-height: 0;
  margin-right: -20px;
}
.custom_box7 {
  background: url(../images/custom_bg7.jpg) no-repeat center center / cover;
  height: 760px;
  padding-top: 95px;
}
.custom_box7 .title4 h3,
.custom_box7 .title4 p {
  color: #fff;
}
.custom_box7 .title4 p {
  margin-top: 12px;
  line-height: 26px;
}
.custom_box7 .case_box {
  margin-top: 55px;
  background: url(../images/case_bg.png);
  padding: 0 8%;
}
.custom_box7 .case_box .box {
  width: 100%;
  position: relative;
}
.custom_box7 .case_box .box .img {
  line-height: 0;
  overflow: hidden;
}
.custom_box7 .case_box .box .img img {
  width: 100%;
}
.custom_box7 .case_box .box .text {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 25px;
}
.custom_box7 .case_box .box .text h3 {
  color: #ffffff;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.custom_box7 .case_box .box .text p {
  margin-top: 5px;
  color: #afafaf;
  font-size: 12px;
  line-height: 16px;
  height: 32px;
  overflow: hidden;
}
.custom_box7 .case_box .box:hover .text {
  display: block;
}
.custom_box7 .case_box .slick-prev,
.custom_box7 .case_box .slick-next {
  width: 25px;
  height: 47px;
  border: none;
  margin-top: -23.5px;
}
.custom_box7 .case_box .slick-prev {
  background: url(../images/case_prev.png) no-repeat center center;
  left: 5%;
}
.custom_box7 .case_box .slick-next {
  background: url(../images/case_next.png) no-repeat center center;
  right: 5%;
}
.custom_box7 .more {
  margin-top: 70px;
  text-align: center;
}
.custom_box7 .more a {
  border: 1px solid #fff;
  line-height: 48px;
  padding: 0 50px;
  display: inline-block;
  color: #fff;
  font-size: 16px;
}
.custom_box8 {
  background: #f4f4f4 url(../images/wechat-applet-bg05.png) no-repeat center 130px;
  padding: 80px 0 90px;
}
.custom_box8 .box {
  margin-top: 97px;
}
.custom_box8 .box ol {
  float: left;
  margin-left: -17px;
  width: 960px;
}
.custom_box8 .box ol li {
  float: left;
  width: 297px;
  height: 129px;
  background-color: #ffffff;
  margin-right: 23px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
  padding: 40px 30px;
}
.custom_box8 .box ol li:nth-child(3n) {
  margin-right: 0;
}
.custom_box8 .box ol li .text {
  padding-top: 10px;
  float: left;
}
.custom_box8 .box ol li .text h3 {
  font-size: 16px;
  color: #666666;
}
.custom_box8 .box ol li .text p {
  font-size: 12px;
  color: #BCBCBC;
}
.custom_box8 .box ol li .icon {
  width: 75px;
  line-height: 60px;
  text-align: center;
  height: 60px;
  float: right;
  position: relative;
}
.custom_box8 .box ol li .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.custom_box8 .box .right {
  float: right;
  width: 298px;
  height: 427px;
  background-color: #ffffff;
  position: relative;
  margin-right: 17px;
  text-align: center;
  padding-top: 58px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
}
.custom_box8 .box .right span {
  font-size: 16px;
  color: #666666;
}
.custom_box8 .box .right p {
  font-size: 29px;
  color: #BCBCBC;
  font-family: 'Arial Bold';
  font-weight: 600;
  white-space: nowrap;
  margin-bottom: 50px;
}
.custom_box8 .box .right .img {
  text-align: center;
}
.custom_box9 {
  background: url(../images/custom_bg9.jpg) no-repeat center top;
  height: 726px;
  padding-top: 92px;
}
.custom_box9 .title5 {
  text-align: center;
}
.custom_box9 .title5 h3 {
  color: #ffffff;
  font-size: 30px;
}
.custom_box9 .title5 i {
  display: block;
  width: 48px;
  height: 3px;
  background: #ffffff;
  margin: 23px auto 28px;
}
.custom_box9 .title5 p {
  color: #ffffff;
  font-size: 16px;
}
.custom_box9 ol {
  margin-top: 70px;
}
.custom_box9 .solu_box .slick-prev, .custom_box9 .solu_box .slick-next{
      width: 25px;
    height: 47px;
    border: none;
    margin-top: -23.5px;
}

.custom_box9 .solu_box .slick-prev {
  background: url(../images/case_prev.png) no-repeat center center;
  left: 0;
}
.custom_box9 .solu_box .slick-next {
  background: url(../images/case_next.png) no-repeat center center;
  right: 0;
}

.custom_box9 ol li {
  float: left;
  width: 33.33333333%;
}
.custom_box9 ol li .icon {
  width: 210px;
  height: 210px;
  margin: 0 auto;
  text-align: center;
}
.custom_box9 ol li .icon img {
  height: 210px;
      margin: 0 auto;
}
.custom_box9 ol li .icon p {
  margin-top: 20px;
  color: #ffffff;
  font-size: 16px;
}
.custom_box9 ol li .text {
  padding-top: 28px;
  text-align: center;
  width: 285px;
  margin: 0 auto;
}
.custom_box9 ol li .text h3 {
  color: #ffffff;
  font-size: 16px;
}
.custom_box9 ol li .text p {
  margin-top: 15px;
  color: #cccccc;
  font-size: 14px;
  line-height: 24px;
}
.custom_box10 {
  background: #f1f1f1;
  padding: 80px 0;
}
.custom_box10 ul {
  margin-top: 50px;
}
.custom_box10 ul li {
  float: left;
  width: 32%;
  margin-right: 2%;
}
.custom_box10 ul li:last-child {
  margin-right: 0;
}
.custom_box10 ul li .img {
  line-height: 0;
}
.custom_box10 ul li .img img {
  width: 100%;
}
.custom_box10 ul li .text {
  padding-top: 15px;
}
.custom_box10 ul li .text h3 {
  font-size: 16px;
  font-weight: normal;
  color: #333;
}
.custom_box10 ul li .text p {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}
.custom_box10 ol {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #d9dada;
}
.custom_box10 ol li {
  float: left;
  width: 32%;
  font-size: 15px;
  line-height: 30px;
  position: relative;
  padding-left: 18px;
  margin-right: 2%;
}
.custom_box10 ol li:nth-child(3n) {
  margin-right: 0;
}
.custom_box10 ol li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border: 2px solid #C7C7C7;
  border-radius: 50%;
}
.custom_box10 ol li a {
  display: block;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header span.bt {
    color: #1a58ab;
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    padding-right: 15px;
    margin-right: 10px;
    position: relative;
    font-family: arial;
    letter-spacing: -2px;
}
.header span.bt:before {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 1px;
    height: 36px;
    background: #ccc;
    display: none;
}

.nav-box>ul>li a span {
  font-size: 11px;
  text-transform: capitalize;
  color: #89A0CB;
  display: block;
  text-indent: 0;
  overflow: hidden;
}
/*.nav ul li a .s1 {
  background: url(../images/home_nav1.png) no-repeat center;
}.nav ul li a .s2 {
  background: url(../images/home_nav2.png) no-repeat center;
}
.nav ul li a .s3 {
  background: url(../images/home_nav3.png) no-repeat center;
}
.nav ul li a .s4 {
  background: url(../images/home_nav4.png) no-repeat center;
}
.nav ul li a .s5 {
  background: url(../images/home_nav5.png) no-repeat center;
}
.nav ul li a .s6 {
  background: url(../images/home_nav6.png) no-repeat center;
}
.nav ul li a .s7 {
  background: url(../images/home_nav7.png) no-repeat center;
}
.nav ul li a .s8 {
  background: url(../images/home_nav8.png) no-repeat center;
}*/

.youhua_banner .text{
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: -630px;
	width: 1260px;
	text-align: left;
	padding-top: 210px;
}
.youhua_banner .text p{
	color: #ffffff;
	font-size: 30px;
}
.youhua_banner .text i{
	display: block;
	width: 35px;
	height: 2px;
	background: #858788;
	margin: 16px 0 15px;
}
.youhua_banner .text h3{
	color: #ffffff;
	font-size: 50px;
	font-weight: normal;
}
.youhua_banner .text3 {
	padding-top: 190px;
}
.youhua_banner .text3 .bt{
	color: #1a58ab;
	font-size: 77px;
}
.youhua_banner .text3 .bt span{
	color: #1a58ab;
	font-size: 77px;
	display: inline-block;
	line-height: 52px;
}
.youhua_banner .text3 .bt span em{
	font-size: 14px;
	color: #878b8f;
	display: block;
}
.youhua_banner .text3 p{
	margin-top: 5px;
	color: #2a2a2a;
	font-size: 20px;
	line-height: 36px;
}
.youhua_banner .text2{
	text-align: center;
	padding-top: 115px;
}
.youhua_banner .text2 h3{
	color: #ffffff;
	font-size: 32px;
	font-weight: bold;
}
.youhua_banner .text2 p{
	font-size: 24px;
	margin-top: -10px;
}
.youhua_banner .text2 p em{
	color: #3275cf;
	font-size: 50px;
	font-family: arial;
	position: relative;
	bottom: -4px;
}
.youhua_banner .text2 ol{
	width: 643px;
	margin: 35px auto 0;
	background: url(../images/xg_bg.jpg) no-repeat center 35px;
}
.youhua_banner .text2 ol li{
	float: left;
	width: 72px;
	margin-right: 70.75px;
}
.youhua_banner .text2 ol li:last-child{
	margin-right: 0;
}
.youhua_banner .text2 ol li span{
	width: 72px;
}
.youhua_banner .text2 ol li p{
	margin-left: -24px;
	width: 120px;
	color: #8b8b8b;
	font-size: 12px;
	margin-top: 10px;
}
.youhua_banner .imgBox{
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: -566px;
	width: 1133px;
	line-height: 0;
}

/**2019-3-29**/
.title4 p {
  color: #4d4d4d;
  font-size: 16px;
}
.xitong_box {
  background: #f6f6f6;
  padding: 80px 0;
}
.xitong_box ol {
  margin-top: 50px;
  margin-left: -6px;
  position: relative;
}
.xitong_box ol:before {
  content: "";
  position: absolute;
  right: -100px;
  top: -70px;
  width: 118px;
  height: 371px;
  background: url(../images/xitong_pic1.jpg) no-repeat center center;
	display: none;
}
.xitong_box ol li {
  float: left;
  width: 310px;
  margin-left: 6px;
  position: relative;
}
.xitong_box ol li .img {
  line-height: 0;
}
.xitong_box ol li .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 52px;
  font-size: 16px;
}
.xitong_box2 {
  padding: 80px 0 100px;
}
.xitong_box2 .box {
  margin-top: 50px;
  position: relative;
}
.xitong_box2 .box .img {
  line-height: 0;
}
.xitong_box2 .box ol {
  position: absolute;
  right: 0;
  bottom: -26px;
  width: 604px;
  color: #fff;
  background: #1a58ab;
  padding: 15px 50px;
}
.xitong_box2 .box ol li {
  float: left;
  width: 50%;
  border-top: #336ab4 solid 1px;
  padding: 35px 0;
}
.xitong_box2 .box ol li:first-child,
.xitong_box2 .box ol li:first-child + li {
  border-top: none;
}
.xitong_box2 .box ol li .icon {
  float: left;
  width: 49px;
  line-height: 0;
}
.xitong_box2 .box ol li .text {
  float: left;
  width: 152px;
  margin-left: 10px;
}
.xitong_box2 .box ol li .text .bt {
  font-size: 18px;
}
.xitong_box2 .box ol li .text p {
  font-size: 14px;
}
.xitong_box3 {
  background: url(../images/xitong_img6.jpg) no-repeat center top;
  height: 657px;
  padding-top: 120px;
}
.xitong_box3 .title3 h3 {
  color: #fff;
}
.xitong_box3 ol {
  margin-top: 70px;
}
.xitong_box3 ol li {
  float: left;
  background: #fff;
  width: 32%;
  margin-left: 2%;
  padding: 50px 0;
  text-align: center;
}
.xitong_box3 ol li:first-child {
  margin-left: 0;
}
.xitong_box3 ol li .icon {
  line-height: 0;
}
.xitong_box3 ol li p {
  margin-top: 32px;
  color: #444444;
  font-size: 18px;
  line-height: 32px;
}
.xitong_box4 {
  background: url(../images/xitong_bg2.jpg) no-repeat center top;
  height: 425px;
}
.xitong_box4 .left {
  float: left;
  width: 386px;
}
.xitong_box4 .left .img {
  line-height: 0;
}
.xitong_box4 .left .text {
  padding-top: 16px;
}
.xitong_box4 .left .text h3 {
  font-size: 30px;
  color: #fff;
}
.xitong_box4 .left .text p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
}
.xitong_box4 .right {
  float: left;
  width: 520px;
  padding-top: 100px;
}
.xitong_box4 .right ol li {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.xitong_box4 .right ol li input::-webkit-input-placeholder {
  color: #a8bfdf;
}
.xitong_box4 .right ol li .text {
  border: 1px solid #a8bfdf;
  line-height: 54px;
  width: 100%;
  background: no-repeat;
  padding: 0 15px;
  color: #fff;
  font-size: 15px;
}
.xitong_box4 .right ol li .btn {
  width: 180px;
  background: #ffffff;
  border: none;
  line-height: 54px;
  color: #1a58ab;
  font-size: 16px;
}
.xitong_box4 .right ol li p {
  color: #ffffff;
  font-size: 16px;
}

.youhua_banner .xitong_text{
	text-align: center;
}
.youhua_banner .xitong_text h3{
	font-size: 36px;
	font-weight: normal;
}
.youhua_banner .xitong_text p{
	font-size: 20px;
	margin-top: 10px;
}
.youhua_banner .xitong_text .sousuo{
	margin: 45px auto 25px;
	width: 780px;
}
.youhua_banner .xitong_text .sousuo .t{
	width: 611px;
	height: 65px;
	background: #fff;
	border: none;
	float: left;
	padding: 0 15px;
	font-size: 16px;
}
.youhua_banner .xitong_text .sousuo .b{
	float: right;
	width: 169px;
	height: 65px;
	background: url(../images/xitong_btn.jpg) no-repeat center center;
	border: none;
}
.youhua_banner .xitong_text .bottom p{
	font-size: 20px;
	line-height: 30px;
	margin-top: 0;
}

/**2019-6-21**/
.banner{
	width: 1920px;
	position: relative;
	left: 50%;
	margin-left: -960px;
}
.banner .box{
	position: relative;
}

.banner .box .img1{
	width: 100%;
	line-height: 0;
}

.banner .box .b_img{
	position: absolute;
	right: 0;
	top: 0;
	width: 67.4479%;
	line-height: 0;
	z-index: 2;
}

.banner .box .text_con{
	position: absolute;
	z-index: 2;
	left: 17.05%;
}

.banner .box .con1{
	top: 152px;
	width: 45.98958%;
}

.banner .box .con2{
	top: 230px;
	width: 23%;
}

.banner .box .con3{
	position: absolute;
	top: 170px;
	z-index: 2;
	width: 31%;
}
.banner .box .text_con .b1{
	line-height: 0;
	display: block;
}
.banner .box .con3 .btn{
	margin-top: 55px;
}
.banner .box .con3 .btn a{
	display: inline-block;
	border: 2px solid #dddded;
	border-radius: 50px;
	line-height: 42px;
	color: #fff;
	width: 150px;
	text-align: center;
	float: left;
	margin-right: 8px;
}
.banner .box .con3 .btn2 a{
	color: #666666;
}
.banner .box .img4{
	position: absolute;
	right: 17.05%;
	bottom: 0;
	width: 39.79%;
	line-height: 0;
}
.banner .box .img5{
	position: absolute;
	right: 12.1875%;
	bottom: 0;
	width: 36.9%;
	line-height: 0;
	z-index: 3;
}
.banner .box .img6{
	position: absolute;
	right: 36.9%;
	bottom: 0;
	width: 27.34375%;
	line-height: 0;
}

.left_animate {
  	/*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);
  	-webkit-transition: transform 1.5s , opacity 1.5s;
    -moz-transition: transform 1.5s , opacity 1.5s;
    -ms-transition: transform 1.5s , opacity 1.5s;
    -o-transition: transform 1.5s , opacity 1.5s;
    transition: transform 1.5s , opacity 1.5s;
}
.img_animate{
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.img_zoom{
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: transform 3s , opacity 1.5s;
    -moz-transition: transform 3s , opacity 1.5s;
    -ms-transition: transform 3s , opacity 1.5s;
    -o-transition: transform 3s , opacity 1.5s;
    transition: transform 3s , opacity 1.5s;
}

.bottom_animate {
  	/*opacity: 0;*/
  	-webkit-transform: translateY(100%);
  	-moz-transform: translateY(100%);
  	-ms-transform: translateY(100%);
  	-o-transform: translateY(100%);
  	transform: translateY(100%);
}
.bottom_animate2 {
  	opacity: 1;
  	-webkit-transform: translateY(0);
  	-moz-transform: translateY(0);
  	-ms-transform: translateY(0);
  	-o-transform: translateY(0);
  	transform: translateY(0);
  	-webkit-transition: transform 1.5s , opacity 0.5s;
    -moz-transition: transform 1.5s , opacity 0.5s;
    -ms-transition: transform 1.5s , opacity 0.5s;
    -o-transition: transform 1.5s , opacity 0.5s;
    transition: transform 1.5s , opacity 0.5s;
}

.bottom_animate3 {
  	/*opacity: 0;*/
  	-webkit-transform: translateY(100%);
  	-moz-transform: translateY(100%);
  	-ms-transform: translateY(100%);
  	-o-transform: translateY(100%);
  	transform: translateY(100%);
}
.bottom_animate4 {
  	opacity: 1;
  	-webkit-transform: translateY(0);
  	-moz-transform: translateY(0);
  	-ms-transform: translateY(0);
  	-o-transform: translateY(0);
  	transform: translateY(0);
  	-webkit-transition: transform 1.5s , opacity 0.5s;
    -moz-transition: transform 1.5s , opacity 0.5s;
    -ms-transition: transform 1.5s , opacity 0.5s;
    -o-transition: transform 1.5s , opacity 0.5s;
    transition: transform 1.5s , opacity 0.5s;
}

.img_weiyi{
	-webkit-transform: translateY(100%);
  	-moz-transform: translateY(100%);
  	-ms-transform: translateY(100%);
  	-o-transform: translateY(100%);
  	transform: translateY(100%);
	
}
.img_weiyi2{
	-webkit-transform: translateY(0);
  	-moz-transform: translateY(0);
  	-ms-transform: translateY(0);
  	-o-transform: translateY(0);
  	transform: translateY(0);
	opacity: 1;
    -webkit-transition: transform 1.5s , opacity 1.5s;
    -moz-transition: transform 1.5s , opacity 1.5s;
    -ms-transition: transform 1.5s , opacity 1.5s;
    -o-transition: transform 1.5s , opacity 1.5s;
    transition: transform 1.5s , opacity 1.5s;
}

/*yuqing*/
/**2019-7-2**/
.yuqing_box{
	padding: 80px 0 90px;
	background: url(../images/yuqing_bg.jpg) no-repeat center bottom;
}
.yuqing_box ol{
	margin-top: 60px;
}
.yuqing_box ol li{
	float: left;
	width: 33.333%;
	border-bottom: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	padding: 50px;
}
.yuqing_box ol li:nth-child(3n){
	border-right: none;
	padding-right: 0;
}
.yuqing_box ol li:first-child,.yuqing_box ol li:nth-child(2),
.yuqing_box ol li:nth-child(3){
	padding-top: 0;
}
.yuqing_box ol li:nth-child(4),.yuqing_box ol li:nth-child(5),
.yuqing_box ol li:nth-child(6){
	padding-bottom: 0;
	border-bottom: none;
}
.yuqing_box ol li:first-child,
.yuqing_box ol li:nth-child(4){
	padding-left: 0;
}

.yuqing_box ol li .icon{
	height: 50px;
	line-height: 0;
	margin-bottom: 12px;
}
.yuqing_box ol li h3{
	color: #232323;
	font-size: 18px;
	margin-bottom: 10px;
}
.yuqing_box ol li p{
	color: #666666;
	font-size: 15px;
	height: 72px;
	line-height: 24px;
}
.yuqing_box2{
	background: url(../images/yuqing_bg2.jpg) no-repeat center center;
	height: 679px;
	/* padding-top: 125px; */
	padding-top: 190px;
}
.yuqing_box2 ol{
	text-align: center;
	margin-top: 45px;
}
.yuqing_box2 ol li{
	display: inline-block;
	padding: 0 20px;
	border-right: 1px solid rgba(255,255,225,.2);
}
.yuqing_box2 ol li:last-child{
	border-right: none;
}
.yuqing_box2 ol li .icon{
	height: 30px;
	line-height: 0;
	margin-bottom: 5px;
}
.yuqing_box2 ol li p{
	color: #fff;
	font-size: 15px;
}
.yuqing_box2 .textbox{
	margin-top: 40px;
	color: #fff;
	font-size: 16px;
	line-height: 30px;
	padding: 0 120px;
	text-align: center;
}
.yuqing_box3{
	padding: 80px 0 90px;
}
.yuqing_box3 ol{
	margin-top: 40px;
}
.yuqing_box3 ol li{
	float: left;
	width: 307px;
	position: relative;
	margin-right: 10px;
}
.yuqing_box3 ol li:last-child{
	margin-right: 0;
}
.yuqing_box3 ol li .img{
	line-height: 0;
}
.yuqing_box3 ol li .text{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0,0,0,.3);
	color: #fff;
	font-size: 15px;
	line-height: 24px;
	padding: 20px 25px;
}
.yuqing_box4{
	background: url(../images/yuqing_bg3.jpg) no-repeat center center;
	height: 833px;
	padding-top: 80px;
}
.yuqing_box4 .box{
	position: relative;
}
.yuqing_box4 .box .img{
	width: 460px;
	line-height: 0;
	margin: 50px auto 0;
}
.yuqing_box4 .box ol{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding-top: 55px;
}
.yuqing_box4 .box ol li{
	float: left;
	width: 100%;
	width: 520px;
	min-height: 84px;
	margin-bottom: 55px;
}
.yuqing_box4 .box ol li .icon{
	float: left;
	width: 68px;
	line-height: 0;
}
.yuqing_box4 .box ol li .text{
	float: right;
	width: 432px;
	margin-top: 12px;
}
.yuqing_box4 .box ol li .text h3{
	color: #333333;
	font-size: 18px
}
.yuqing_box4 .box ol li .text p{
	color: #333333;
	font-size: 15px;
	line-height: 24px;
}
.yuqing_box4 .box ol li:nth-child(2n-1) .icon{
	float: right;
}
.yuqing_box4 .box ol li:nth-child(2n-1) .text{
	text-align: right;
	float: left;
}
.yuqing_box4 .box ol li:nth-child(2n){
	float: right;
}
.yuqing_box4 .box ol li:nth-child(3),
.yuqing_box4 .box ol li:nth-child(4){
	width: 460px;
}
.yuqing_box4 .box ol li:nth-child(3) .text,
.yuqing_box4 .box ol li:nth-child(4) .text{
	width: 375px;
}
.yuqing_box4 .box ol li:last-child{
	width: 306px;
	margin-left: 475px;
	margin-top: -70px;
}
.yuqing_box4 .box ol li:last-child .icon{
	float: none;
	margin: 0 auto;
}
.yuqing_box4 .box ol li:last-child .text{
	float: none;
	text-align: center;
	width: auto;
}

.yuqing_box5{
	padding: 80px 0 90px;
}
.yuqing_box5 ol{
	margin-top: 40px;
}
.yuqing_box5 ol li{
	float: left;
	width: 407px;
	margin-right: 19px;
}
.yuqing_box5 ol li:last-child{
	margin-right: 0;
}
.yuqing_box5 ol li .img{
	line-height: 0;
}
.yuqing_box5 ol li .text{
	padding-top: 15px;
}
.yuqing_box5 ol li .text h3{
	color: #333333;
	font-size: 16px;
	font-weight: normal;
	overflow: hidden;
  	text-overflow: ellipsis;
  	white-space: nowrap;
}
.yuqing_box5 ol li .text p{
	margin-top: 5px;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	font-size: 14px;
	color: #666;
}

.youhua_banner .text h4 {
    font-size: 34px;
    font-weight: normal;
		color: #fff;
}

/* .youhua_banner .text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #fff;
    height: 100%;
    text-align: left;
    padding-top: 8vw;
		margin-left: 0;
    background: url(../images/yuqing_ban_bg.png) no-repeat left center;
}
 */
.youhua_banner .text h3 {
    font-size: 46px;
    font-weight: normal;
    letter-spacing: 2px;
    margin-top: 12px;
}

.youhua_banner .text .yw {
    font-size: 15px;
    text-transform: uppercase;
    opacity: 0.5;
    letter-spacing: 2px;
    margin-top: 12px;
}

.youhua_banner .text i {
    display: block;
    width: 66px;
    height: 2px;
    background: #fff;
    opacity: 0.2;
    margin: 26px 0;
}

.youhua_banner .text .t {
    font-size: 24px;
}

.youhua_banner .text .img01 {
    line-height: 0;
    margin-top: 40px;
}

.nav-box .dropdown-menu li.item114{
	background-color: #2A57AA;
}

.nav-box .dropdown-menu li.item102 s{
	    border-top: 8px solid #1E468C;
}


.nav-box .dropdown-menu li.item102{
	  background-color: #1E468C;
}

.nav-box .dropdown-menu li.item103{
	background-color: #2A57AA;
}

.nav-box .dropdown-menu li.item104{
 background-color: #1E468C;
}

.nav-box .dropdown-menu li.item104 s{
 border-top: 8px solid #1E468C;

}

body{
max-width: 100%;
margin-left: auto;
margin-right: auto;	
}

.youhua_banner{
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;	
}



/**2019-6-21**/
.banner{
	width: 1920px;
	/*height: 665px;*/
	height: 750px;
	position: relative;
	left: 50%;
	margin-left: -960px;
	overflow: hidden;
}
.banner .slick-arrow{
	width: 48px;
	height: 48px;
	border: none;
	margin-top: -24px;
}
.banner .slick-prev{
	left: 60px;
	background: url(../images/index_prev2.png) no-repeat center center;
}
.banner .slick-next{
	right: 60px;
	background: url(../images/index_next2.png) no-repeat center center;
}
.banner .box{
	position: relative;
}

.banner .box .img1{
	width: 100%;
	line-height: 0;
}

.banner .box .b_img{
	position: absolute;
	right: 0;
	top: 0;
	width: 67.4479%;
	line-height: 0;
	z-index: 2;
}

.banner .box .text_con{
	position: absolute;
	z-index: 2;
	left: 17.05%;
}

.banner .box .con1{
	top: 152px;
	width: 45.98958%;
}

.banner .box .con2{
	top: 230px;
	width: 23%;
}

.banner .box .con3{
	position: absolute;
	top: 170px;
	z-index: 2;
	width: 31%;
}
.banner .box .text_con .b1{
	line-height: 0;
	display: block;
}
.banner .box .con3 .btn{
	margin-top: 55px;
}
.banner .box .con3 .btn a{
	display: inline-block;
	border: 2px solid #dddded;
	border-radius: 50px;
	line-height: 42px;
	color: #fff;
	width: 150px;
	text-align: center;
	float: left;
	margin-right: 8px;
}
.banner .box .con3 .btn2 a{
	color: #666666;
}
.banner .box .img4{
	position: absolute;
	right: 25.5%;
	bottom: 0;
	width: 38%;
	line-height: 0;
	z-index: 2;
}
.banner .box .img7{
	position: absolute;
	right: 13%;
	bottom: 0;
	width: 38.6458%;
	line-height: 0;
}
.banner .box .img5{
	position: absolute;
	right: 12.1875%;
	bottom: 0;
	width: 36.9%;
	line-height: 0;
	z-index: 3;
}
.banner .box .img6{
	position: absolute;
	right: 36.9%;
	bottom: 0;
	width: 27.34375%;
	line-height: 0;
}

.left_animate {
  	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);
  	-webkit-transition: transform 1.5s , opacity 1.5s;
    -moz-transition: transform 1.5s , opacity 1.5s;
    -ms-transition: transform 1.5s , opacity 1.5s;
    -o-transition: transform 1.5s , opacity 1.5s;
    transition: transform 1.5s , opacity 1.5s;
}
.img_animate{
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.img_zoom{
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: transform 3s , opacity 1.5s;
    -moz-transition: transform 3s , opacity 1.5s;
    -ms-transition: transform 3s , opacity 1.5s;
    -o-transition: transform 3s , opacity 1.5s;
    transition: transform 3s , opacity 1.5s;
}

.bottom_animate {
  	opacity: 0;
  	-webkit-transform: translateY(100%);
  	-moz-transform: translateY(100%);
  	-ms-transform: translateY(100%);
  	-o-transform: translateY(100%);
  	transform: translateY(100%);
}
.bottom_animate2 {
  	opacity: 1;
  	-webkit-transform: translateY(0);
  	-moz-transform: translateY(0);
  	-ms-transform: translateY(0);
  	-o-transform: translateY(0);
  	transform: translateY(0);
  	-webkit-transition: transform 1.5s , opacity 0.5s;
    -moz-transition: transform 1.5s , opacity 0.5s;
    -ms-transition: transform 1.5s , opacity 0.5s;
    -o-transition: transform 1.5s , opacity 0.5s;
    transition: transform 1.5s , opacity 0.5s;
}

.bottom_animate3 {
  	opacity: 0;
  	-webkit-transform: translateY(100%);
  	-moz-transform: translateY(100%);
  	-ms-transform: translateY(100%);
  	-o-transform: translateY(100%);
  	transform: translateY(100%);
}
.bottom_animate4 {
  	opacity: 1;
  	-webkit-transform: translateY(0);
  	-moz-transform: translateY(0);
  	-ms-transform: translateY(0);
  	-o-transform: translateY(0);
  	transform: translateY(0);
  	-webkit-transition: transform 1.5s , opacity 0.5s;
    -moz-transition: transform 1.5s , opacity 0.5s;
    -ms-transition: transform 1.5s , opacity 0.5s;
    -o-transition: transform 1.5s , opacity 0.5s;
    transition: transform 1.5s , opacity 0.5s;
}

.img_weiyi{
	-webkit-transform: translateY(100%);
  	-moz-transform: translateY(100%);
  	-ms-transform: translateY(100%);
  	-o-transform: translateY(100%);
  	transform: translateY(100%);
	
}
.img_weiyi2{
	-webkit-transform: translateY(0);
  	-moz-transform: translateY(0);
  	-ms-transform: translateY(0);
  	-o-transform: translateY(0);
  	transform: translateY(0);
	opacity: 1;
    -webkit-transition: transform 1.5s , opacity 1.5s;
    -moz-transition: transform 1.5s , opacity 1.5s;
    -ms-transition: transform 1.5s , opacity 1.5s;
    -o-transition: transform 1.5s , opacity 1.5s;
    transition: transform 1.5s , opacity 1.5s;
}



.fr .lia .h3{
float: left;
color: rgb(229, 51, 51);
font-weight: bold;
font-size: 18px;
}
.fr .lia .h4{
    float: left;
    font-weight: bold;
    font-size: 18px;
}