/* -------------------------------- 

Primary style

-------------------------------- */
* {
    margin: 0px;
    padding: 0px;
    outline: none !important;
}
body, li, ul, ol, dl, dt, dd, form, input, textarea, h1, h2, h3, h4, h5, h6, p, select {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    font-size: 12px;
    font: 14px/1.6 "Microsoft Yahei", "Open Sans", sans-serif;
    outline: 0 none;
    color: #333;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{ text-decoration: none;}

:after, :before {
    box-sizing: inherit;
    -moz-box-sizing: inherit;
}
/* -------------------------------- 

1. Auto-Hiding Navigation - Simple

-------------------------------- */

 .b-sub-nav {
     background: #4082bb;
     -webkit-box-shadow: 0 4px 12px 0 rgba(20, 20, 20, .5);
     box-shadow: 0 4px 12px 0 rgba(20, 20, 20, .5);
     position: fixed;
     z-index: 0;
     top: 120px;
     left: 0;
     width: 100%;
 }

 .b-sub-nav-center {
     max-width: 1200px;
     margin: 0 auto;
 }

 .b-sub-nav .list {
	width:100%;
	list-style: none;
	display: block;
	text-align: center;
	justify-content: space-around;
	margin:0 !important;
 }

 .b-sub-nav .itemli {
     -webkit-transition: all .3s ease;
     transition: all .3s ease;
     width:11.11%;
     float:left;
 }
 .b-sub-nav:after{clear:both;content:'';display:block;}

 .b-sub-nav .itemli.active, .b-sub-nav .itemli:hover {
     background: #aaa;
 }

 .b-sub-nav .itemli a {
     padding: 15px 0;
	 line-height:100%;
	 font-size:14px;
     display: block;
     color: #fff;
     opacity: .8;
     -webkit-transition: all .3s ease;
     transition: all .3s ease;
 }

 .b-sub-nav .itemli:last-of-type a {
     padding-right: 0px;
 }

 .b-sub-nav .itemli:hover a {
     opacity: 1;
 }

 .b-sub-nav .itemli.active a {
     opacity: 1;
 }
 
 
.cd-auto-hide-header {
  position:absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height:70px;
  background-color: #ffffff;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.cd-auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media only screen and (min-width: 1024px) {
  .cd-auto-hide-header {
      	position: fixed;
   	width: 100%;
	height:70px;
	background-color: #fff;
	clear: left;
	border-bottom: 1px solid #e6e6e6;

  }
}

.cd-auto-hide-header .logo,
.cd-auto-hide-header .nav-trigger {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cd-auto-hide-header .logo2,
.cd-auto-hide-header .nav-trigger {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cd-auto-hide-header .logo {
   width: 554px;
    float: left;
    text-align: left;
    padding: 10px;
    margin-bottom: -18px;
}


.cd-auto-hide-header .logo2 {
   width: 227px;
    float: left;
    text-align: left;
}
.cd-auto-hide-header .logo a, .cd-auto-hide-header .logo img {
  display: block;
}
.logo2 img {
  display: block; margin-left:227px;
}

.cd-auto-hide-header .nav-trigger {
  /* vertically align its content */
  display: table;
  height: 100%;
  padding: 0 1em;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #25283D;
  font-weight: bold;
  right: 0;
  border-left: 1px solid #f2f2f2;
}
.cd-auto-hide-header .nav-trigger span {
  /* vertically align inside parent element */
  display: table-cell;
  vertical-align: middle;
}
.cd-auto-hide-header .nav-trigger em, .cd-auto-hide-header .nav-trigger, .cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon */
  display: block;
  position: relative;
  height: 2px;
  width: 22px;
  background-color: #25283D;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.cd-auto-hide-header .nav-trigger em {
  /* this is the menu central line */
  margin: 6px auto 14px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}
.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger {
  position: absolute;
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}
.cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon top line */
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
}
.cd-auto-hide-header .nav-trigger  {
  /* this is the menu icon bottom line */
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}
@media only screen and (min-width: 1024px) {
  .cd-auto-hide-header .nav-trigger {
    display: none;
  }
}

.cd-auto-hide-header.nav-open .nav-trigger  {
  /* transform menu icon into a 'X' icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-auto-hide-header.nav-open .nav-trigger em::before {
  /* rotate top line */
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cd-auto-hide-header.nav-open .nav-trigger  {
  /* rotate bottom line */
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-primary-nav {
  display: inline-block;
  float: right;
  height: 100%;
  padding-right: 5%;
}
.cd-primary-nav > ul {
  position: absolute;
  z-index: 2;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: none;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.2);
}
.cd-primary-nav > ul a {
  /* target primary-nav links */
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  color: #25283D;
  font-size: 1.8rem;
  border-top: 1px solid #f2f2f2;
}
.cd-primary-nav > ul a:hover, .cd-primary-nav > ul a.active {
  color: #8F3985;
}
@media only screen and (min-width: 1024px) {
  .cd-primary-nav {
    /* vertically align its content */
    display: table;
  }
  .cd-primary-nav > ul {
    /* vertically align inside parent element */
    display: table-cell;
    vertical-align: middle;
    /* reset mobile style */
    position: relative;
    width: auto;
    top: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
 
  .cd-primary-nav > ul li {
    display: inline-block;
    float: left;
    margin-right: 1.5em;
  }
  .cd-primary-nav > ul li:last-of-type {
    margin-right: 0;
  }
  .cd-primary-nav > ul a {
    /* reset mobile style */
    height: auto;
    line-height: normal;
    padding: 0;
    border: none;
  }
}

.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
  /* 
  	show primary nav - mobile only 
  	:target is used to show navigation on no-js devices
  */
  display: block;
}
@media only screen and (min-width: 1024px) {
  .nav-open .cd-primary-nav ul,
  .cd-primary-nav ul:target {
    display: table-cell;
  }
}

/* -------------------------------- 

2. Auto-Hiding Navigation - with Sub Nav

-------------------------------- */
.cd-secondary-nav {
  position: relative;
  z-index: 1;
  clear: both;
  width: 100%;
  height: 50px;
  background-color: #20a3dd;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}


.cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
 /* height: 100%;*/
}
.cd-secondary-nav ul {
  
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  
  -webkit-overflow-scrolling: touch;
	max-width: 1200px;
	width:100%;
    margin: auto;
}

.cd-secondary-nav li {
  display: inline-block;
  float: left;
  /* do not shrink - elements float on the right of the element */
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.cd-secondary-nav li:last-of-type {
  
}
.cd-secondary-nav a {
  display: block;
  color: #ffffff;
  opacity: .9;
  line-height: 50px;
  /*padding: 0 1em;*/
}
.cd-secondary-nav a:hover, .cd-secondary-nav a.active {
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  .cd-secondary-nav {
    height: 50px;
    overflow: visible;
  }
  .cd-secondary-nav ul {
    /* reset mobile style */
    display: block;
    text-align: center;
  }
  .cd-secondary-nav li {
    /* reset mobile style */
    float: none;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
  }
  .cd-secondary-nav a {
    line-height: 50px;
  }
  .cd-secondary-nav a.active {
    box-shadow: inset 0 -3px #8F3985;
  }
}

/* -------------------------------- 

3. Auto-Hiding Navigation - with Sub Nav + Hero Image

-------------------------------- */
.cd-secondary-nav.fixed {
  position: fixed;
  top: 60px;
}
.cd-secondary-nav.slide-up {
  -webkit-transform: translateY(-60px);
      -ms-transform: translateY(-60px);
          transform: translateY(-60px);
}
@media only screen and (min-width: 1024px) {
  .cd-secondary-nav.fixed {
    top: 80px;
    /* fixes a bug where nav and subnab move with a slight delay */
    box-shadow: 0 -6px 0 #25283D;
  }
  .cd-secondary-nav.slide-up {
    -webkit-transform: translateY(-80px);
        -ms-transform: translateY(-80px);
            transform: translateY(-80px);
  }
}

/* -------------------------------- 

Main content

-------------------------------- */
.cd-main-content {
  
width: 100%;
  overflow: hidden;
}
.cd-main-content.sub-nav {
  /* to be used if there is sub nav */
  padding-top: 164px;
}
.cd-main-content.sub-nav-hero {
  /* to be used if there is hero image + subnav */
  padding-top: 0;
}
.cd-main-content.sub-nav-hero.secondary-nav-fixed {
  margin-top: 50px;
}
.cd-main-content p {
  max-width: 1024px;
  line-height: 1.6;
  margin: 2em auto;
  /*font-family: "David Libre", serif;*/
  color: #a5a8a9;
}
@media only screen and (min-width: 1024px) {
  .cd-main-content {
    padding-top: 80px;
  }
  .cd-main-content.sub-nav {
    padding-top: 164px;
  }
  .cd-main-content.sub-nav-hero.secondary-nav-fixed {
    margin-top: 70px;
  }
  .cd-main-content p {
    font-size: 2.4rem;
  }
}

/*
	adjust the positioning of in-page links
	http://nicolasgallagher.com/jump-links-and-viewport-positioning/
*/
.cd-main-content.sub-nav :target::before,
.cd-main-content.sub-nav-hero :target::before {
  display: block;
  content: "";
  margin-top: -50px;
  height: 50px;
  visibility: hidden;
}
@media only screen and (min-width: 1024px) {
  .cd-main-content.sub-nav :target::before,
  .cd-main-content.sub-nav-hero :target::before {
    margin-top: -70px;
    height: 70px;
  }
}

/* -------------------------------- 

Intro Section

-------------------------------- */

.header_top {max-width: 1200px;	margin: auto;width:100%;}
.biaoyu {
	width: 650px;
    /*background-color: #333;*/
    height: 70px;
    float: right;
}
.p_biaoyu {text-align: right;padding-top: 30px;font-size: 16px;}
.by_z1 {font-size: 17px;color: #20a3dd;font-weight:600;}
.by_y1 {font-size: 17px;font-family: 'DIN';  color: #666;padding-right:20px}
.by_y1 a{color: #666;}
.by_y1 i{padding-right:10px;color: #4082bb;}
.by_y12 {font-size: 17px;font-family: 'DIN'; font-weight:600; color: #20a3dd; padding-right: 20px;}
.by_y12 a{color: #20a3dd;}
.by_y12 i{padding-right:10px;color: #4082bb;}


.nav_xllj {
	background-image: url(../images/bysoft/img_2018/xlb.png);
	background-repeat: no-repeat;
	margin-top: 10px;
    height: 33px;
    text-align: left;
    background-position: 79px 15px;
    padding-left: 96px;
	
}

.nav_xllj a{    height: 40px;
    display: initial;
    line-height: 40px;
    color: #191919;
    font-size: 15px;
    padding-left: 0px;
    text-decoration: none;}

.nav_xllj a:hover{color: #4082bb;}

/* 焦点图 slide 开始*/
.slide-main{height:580px;position:relative;}
.prev,.next{display:block;width:44px;height:44px;position:absolute;z-index:222;top:267px;overflow:hidden;cursor:pointer;opacity:0.6;-moz-opacity:0.6;filter:alpha(opacity=60);_border:1px solid none;}
.prev{left:70px;}
.next{right:70px;}
.prev:hover,.next:hover,.nav-main a:hover,.nav-main a.cur{opacity:1;-moz-opacity:1;filter:alpha(opacity=100);}
.item{display:block;width:100%;height:5px;position:absolute;z-index:124;top:540px;left:0;text-align:center;}
.item a{display:inline-block;width:24px;height:5px;margin-right:11px;background:#444;opacity:0.3;-moz-opacity:0.3;filter:alpha(opacity=30);overflow:hidden;}
.item a.cur{background:#fff;}
.slide-box,.slide{display:block;width:100%;height:580px;overflow:hidden;}
.slide-box{position:relative;}
.slide{display:none;height:491px;padding-top:69px;padding-bottom: 20px; background:#ff6900;position:relative;position:absolute;z-index:8;}
#bgstylea{
	background-image: url(../images/121.png);
	background-color: #1F2531;
}
#bgstyleb{
	background-color: #001836;
	background-image: url(../images/j3.png);
	background-position: center center;
	background-repeat: no-repeat;
}
#bgstylec{background:#000;background-image: url(../images/bysoft/img_2018/rlzy_tab_bg.png);
	background-position: center center;
	background-repeat: no-repeat;}
.slide a{display:block;width:100%;height:490px;cursor:pointer;}
.obj-a,.obj-b,.obj-c,.obj-d,.obj-e,.obj-f{position:absolute;z-index:9;left:50%;}
.obj-a,.obj-b{width:952px;margin-left:-476px;text-align:center;}
.obj-a{display:block;height:352px;top:100px;}
.obj-b{top:406px;height:100px;}
.obj-c{display:block;height:582px;top:0;margin-left:-540px;}
.obj-d{top:228px;height:164px;}
.obj-d p{display:block;padding-top:20px;font-size:16px;color:#fff;clear:both;}
.obj-e{width:366px;height:170px;margin-left:-460px;top:130px;z-index:12;}
.obj-f{width:692px;height:394px;top:105px;margin-left:-180px;}
.banAnimate .obj-a{display:block;animation-name:baoAni;-webkit-animation:baoAni 0.4s linear 0s normal none;-moz-animation:baoAni 0.4s linear 0s normal none;animation:baoAni 0.4s linear 0s normal none;}
@-webkit-keyframes baoAni{from{opacity:0;left:60%;} to{opacity:1;left:50%;} }
@-moz-keyframes baoAni{from{opacity:0;left:60%;} to{opacity:1;left:50%;} }
@keyframes baoAni{from{opacity:0;left:60%;} to{opacity:1;left:50%;} }
.banAnimate .obj-b{display:block;animation-name:saAni;-webkit-animation:saAni 0.4s linear 0s normal none;-moz-animation:saAni 0.4s linear 0s normal none;animation:saAni 0.4s linear 0s normal none;}
@-webkit-keyframes saAni{from{opacity:0;-webkit-transform:scale(0,0);} to{opacity:1;-webkit-transform:scale(1,1);} }
@-moz-keyframes saAni{from{opacity:0;-moz-transform:scale(0,0);} to{opacity:1;-moz-transform:scale(1,1);} }
@keyframes saAni{from{opacity:0;transform:scale(0,0);} to{opacity:1;transform:scale(1,1);} }
.watch-code.code-show{display:block;animation-name:scode;-webkit-animation:scode 0.3s linear 0s normal none;-moz-animation:scode 0.3s linear 0s normal none;animation:scode 0.3s linear 0s normal none;}
@-webkit-keyframes scode{from{opacity:0;-webkit-transform:scale(1,0);transform-origin:left bottom;} to{opacity:1;-webkit-transform:scale(1,1); transform-origin: left bottom;} }
@-moz-keyframes scode{from{opacity:0;-moz-transform:scale(1,0); transform-origin:left bottom;} to{opacity:1;-moz-transform:scale(1,1);transform-origin:bottom bottom;} }
@keyframes scode{from{opacity:0;transform:scale(1,0);transform-origin:left bottom;} to{opacity:1;transform:scale(1,1);transform-origin: left bottom;} }
.banAnimate .obj-c,.banAnimate .obj-e{display:block;animation-name:saAnic;-webkit-animation:saAnic 0.3s linear 0s normal none;-moz-animation:saAnic 0.3s linear 0s normal none;animation:saAnic 0.3s linear 0s normal none;}
@-webkit-keyframes saAnic{from{opacity:0;left:47%;} to{opacity:1;left:50%;} }
@-moz-keyframes saAnic{from{opacity:0;left:47%;} to{opacity:1;left:50%;} }
@keyframes saAnic{from{opacity:0;left:47%;} to{opacity:1;left:50%;} }
.banAnimate .obj-d,.banAnimate .obj-f{display:block;animation-name:saAnid;-webkit-animation:saAnid 0.3s linear 0s normal none;-moz-animation:saAnid 0.3s linear 0s normal none;animation:saAnid 0.3s linear 0s normal none;}
@-webkit-keyframes saAnid{from{opacity:0;left:53%;} to{opacity:1;left:50%;} }
@-moz-keyframes saAnid{from{opacity:0;left:53%;} to{opacity:1;left:50%;} }
@keyframes saAnid{from{opacity:0;left:53%;} to{opacity:1;left:50%;} }

/* 焦点图 slide 结束*/

/*焦点图下链接位 开始*/
.w {
    width: 1200px;
    margin: 0 auto;
}
.operatingTop-v2 {
    background:#0f66d4;
    height: 110px;
}

.operatingTop .opTop-item {
	position: relative;
	float: left;
	width: 297px;
	height: 180px;
	text-align: center;
	border-right: 1px solid #1950cc;
}
.operatingTop-v2 .opTop-item {
    height: 110px;
    text-align: left;
}
.operatingTop .opTop-item>a {
    position: relative;
    display: block;
    height: 177px;
    border-bottom: 3px solid transparent;
    
}
.operatingTop-v2 .opTop-item>a {
    height: 80px;
    border-bottom: 0;
    padding: 30px 0 0 94px;
}
.operatingTop-v2 .opTop-item>a:hover{ background-color: #004bb3;}
.operatingTop .opTop-img {
    position: relative;
    padding-top: 27px;
    height: 74px;
    line-height: 74px;
    overflow: hidden;
}
.operatingTop-v2 .opTop-img {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    padding-top: 0;
}

.operatingTop-v2 .opTop-img .opTop-imgBg {
    top: 2px;
    left: 2px;
    margin-left: 0;
    width: 42px;
    height: 42px;
    border: 1px solid #fff;
    border: 1px solid hsla(0,0%,100%,.8);
    border-radius: 100%;
  
}
.operatingTop-v2 .opTop-item .opTop-imgBg {
    background: 0 0;
}
.operatingTop .opTop-img img {
    max-width: 74px;
    max-height: 74px;
   
}
.operatingTop-v2 .opTop-img img {
    max-width: 46px;
    max-height: 46px;
    vertical-align: top;
}
.operatingTop .opTop-item .opTop-title {
    padding-top: 15px;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 1;
    color: #34509a;
}
.operatingTop-v2 .opTop-item .opTop-title {
    color: #fff;
    padding: 2px 0 5px;
    font-size: 18px;
	font-weight: 400;
}
.operatingTop-v2 .opTop-item .opTop-descipt {
    color: #fff;
    opacity: 1;
    filter: alpha(opacity=100);
	font-size: 14px;
	margin: auto;
}

/*焦点图下链接位 结束*/

/*产品系列 开始*/
.w-1200{ width: 1200px; margin: auto;text-align: center;}
.w-1200 h3{font-size: 32px;color: #3C3C3C;
    height: 40px;
    line-height: 40px;
    padding: 25px 0 15px;}





.SolutionTab-main .list ul li{position: relative; float: left;width: 25%;padding-top:15%;}

.SolutionTab-main .list ul li a{ display: block; width:calc(100% - 1px);height: 100%; position: absolute;top: 0;left:0;border-right: 1px solid #eee;border-top: 1px solid #eee; }

.SolutionTab-main .list ul li a span{ font-size:20px; color:#d4d4d4; text-align:center; position:absolute;display:block; z-index:9;width:100%; top:125px;}
.SolutionTab-main .list ul li a:hover span{ color:#fff; }

.SolutionTab-main .list ul li:nth-child(1) a,
.SolutionTab-main .list ul li:nth-child(2) a,
.SolutionTab-main .list ul li:nth-child(3) a,
.SolutionTab-main .list ul li:nth-child(4) a{ border-top: none; }
.SolutionTab-main .list ul li:nth-child(2n) a,
.SolutionTab-main .list ul li:nth-child(3n) a{border-right-color:#eee;}
.SolutionTab-main .list ul li:nth-child(4n) a{border-right-color: transparent; }
.SolutionTab-main ul li .imgBox{display: none;}
.SolutionTab-main ul li a:hover .imgBox{display: block;}
.SolutionTab-main ul li .imgBox {
	display: none;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}



.service-wrapper {
    max-width: 1210px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
.section-head {
    max-width: 1210px;
    padding: 60px 15px 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
	/*border-bottom: 1px solid #dcdcdc;*/
    padding-bottom: 10px;
}
.section-head h2 {
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #20a3dd;
}
.section-head p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #999;
}
.service-body {
    overflow: hidden;
    background: #fff;
    border-radius: 2px;
     box-shadow: 0px 5px 15px 0px rgba(0,0,0,.06); 
}
.service-item {
    position: relative;
    float: left;
    height: 250px;
    width: 25%;
    padding-top: 68px;
	
    top: 0;
    transition: top .2s linear,box-shadow .2s linear;
}

.service-item:hover{
box-shadow: 0 6px 18px 0 rgba(0,0,0,0.11);
    top: -10px;
}

.service-item>a {
    display: block;
    width: 90px;
    margin-left: auto;
    margin-right: auto;
}
.service-item i {
    display: block;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background-size: 100% 100%;
}
.service-icon-basesoft {
    background-image: url(../images/bysoft/img_2018/icon-businesssoft.svg);
}
.service-icon-businessSoft {
    background-image: url(../images/bysoft/img_2018/icon-basesoft.svg);
}
.service-icon-profession {
    background-image: url(../images/bysoft/img_2018/icon-profession.svg);
}
.service-icon-basesoft2 {
    background-image: url(../images/bysoft/img_2018/icon-datalib.svg);
}


.index_htgl_i {
    background-image: url( ../images/bysoft/img_2018/icon-htgl.svg);
}
.index_fygl_i {
    background-image: url( ../images/bysoft/img_2018/icon-fygl.svg);
}
.index_xmgl_i {
    background-image: url( ../images/bysoft/img_2018/icon-xmgl.svg);
}
.index_jhgl_i {
    background-image: url( ../images/bysoft/img_2018/icon-jhgl.svg);
}
.index_zjgl_i {
    background-image: url( ../images/bysoft/img_2018/icon-zjgl.svg);
}
.index_czgl_i {
    background-image: url( ../images/bysoft/img_2018/icon-czgl.svg);
}
.index_ehrgl_i {
    background-image: url( ../images/bysoft/img_2018/icon-ehrgl.svg);
}
.index_xtjc_i {
    background-image: url( ../images/bysoft/img_2018/icon-xtjc.svg);
}






.service-item h2 {
    margin-top: 16px;
    margin-bottom: 26px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #282820;
}
.service-list {
    font-size: 0;
    text-align: center;
	width: 250px;
    margin: auto;
}
.service-list>li {
    display: inline;
}
.service-list>li+li:before, .service-list>li>a {
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    color: #999;
}
.service-list>li>a:hover {
    color: #4082bb;
}
.service-item a:hover h2 {
    color: #4082bb;
}
.service-item+.service-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    bottom: 34px;
    border-right: solid 1px #e5e7ed;
}

.service-list>li+li:before {
    content: "|";
    padding-left: 8px;
    padding-right: 8px;
}

.section-service {
	    background-color: #f5f5f5;
    padding-bottom: 80px;
}

/*产品系列 结束*/

/*脚部 开始*/
.autoWidth{margin:0 auto;max-width:1200px;width:100%;}
.auto{margin:0 auto;max-width:1200px;width:100%;}
@media screen and (max-width:1233px){.auto{padding-left:10px}
}
.clearfix:after,.clearfix:before{display:table;line-height:0;content:""}
.clearfix:after{clear:both}
.clear-float{clear:both}

.footer{background-color:#3c3c3c;font-family:"Microsoft Yahei"}
.footer-floor1{width:100%;padding:36px 0 60px}
.footer-list{width:100%;height:100%; margin: auto;}
.footer-list ul{float:left;margin-right:10%}
.footer-list .flist-4{margin-right:0}
.footer-list li{line-height:30px}
.footer-list li a{color:#b8b6b6;font-size:14px;text-decoration:none}
.footer-list li a:hover{text-decoration:underline;color:#fff}
.footer-list .flist-title{font-size:16px;color:#fff;margin-bottom:15px}
.footer-floor2{width:100%;border-top:1px solid #b8b6b6;padding:20px 0;text-align:center;background-color: #4082bb;}
.footer-floor2 p{text-align:center;color:#b8b6b6;font-size:12px;line-height:30px}
.footer-floor2 p span{font-family:PingFangSC-Light,'helvetica neue','hiragino sans gb',tahoma,'microsoft yahei ui','microsoft yahei',simsun,sans-serif}
.footer-floor2 a{color:#b8b6b6}
.footer-floor2 a:hover{color:#a8d0e0;text-decoration:underline}
.foot-link{margin:0 15px;text-decoration:none;color:#b8b6b6}
.foot-link:hover{text-decoration:underline}
.footer-right{width:300px;float:right}

.footer-links{width:100%;padding:10px 0;background-color: #4082bb;}
.footer-links ul{max-width:1210px;margin:0 auto;}
.footer-links .flist-title{font-size:16px;color:#fff;margin-bottom:15px}
.footer-links li a{color:#b8b6b6;font-size:12px;text-decoration:none;padding-right:5px}
.footer-links li a:hover{text-decoration:underline;color:#fff}

.telephone{width:100%;height:32px;line-height:32px;color:#fff}
.telephone span{display:inline-block;width:32px;height:32px;float:left;background:url(../images/bysoft/img_2018/phone_32px.png);margin-left:16%}
.telephone .tel-number{font-size:30px;font-weight:400;text-align:right}
.official-plat{width:100%;height:100%;margin-top:20px;position:relative}
.official-plat ul{float:right;margin-top:7px}
.official-plat ul li span{display:inline-block;width:32px;height:32px;background:url(../images/bysoft/img_2018/plat_icon.png) no-repeat 0 0;line-height:32px;float:left;margin-right:12px}
.official-plat ul li .weibo-logo{background:url(../images/bysoft/img_2018/plat_icon.png) no-repeat -32px 0}
.official-plat ul li .qq-logo{background:url(../images/bysoft/img_2018/plat_icon.png) no-repeat -64px 0}
.official-plat ul li{height:45px}
.official-plat ul a{display:inline-block;height:32px;width:100%;line-height:32px;color:#fff;text-decoration:none;font-size:12px}
.official-plat>p{display:inline-block;width:132px;height:132px;border:1px solid #ddd;background-color:#fff}
.official-plat .weixin{position:absolute;top:0;left:10px;background-image:url(../images/bysoft/img_2018/plat_qrcode.png);background-repeat:no-repeat;background-position:0 0}
.official-plat .weibo{position:absolute;top:0;left:10px;background-image:url(../images/bysoft/img_2018/plat_qrcode.png);background-repeat:no-repeat;background-position:-132px 0;display:none}
#wx-corner{border:10px solid transparent;border-left:10px solid #fff;position:absolute;top:12px;right:-20px;z-index:10}
#wb-corner{border:10px solid transparent;border-left:10px solid #fff;position:absolute;top:58px;right:-20px;z-index:10}
.five-superiority{width:100%;border-bottom:1px solid #b8b6b6;padding:10px 0 20px}
.five-superiority-list li{float:left;width:239px;height:36px;text-align:center;border-left:1px solid #b8b6b6}
.five-superiority-list li:first-child{border-left:none}
.five-superiority-list li a{display:inline-block;position:relative;width:100%;height:36px;line-height:36px;background:no-repeat 2% center;text-indent:2em;color:#fff;font-size:16px}
/*.five-superiority-list li a:hover{color:#f91c47;}*/
.five-superiority-list li a.superiority-text{text-indent:4em}
.superiority-icon{position:absolute;width:40px;height:40px;left:10%;background-repeat:no-repeat;background-image:url(../images/bysoft/img_2018/footer_youshi.png)}
.compensate_ico .superiority-icon{background-position:0 0}
/*.compensate_ico:hover .superiority-icon{background-position:0 -50px}*/
.retreat_ico .superiority-icon{background-position:0 -100px}
/*.retreat_ico:hover .superiority-icon{background-position:0 -150px}*/
.technology_ico .superiority-icon{background-position:0 -200px}
/*.technology_ico:hover .superiority-icon{background-position:0 -250px}*/
.prepare_ico .superiority-icon{background-position:0 -300px}
/*.prepare_ico:hover .superiority-icon{background-position:0 -350px}*/
.service_ico .superiority-icon{background-position:0 -400px}
/*.service_ico:hover .superiority-icon{background-position:0 -450px}*/
.marquee-box{overflow:hidden;width:100%;position:absolute;left:0;top:0}
.marquee{width:8000%;height:60px}
.wave-list-box{float:left}
.wave-list-box ul{float:left;height:60px;overflow:hidden;zoom:1}
.wave-list-box ul li{height:60px;width:100%;float:left;line-height:30px;list-style:none}
.wave-box{position:relative;height:60px;background:#fff}

/*脚部 结束*/

/* 返回顶部 */
.dn{display: none;}
/*
.go-top{position: fixed;bottom: 40px;right: 20px;width: 46px;z-index: 999;}
.go-top a{display: block;width: 46px;height: 46px;margin-bottom: 10px;background-image: url(../images/go-top.png);}
.go-top a:last-child{margin-bottom: 0;}
.go-top .go{background-position: 0 -150px;}
.go-top .go:hover{background-position: 0 -250px;}
.go-top .feedback{background-position: 0 -100px;}
.go-top .feedback:hover{background-position: 0 -300px;}
.go-top .uc-2vm{background-position: 0 0;}
.go-top .uc-2vm:hover{background-position: 0 -350px;}*/

.go-top{position: fixed;bottom: 220px;right: 80px; width: 46px; z-index: 999; width: 90px; height: 90px; float:left; border-radius: 50%; border: 3px solid #fff; background-color: #fff; overflow: hidden;}
.go-top a{display: block;width: 46px;height: 46px;margin: 22px;background-image: url(../images/go-top.png);}
.go-top a:last-child{margin-bottom: 0;}
.go-top .go{background-position: 0 -150px;}
.go-top .go:hover{background-position: 0 -250px;}
.go-top .feedback{background-position: 0 -100px;}
.go-top .feedback:hover{background-position: 0 -300px;}
.go-top .uc-2vm{background-position: 0 0;}
.go-top .uc-2vm:hover{background-position: 0 -350px;}
/*
.go-top .share{background-position: 0 -50px;}
.go-top .share:hover{background-position: 0 -200px;}
*/
.go-top .uc-2vm-pop{
	position: absolute;right: 60px;top: -100px;
	width: 240px;box-shadow: 0px 1px 4px rgba(0,0,0,.1);
	background: #fff;
}
.go-top .uc-2vm-pop .title-2wm{font-size: 14px; margin: 10px 20px;}
.go-top .uc-2vm-pop .logo-2wm-box{position: relative;}


/*解决方案 top图*/
.sol-banner {
    height: 300px;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.content-section {
    max-width: 1180px;
    clear: both;
    margin: 0 auto;
    padding: 60px 10px;
}
.sol-banner .content-section {
    padding-bottom: 0;
    padding-top: 0;
}
.banner-content {
    width: 100%;
    padding-top: 20px;
    padding-left: 30px;
}
.banner-caption {
    margin-top: 50px;
    font-size: 36px;
    line-height: 1.25;
    color: #F2F2F2;
}
.banner-content .banner-detail {
   max-width: 572px;
    height: 60px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #F2F2F2;
    font-size: 16px;
}
.banner-btn-group {
    font-size: 0;
}
.banner-btn-group .aui-button {
    margin-right: 10px;
    margin-bottom: 12px;
}
.aui-button {
    height: 32px;
    line-height: 30px;
    padding: 0 20px;
    border: 1px solid #e41f2b;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    transition: background .3s, color .3s;
}
.aui-button.btn-primary {
    color: #fff;
    background-color: #E41F2B;
}
.aui-button:hover {
    color: #fff;
    background-color: #F24651;
    border-color: #F24651;
}

.aui-button:active {
    color: #fff;
    background-color: #c8000d;
    border-color: #c8000d;
}

#content{
    overflow: hidden;
    
    /*margin-bottom: 375px;*/
    background: #fff;
    /* transition: padding .3s ease-out; */
}
.Compatible #content{
    padding-top: 122px;
}
.has-header-banner #content{
    padding-top: 210px;
}
.has-header-banner.Compatible #content{
    padding-top: 300px;
}
.scrolled.has-header-banner #content{
    padding-top: 100px;
}
#content .wrapper-top{
    position: relative;
    z-index: 2;
}

#content .wrapper {
    /*background-color: #f7f8fa;
    margin-top: 0;
    padding-bottom: 30px;
    margin-bottom: 360px;*/
    z-index: 2;
    position: relative;
}
.content-block {
    max-width: 1200px;
    clear: both;
    margin:0 auto;
    padding: 50px 10px;
    /* transition: padding .3s ease-out; */
}
.y-row{
    max-width: 1410px;
}
.share-poster{
    display: none;
}

@media (max-width: 1439px) and (min-width: 1366px) {
    /* .nav-side-show .content-block {
        padding-left: 30px;
        padding-right: 30px;
    }  */
    .y-row{
        max-width: 1200px;
        margin:0 auto;
    }
    #nav-main .sub-item-col  .menu-panel{
        padding-bottom: 20px;
    }
}

/* @media (min-width: 1440px) and (max-width: 1700px){
    .nav-side-show #content .wrapper{
         padding-left: 280px;
         padding-right: 30px;
    }
    .nav-side-show #footer .footer-top,
    .nav-side-show #footer .footer-bottom{
        padding-left: 280px;
        padding-right: 30px;
    }
}*/
@media (max-width: 1439px) and (min-width: 1023px){
    .content-block{
        max-width: 1200px;
    }
}

@media (max-width: 1200px){
    .content-block {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1023px){
    .wrapper .crumbs {
        padding-left: 10px;
        padding-right: 10px;
    }
    .content-block {
        padding-left: 20px;
        padding-right: 20px;
    }
    #content{
        
    }
    .has-header-banner #content{
        padding-top: 210px;
    }
    .product-event{
        margin-top:10px;
    }
    .icons-notice{
        margin-top: 8px;
    }
    .announce-list{
        overflow: hidden;
        height: 25px;
        line-height: 25px;
    }
}
@media (max-width: 799px){
    .content-block {
        padding: 20px 0 ;
    }
    .has-header-banner #content{
        padding-top: 130px;
    }

}
@media (max-width: 500px){
    .share-poster{
        display: block;
    }
    .share-poster img{
        width: 100%;
        vertical-align: top;
    }
}

/*--- content end ---*/

#content .wrapper {
    background-color: #f7f7f7;
}

#content .wrapper {
    z-index: 2;
    position: relative;
}

.content-block {
  /*  padding-top: 20px;*/
}
.content-block {
    max-width: 1200px;
    clear: both;
    margin: 0 auto;
    padding: 50px 10px;
    /* transition: padding .3s ease-out; */
}
.category-item {
    margin-bottom: 20px;
    /* background-color: #A3A8B3; */
    background-position: 33px 105%;
    background-repeat: no-repeat;
    transition: background-color .4s;
	clear: both;
}
.category-name {
    height: 58px;
}
.category-name .caption {
    color: #333;
    /* line-height: 1.1; */
    font-size: 24px;
    /* padding-left: 45px; */
    line-height: 36px;
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
    /* margin-top: 20px; */
}
.category-main {
    background-color: #fff;
}
.category-main .AGrid-row {
    clear: none;
}
.category-main .tile:first-child {
    border-left: none;
}
.category-main .tile {
    height: 215px;
    background-color: #fff;
    border: 1px solid #F5F5F5;
    border-width: 0 1px 1px 0;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
	
}

.col-sm-4 {
	float: left;
    width: 319px;
}



.category-main .caption {
    font-size: 16px;
    color: #333;
	line-height: 1.25;
    margin-bottom: 10px;
}
.category-main .caption .link {
    display: block;
    text-align: center;
    margin-bottom: 15px;
	transition: color .2s;
	color: #333;
}

.category-item .tile:hover {
    box-shadow: 0px 0px 20px rgba(0,0,0,.2);
    z-index: 99;
}

.category-main .caption .link:hover, .category-item .tile:hover .link {
    color: #e41e2b;
}

.category-item .tile:hover span {
    color: #000;
}

.category-main .caption .link .icons-solution{
	
	display: block;
	width: 48px;
	height: 48px;
	background-image: url(../images/bysoft/img_2018/icon-guoqi-active.svg);
	margin: auto;
	    margin-bottom: 10px;
	margin-top: 10px;
	
	
	
}

.category-main .info {
    height: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
	font-size: 12px;
    line-height: 18px;
    color: #999;
}

.AGrid-row:after {
    clear: both;
}
.register-area {
    height: 150px;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
}
.register-area:before {
    background: url(../images/bysoft/img_2018/global/register-bg-2.jpg) no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(1.01);
    z-index: 1;
    transition: transform .5s ease-out;
}
.register-text {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
    color: #282828;
    text-align: center;
}

.register-text:before {
    content: "免费在线试用";
}

.register-area .aui-button {
    position: relative;
    z-index: 2;
}
.AGrid-row:before, .AGrid-row:after {
    content: " ";
    display: table;
    line-height: 0;
}




.index_dasj {width: 1200px; margin: auto; text-align: center;}
.index_dasj img.m-main-img{width: 1200px;}
.dasj_nr {position: relative;max-width: 1200px;padding: 0 10px;margin: 0 auto;margin-bottom: 50px;}
.m-programme_dasj .m-center_dasj {
    position: relative;
    text-align: center;
    font-size: 0;
}

.m-programme_dasj .m-center_dasj .dasj {
    width: 270px;
    display: inline-block;
    height: 305px;
    border: 1px solid #dbe0e5;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    vertical-align: top;
    margin: 0 17px;
}

.m-programme_dasj .m-center_dasj .dasj:first-child {
    float: left;
    margin: 0;
}
.m-programme_dasj .m-center_dasj .dasj .img {
    height: 150px;
}
.m-programme_dasj .m-center_dasj .dasj .img img {
    margin-top: 30px;
    width: 100px;
    height: 100px;
    text-align: center;
}

.m-programme_dasj .m-center_dasj .dasj .title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
}

.m-programme_dasj .m-center_dasj .dasj .disc {
    margin-top: 17px;
    padding: 0 24px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.3px;
    color: #999;
}

.m-programme_dasj .m-center_dasj .rightjustify {
    float: right;
    margin: 0;
}




.m-programme_dasj .m-center_dasj .dasj{
    position: relative;
    top: 0;
    transition: top .2s linear,box-shadow .2s linear;

}


.m-programme_dasj .m-center_dasj .dasj:hover {
    box-shadow: 0 6px 18px 0 rgba(0,0,0,0.11);
    top: -10px;
}

.m-programme_dasj .m-center_dasj .dasj .title2 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}
.m-programme_dasj .m-center_dasj .dasj .title2 a {
   
    color: #fff;
}
.m-programme_dasj .m-center_dasj .dasj .disc2 {
    margin-top: 17px;
    padding: 0 24px;
    text-align: justify;
    font-size: 14px;
    line-height: 1.57;
    letter-spacing: 0.3px;
    color: #c7c7c7;
}


.m-programme_dasj .m-center_dasj .caseItem{
	    background-color: rgba(80, 80, 80, 0.8);
    border: none;
	
	
}



/* 分页 */
#pages { text-align:center; height:42px; line-height:42px; font-size: 15px; margin:30px 0 20px;}
#pages a { display:inline-block; height:42px; line-height:42px; background:#fff; border:1px solid #e3e3e3; text-align:center; color:#333; padding:0 15px}
#pages a.a1 { background:url(/statics/images/admin_img/pages.png) no-repeat 0 40px; width:60px; padding:0 }
#pages a:hover { background:#f1f1f1; color:#000; text-decoration:none }
#pages span { display:inline-block; height:42px; line-height:42px; background:#4082bb; border:1px solid #4082bb; color:#fff; text-align:center;padding:0 15px}
.page .noPage { display:inline-block; width:60px; height:42px; line-height:42px; background:url(/statics/img/icu/titleBg.png) repeat-x 0 -55px ; border:1px solid #e3e3e3; text-align:center; color:#a4a4a4; }
@media (max-width: 768px){
	#pages{text-align:center; font-size: 14px;margin-top:10px;}
	#pages .hidden-xs{display:none}
}
@media (max-width: 768px){.hidden-xs{display:none}}

/*案例*/
.partner-wrapper .g-c-bd {
    max-width: 1210px;
    padding: 0;
    margin: 0 auto;
}
.partner-wrapper .m-case-filter .category {
    padding-top: 22px;
    text-align: left;
    color: #222;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* padding-bottom: 46px; */
}
.partner-wrapper .m-case-filter .category .m-category {
    display: inline-block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
.partner-wrapper .m-case-filter .category .m-category .category-item.active, .m-case-filter .category .m-category .category-item:hover {
    color: #fff;
    border: 1px solid #4082bb;
	width:277px
}
.partner-wrapper .m-case-filter .category .m-category .category-item {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    width: 277px;
    height: 36px;
    display: inline-block;
    border: 1px solid #dbe0e5;
    line-height: 34px;
    margin-left: 16px;
    cursor: pointer;
}
.partner-wrapper .category-item {
    margin-bottom: 0px;
    /* background-color: #A3A8B3; */
    background-position: 33px 105%;
    background-repeat: no-repeat;
    transition: background-color .4s;
    clear: both;
	background-color:#4082bb;
}

.partner-wrapper .m-case-filter .category .m-category .category-item-f.active, .m-case-filter .category .m-category .category-item-f:hover {
    color: #fff;
    border: 1px solid #4082bb;
	width:277px
}
.partner-wrapper .m-case-filter .category .m-category .category-item-f {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    width: 277px;
    height: 36px;
    display: inline-block;
    border: 1px solid #dbe0e5;
    line-height: 34px;
    margin-left: 20px;
    cursor: pointer;
	background-color:#4082bb;
}
.partner-wrapper  .category-item-f {
    margin-bottom: 0px;
    /* background-color: #A3A8B3; */
    background-position: 33px 105%;
    background-repeat: no-repeat;
    transition: background-color .4s;
    clear: both;
}

#case {
    padding-top: 0px;
    margin-top: 20px;
}
/*客户案例*/
#case a {
    color: #333;
}
#case .m-case-filter .category {
    padding-top: 22px;
    text-align: left;
    color: #222;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*padding-bottom: 46px;*/
}
#case .m-case-filter .category .title {
    font-size: 16px;
    margin-right: 24px;
    font-weight: bolder;
}
#case .m-case-filter .category .m-category {
    display: inline-block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}
#case .m-case-filter .category .m-category .category-item {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    width: 138px;
    height: 36px;
    display: inline-block;
    border: 1px solid #dbe0e5;
    line-height: 34px;
    margin-left: 16px;
    cursor: pointer;
}
#case .m-case-filter .category .m-category .category-item.active, .m-case-filter .category .m-category .category-item:hover {
    color: #4082bb;
    border: 1px solid #4082bb;
}
#case .m-case .category-content-item.active {
    display: block;
	margin-bottom: 100px;
}
#case .m-case .case-content {
    margin-right: -20px;
    zoom: 1;
}
#case .m-case .case-content .caseItem {
    display:block;
    width: 280px;
    float: left;
    height: 145px;
   
    margin-right: 20px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    text-align: center;
    position: relative;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
#case .m-case .case-content .caseItem .img {
    height: 150px;
}
#case .m-case .case-content .caseItem .img img {
    margin-top: 30px;
    width: 190px;
    height: 90px;
}
#case .m-case .case-content .caseItem .title {
    margin-top: 0;
    font-size: 18px;
    font-weight: bolder;
}
#case .m-case .case-content:after {
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    content: ".";
}
#case .m-case .case-page {
    text-align: center;
    margin-bottom: 70px;
    margin-top: 40px;
}
#case .m-case .case-page .pager {
    min-height: 30px;
    font-size: 0;
}
#case .m-pagination {
    zoom: 1;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}
#case .m-pagination li {
    float: left;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-right: 1px solid #dbe0e5;
    border-top: 1px solid #dbe0e5;
    border-bottom: 1px solid #dbe0e5;
}
#case .m-pagination li:first-child {
    border-left: 1px solid #dbe0e5;
}
#case .m-pagination .pagenxt, .m-pagination .pageprv {
    width: 32px;
    height: 28px;
    background-color: #fff;
    cursor: pointer;
    text-align: center;
}
#case .m-pagination .pageprv i {
    background: url(../images/arrowl.png);
}
#case .m-pagination li.active {
    background-color: #4082bb;
    border-top: 1px solid #4082bb;
    border-bottom: 1px solid #4082bb;
    cursor: text;
}
#case .m-pagination .pagenxt i {
    background: url(../images/arrowr.png);
}
#case .m-pagination .pagenxt a i, .m-pagination .pageprv a i {
    display: inline-block;
    width: 12px;
    height: 12px;
}
#case .m-pagination:after {
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    content: ".";
}

#case .m-pagination li.active a {
    color: #fff;
    cursor: text;
}

/*新案例样式*/
.partner-wrapper .cd-main-content #case{padding-top: 0px;
    margin-top: 20px;}
.partner-wrapper .AGrid-row.gap [class^=col-], .no-gap .AGrid-row.gap [class^=col-] {
    padding:20px 10px;
}

.partner-wrapper .AGrid-row {
    clear: both;
	border-top: 1px dashed #d0d0d0;
}
.partner-wrapper .AGrid-row:before, .AGrid-row:after {
    content: " ";
    display: table;
    line-height: 0;
}
.partner-wrapper .case-item-block .case-panel {
    display: block;
    height: 180px;
    position: relative;
    background-color: #7b7b7b;
    overflow: hidden;
    transition: all .2s linear;
}
.partner-wrapper .case-item-block .case-panel:hover {
    box-shadow: 1px 8px 26px rgba(45, 46, 47, 0.5);
    position: relative;
    z-index: 2;
	outline-width: 0;
}

.partner-wrapper .case-item-block .cover {
    height: 120px;
    display: inline-block;
    margin-bottom: 6px;
    vertical-align: middle;
    text-align: center;
    line-height: 120px;
    /*width: 100%;*/
	border: 1px solid #dbe0e5;
    background-color: #fff;
	 background: url(../images/khal_img.png);
}
.partner-wrapper .case-item-block .cover img {
    vertical-align: middle;
	width: 100%; height: 120px;
	min-width:275px;
	max-width:275px;
}
.partner-wrapper .case-info {
    text-align: center;
    padding: 15px 25px 0;
}
.partner-wrapper .case-info dt {
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.partner-wrapper .col-md-3 {
    float: left;
}

.partner-wrapper .col-md-3 {
    width: 23.3%;
}

/*首页荣誉*/
.clear {clear: both;}

.oays-pub{float:left;width:600px;margin-top: 50px;}
.oays-pub-a{width:1200px;margin: 0 auto;padding-top:50px;padding-bottom:50px;}
.case-pub-al{float:left;width:1200px;}
.case-pub-ar{float:left;width:380px;margin:10px 0 0 24px;font-size:16px}
.case-pub-ar-a p{line-height:32px}
.case-pub-ar-a p a{background:url(../images/case-yuan.png) no-repeat 0 50%;color:#585858}
.case-pub-ar-a p a:hover{color:#0795cb}
.case-pub-ar-b{}
.case-pub-ar-b a{color:#0088cc}
.case-pub-ar-b a:hover{color:#f6a01a}
.crm_caa{width:1200px;margin: 0 auto; font-size:18px;width: 550px;border-bottom: 1px solid #dcdcdc;padding-bottom: 10px;color: #262626;position: relative;}
.crm_caa img{position: absolute;top:-9px;right: 0px}
.crm_caa h2 {
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #20a3dd;
}
.scroll{ width:1200px; height:192px; margin:30px auto 0 auto; overflow:hidden;}
.v_out{width:1200px;margin:0px auto;overflow:hidden;}
.v_show{width:1125px;overflow:hidden;position:relative;height:192px;float:left}
.u_lanren{ width:6650px;position:absolute;left:0px;top:0px;}
.u_lanren ul{float:left;text-align:center;line-height:50px;}
.u_lanren ul li{width:1125px;height:192px;float:left; overflow:hidden;}
.u_lanren ul li dd{ width:264px; height:192px; margin:0px 5px; float:left; overflow:hidden; position:relative; list-style:none;}
.u_lanren ul li dd img{ position:absolute; left:0; top:0; z-index:10; width:264px; height:192px;}
.u_lanren ul li dd a.link{ width:264px; height:192px; display:block; position:absolute; left:0; top:0; z-index:20;}
.u_lanren ul li dd span.info{ width:51px; height:51px; display:block; position:absolute; right:10px; bottom:10px;background:url(../images/3.png) no-repeat;z-index:30;}


div.clear{
	clear: both;
	height: 0;
	width: 0;
}



a{
	text-decoration: none;
	color:inherit;
	cursor: pointer;
}

img{
	border:0;
/*	width: 100%;*/
	max-width: 100%;
}


div.wp{
	width: 1200px; /*主要内容区尺寸大小，每次制作前更新！！！ */
	margin:0 auto;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.tran{
	transition: all .3s ease-out 0s;
}

#form_11-wp{
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 999;
	display: none;
}


.form_11-span{
	position: absolute;
	right: 10px;
	top: 10px;
	height: 18px;
	line-height: 18px;
	color:#999;
	font-size: 20px;
	cursor: pointer;
}

.form_11-span:hover{
	color:#333;
}
.form_11-hei{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url(../images/heidi.png);
	z-index: 50;
	cursor: pointer;
}

.form_11-bai{
	position: absolute;
	width: 550px;
	height: 474px;
	margin-left: -200px;
	top: 40%;
	margin-top: -187px;
	left: 45%;
	background-color: #fff;
	z-index: 80;
	padding: 25px;
	border:15px solid #4082bb;
	padding:30px; 
}

.form_11-bai h1{
	margin:0;
	font-size: 24px;
	color:#666;
	text-align: center;
	padding-bottom: 15px;
	font-family: "Helvetica Neue", "Open Sans", "Microsoft YaHei", "微软雅黑", "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
}

.form_11-div span.fl{
	height: 35px;
	line-height: 35px;
	width: 90px;
	text-align: left;
}
.form_11-div span.fl font{
	padding: 2px 5px 0 0;
}

#form_11-wp  input:focus{
	outline: none;
}
.form_11-input{
	overflow: hidden;
	margin-top: 15px;
	padding-left: 10px;
}
.form_11-input:first-child{
	margin-top: 0;
}
.form_11-input input[type="text"]{
	width: 100%;
	border:0;
	background-color: #e6e6e5;
	height: 35px;
	line-height: 35px;
	padding: 8px 12px;
}
.form_11-input2 img{
	margin-top: -5px;
	margin-left: 5px;
}
.form_11-input2 input[type="text"]{
	width: 150px;
}
.form_11-input3{
	text-align: center;
}
.form_11-input3 input{
	width: 46%;
	height: 35px;
	line-height: 35px;
	border:0;
	color:#fff;
	font-size: 16px;
	border-radius: 5px;
	
}

.bttbtt1{
	background-color: #20a3dd;
	float: left;
}

.bttbtt2{
	background-color: #9f9f9f;
	float: right;
}

.form_11-div2{
	margin-top: 35px;
}


/*首页案例*/
#index_case {
	width: 75pc;
	margin: 50px auto;
	overflow: hidden
}

#index_case .title_t {
	height: 28px;
	line-height: 28px;
	margin-bottom: 30px;
	border-bottom: 1px solid #dcdcdc;
    padding-bottom: 20px;
}

#index_case .title_t span {
	font-size: 24px;
	float: left;
	color: #20a3dd
}
.more_a {
    display: inline-block;
}
.more_a a {
    color: #6eb92b;
}
.more_a i {
    top: 50%;
    right: 0;
    margin-top: -6px;
    width: 13px;
    height: 13px;
    background: url(../images/more_a.png) no-repeat -13px 0;
}
#index_case .title_t ul {
	float: left;
	margin-left: 40px
}

#index_case .title_t ul li {
	display: inline;
	padding: 4px;
	margin: 0 20px 0 0;
	border-radius: 5px;
	font-size: 1pc;
	position: relative;
	cursor: pointer;
	color: #000
}

#index_case .title_t ul li:after {
	content: '';
	position: absolute;
	right: -9pt;
	top: 0;
	width: 1px;
	height: 100%;
	background: #d6d6d6
}

#index_case .title_t ul li:last-of-type:after {
	display: none
}

#index_case .title_t ul li.act {
	background: #20a3dd;
	color: #fff
}


#index_cased {
	width: 60pc;
	overflow: hidden
}

.index_case_con {
	width: 100%;
	display: none
}

.index_case_con li {
	float: left;
	width: 280px;
	margin-right: 20px
}

.index_case_con li:last-of-type {
	margin-right: 0
}

.index_case_con li div {
	padding: 0;
	float: left;
	width: 280px;
	height: 120px;
	overflow: hidden;
	margin-bottom: 8px;
	cursor: pointer;
	position: relative;
	border:1px solid #f1f1f1;
	position: relative;
}

.index_case_con li div img {
	width: 100%;
	position: relative;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}


.index_case_con li div a {
	opacity: 0;
	filter: alpha(opacity = 0);
	height: 100%;
	display: block;
	background: url(../images/transparent.png);
	position: absolute;
	left: 0;
	top: 0;
	width: 90%;
	padding: 6% 4% 0;
	color: #fff;
	text-align: center;
	font-size: 14px;
	-webkit-transition: .3s;
	transition: .3s
}

.index_case_con li div a p {
	width: 100px;
	margin: 10px auto 0;
	padding: 6px 8px;
	border-radius: 3px;
	background: #97c740;
	font-size: 14px;
	color: #fff;
}

.index_case_con li:hover a {
	opacity: 1;
	filter: alpha(opacity = 100)
}

.index_case_con li span {
    font-size: 16px;
	text-align:center;
}

#index_con {
	width: 100%;
	padding: 50px 0;
	background: #f8f8f8
}

#index_con .index_box {
	width: 75pc;
	margin: auto;
	overflow: hidden
}

.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}

@media screen and (max-width: 1400px)
.concat-box {
    right: 0px;
}
.concat-box {
  width: 100px;
  position: fixed;
  top: 225px;
  right: 15px;
  z-index: 21;
}
.tel-tip-box {
  display: none;
  width: 156px;
  padding: 12px;
  border-radius: 4px;
  position: absolute;
  text-align: center;
  left: -10px;
  top: 10px;
  background-color: #fff;
  transform: translate(-100%, 0);
  box-shadow: 0px 10px 49px 0px rgba(183, 191, 217, 0.27);
}

.tel-tip-box::after {
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  background-color: #fff;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: rotateZ(45deg) translate(0, -50%);
}

.tel-tip-box .txt {
  font-size: 15px;
  font-family: PingFangSC-Regular;
  font-weight: none;
  color: rgba(51, 51, 51, 1);
  margin-bottom: 7px;
}

.tel-tip-box .tel-num {
  font-size: 18px;
  font-family: BanglaMN-Bold !important;
  font-weight: bold;
  font-style: italic;
  color: rgba(206, 0, 0, 1);
}
.concat-box .qq-box,
.concat-box .phonenumber-box {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  border-radius: 50%;
  font-size: 14px;
  font-family: SourceHanSansCN-Regular;
  font-weight: 400;
  color: rgba(29, 32, 35, 1);
  text-align: center;
  background-color: #fff;
  padding-top: 20px;
  margin-bottom: 30px;
  box-shadow: 0px 10px 49px 0px rgba(183, 191, 217, 0.27);
}

.concat-box .qq-box p,
.concat-box .phonenumber-box p {
  font-size: 15px;
  color: #1d2023;
  font-weight: 400;
  line-height: 26px;
  margin: 7px 0 10px 0;
}

.concat-box .top-box,
.concat-box .phonenumber-box {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  border-radius: 50%;
  font-size: 14px;
  font-family: SourceHanSansCN-Regular;
  font-weight: 400;
  color: rgba(29, 32, 35, 1);
  text-align: center;
  background-color: #fff;
  padding-top: 20px;
  margin-bottom: 30px;
  box-shadow: 0px 10px 49px 0px rgba(183, 191, 217, 0.27);
}

.concat-box .top-box p,
.concat-box .phonenumber-box p {
  font-size: 15px;
  color: #1d2023;
  font-weight: 400;
  line-height: 26px;
  margin: 0px 0 10px 0;
}
#rightPf {
	display:none;
	position: fixed;
	top: 40%;
	right: 0;
	width: 70px;
	z-index: 1000000;
}

#rightPf ul {
	background-color: #488bff;
}

#rightPf ul li {
	height: 70px;
	position: relative;
	text-align: center;
	padding: 5px 0;
	cursor: pointer;
	background-image: url("../Images/z62.png");
	background-position: bottom center;
	background-repeat: no-repeat;
}

#rightPf ul li .icon {
	height: 32px;
	background-position: bottom center;
	background-repeat: no-repeat;
}

#rightPf ul li .tit {
	font-size: 12px;
	line-height: 30px;
	color: #FFFFFF;
}

#rightPf ul li .link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

#rightPf ul li .group {
	position: absolute;
	left: -130px;
	top: 0;
	background-image: url("../Images/z55.png");
	width: 138px;
	height: 176px;
	z-index: 1;
	display: none;
	font-family: PingFang_Medium_downcc;
}

#rightPf ul li .group .ewm {
	width: 130px;
	height: 130px;
	position: absolute;
	left: 0;
	top: 0;
}

#rightPf ul li .group .ewm img {
	width: 100%;
	height: 100%;
}

#rightPf ul li .group .tip {
	font-size: 14px;
	line-height: 20px;
	position: absolute;
	left: 0;
	bottom: 20px;
	width: 130px;
	color: #333333;
	text-align: center;
}

#rightPf ul li .item {
	position: absolute;
	left: -200px;
	top: 0;
	width: 200px;
	height: 90px;
	line-height: 26px;
	color: #333333;
	font-size: 14px;
	font-weight: bold;
	display: none;
	background-color: #FFFFFF;
	font-family: PingFang_Medium_downcc;
	padding: 6px 0 0 15px;
	text-align: left;
}

#rightPf ul li .item .sanjiao {
	position: absolute;
	width: 20px;
	height: 80px;
	right: -8px;
	top: 0;
	background-image: url("../Images/z55.png");
	background-position: top right;
	background-repeat: no-repeat;
}

#rightPf ul li .ewmgroup {
	position: absolute;
	left: -130px;
	top: 0;
	background-image: url("../Images/z55.png");
	width: 138px;
	height: 250px;
	z-index: 1;
	display: none;
	font-family: PingFang_Medium_downcc;
	background-repeat: no-repeat;
}

#rightPf ul li .ewmgroup .ewmcon {
	background-color: #FFFFFF;
	width: 130px;
	position: relative;
	height: 250px;
}

#rightPf ul li .ewmgroup .ewmcon img {
	width: 110px;
}

#rightPf ul li:hover {
	background-color: #337eff;
}

#rightPf ul li:hover .tit {
	color: #FFFFFF;
}

#rightPf ul li:hover .group {
	display: block;
}

#rightPf ul li:hover .item {
	display: block;
}

#rightPf ul .shiyong .icon {
	background-image: url("../Images/z56.png");
}

#rightPf ul .qq .icon {
	background-image: url("../Images/z57.png");
}

#rightPf ul .tel .icon {
	background-image: url("../Images/z58.png");
}

#rightPf ul .app .icon {
	background-image: url("../Images/z59.png");
}

#rightPf ul .mianfei {
	background: none;
}

#rightPf ul .mianfei .icon {
	background-image: url("../Images/z60.png");
}

#rightPf .gotop {
	
	margin-top: 5px;
	
	
	background-position: center center;
	background-repeat: no-repeat;
	font-size: 14px;
	height: 70px;
	cursor: pointer;
}
#rightPf .gotop1{
	background-color: #488bff;
	background-image: url("../Images/zxzx.png");
	background-size: 80%;
}
#rightPf .gotop1 a{
	display:block;
	width:100%;
	height:100%;
}
#rightPf .gotop2{
	display: none;
	background-color: #488bff;
	background-image: url("../Images/z61.png");
}
#rightPf .gotop0{
	background-color: #488bff;
	    display: flex;
    align-items: center;
    justify-content: center;
}
#rightPf .gotop0 a{
	text-align: center;
    line-height: 25px;
    display: block;
    color: #fff;
	font-size: 18px;
    margin: 0 auto;
}

@media (max-width: 767px) {
	#rightPf {
		display: none;
	}
}