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

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

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

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

   //滤镜

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

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

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

.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/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;
}
.container {
  max-width: 82%;
  width: 100%;
  margin: 0 auto;
}
img {
  max-width: 100%;
}
@font-face {
  font-family: 'DINEngschriftStd';
  src: url('../fonts/DINEngschriftStd.eot');
  src: url('../fonts/DINEngschriftStd.eot?#iefix') 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;
}

@font-face {
  font-family: 'SourceHanSansCN-Normal';
  src: url('../fonts/SourceHanSansCN-Normal.eot');
  src: url('../fonts/SourceHanSansCN-Normal.eot?#iefix') format('embedded-opentype'), url('../fonts/SourceHanSansCN-Normal.woff') format('woff'), url('../fonts/SourceHanSansCN-Normal.ttf') format('truetype'), url('../fonts/SourceHanSansCN-Normal.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.header .box {
  max-width: 92%;
  width: 100%;
  margin: 0 auto;
}
.header .logo {
  display: block;
  float: left;
  margin-top: 27px;
}
.header .icon {
  padding-left: 30px;
  float: right;
  margin-top: 32px;
}
.header .icon a {
  display: block;
  float: left;
  line-height: 0;
  margin-left: 20px;
}
/*.header .icon span {
  display: block;
  float: left;
  margin-left: 20px;
  position: relative;
  padding-bottom: 29px;
  cursor: pointer;
}
.header .icon span .text {
  display: none;
  z-index: 2;
  position: absolute;
  top: 49px;
  left: -59px;
  width: 88px;
  height: 38px;
  padding-top: 7px;
  background: url(../images/icon3.png) no-repeat center center;
}*/
/*.header .icon span .text a {
  text-align: center;
  margin-left: 0;
  display: block;
  width: 100%;
  line-height: 31px;
  color: #666666;
  font-size: 14px;
}
.header .icon span:hover .text {
  display: block;
}*/
.header .nav {
  float: right;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.header .nav ul li {
  float: left;
  font-size: 15px;
  line-height: 82px;
  position: relative;
  margin-right: 56px;
 
     font-family: "黑体","Microsoft Yahei", "Helvetica Neue", Helvetica, Tahoma, sans-serif;
 
}
.header .nav ul li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all .5s;
}
.header .nav ul li a {
  display: block;
  float: left;
  color: #fff;
}
.header .nav ul li a i{
	display: inline-block;
	background: url(../images/xx.png) no-repeat center center/cover;
	width: 10px;
	height: 8px;
	margin-left: 5px;
	
}

.header .nav ul li a .home{
	position: relative;
	top: 5px;
}

.header .nav ul li .navbtn{
	position: absolute;
	left: 0px;
	top: 100%;
	width: 135px;
	background: #fff;
	padding: 15px 0;
	display: none;
}
.header .nav ul li .navbtn li{
	float: left;
	width: 100%;
	margin-right: 0;
	text-align: center;
	font-size: 14px;
	line-height: 36px;
	
}
.header .nav ul li .navbtn li a{
	color: #000;
	padding-left: 17px;
}
.header .nav ul li .navbtn li a:hover{
	text-decoration: underline;
}

.header .nav ul li:hover .navbtn{
	display: block;
}
.header .nav ul li:hover,
.header .nav ul li.cur {
  border-bottom-color: #fff;
}
.header .nav ul li:hover:before,
.header .nav ul li.cur:before {
  width: 100%;
}
.footer {
  background: #222222;
  padding: 60px 0;
}
.footer .left {
  float: left;
}
.footer .left .bq {
  color: #999999;
  font-size: 15px;
}
.footer .left .foot_nav {
  margin-top: 20px;
  border-bottom: 1px solid #393939;
}
.footer .left .foot_nav a {
  padding-bottom: 16px;
  display: block;
  float: left;
  color: #999;
  font-size: 16px;
  position: relative;
  margin-left: 55px;
  transition: all .5s;
}
.footer .left .foot_nav a:first-child {
  margin-left: 0;
}
.footer .left .foot_nav a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all .5s;
}
.footer .left .foot_nav a:hover {
  color: #fff;
}
.footer .left .foot_nav a:hover:before {
  width: 100%;
}
.footer .left .bottom {
  margin-top: 22px;
}
.footer .left .bottom a {
  display: block;
  float: left;
  font-size: 14px;
  color: #999;
  margin-right: 10px;
}
.footer .right {
  float: right;
}
.footer .right .dh {
  font-family: DINEngschriftStd;
  font-size: 41px;
  color: #999;
  margin-bottom: 10px;
}
.footer .right p {
  font-size: 15px;
  line-height: 24px;
  color: #999;
}
.banner{
	position: relative;
}
.banner .wz{
	position: absolute;
	left: 8.854%;
	top: 34%;
	width: 28.6458%;
}
.banner .vpa{
	position: absolute;
	left: 48.90625%;
	top: 28%;
	width: 32.1875%;
}
.banner .num{
	position: absolute;
	right: 8.854%;
	top: 22%;
	width: 3.802083333%;
}
.banner .icon{
	position: absolute;
	left: 8.854%;
	top: 68%;
	width: 2.6%;
}
.banner .slick-prev,
.banner .slick-next {
  border: none;
  width: 40px;
  height: 78px;
  margin-top: -39px;
}
.banner .slick-prev {
  left: 4%;
  background: url(../images/prev.png) no-repeat center center;
}
.banner .slick-next {
  right: 4%;
  background: url(../images/next.png) no-repeat center center;
}
.links {
  background: #ededed;
  padding: 50px 0;
}
.links .left {
  float: left;
}
.links .left ul li {
  float: left;
  background: #e6e6e6;
  line-height: 44px;
  padding: 0 20px;
  color: #666666;
  font-size: 16px;
  margin-right: 3px;
}
.links .left ul li:hover,
.links .left ul li.cur {
  background: #333333;
  color: #fff;
}
.links .left p {
  color: #999999;
  font-size: 14px;
  margin-top: 18px;
}
.links .right {
  float: right;
}
.links .links_con {
  max-width: 1015px;
  width: 100%;
}
.links .links_con .text {
  display: none;
  margin-left: -20px;
}
.links .links_con .text:first-child {
  display: block;
}
.links .links_con .text a {
  margin-left: 20px;
  display: block;
  float: left;
  color: #999999;
  font-size: 14px;
  line-height: 28px;
}
.title {
  background: url(../images/home_bg.png) no-repeat left center;
  height: 103px;
}
.title span {
  float: left;
  color: #adadad;
  font-size: 32px;
  text-transform: uppercase;
  display: block;
  font-family: DINEngschriftStd;
  margin-left: 145px;
  margin-top: 44px;
  line-height: 32px;
}
.title h3,.title h2 {
  color: #333333;
  float: left;
  font-size: 32px;
  margin-left: 20px;
  margin-top: 64px;
}
.home_news {
  background: #f6f6f6;
  padding: 20px 0 80px;
}
.home_news .fwdt_box {
  background: #fff;
  width: 100%;
  padding: 70px 90px;
}
.home_news .fwdt_box .top .title {
  float: left;
}
.home_news .fwdt_box .top .fwdt_R {
  position: relative;
  float: right;
  padding-top: 85px;
}
.home_news .fwdt_box .top .fwdt_R .prev,
.home_news .fwdt_box .top .fwdt_R .next {
  width: 14px;
  height: 15px;
  float: left;
  cursor: pointer;
}
.home_news .fwdt_box .top .fwdt_R .prev {
  margin-right: 80px;
  background: url(../images/xia.jpg) no-repeat center center;
}
.home_news .fwdt_box .top .fwdt_R .next {
  background: url(../images/shang.jpg) no-repeat center center;
}
.home_news .fwdt_box .top .fwdt_R .num {
  position: absolute;
  top: 75px;
  right: 32px;
  color: #999999;
  font-size: 20px;
  font-family: arial;
}
.home_news .fwdt_box .top .fwdt_R .num span {
  font-size: 26px;
}
.home_news .fwdt_box .fwdt_div {
  margin-top: 40px;
}
.home_news .fwdt_box .fwdt_div ul li {
  float: left;
  position: relative;
  width: 48%;
}
.home_news .fwdt_box .fwdt_div ul li:nth-child(2n) {
  float: right;
}
.home_news .fwdt_box .fwdt_div ul li .img {
  line-height: 0;
  overflow: hidden;
  display: none;
}
.home_news .fwdt_box .fwdt_div ul li .img img {
  width: 100%;
}
.home_news .fwdt_box .fwdt_div ul li .text {
/*  position: absolute;
  left: 0;
  bottom: 0;*/
  padding: 20px;
  width: 100%;
  height: auto;
  background: url(../images/bg.png);
  text-align: center;
}
.home_news .fwdt_box .fwdt_div ul li .text .icon {
  height: 47px;
  line-height: 0;
}
.home_news .fwdt_box .fwdt_div ul li .text p {
  margin-top: 8px;
  color: #fff;
  font-size: 19px;
}
.home_news .fwdt_box .fwdt_div ul li .text .more {
  background: url(../images/home_news_icon2.png) no-repeat center center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #fff;
  margin: 45px auto 0;
  display: none;
}/*
.home_news .fwdt_box .fwdt_div ul li:hover .text {
  height: 100%;
  padding-top: 140px;
}
.home_news .fwdt_box .fwdt_div ul li:hover .text .more {
  display: block;
}*/
.home_news .gdzx_box {
  background: #fff;
  margin-top: 10px;
  padding: 70px 90px 40px;
}
.home_news .gdzx_box .top .title {
  float: left;
}
.home_news .gdzx_box .top .gdzx_R {
  margin-top: 60px;
  float: right;
}
.home_news .gdzx_box .top .gdzx_R .list {
  float: left;
}
.home_news .gdzx_box .top .gdzx_R a {
  display: block;
  float: left;
  line-height: 44px;
  color: #666666;
  font-size: 16px;
  background: #ededed;
  margin-left: 3px;
  padding: 0 20px;
}
.home_news .gdzx_box .top .gdzx_R a:hover,
.home_news .gdzx_box .top .gdzx_R a.cur {
  color: #fff;
  background: #333333;
}
.home_news .gdzx_box ul {
  margin-top: 20px;
}
.home_news .gdzx_box ul li {
  float: left;
  border-top: 2px solid #e7e7e7;
  padding: 35px 0;
  width: 48%;
}
.home_news .gdzx_box ul li:nth-child(2n) {
  float: right;
}
.home_news .gdzx_box ul li:first-child,
.home_news .gdzx_box ul li:nth-child(2) {
  border: none;
}
.home_news .gdzx_box ul li .bt h3 {
  float: left;
  color: #000000;
  font-size: 22px;
  max-width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .gdzx_box ul li .bt span {
  float: right;
  color: #000000;
  font-size: 0px;
}
.home_news .gdzx_box ul li p {
  margin-top: 12px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.home_about {
  background: url(../images/home_about_bg.jpg) no-repeat center center / cover;
  min-height: 830px;
  padding-top: 190px;
}
.home_about .img {
  float: left;
  margin-left: 305px;
  max-width: 259px;
  width: 100%;
  line-height: 0;
}
.home_about .text {
  float: left;
  margin-left: 83px;
  max-width: 628px;
  width: 100%;
  color: #ffffff;
}
.home_about .text i {
  display: block;
  width: 4px;
  height: 124px;
  background: #fff;
  opacity: 0.3;
  margin-bottom: 15px;
}
.home_about .text h3 {
  font-size: 32px;
  font-weight: normal;
}
.home_about .text .bt {
  margin-top: 10px;
  font-size: 20px;
}
.home_about .text p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 24px;
}
.home_about .text a {
  margin-top: 65px;
  display: block;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  font-family: DINEngschriftStd;
  background: #fff;
  text-transform: uppercase;
  color: #333333;
  letter-spacing: 4px;
}
.home_case {
  padding: 80px 0;
}
.home_case .top .title {
  float: left;
}
.home_case .top .gdzx_R {
  margin-top: 60px;
  float: right;
}
.home_case .top .gdzx_R .list {
  float: left;
}
.home_case .top .gdzx_R a {
  display: block;
  float: left;
  line-height: 44px;
  color: #666666;
  font-size: 16px;
  background: #ededed;
  margin-left: 3px;
  padding: 0 20px;
}
.home_case .top .gdzx_R a i {
  display: inline-block;
  margin-right: 5px;
  position: relative;
}
.home_case .top .gdzx_R a .i1 {
  top: 3px;
  width: 13px;
  height: 17px;
  background: url(../images/home_case_icon1.png) no-repeat center center;
}
.home_case .top .gdzx_R a .i2 {
  top: 2px;
  width: 16px;
  height: 16px;
  background: url(../images/home_case_icon2.png) no-repeat center center;
}
.home_case .top .gdzx_R a .i3 {
  top: 4px;
  width: 12px;
  height: 20px;
  background: url(../images/home_case_icon3.png) no-repeat center center;
}
.home_case .top .gdzx_R a .i4 {
  top: 2px;
  width: 16px;
  height: 16px;
  background: url(../images/home_case_icon4.png) no-repeat center center;
}
.home_case .top .gdzx_R a .i5 {
  width: 12px;
  height: 12px;
  background: url(../images/home_case_icon5.png) no-repeat center center;
}
.home_case .top .gdzx_R a:hover,
.home_case .top .gdzx_R a.cur {
  color: #fff;
  background: #333333;
}
.home_case .top .gdzx_R a:hover .i1,
.home_case .top .gdzx_R a.cur .i1 {
  background: url(../images/home_case_icon01.png) no-repeat center center;
}
.home_case .top .gdzx_R a:hover .i2,
.home_case .top .gdzx_R a.cur .i2 {
  background: url(../images/home_case_icon02.png) no-repeat center center;
}
.home_case .top .gdzx_R a:hover .i3,
.home_case .top .gdzx_R a.cur .i3 {
  background: url(../images/home_case_icon03.png) no-repeat center center;
}
.home_case .top .gdzx_R a:hover .i4,
.home_case .top .gdzx_R a.cur .i4 {
  background: url(../images/home_case_icon04.png) no-repeat center center;
}
.home_case .top .gdzx_R a:hover .i5,
.home_case .top .gdzx_R a.cur .i5 {
  background: url(../images/home_case_icon05.png) no-repeat center center;
}
.home_case .top{
	margin-bottom: 50px;
}
.home_case .home_case_con .box {
  display: none;
}
.home_case .home_case_con .box:first-child{
	display: block;
}

.home_case .box ul {
  float: left;
  width: 32%;
  margin-right: 2%;
}
.home_case .box ul:last-child {
  margin-right: 0;
}
.home_case .box ul li {
  width: 100%;
  float: left;
  margin-bottom: 6%;
  position: relative;
}
.home_case .box ul li .img {
  line-height: 0;
  overflow: hidden;
}
.home_case .box ul li .text {
  opacity: 0;
  position: absolute;
  left: 2%;
  bottom: 12px;
  width: 96%;
  background: rgba(255, 255, 255, 0.9);
  padding: 45px 38px;
  transition: all .5s;
}
.home_case .box ul li .text span {
  position: absolute;
  right: 34px;
  top: 39px;
  width: 50px;
  height: 50px;
}
.home_case .box ul li .text h4 {
  font-family: DINEngschriftStd;
  color: #333333;
  font-size: 32px;
  text-transform: uppercase;
  display:none;
}
.home_case .box ul li .text i {
  display: block;
  width: 17px;
  height: 3px;
  background: #cccccc;
  /*margin: 15px 0;*/
}
.home_case .box ul li .text h3 {
  font-size: 22px;
  font-weight: normal;
  color: #000000;
	 padding-top:5px;
	 padding-bottom:5px;
}
.home_case .box ul li .text p {
  margin-top: 10px;
  color: #333333;
  font-size: 15px;
  line-height: 26px;
  height: 52px;
  overflow: hidden;
}
.home_case .box ul li:hover .text {
  opacity: 1;
}
.home_tezheng {
  background: url(../images/home_tezheng_bg.jpg) no-repeat center center / cover;
  padding: 90px 0 100px;
}
.home_tezheng .top .title {
  float: left;
}
.home_tezheng .top .title h3 {
  color: #ffffff;
}
.home_tezheng .top .title p {
  float: left;
  color: #ffffff;
  font-size: 16px;
  margin: 81px 0 0 15px;
}
.home_tezheng .top .more {
  float: right;
  width: 142px;
  height: 46px;
  border: 2px solid #656665;
  text-align: center;
  color: #7a7a7b;
  font-size: 18px;
  font-family: DINEngschriftStd;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  line-height: 42px;
  margin-top: 56px;
}
.home_tezheng ol {
  margin-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}
.home_tezheng ol li {
  margin-top: 80px;
  float: left;
  width: 33.33333333%;
  text-align: center;
  padding: 50px 55px;
  position: relative;
}
.home_tezheng ol li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 90%;
  background: rgba(255, 255, 255, 0.2);
}
.home_tezheng ol li:last-child:before {
  display: none;
}
.home_tezheng ol li .img {
  height: 65px;
  line-height: 0;
}
.home_tezheng ol li h3 {
  margin-top: 28px;
  color: #ffffff;
  font-size: 22px;
}
.home_tezheng ol li p {
  margin-top: 12px;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.home_lilian {
  background: url(../images/home_bg2.jpg) no-repeat top center / cover;
}
.home_lilian .text {
  float: left;
  max-width: 560px;
  width: 100%;
  padding-top: 115px;
}
.home_lilian .text .img {
  line-height: 0;
  margin-left: -10px;
}
.home_lilian .text .con {
  margin-top: 35px;
}
.home_lilian .text .con h3 {
  color: #000000;
  font-size: 32px;
}
.home_lilian .text .con .name {
  margin-top: 12px;
  color: #333333;
  font-size: 18px;
}
.home_lilian .text .con .t {
  margin-top: 18px;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}
.home_lilian .img_box {
  float: right;
  max-width: 842px;
  width: 100%;
  min-height: 722px;
  position: relative;
}
.home_lilian .img_box .img {
  line-height: 0;
  overflow: hidden;
  width: 67%;
  display: block;
}
.home_lilian .img_box .img2 {
  position: absolute;
  right: -8px;
  bottom: 0;
  line-height: 0;
  background: #f6f6f6;
  padding: 8px 8px 0;
  width: 52%;
}
.home_service {
  background: url(../images/home_bg3.jpg) no-repeat center top / cover;
  padding: 100px 0 90px;
}
.home_service .left {
  float: left;
}
.home_service .left .title {
  background: url(../images/title2.png) no-repeat left center;
  height: 179px;
}
.home_service .left .title span {
  margin-top: 120px;
  margin-left: 91px;
}
.home_service .left .con i {
  display: block;
  width: 24px;
  height: 3px;
  background: #d4d4d4;
  margin: 25px 0 20px;
}
.home_service .left .con h3 {
  color: #000000;
  font-size: 32px;
}
.home_service .left .con p {
  margin-top: 10px;
  color: #333333;
  font-size: 20px;
  letter-spacing: 15px;
  line-height: 30px;
}
.home_service .right {
  float: right;
  width: 79%;
}
.home_service .right ul li {
  float: left;
  width: 33%;
  transition: all .5s;
  margin-right: 0.5%;
}
.home_service .right ul li:last-child {
  margin-right: 0;
}
.home_service .right ul li .img {
  position: relative;
}
.home_service .right ul li .img span {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.home_service .right ul li:hover .img span img{
	 transform: scale(1.2); 
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.home_service .right ul li .img span img{
	transition: all 1.2s;
    -o-transition: all 1.2s;
    -moz-transition: all 1.2s;
    -ms-transition: all 1.2s;
    -webkit-transition: all 1.2s;
}

.home_service .right ul li .img .bt {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
.home_service .right ul li .img .bt h4 {
  font-size: 30px;
  font-family: DINEngschriftStd;
  color: #fff;
  opacity: 0.2;
  text-transform: uppercase;
}
.home_service .right ul li .img .bt h3 {
  color: #ffffff;
  font-size: 22px;
}
.home_service .right ul li .text {
  padding: 30px;
}
.home_service .right ul li .text .t {
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  height: 96px;
}
.home_service .right ul li .text .con {
  opacity: 0;
  margin-top: 20px;
}
.home_service .right ul li .text .con p {
  width: 50%;
  float: left;
  color: #808080;
  font-size: 16px;
  line-height: 30px;
  background: url(../images/home_service_icon1.png) no-repeat left center;
  padding-left: 16px;
}
.home_service .right ul li:hover,
.home_service .right ul li.cur {
  background: #262626;
}
.home_service .right ul li:hover .text .t,
.home_service .right ul li.cur .text .t {
  color: #aaaaaa;
}
.home_service .right ul li:hover .text .con,
.home_service .right ul li.cur .text .con {
  opacity: 1;
}
.pinpai_box {
  background: url(../images/ny_bg1.jpg) no-repeat center center / cover;
  padding: 140px 0;
}
.pinpai_box .box {
  padding: 0 90px;
}
.pinpai_box .box .img {
  float: left;
  max-width: 662px;
  width: 100%;
  line-height: 0;
}
.pinpai_box .box .text {
  float: right;
  width: 46%;
}
.pinpai_box .box .text h4 {
  color: #cccccc;
  font-size: 50px;
  text-transform: uppercase;
  font-family: DINEngschriftStd;
}
.pinpai_box .box .text h3 {
  margin-top: 10px;
  font-size: 30px;
  color: #000000;
}
.pinpai_box .box .text .t {
  margin-top: 25px;
  color: #333333;
  font-size: 18px;
  line-height: 36px;
}
.ny_title span {
  float: left;
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: DINEngschriftStd;
  color: #999999;
  line-height: 50px;
}
.ny_title h3,.ny_title h2 {
  float: left;
  color: #333;
  font-size: 30px;
  margin: 54px 20px 0 15px;
}
.ny_title p {
  margin-top: 68px;
  float: left;
  color: #CCCCCC;
  font-size: 16px;
}
.pinpai_box2 {
  background: url(../images/ny_bg2.jpg) no-repeat center center / cover;
  padding: 80px 0 90px;
}

.pinpai_box2 .ny_title h3,.pinpai_box2 .ny_title h2{color: #fff;}

.pinpai_box2 .box ul {
  margin-top: 60px;
}
.pinpai_box2 .box ul li {
  float: left;
  width: 33.33333333%;
  text-align: center;
  min-height: 352px;
  border-right: 1px solid #3e3e3d;
  padding-top: 50px;
}
.pinpai_box2 .box ul li:last-child {
  border-right: none;
}
.pinpai_box2 .box ul li .icon {
  line-height: 0;
}
.pinpai_box2 .box ul li h3 {
  margin-top: 32px;
  color: #ffffff;
  font-size: 24px;
  font-weight: normal;
}
.pinpai_box2 .box ul li p {
  margin-top: 10px;
  color: #cccccc;
  font-size: 15px;
  line-height: 24px;
}
.pinpai_box3 {
  background: url(../images/ny_bg3.jpg) no-repeat top center / cover #f6f6f6;
  padding-top: 230px;
}
.pinpai_box3 .box {
  position: relative;
}
.pinpai_box3 .box .text {
  width: 100%;
  position: relative;
}
.pinpai_box3 .box .text .img {
  display: block;
  line-height: 0;
}
.pinpai_box3 .box .text .bt {
  position: absolute;
  left: 90px;
  top: 168px;
  background: url(../images/pinpai_pic1.png) no-repeat left center;
  height: 222px;
  padding: 34px 0 0 56px;
}
.pinpai_box3 .box .text .bt h4 {
  color: #ffffff;
  font-size: 36px;
  text-transform: uppercase;
}
.pinpai_box3 .box .text .bt h3,.pinpai_box3 .box .text .bt h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: normal;
}
.pinpai_box3 .box .con {
  position: absolute;
  right: 90px;
  top: -132px;
  min-height: 560px;
  width: 910px;
  background: url(../images/pinpai_pic2.png);
  padding: 115px 62px 0;
}
.pinpai_box3 .box .con ul li {
  float: left;
  margin-bottom: 105px;
  width: 47%;
}
.pinpai_box3 .box .con ul li:nth-child(2n) {
  float: right;
}
.pinpai_box3 .box .con ul li .icon {
  float: left;
  width: 62px;
  line-height: 0;
}
.pinpai_box3 .box .con ul li .t {
  margin-top: -5px;
  float: right;
  width: 76%;
}
.pinpai_box3 .box .con ul li .t h3 {
  color: #333333;
  font-size: 22px;
}
.pinpai_box3 .box .con ul li .t p {
  margin-top: 12px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.pinpai_box4 {
  background: #f6f6f6;
}
.pinpai_box4 .top .ny_title {
  float: left;
}
.pinpai_box4 .top .ny_title span {
  color: #b3b3b3;
}
.pinpai_box4 .top .ny_title h3,.pinpai_box4 .top .ny_title h2 {
  color: #323232;
}
.pinpai_box4 .top .ny_title p {
  color: #666666;
}
.pinpai_box4 .top .more {
  float: right;
  margin-top: 54px;
  display: block;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  font-family: DINEngschriftStd;
  background: #cccccc;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 4px;
}
.pinpai_box4 .box ul {
  width: 24.25%;
  margin-right: 1%;
}
.pinpai_box4 .box ul li {
  margin-bottom: 4%;
}
.pinpai_box4 .box ul li .text {
  padding: 20px;
}
.pinpai_box4 .box ul li .text span {
  width: 35px;
  height: 35px;
  top: 20px;
  right: 25px;
}
.pinpai_box4 .box ul li .text h4 {
  font-size: 18px;
}
.pinpai_box4 .box ul li .text h3 {
  font-size: 16px;
}
.pinpai_box4 .box ul li .text p {
  font-size: 12px;
  line-height: 22px;
  height: 44px;
  margin-top: 5px;
}
.pinpai_box4 .box2 ul {
  width: 32%;
  margin-right: 2%;
}
.pinpai_box4 .box2 ul li {
  margin-bottom: 6%;
}
.pinpai_box5 {
  background: #f6f6f6;
  padding-bottom: 100px;
}
.pinpai_box5 .box {
  background: #fff;
  padding: 50px 90px;
}
.pinpai_box5 .box .top .ny_title {
  float: left;
}
.pinpai_box5 .box .top .ny_title span {
  color: #b4b4b4;
  display: block;
}
.pinpai_box5 .box .top .ny_title ul {
  float: left;
  margin-top: 5px;
}
.pinpai_box5 .box .top .ny_title ul li {
  display: inline-block;
  float: left;
  width: auto;
  line-height: 40px;
  cursor: pointer;
  color: #585858;
  font-size: 24px;
  margin-right: 40px;
  margin-top: 5px;
}

.pinpai_box5 .box .top .ny_title ul li h2{margin: 0;}

.pinpai_box5 .box .top .ny_title ul li.cur {
  color: #000000;
  font-size: 30px;
  font-weight: normal;
}
.pinpai_box5 .box .top .more {
  float: right;
  margin-top: 50px;
  display: block;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  font-family: DINEngschriftStd;
  background: #cccccc;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 4px;
}
.pinpai_box5 .box ul {
  margin-top: 40px;
}
.pinpai_box5 .box ul li {
  float: left;
  width: 48%;
}
.pinpai_box5 .box ul li:nth-child(2n) {
  float: right;
}
.pinpai_box5 .box ul li .img {
  line-height: 0;
  overflow: hidden;
}
.pinpai_box5 .box ul li .text {
  padding-top: 20px;
}
.pinpai_box5 .box ul li .text .bt {
  line-height: 30px;
}
.pinpai_box5 .box ul li .text .bt h3 {
  font-weight: normal;
  float: left;
  max-width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 24px;
  color: #000;
}
.pinpai_box5 .box ul li .text .bt span {
  float: right;
  color: #000;
  font-size: 20px;
}
.pinpai_box5 .box ul li .text p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.baozhaun_box {
  background: url(../images/ny_bg4.jpg) no-repeat center center / cover;
  min-height: 616px;
}
.baozhaun_box .left {
  float: left;
  padding-top: 185px;
  padding-left: 90px;
}
.baozhaun_box .left h4 {
  color: #d6d5d0;
  font-size: 50px;
  text-transform: uppercase;
  font-family: DINEngschriftStd ;
}
.baozhaun_box .left h3 {
  margin-top: 15px;
  color: #ffffff;
  font-size: 36px;
}
.baozhaun_box .left p {
  margin-top: 5px;
  color: #ffffff;
  font-size: 16px;
}
.baozhaun_box .left i {
  display: block;
  width: 34px;
  height: 2px;
  background: #fff;
  margin-top: 48px;
}
.baozhaun_box .right {
  float: right;
  max-width: 970px;
  width: 100%;
  padding: 0 90px;
}
.baozhaun_box .right ul li {
  float: left;
  width: 40%;
  margin-top: 120px;
}
.baozhaun_box .right ul li .icon {
  width: 50px;
  float: left;
}
.baozhaun_box .right ul li:nth-child(2n) {
  float: right;
}
.baozhaun_box .right ul li .text {
  margin-top: -4px;
  float: right;
  width: 75%;
}
.baozhaun_box .right ul li .text h3 {
  color: #000000;
  font-size: 18px;
}
.baozhaun_box .right ul li .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.title2 {
  text-align: center;
}
.title2 h4 {
  color: #999999;
  font-size: 50px;
  text-transform: uppercase;
  font-family: DINEngschriftStd ;
}
.title2 h3,.title2 h2 {
  color: #333333;
  font-size: 30px;
}
.title2 p {
  margin-top: 5px;
  color: #999999;
  font-size: 16px;
}
.title2 i {
  display: block;
  width: 34px;
  height: 2px;
  background: #000000;
  margin-top: 48px;
  margin: 25px auto;
}
.baozhaun_box2 {
  background: #f2f2f2;
}
.baozhaun_box2 .box {
  background: #fff;
  padding: 70px 90px;
  position: relative;
  top: -52px;
}
.baozhaun_box2 .box ul {
  margin-top: 54px;
}
.baozhaun_box2 .box ul li {
  float: left;
  width: 25%;
  text-align: center;
}
.baozhaun_box2 .box ul li .icon {
  display: block;
  width: 103px;
  height: 103px;
  margin: 0 auto;
  border: 2px solid #f4f4f4;
  border-radius: 50px;
  position: relative;
  z-index: 2;
}
.baozhaun_box2 .box ul li .v1 {
  background: url(../images/baozhuan_icon4.png) no-repeat center center / cover #ffffff;
}
.baozhaun_box2 .box ul li .v2 {
  background: url(../images/baozhuan_icon5.png) no-repeat center center / cover #ffffff;
}
.baozhaun_box2 .box ul li .v3 {
  background: url(../images/baozhuan_icon6.png) no-repeat center center / cover #ffffff;
}
.baozhaun_box2 .box ul li .v4 {
  background: url(../images/baozhuan_icon7.png) no-repeat center center / cover #ffffff;
}
.baozhaun_box2 .box ul li .text {
  width: 250px;
  height: 250px;
  border: 2px solid #f4f4f4;
  border-radius: 50%;
  margin: -27px auto 0;
  padding-top: 70px;
}
.baozhaun_box2 .box ul li .text h3 {
  color: #666666;
  font-size: 20px;
}
.baozhaun_box2 .box ul li .text p {
  margin-top: 8px;
  color: #666666;
  font-size: 16px;
  line-height: 26px;
}
.baozhaun_box2 .box ul li .text span {
  display: block;
  width: 22px;
  height: 22px;
  margin: 25px auto 0;
  background: url(../images/baozhuan_pic1.jpg) no-repeat center center / cover;
}
.baozhaun_box2 .box ul li:hover .icon {
  border-color: #9fc550;
}
.baozhaun_box2 .box ul li:hover .v1 {
  background: url(../images/baozhuan_icon04.png) no-repeat center center / cover #9fc550;
}
.baozhaun_box2 .box ul li:hover .v2 {
  background: url(../images/baozhuan_icon05.png) no-repeat center center / cover #9fc550;
}
.baozhaun_box2 .box ul li:hover .v3 {
  background: url(../images/baozhuan_icon06.png) no-repeat center center / cover #9fc550;
}
.baozhaun_box2 .box ul li:hover .v4 {
  background: url(../images/baozhuan_icon07.png) no-repeat center center / cover #9fc550;
}
.baozhaun_box2 .box ul li:hover .text {
  border-color: #9fc550;
}
.baozhaun_box2 .box ul li:hover .text h3,
.baozhaun_box2 .box ul li:hover .text p {
  color: #9fc550;
}
.baozhaun_box2 .box ul li:hover .text span {
  background: url(../images/baozhuan_pic01.jpg) no-repeat center center / cover;
}
.baozhaun_box3 {
  background: url(../images/ny_bg5.jpg) no-repeat center top #f6f6f6;
  padding-top: 100px;
}
.baozhaun_box3 .box {
  background: url(../images/baozhuan_bg.png);
  min-height: 700px;
  padding: 132px 90px 0;
}
.baozhaun_box3 .box .left {
  float: left;
}
.baozhaun_box3 .box .left h4 {
  color: #d6d5d0;
  font-size: 50px;
  text-transform: uppercase;
  font-family: DINEngschriftStd ;
}
.baozhaun_box3 .box .left h3 {
  margin-top: 15px;
  color: #ffffff;
  font-size: 36px;
}
.baozhaun_box3 .box .left p {
  margin-top: 5px;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}
.baozhaun_box3 .box .left i {
  display: block;
  width: 34px;
  height: 2px;
  background: #fff;
  margin-top: 48px;
}
.baozhaun_box3 .box .right {
  float: right;
  max-width: 880px;
  width: 100%;
  padding-left: 90px;
  border-left: 1px solid #4d4f5a;
}
.baozhaun_box3 .box .right ul li {
  float: left;
  margin-top: 90px;
  width: 40%;
}
.baozhaun_box3 .box .right ul li:nth-child(2n) {
  float: right;
}
.baozhaun_box3 .box .right ul li:first-child,
.baozhaun_box3 .box .right ul li:first-child + li {
  margin-top: 0;
}
.baozhaun_box3 .box .right ul li .icon {
  width: 58px;
  line-height: 0;
  float: left;
}
.baozhaun_box3 .box .right ul li .text {
  float: right;
  width: 75%;
}
.baozhaun_box3 .box .right ul li .text h3 {
  color: #ffffff;
  font-size: 20px;
}
.baozhaun_box3 .box .right ul li .text p {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
}
.haibao_box {
  background: #f6f6f6;
  padding-top: 65px;
}
.haibao_box ul {
  margin-top: 70px;
}
.haibao_box ul li {
  float: left;
  width: 50%;
}
.haibao_box ul li .img {
  float: left;
  width: 50%;
}
.haibao_box ul li .text {
  margin-top: 59px;
  width: 50%;
  background: #1f222f;
  float: left;
  min-height: 356px;
  padding: 90px 38px 0;
}
.haibao_box ul li .text h3 {
  color: #ffffff;
  font-size: 24px;
}
.haibao_box ul li .text .t {
  margin-top: 12px;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}
.kongjian_box {
  background: url(../images/kongjian_bg.jpg) no-repeat center top #ffffff;
  padding-bottom: 70px;
}
.kongjian_box .box {
  padding: 0 90px;
}
.kongjian_box .box .left {
  float: left;
  padding-top: 210px;
}
.kongjian_box .box .left h4 {
  color: #999999;
  font-size: 50px;
  text-transform: uppercase;
  font-family: DINEngschriftStd ;
}
.kongjian_box .box .left h3,.kongjian_box .box .left h2 {
  margin-top: 5px;
  color: #333333;
  font-size: 30px;
}
.kongjian_box .box .left p {
  margin-top: 22px;
  color: #666666;
  font-size: 16px;
  line-height: 26px;
}
.kongjian_box .box .left i {
  display: block;
  width: 34px;
  height: 2px;
  background: #333333;
  margin-top: 25px;
}
.kongjian_box .box .right {
  margin-top: 75px;
  float: right;
  width: 610px;
  background: url(../images/kongjian_bg2.png) no-repeat center 30px;
}
.kongjian_box .box .right span {
  width: 550px;
  margin: 0 auto;
  line-height: 0;
  background: #fff;
  padding: 10px;
  display: block;
}
.kongjian_box ul {
  padding: 70px 90px 0;
}
.kongjian_box ul li {
  float: left;
  background: #fcfcfc;
  width: 32%;
  padding: 50px 60px;
  margin-right: 2%;
}
.kongjian_box ul li:nth-child(3n) {
  margin-right: 0;
}
.kongjian_box ul li .bt span {
  width: 64px;
  float: left;
  height: 50px;
}
.kongjian_box ul li .bt h3 {
  color: #333333;
  font-size: 24px;
  float: left;
  margin-left: 18px;
  line-height: 48px;
}
.kongjian_box ul li .bt .s1 {
  background: url(../images/kongjian_icon1.png) no-repeat left center;
}
.kongjian_box ul li .bt .s2 {
  background: url(../images/kongjian_icon2.png) no-repeat left center;
}
.kongjian_box ul li .bt .s3 {
  background: url(../images/kongjian_icon3.png) no-repeat left center;
}
.kongjian_box ul li p {
  margin-top: 18px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.kongjian_box ul li:hover {
  background: #798e22;
}
.kongjian_box ul li:hover .bt h3 {
  color: #fff;
}
.kongjian_box ul li:hover .bt .s1 {
  background: url(../images/kongjian_icon01.png) no-repeat left center;
}
.kongjian_box ul li:hover .bt .s2 {
  background: url(../images/kongjian_icon02.png) no-repeat left center;
}
.kongjian_box ul li:hover .bt .s3 {
  background: url(../images/kongjian_icon03.png) no-repeat left center;
}
.kongjian_box ul li:hover p {
  color: #fff;
}
.case_banner {
  background: url(../images/liebiaoye1.jpg) no-repeat center center/cover;
  background-size: 100% 100%;
  padding: 200px 0 70px;
  text-align: center;
}
.case_banner h3 {
  color: #ffffff;
  font-size: 36px;
  font-weight: normal;
}
.case_banner p {
  margin-top: 15px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}
.menu {
  margin-top: 50px;
}
.menu a {
  display: inline-block;
  line-height: 45px;
  border-radius: 3px;
  color: #d8d8d8;
  font-size: 18px;
  border-bottom: 1px solid transparent;
}
.menu i{
	display: inline-block;
	width: 5px;
	height: 5px;
	background: #cfd0d0;
	border-radius: 50px;
	margin: 0 25px;
	position: relative;
	top: -3px;
}
.menu i:last-child{display: none;}
.menu a:hover,
.menu a.cur {
  color: #fff;
  border-color: #ffffff;
}
.case_box {
  background: #f6f6f6;
  padding: 65px 0 20px;
}
.case_box .case_title {
  text-align: center;
}
.case_box .case_title h3,.case_box .case_title h2 {
  color: #333333;
  font-size: 24px;
}
.case_box .case_title p {
  margin-top: 15px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
}
.case_box .case_list {
  margin-top: 40px;
}
.case_box .case_list ul li {
  float: left;
  width: 32%;
  margin-bottom: 50px;
  margin-right: 2%;
}
.case_box .case_list ul li a{
	display: inline-block;
}
.case_box .case_list ul li:nth-child(3n) {
  margin-right: 0;
}
.case_box .case_list ul li .img {
  line-height: 0;
  overflow: hidden;
}
.case_box .case_list ul li .img img{
	transition: all 1.2s;
	-o-transition: all 1.2s;
	-moz-transition: all 1.2s;
	-ms-transition: all 1.2s;
	-webkit-transition: all 1.2s;
}
.case_box .case_list ul li:hover .img img{
	transform: scale(1.2);
	-o-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

.case_box .case_list ul li .text {
  padding-top: 12px;
}
.case_box .case_list ul li .text h3{
  font-size: 18px;
  color: #333333;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.case_box .case_list ul li .text h3 a{
	color: #333333;
}
.case_box .case_list ul li .text p {
  margin-top: 5px;
  color: #999999;
  font-size: 14px;
}
.case_box .case_list ul li .text p a{
	color: #999999;
}
/*.case_show {
  background: #f6f6f6;
  padding: 60px 0 70px;
}
.case_show .box {
  padding: 0 90px;
}
.case_show .box h1 {
  text-align: center;
  color: #333333;
  font-size: 36px;
  font-weight: normal;
}
.case_show .box .date {
  margin-top: 20px;
  padding-bottom: 30px;
  text-align: center;
  color: #999999;
  font-size: 16px;
  border-bottom: 1px solid #dddddd;
}
.case_show .box .date span {
  display: inline-block;
  margin: 0 20px;
}
.case_show .box .detail {
  padding-top: 30px;
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}*/

.caseshow_banner {
  background: url(../images/xiangxiye1.jpg) no-repeat center center / cover;
  background-size: 100% 100%;
  padding: 200px 0 100px;
}
.caseshow_banner .box {
  max-width: 1140px;
  width: 100%;
  padding: 0 35px;
}
.caseshow_banner h3,.caseshow_banner h1{
  color: #ffffff;
  font-size: 35px;
  font-weight: normal;
}
.caseshow_banner .t {
  margin: 20px 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
}
.caseshow_banner .fwnr {
  color: #ababab;
  font-size: 14px;
}
.caseshow_banner .sexi {
  margin-top: 35px;
}
.caseshow_banner .sexi li {
  float: left;
  margin-right: 30px;
}
.caseshow_banner .sexi li .icon {
  margin-right: 16px;
  float: left;
  padding: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}
.caseshow_banner .sexi li .icon span {
  width: 45px;
  height: 45px;
  display: block;
  border-radius: 50px;
}
.caseshow_banner .sexi li .icon .s1 {
  background: #3aade3;
}
.caseshow_banner .sexi li .icon .s2 {
  background: #244f9e;
}
.caseshow_banner .sexi li .icon .s3 {
  background: #22255a;
}
.caseshow_banner .sexi li .text {
  padding-top: 5px;
  float: left;
  color: #b5b5b5;
  font-size: 14px;
  line-height: 24px;
}
.caseshow_banner .d {
  margin-top: 30px;
  color: #555654;
  font-size: 14px;
}
.case_show {
  background: #f6f6f6;
  padding: 30px 0 40px;
}
.case_show .left {
  float: left;
  width: 73%;
  background: #fff;
  padding: 35px;
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}

.case_show .left img{border:1px solid rgba(0,0,0,0.05);line-height: 0;}
.case_show .right {
  float: right;
  width: 24%;
}
.case_show .right .case_top {
  padding: 35px 25px;
  background: #fff;
  margin-bottom: 35px;
}
.case_show .right .case_top .icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.case_show .right .case_top .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.case_show .right .case_top h3 {
  margin: 25px 0 15px;
  text-align: center;
  font-weight: normal;
  color: #333333;
  font-size: 16px;
}
.case_show .right .case_top p {
  color: #999999;
  font-size: 14px;
  line-height: 24px;
}
.case_show .right .case_top p span {
  color: #666666;
}
.case_show .right .zxcl_box {
  background: #fff;
  padding: 25px 0;
  margin-bottom: 35px;
}
.case_show .right .zxcl_box h3,.case_show .right .zxcl_box h2 {
  padding: 0 25px;
  color: #333333;
  font-size: 16px;
  font-weight: normal;
  border-bottom: 1px dashed #e5e5e5;
}
.case_show .right .zxcl_box h3 span,.case_show .right .zxcl_box h2 span {
  display: inline-block;
  position: relative;
  bottom: -1px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0d342f;
}
.case_show .right .zxcl_box ul li {
  padding: 0 25px;
  float: left;
  width: 100%;
  line-height: 62px;
  border-bottom: 1px dashed #e5e5e5;
}
.case_show .right .zxcl_box ul li a {
  background: url(../images/case_i.png) no-repeat left center;
  width: 100%;
  line-height: 62px;
  display: block;
  float: left;
  padding-left: 12px;
}
.case_show .right .zxcl_box ul li a p {
  float: left;
  max-width: 60%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #666666;
  font-size: 14px;
}
.case_show .right .zxcl_box ul li a span {
  float: right;
  color: #cccccc;
  font-size: 12px;
}
.case_show .right .zxcl_box ul li:hover {
  background: #ebebeb;
}
.case_show .right .float_box {
  width: 374.5px;
  background: #ffffff;
  padding: 25px 0;
}
.case_show .right .float_box li {
	padding: 0 25px;
  float: left;
  width: 100%;
  border-bottom: 1px dashed #e5e5e5;
  line-height: 50px;
}
.case_show .right .float_box li a {
  display: block;
  width: 100%;
  float: left;
  background: url(../images/case_i.png) no-repeat left center;
  padding-left: 12px;
  line-height: 50px;
}
.case_show .right .float_box li span {
  color: #666666;
  float: left;
}
.case_show .right .float_box li i {
  display: block;
  float: right;
  width: 20px;
  height: 22px;
  margin-top: 15px;
}
.case_show .right .float_box li i.i1 {
  background: url(../images/float_icon1.png) no-repeat center center;
}
.case_show .right .float_box li i.i2 {
  background: url(../images/float_icon2.png) no-repeat center center;
}
.case_show .right .float_box li i.i3 {
  background: url(../images/float_icon3.png) no-repeat center center;
}
.case_show .right .float_box li i.i4 {
  background: url(../images/float_icon4.png) no-repeat center center;
}
.case_show .right .float_box li i.i5 {
  background: url(../images/float_icon5.png) no-repeat center center;
}
.case_show .right .float_box li:hover{
	background: #ebebeb;
}

.news_box {
  background: #f6f6f6;
  padding-bottom: 60px;
}
.news_box .box {
  background: #fff;
  padding: 60px 90px;
}
.news_box .box .left {
  max-width: 1000px;
  width: 100%;
  float: left;
}
.news_box .box .left .tit {
  border-bottom: 1px solid #dee1e1;
  color: #999999;
  font-size: 14px;
  font-weight: normal;
  padding-bottom: 24px;
}
.news_box .box .left .tit span {
  color: #333;
  font-weight: bold;
  font-size: 24px;
  display: inline-block;
  margin-right: 10px;
}
.news_box .box .right {
  float: right;
  max-width: 305px;
  width: 100%;
}
.news_box .box .right .ol_list {
  margin-bottom: 30px;
}
.news_box .box .right .ol_list li {
  float: left;
  width: 100%;
  border-bottom: 1px dotted #dcdcdc;
  padding: 30px 0;
}
.news_box .box .right .ol_list li:first-child {
  padding-top: 0;
}
.news_box .box .right .ol_list li .img {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.news_box .box .right .ol_list li .text {
  padding-top: 15px;
}
.news_box .box .right .ol_list li .text h3 {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: normal;
}
.news_box .box .right .ol_list li .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.news_box .box .right .ol_list li .text .con_btn {
  margin-top: 8px;
  color: #999999;
  font-size: 14px;
}
.news_box .box .right .ol_list li .text .con_btn a {
  float: left;
  display: block;
  color: #999999;
  margin-right: 18px;
  background: url(../images/s1.jpg) no-repeat left center;
  padding-left: 20px;
}
.news_box .box .right .ol_list li .text .con_btn span {
  float: left;
}
.news_box .box .right .ol_list li .text .more {
  margin-top: 11px;
  display: block;
  width: 112px;
  line-height: 32px;
  border: 1px solid #f6f6f6;
  color: #b9b9b9;
  text-align: center;
  text-transform: uppercase;
}
.news_box .box .right .tit {
  color: #333333;
  font-size: 16px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  position: relative;
}
.news_box .box .right .tit:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 3px;
  height: 16px;
  background: #1a58ab;
}
.news_box .box .right .tit span {
  padding-left: 18px;
  position: relative;
}
.news_box .box .right .tit span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 84px;
  height: 2px;
  background: #1a58ab;
}
.news_box .box .right .wz_con {
  margin-top: 20px;
}
.news_box .box .right .wz_con li {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.news_box .box .right .wz_con li:last-child {
  margin-bottom: 0;
}
.news_box .box .right .wz_con li .img {
  float: left;
  width: 109px;
  height: 74px;
  display: block;
  position: relative;
}
.news_box .box .right .wz_con li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.news_box .box .right .wz_con li .text {
  width: 185px;
  float: right;
}
.news_box .box .right .wz_con li .text .bt {
  color: #555555;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.news_box .box .right .wz_con li .text .con_btn {
  margin-top: 5px;
  color: #999999;
  font-size: 14px;
}
.news_box .box .right .wz_con li .text .con_btn a {
  float: left;
  display: block;
  color: #999999;
  margin-right: 18px;
  background: url(../images/s1.jpg) no-repeat left center;
  padding-left: 20px;
}
.news_box .box .right .wz_con li .text .con_btn span {
  float: left;
}
.news_list ul li {
  float: left;
  width: 100%;
  border-bottom: 1px dotted #dcdcdc;
  padding: 30px 0;
}
.news_list ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.news_list ul li .img {
  width: 226px;
  height: 153px;
  float: left;
  position: relative;
}
.news_list ul li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.news_list ul li .text {
  float: right;
  width: 750px;
}
.news_list ul li .text .bt {
  color: #333333;
  font-size: 20px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_list ul li .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.news_list ul li .con_btn {
  margin-top: 8px;
  color: #999999;
  font-size: 14px;
}
.news_list ul li .con_btn a {
  float: left;
  display: block;
  color: #999999;
  margin-right: 18px;
  background: url(../images/s1.jpg) no-repeat left center;
  padding-left: 20px;
}
.news_list ul li .con_btn span {
  float: left;
}
.news_list ul li .more {
  margin-top: 11px;
  display: block;
  width: 112px;
  line-height: 32px;
  border: 1px solid #f6f6f6;
  color: #b9b9b9;
  text-align: center;
  text-transform: uppercase;
}
.news_list .bottom {
  text-align: center;
  background: #f2f2f2;
  line-height: 44px;
  height: 44px;
}
.news_list .bottom a {
  display: block;
  color: #666666;
  font-size: 15px;
  text-transform: uppercase;
}
.news_list .bottom a i {
  background: url(../images/s4.jpg) no-repeat left center;
  width: 31px;
  height: 9px;
  display: inline-block;
  margin-left: 9px;
  position: relative;
  top: -1px;
}
.news_show h1 {
  color: #333333;
  font-size: 24px;
}
.news_show .date {
  margin-top: 20px;
  line-height: 24px;
}
.news_show .date .da {
  float: left;
  display: table;
}
.news_show .date .da span {
  float: left;
  display: inline-block;
  color: #888888;
  font-size: 14px;
  margin-right: 16px;
}
.news_show .date .fx {
  line-height: 24px;
  float: right;
  display: table;
}
.news_show .date .fx span {
  display: inline-block;
  float: left;
  color: #888888;
  font-size: 14px;
}
.news_show .date .fx div {
  margin-top: 2px;
  float: left;
  display: table;
}
.news_show .date .fx div a {
  height: 16px;
  display: block;
  float: left;
  margin-left: 10px;
}
.news_show .g_newstop {
  position: relative;
  margin-top: 25px;
  background: #fafafa;
  padding: 30px;
}
.news_show .g_newstop p {
  color: #777777;
  font-size: 14px;
  line-height: 26px;
}
.news_show .detail {
  padding-top: 30px;
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}
.contact_banner {
  position: relative;
}
.contact_banner .container {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  padding: 305px 90px 0;
  color: #ffffff;
}
.contact_banner .container h3 {
  font-size: 36px;
  font-weight: normal;
}
.contact_banner .container p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 30px;
}
.contact_banner .container .dh {
  width: 450px;
  margin-top: 12px;
  font-size: 25px;
  font-weight: bold;
  background: url(../images/dh.png) no-repeat left top;
  padding-left: 43px;
  border-bottom: 1px dotted #939b9f;
  padding-bottom: 15px;
}
.contact_banner .container .dh span {
  display: inline-block;
  margin-right: 20px;
}
.contact_banner .container .dh span:last-child {
  margin-right: 0;
}
.contact_banner .container .bottom {
  margin-top: 25px;
}
.contact_banner .container .bottom a {
  display: block;
  width: 135px;
  line-height: 45px;
  background: #9fc550;
  border-radius: 3px;
  float: left;
  text-align: center;
  color: #fff;
  font-size: 14px;
  margin-right: 10px;
}
.contact_banner .container .bottom a i {
  display: inline-block;
  width: 17px;
  height: 19px;
  background: url(../images/dh1.png) no-repeat center center;
  margin-right: 5px;
  position: relative;
  top: 5px;
}

.contact_banner .container .bottom a:nth-child(1) i{
	 background: url(../images/dh2.png) no-repeat center center;
}

.contact_banner .container .bottom a:nth-child(2) i{
	 background: url(../images/dh2.png) no-repeat center center;
}

.contact_top .box {
  padding: 0 90px;
  position: relative;
  top: -160px;
}
.contact_top .box ul li {
  float: left;
  width: 32%;
  background: #fcfcfc;
  text-align: center;
  padding: 65px 50px;
  text-align: left;
  margin-right: 2%;
}
.contact_top .box ul li:nth-child(3n) {
  margin-right: 0;
}
.contact_top .box ul li h3 {
  text-align: center;
  color: #333333;
  font-size: 26px;
}
.contact_top .box ul li .t {
  margin-top: 20px;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}
.contact_top .box ul li .t p {
  margin: 10px 0;
}
.contact_top .box ul li .t span {
  float: left;
  width: 75px;
  text-align: right;
}
.contact_top .box ul li .t em {
  float: left;
  font-style: normal;
  width: 263px;
}
.contact_top .box ul li:hover {
  background: #9fc550;
}
.contact_top .box ul li:hover h3 {
  color: #fff;
}
.contact_top .box ul li:hover .t {
  color: #fff;
}
.feedback .box {
  position: relative;
  top: -80px;
  padding: 0 90px;
}
.feedback .box .title3 h3 {
  color: #333333;
  font-size: 30px;
}
.feedback .box .title3 p {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
}
.feedback .box ul {
  margin-top: 30px;
}
.feedback .box ul li {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.feedback .box ul li input {
  float: left;
  width: 250px;
  border: 1px solid #F6F6F6;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  line-height: 50px;
  font-family: "微软雅黑";
  font-size: 14px;
  padding: 0 15px;
  color: #666;
}
.feedback .box ul li textarea {
  width: 100%;
  height: 130px;
  border: 1px solid #F6F6F6;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  font-family: "微软雅黑";
  font-size: 14px;
  padding: 15px;
  color: #666;
}
.feedback .box ul li .text span {
  float: left;
  line-height: 50px;
  color: #999999;
}
.feedback .box ul li .text div {
  float: left;
  line-height: 50px;
}
.feedback .box ul li .text div em {
  color: #999999;
  float: left;
  font-style: normal;
  margin-right: 30px;
  background: url(../images/feedback1.jpg) no-repeat left 19px;
  padding-left: 20px;
}
.feedback .box ul li .text div em.cur {
  background-image: url(../images/feedback2.jpg);
}
.feedback .box ul li .btn {
  width: 135px;
  line-height: 45px;
  background: #9fc550;
  color: #fff;
  border: none;
  box-shadow: none;
  font-size: 16px;
}
.feedback .box ul li .t {
  float: left;
  line-height: 45px;
  margin-left: 20px;
  color: #999999;
}
.feedback .box #map {
  margin-top: 40px;
  width: 100%;
  height: 600px;
}

/**2018-7-5**/
.nybanner {
	overflow: hidden;
  position: relative;
}
.design_box {
  position: absolute;
  left: 0;
  bottom: 62px;
  width: 100%;
}
.design_box ul {
  background: url(../images/design_b1.png);
}
.design_box ul li {
  float: left;
  width: 25%;
  height: 165px;
  border-left: 1px solid #18110a;
  padding-left: 5%;
  padding-top: 3%;
}
.design_box ul li .icon {
  float: left;
  line-height: 0;
}
.design_box ul li .text {
  float: left;
  margin-left: 20px;
  padding-top: 8px;
}
.design_box ul li .text h3 {
  color: #959391;
  font-size: 24px;
  font-family: DINEngschriftStd;
  font-weight: normal;
}
.design_box ul li .text p {
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
}
.design_box2 {
  padding: 100px 0;
}
.design_box2 .left {
  float: left;
  width: 40%;
  padding-top: 35px;
}
.design_box2 .left h3 {
  margin-top: 25px;
  color: #000000;
  font-size: 32px;
  text-align: left;
}
.design_box2 .left .t {
  margin-top: 15px;
  color: #666666;
  font-size: 18px;
  line-height: 30px;
}
.design_box2 .left a {
  margin-top: 65px;
  display: block;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 4px;
  background: #f0f0f0;
}
.design_box2 .right {
  float: right;
  line-height: 0;
  width: 40%;
}
.design_box3 {
  background: #f6f6f6;
  padding: 100px 0;
}
.design_box3 .left {
  float: left;
  line-height: 0;
  width: 56%;
}
.design_box3 .right {
  width: 44%;
  float: right;
}
.design_box3 .right .img {
  display: block;
  width: 100%;
  line-height: 0;
}
.design_box3 .right .text {
  padding-top: 20px;
  padding-left: 11%;
  margin-bottom: 35px;
}
.design_box3 .right .text h3 {
  color: #000000;
  font-size: 32px;
}
.design_box3 .right .text i {
  margin: 18px 0;
  display: block;
  width: 32px;
  height: 3px;
  background: #c2c2c2;
}
.design_box3 .right .text h4 {
  color: #000000;
  font-size: 22px;
  font-weight: normal;
}
.design_box3 .right .text p {
  margin-top: 12px;
  line-height: 30px;
  color: #666666;
  font-size: 18px;
}
.title_bt {
  font-size: 16px;
  margin: 81px 0 0 15px;
  float: left;
  color: #666666;
}
.design_box4 {
  background: url(../images/design_bg.jpg) no-repeat center center / cover;
  padding: 112px 0 126px;
}
.design_box4 .title h3 {
  color: #fff;
}
.design_box4 .title .title_bt {
  color: #ffffff;
}
.design_box4 ol {
  margin-top: 100px;
}
.design_box4 ol li {
  float: left;
  width: 40%;
  border-right: 1px solid #545453;
  padding: 0 5%;
}
.design_box4 ol li .icon {
  line-height: 0;
}
.design_box4 ol li h3 {
  margin-top: 24px;
  color: #fff;
  font-size: 24px;
}
.design_box4 ol li h3 span {
  font-size: 26px;
  color: #818181;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  top: 2px;
  margin-left: 10px;
}
.design_box4 ol li p {
  margin-top: 12px;
  color: #cccccc;
  font-size: 16px;
  line-height: 26px;
}
.design_box4 ol li:first-child {
  padding-left: 0;
  width: 30%;
}
.design_box4 ol li:last-child {
  width: 30%;
  border-right: none;
  padding-right: 0;
}
.design_box5 {
  padding-bottom: 50px;
}
.design_box6 {
  background: #333333;
}
.design_box6 .left {
  float: left;
  width: 50%;
  line-height: 0;
}
.design_box6 .left span {
  display: block;
  position: relative;
  width: 100%;
}
.design_box6 .left span:before {
  content: "";
  position: absolute;
  right: -25px;
  top: 203px;
  width: 25px;
  height: 50px;
  background: url(../images/design_b2.jpg) no-repeat center center / cover;
}
.design_box6 .right {
  float: right;
  width: 50%;
  padding: 125px 8.9% 0 5.3%;
}
.design_box6 .right .text h3 {
  margin-top: 40px;
  font-size: 32px;
  color: #ffffff;
}
.design_box6 .right .text h4 {
  margin-top: 6px;
  color: #e8e8e8;
  font-size: 24px;
  font-weight: normal;
}
.design_box6 .right .text ol li {
  float: left;
  width: 100%;
  margin-top: 50px;
}
.design_box6 .right .text ol li .icon {
  float: left;
  line-height: 0;
  width: 12%;
}
.design_box6 .right .text ol li .t {
  float: right;
  width: 85%;
  margin-top: -5px;
}
.design_box6 .right .text ol li .t .bt {
  color: #fff;
  font-size: 20px;
}
.design_box6 .right .text ol li .t p {
  color: #e8e8e8;
  font-size: 15px;
  margin-top: 5px;
}
.news_info {
  padding-top: 30px;
}
.news_info .box {
  padding: 70px 90px;
}
/**about**/
.about_box {
  background: url(../images/about_bg.jpg) no-repeat center top / cover;
  padding: 90px 0;
}
.about_box .box {
  margin-top: 35px;
}
.about_box .box .img {
  line-height: 0;
  width: 100%;
}
.about_box .box .t {
  margin-top: 20px;
  text-align: center;
  color: #666666;
  font-size: 20px;
  line-height: 36px;
  text-transform: uppercase;
}
.about_box .box .text {
  text-align: center;
  margin-top: 45px;
}
.about_box .box .text .left {
  display: inline-block;
}
.about_box .box .text .left .bt {
  color: #777777;
  font-size: 122px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  line-height: 80px;
}
.about_box .box .text .left p {
  margin-left: 5px;
  margin-top: 10px;
  text-align: left;
  color: #888888;
  font-size: 23px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  position: relative;
}
.about_box .box .text .left p:before {
  content: "";
  position: absolute;
  right: 5px;
  top: 13px;
  width: 18px;
  height: 3px;
  background: #888888;
}
.about_box .box .text .right {
  position: relative;
  top: -2px;
  text-align: left;
  margin-left: 25px;
  display: inline-block;
  color: #777777;
  font-size: 18px;
  line-height: 32px;
  width: 522px;
}
.about_box2 {
  background: url(../images/about_bg2.jpg) no-repeat center center / cover;
  padding: 130px 0;
}
.about_box2 .box {
  float: right;
  width: 832px;
  background: #fff;
  padding: 70px 75px;
}
.about_box2 .box .t {
  margin-top: 30px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.about_box2 .box ol {
  margin-top: 40px;
}
.about_box2 .box ol li {
  float: left;
  text-align: center;
  position: relative;
  padding: 0 30px;
}
.about_box2 .box ol li:first-child {
  padding-left: 0;
}
.about_box2 .box ol li:last-child {
  padding-right: 0;
}
.about_box2 .box ol li:last-child:before {
  display: none;
}
.about_box2 .box ol li .bt {
  font-family: DINEngschriftStd;
  color: #333333;
  font-size: 50px;
}
.about_box2 .box ol li p {
  color: #999999;
  font-size: 18px;
}
.about_box2 .box ol li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 1px;
  height: 72px;
  background: #e0e0e0;
}
.about_box3 {
  background: #f6f6f6;
  padding: 80px 0;
}
.about_box3 .t {
  margin-top: 25px;
  color: #333333;
  font-size: 18px;
  line-height: 30px;
}
.about_box3 .yjhd_box {
  background: #333333;
  margin-top: 40px;
}
.about_box3 .yjhd_box .box .text {
  float: left;
  width: 24.5%;
  padding: 90px 3% 0;
}
.about_box3 .yjhd_box .box .text .date {
  color: #616161;
  font-size: 40px;
  font-family: DINEngschriftStd;
  position: relative;
}
.about_box3 .yjhd_box .box .text .date:before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  width: 24px;
  height: 17px;
  background: url(../images/about_b1.jpg) no-repeat center center / cover;
}
.about_box3 .yjhd_box .box .text h3 {
  margin-top: 50px;
  font-size: 32px;
  color: #fff;
}
.about_box3 .yjhd_box .box .text i {
  margin: 25px 0;
  display: block;
  width: 28px;
  height: 4px;
  background: #5c5c5c;
}
.about_box3 .yjhd_box .box .text p {
  color: #cccccc;
  font-size: 16px;
  line-height: 28px;
}
.about_box3 .yjhd_box .box .img {
  float: right;
  width: 75.5%;
  line-height: 0;
}
.about_box3 .yjhd_box .slick-dots {
  bottom: 35px;
  text-align: left;
  padding-left: 45px;
}
.about_box3 .yjhd_box .slick-dots li button {
  width: 46px;
  height: 2px;
  background: #5c5c5c;
}
.about_box3 .yjhd_box .slick-dots li.slick-active button {
  background: #ffffff;
}
.about_box4 {
  background: #333333;
  padding: 100px 0 70px;
}
.about_box4 .container {
  position: relative;
}
.about_box4 .container .img_bg {
  position: absolute;
  left: 0;
  bottom: 4%;
  line-height: 0;
}
.about_box4 .left {
  float: left;
  width: 24.5%;
  padding-right: 3%;
}
.about_box4 .left h3 {
  color: #ffffff;
  font-size: 32px;
  margin-top: 48px;
}
.about_box4 .left p {
  margin-top: 15px;
  color: #cccccc;
  font-size: 16px;
  line-height: 28px;
}
.about_box4 .right {
  float: right;
  width: 75.5%;
}
.about_box4 .right ol li {
  float: left;
  width: 32%;
  position: relative;
  margin-bottom: 2%;
  margin-right: 2%;
}
.about_box4 .right ol li:nth-child(3n) {
  margin-right: 0;
}
.about_box4 .right ol li .img {
  line-height: 0;
  overflow: hidden;
}
.about_box4 .right ol li .img img {
  width: 100%;
}
.about_box4 .right ol li .text {
  display: none;
  position: absolute;
  left: 5%;
  top: 5%;
  width: 90%;
  height: 90%;
  background: rgba(0, 0, 0, 0.9);
  padding: 12% 5% 0;
}
.about_box4 .right ol li .text h3 {
  border-bottom: 1px solid #484849;
  color: #ffffff;
  font-size: 32px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.about_box4 .right ol li .text h3 span {
  font-size: 20px;
  display: inline-block;
  position: relative;
  top: -2px;
  margin-left: 15px;
}
.about_box4 .right ol li .text p {
  margin-top: 12px;
  color: #CCC;
  font-size: 14px;
  line-height: 24px;
}
.about_box4 .right ol li:hover .text {
  display: block;
}
.about_gsxw .fwdt_box .fwdt_div ul li {
  float: left;
  width: 48%;
}
.about_gsxw .fwdt_box .fwdt_div ul li:nth-child(2n) {
  float: right;
}
.about_gsxw .fwdt_box .fwdt_div ul li .img {
  line-height: 0;
  overflow: hidden;
}
.about_gsxw .fwdt_box .fwdt_div ul li .text_con {
  padding-top: 20px;
}
.about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt {
  line-height: 30px;
}
.about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt h3 {
  font-weight: normal;
  float: left;
  max-width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 24px;
  color: #000;
}
.about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt span {
  float: right;
  color: #000;
  font-size: 20px;
}
.about_gsxw .fwdt_box .fwdt_div ul li .text_con p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
/**marketing**/
.marketing_box {
  padding: 80px 0;
}
.marketing_box ol {
  margin-top: 60px;
}
.marketing_box ol li {
  float: left;
  width: 33.33333333%;
  text-align: center;
  padding: 0 3%;
}
.marketing_box ol li .icon {
  line-height: 0;
}
.marketing_box ol li .text {
  margin-top: 20px;
}
.marketing_box ol li .text h3 {
  color: #333333;
  font-size: 22px;
}
.marketing_box ol li .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.marketing_box .img {
  margin-top: 60px;
  line-height: 0;
}
.marketing_box2 {
  background: url(../images/marketing_bg.jpg) no-repeat center center / cover;
  background-size: 100% 100%;
  padding: 242px 0;
}
.marketing_box2 .box {
  margin-left: 335px;
}
.marketing_box2 .box .img {
  float: left;
  line-height: 0;
  width: 28.4%;
}
.marketing_box2 .box .text {
  float: left;
  max-width: 642px;
  width: 100%;
  margin-left: 30px;
}
.marketing_box2 .box .text h4 {
  color: #ffffff;
  font-size: 73px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  line-height: 66px;
}
.marketing_box2 .box .text i {
  width: 240px;
  height: 3px;
  background: #595555;
  display: block;
  margin: 20px 0 30px;
}
.marketing_box2 .box .text h3 {
  color: #ffffff;
  font-size: 32px;
}
.marketing_box2 .box .text p {
  margin-top: 12px;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}
.marketing_box2 .box .text a {
  margin-top: 65px;
  display: block;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 4px;
  background: #f0f0f0;
}
.marketing_box3 {
  background: #f6f6f6;
  padding: 100px 0;
}
.marketing_box3 .left {
  float: left;
  width: 50%;
  padding: 0 3% 0 9%;
}
.marketing_box3 .left ol li {
  float: left;
  margin-top: 70px;
  width: 45%;
}
.marketing_box3 .left ol li:nth-child(2n) {
  float: right;
}
.marketing_box3 .left ol li .icon {
  line-height: 0;
}
.marketing_box3 .left ol li .t {
  padding-top: 15px;
}
.marketing_box3 .left ol li .t h3 {
  color: #333333;
  font-size: 22px;
  font-weight: normal;
}
.marketing_box3 .left ol li .t p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}
.marketing_box3 .right {
  float: right;
  width: 50%;
  line-height: 0;
}
.marketing_box4 {
  background: url(../images/marketing_bg2.jpg) no-repeat center top / cover;
  padding: 160px 0;
}
.marketing_box4 ol li {
  float: left;
  width: 44%;
}
.marketing_box4 ol li:first-child + li {
  float: right;
  margin-top: 65px;
}
.marketing_box4 ol li .top .icon {
  float: left;
  line-height: 0;
}
.marketing_box4 ol li .top .text {
  float: left;
  margin-left: 20px;
}
.marketing_box4 ol li .top .text h4 {
  font-size: 28px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  color: #6b6b6b;
  font-weight: normal;
  line-height: 30px;
}
.marketing_box4 ol li .top .text h3 {
  margin-top: 5px;
  color: #ffffff;
  font-size: 28px;
}
.marketing_box4 ol li dl {
  margin-top: 58px;
}
.marketing_box4 ol li dl dt,
.marketing_box4 ol li dl dd {
  width: 42%;
}
.marketing_box4 ol li dl dt h3,
.marketing_box4 ol li dl dd h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: normal;
  border-bottom: 1px solid #424242;
  padding-bottom: 16px;
}
.marketing_box4 ol li dl dt p,
.marketing_box4 ol li dl dd p {
  margin-top: 12px;
  color: #d0d0d0;
  font-size: 14px;
  line-height: 24px;
}
.marketing_box4 ol li a {
  margin-top: 100px;
  display: block;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 4px;
  background: #f0f0f0;
}
.marketing_box5 {
  background: url(../images/marketing_bg3.jpg) no-repeat center center / cover;
  min-height: 1072px;
  padding-top: 100px;
}
.marketing_box5 .box {
  float: right;
  max-width: 540px;
  width: 100%;
}
.marketing_box5 .box h3,.marketing_box5 .box h2 {
  margin-top: 35px;
  color: #010101;
  font-size: 32px;
}
.marketing_box5 .box p {
  margin-top: 12px;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}
.home_case .top .gdzx_R a.more {
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: #cccccc;
  color: #fff;
}
/**planning**/
.planning_box {
  background: url(../images/planning_bg.jpg) no-repeat center center / cover;
  padding-top: 90px;
  min-height: 821px;
}
.planning_box .box {
  max-width: 905px;
  width: 100%;
  float: left;
}
.planning_box .box ol {
  margin-top: 50px;
}
.planning_box .box ol li {
  float: left;
  background: #fff;
  width: 49.9%;
  padding: 45px 5% 40px;
  margin-bottom: 0.2%;
}
.planning_box .box ol li .icon {
  float: left;
  line-height: 0;
  width: 63px;
  text-align: right;
}
.planning_box .box ol li .text {
  float: right;
  width: 78%;
  margin-top: -5px;
}
.planning_box .box ol li .text h3 {
  color: #000;
  font-size: 22px;
  font-weight: normal;
}
.planning_box .box ol li .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}
.planning_box .box ol li:nth-child(2n) {
  float: right;
}
.planning_box .box ol li:nth-child(2) {
  margin-top: 7%;
}
.planning_box .box ol li.last {
  background: none;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  font-size: 18px;
  color: #d9d9d9;
}
.planning_box2 .left span:before {
  background-image: url(../images/planning_b1.jpg);
}
.planning_box2 .right .text .tit {
  margin-top: 20px;
  font-size: 16px;
  line-height: 30px;
  color: #e0e0e0;
}
.planning_box2 .right .text a {
  margin-top: 80px;
  display: block;
  width: 140px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 16px;
  font-family: DINEngschriftStd;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 4px;
  background: #f0f0f0;
}
.planning_box3 {
  padding: 90px 0;
  background: #f6f6f6;
}
.planning_box3 ol {
  margin-top: 50px;
  background: url(../images/planning_bg2.jpg) no-repeat center center / cover;
  padding: 175px 0 140px;
}
.planning_box3 ol li {
  float: left;
  width: 25%;
  padding-left: 6%;
}
.planning_box3 ol li .icon {
  line-height: 0;
}
.planning_box3 ol li .text {
  padding-top: 40px;
}
.planning_box3 ol li .text h3 {
  color: #fff;
  font-size: 22px;
  font-weight: normal;
}
.planning_box3 ol li .text p {
  margin-top: 5px;
  color: #fff;
  font-size: 18px;
}
.planning_box4 .right ol li .text {
  height: auto;
  bottom: 5%;
  top: auto;
  background: #fff;
  padding: 8% 5%;
}
.planning_box4 .right ol li .text h3 {
  color: #333333;
}
.planning_box4 .right ol li .text p {
  color: #333333;
}
@media (max-width: 1730px) {
   .home_lilian .img_box {
      max-width: 805px;
    }

}
@media (max-width: 1680px) {
  .home_lilian .text {
    max-width: 510px;
  }
  .home_lilian .img_box {
    max-width: 805px;
  }
  .news_box .box {
    padding: 70px;
  }
  .news_box .box .left {
    max-width: 930px;
  }
  .news_list ul li .text {
    width: 680px;
  }
  .news_box .box .right {
    max-width: 270px;
  }
  .news_box .box .right .wz_con li .text {
    width: 147px;
  }
  .news_box .box .right .wz_con li .text .con_btn {
    font-size: 12px;
  }
  .news_box .box .right .wz_con li .text .con_btn a {
    margin-right: 5px;
  }
  .pinpai_box .box .img {
    max-width: 580px;
  }
  .pinpai_box .box .text .t {
    font-size: 16px;
    line-height: 26px;
  }
  .pinpai_box3 .box .con {
    max-width: 760px;
  }
  .baozhaun_box .right {
    max-width: 880px;
  }
  .baozhaun_box3 .box .right {
    max-width: 740px;
  }
  .baozhaun_box3 .box .right ul li {
    width: 47%;
  }
  .haibao_box ul li .text {
    margin-top: 52px;
    min-height: 314px;
  }
  
  .about_gsxw .fwdt_box .top .title .title_bt,
  .design_box5 .top .title .title_bt {
    display: none;
  }
  .marketing_box2 .box {
    margin-left: 154px;
  }
  .marketing_box3 .left ol li {
    margin-top: 28px;
  }
  .marketing_box5 {
    min-height: 943px;
  }
  .planning_box2 .right {
    padding-top: 88px;
  }
  
}
@media (max-width: 1600px) {
  .header .nav ul li {
    margin-right: 30px;
  }
  .home_lilian .img_box {
    max-width: 50%;
    min-height: 600px;
  }
  .home_lilian .text {
    padding-top: 54px;
  }
  .home_lilian .text .con .t,
  .home_about .text p {
    font-size: 14px;
    line-height: 24px;
  }
  .home_about {
    min-height: 680px;
    padding-top: 95px;
  }
  .links .links_con {
    max-width: 872px;
  }
  .news_box .box {
    padding: 70px;
  }
  .news_box .box .left {
    max-width: 68%;
  }
  .news_list ul li .text {
    width: 68%;
  }
  .news_box .box .right {
    width: 30%;
  }
  .contact_top .box {
    top: -110px;
  }
  .contact_top .box ul li {
    padding: 65px 30px;
  }
  .contact_top .box ul li .t {
    font-size: 14px;
  }
  .contact_top .box ul li .t em {
    width: 226px;
  }
  .feedback .box {
    top: -60px;
  }
  .pinpai_box .box {
    padding: 0;
  }
  .kongjian_box .box {
    padding: 0;
  }
  .kongjian_box ul {
    padding-left: 0;
    padding-right: 0;
  }
  .baozhaun_box .left {
    padding-left: 0;
  }
  .baozhaun_box .right {
    max-width: 847px;
    padding-right: 0;
  }
  .baozhaun_box3 .box .right {
    max-width: 704px;
    padding-left: 54px;
  }
  .haibao_box ul li .text {
    margin-top: 50px;
    min-height: 299px;
    padding-top: 45px;
  }
  
  
  .design_box6 .right .text ol li .t p {
    font-size: 14px;
  }
  .design_box6 .right .text ol li .t .bt {
    font-size: 16px;
  }
  .design_box6 .right {
    padding-top: 80px;
  }
  .marketing_box2 {
    padding: 130px 0;
  }
  .marketing_box2 .box {
    margin-left: 92px;
  }
  .marketing_box4 {
    padding: 108px 0;
  }
  .marketing_box5 {
    min-height: 898px;
  }
}
@media (max-width: 1440px) {
      .home_lilian .text .img{
      width: 300px;
    }
  .header .icon {
    padding-left: 0;
  }
  .header .nav ul li {
    margin-right: 25px;
  }
  .home_service .left .con p {
    font-size: 16px;
  }
  .home_service .right ul li .text .t {
    font-size: 14px;
    line-height: 24px;
    height: 120px;
  }
  .home_service .right ul li .text .con p {
    font-size: 14px;
  }
  .home_tezheng ol li p {
    font-size: 14px;
    line-height: 24px;
    overflow: auto;
    height: auto;
  }
  .home_tezheng ol li {
    margin-top: 48px;
  }
  .home_tezheng ol li::before {
    height: 100%;
  }
  .home_case .box ul li .text h4 {
    font-size: 18px;
  }
  .home_case .box ul li .text h3 {
    font-size: 16px;
  }
  .home_case .box ul li .text p {
    font-size: 12px;
    line-height: 22px;
    height: 44px;
    margin-top: 5px;
  }
  .home_case .box ul li .text span {
    width: 35px;
    height: 35px;
    top: 20px;
    right: 25px;
  }
  .home_case .box ul li .text {
    padding: 20px;
  }
  .home_about .img {
    margin-left: 175px;
  }
  .home_about {
    padding: 90px 0;
    min-height: 0;
  }
  .links .links_con {
    max-width: 773px;
  }
  .footer .left .foot_nav a {
    margin-left: 20px;
  }
  .news_box .box .left {
    max-width: 70%;
  }
  .news_list ul li .text {
    width: 68%;
  }
  .news_box .box .right {
    width: 28%;
  }
  .news_box .box .right .wz_con li .text {
    width: 58%;
  }
  .news_box .box {
    padding: 50px 20px;
  }
  .contact_top .box,
  .feedback .box,
  .case_show .box {
    padding: 0;
  }
  .contact_top .box ul li .t em {
    width: 238px;
  }
  .contact_banner .container {
    padding: 205px 0 0;
  }
  .pinpai_box .box .img {
    width: 50%;
  }
  .pinpai_box .box .text .t {
    font-size: 14px;
    line-height: 24px;
  }
  .pinpai_box {
    padding: 70px 0;
  }
  .pinpai_box3 .box .con {
    width: 50%;
    min-height: 0;
  }
  .pinpai_box3 .box .con {
    padding: 50px 25px;
  }
  .pinpai_box3 .box .con ul li .t {
    width: 68%;
  }
  .pinpai_box3 .box .con ul li .t p {
    font-size: 14px;
    line-height: 24px;
  }
  .pinpai_box3 .box .con ul li .t h3 {
    font-size: 18px;
  }
  .pinpai_box3 .box .con ul li {
    margin-bottom: 50px;
  }
  .pinpai_box3 .box .con ul li:nth-child(3),
  .pinpai_box3 .box .con ul li:nth-child(4) {
    margin-bottom: 0;
  }
  .pinpai_box3 .box .con {
    top: 26px;
  }
  .pinpai_box3 {
    padding-top: 70px;
  }
  .kongjian_box ul li {
    padding: 30px;
  }
  .baozhaun_box3 .box .right ul li .text h3 {
    font-size: 18px;
  }
  .kongjian_box .box .left p,
  .kongjian_box ul li p,
  .baozhaun_box3 .box .right ul li .text p,
  .baozhaun_box3 .box .left p,
  .baozhaun_box .right ul li .text p,
  .title2 p,
  .baozhaun_box2 .box ul li .text p {
    font-size: 14px;
    line-height: 24px;
  }
  .baozhaun_box3 .box .right ul li {
    width: 48%;
  }
  .baozhaun_box3 .box {
    padding: 100px 40px 0;
  }
  .baozhaun_box3 .box {
    min-height: 675px;
  }
  .baozhaun_box2 .box {
    padding: 60px 40px;
  }
  .haibao_box ul li .text {
    margin-top: 45px;
    padding: 60px 20px 0;
    min-height: 269px;
  }
  .haibao_box ul li .text h3 {
    font-size: 20px;
  }
  .haibao_box ul li .text .t {
    font-size: 14px;
    line-height: 24px;
  }
  
  .title_bt {
    font-size: 14px;
  }
  .marketing_box2 .box {
    margin-left: 0;
  }
  .about_box .box .t,
  .about_box .box .text .right,
  .about_box2 .box .t,
  .about_box2 .box ol li p,
  .about_box3 .t,
  .about_box3 .yjhd_box .box .text p,
  .about_box4 .left p,
  .design_box2 .left .t,
  .design_box3 .right .text p,
  .design_box4 ol li p,
  .marketing_box5 .box p,
  .marketing_box2 .box .text p,
  .planning_box .box ol li .text p,
  .planning_box2 .right .text .tit,
  .planning_box3 ol li .text p {
    font-size: 14px;
    line-height: 24px;
  }
  .about_box .box .text .left .bt {
    font-size: 82px;
  }
  .about_box2 {
    padding: 80px 0;
  }
  .about_box2 .box {
    width: 680px;
    padding: 50px;
  }
  .about_box3 .yjhd_box .box .text h3 {
    font-size: 22px;
    font-weight: normal;
    margin-top: 18px;
  }
  .about_box3 .yjhd_box .slick-dots {
    padding-left: 32px;
  }
  .about_box4 .container .img_bg {
    width: 16%;
  }
  .about_box4 .left h3 {
    margin-top: 30px;
  }
  .about_box4 .right ol li .text h3 {
    font-size: 22px;
    font-weight: normal;
  }
  .about_box4 .right ol li .text h3 span {
    font-size: 14px;
  }
  .about_box4 .right ol li .text p {
    font-size: 12px;
    line-height: 18px;
  }
  .home_news .gdzx_box ul li .bt h3 {
    max-width: 73%;
  }
  .design_box2 .left {
    padding-top: 0;
  }
  .design_box2 .right {
    width: 45%;
  }
  .design_box3 .right .text {
    margin-bottom: 12px;
  }
  .design_box6 .right .text ol li {
    margin-top: 15px;
  }
  .design_box ul li {
    height: 148px;
  }
  .marketing_box2 .box .text a {
    margin-top: 55px;
  }
  .planning_box .box ol li {
    padding: 35px 5% 30px;
  }
  .planning_box {
    min-height: 756px;
  }
  .planning_box3 ol {
    padding: 70px 0;
  }
  .about_box4 .left p {
    line-height: 18px;
  }
  
}
@media (max-width: 1366px) {
  .home_service,
  .home_tezheng,
  .home_case,
  .pinpai_box2 {
    padding: 70px 0;
  }
  .home_lilian .text {
    max-width: 45%;
  }
  .home_lilian .text .con {
    margin-top: 20px;
  }
  .home_lilian .img_box .img {
    width: 75%;
  }
  .home_lilian .img_box .img2 {
    width: 60%;
  }
  .home_case {
    padding-bottom: 50px;
  }
  .home_about .img {
    margin-left: 0;
  }
  .home_about .text i {
    height: 80px;
  }
  .home_about .text {
    max-width: 760px;
  }
  .home_news .fwdt_box {
    padding: 70px;
  }
  .home_news .gdzx_box {
    padding: 70px 70px 30px;
  }
  .home_news .gdzx_box ul li .bt h3 {
    font-size: 16px;
  }
  .home_news .gdzx_box ul li .bt span {
    font-size: 16px;
  }
  .home_news {
    padding-bottom: 60px;
  }
  .links .links_con {
    max-width: 720px;
  }
  .home_news .fwdt_box .fwdt_div ul li:hover .text {
    padding-top: 56px;
  }
  .contact_banner .container h3,
  .case_banner h3,
  .case_show .box h1 {
    font-size: 28px;
  }
  .home_lilian .text .con h3,
  .home_service .left .con h3,
  .contact_top .box ul li h3,
  .feedback .box .title3 h3,
  .pinpai_box .box .text h3,
  .ny_title h3,
  .ny_title h2,
  .baozhaun_box .left h3,
  .title2 h3,.title2 h2 {
    font-size: 22px;
  }
  .ny_title h3,.ny_title h2 {
    margin-top: 65px;
  }
  .title h3 {
    font-size: 22px;
    margin-top: 76px;
  }
  .pinpai_box2 .box ul li h3,
  .kongjian_box .box .left h3, .kongjian_box .box .left h2 {
    font-size: 22px;
  }
  .contact_top .box ul li .t em {
    width: 210px;
  }
  .pinpai_box3 .box .text .bt h3 {
    font-size: 22px;
  }
  .pinpai_box3 .box .text .bt h4 {
    font-size: 30px;
  }
  .pinpai_box3 .box .text .bt {
    top: 96px;
    left: 70px;
    padding-top: 51px;
  }
  .pinpai_box3 .box .con {
    padding: 30px 25px;
  }
  .ny_title p {
    font-size: 14px;
    margin-top: 74px;
  }
  .pinpai_box5 .box {
    padding: 50px 70px;
  }
  .pinpai_box5 .box ul li .text .bt h3,
  .pinpai_box5 .box ul li .text .bt span {
    font-size: 18px;
  }
  .pinpai_box5 .box .top .ny_title ul li {
    font-size: 20px;
  }
  .pinpai_box5 .box .top .ny_title ul li.cur,
  .baozhaun_box3 .box .left h3 {
    font-size: 22px;
  }
  .pinpai_box5 {
    padding-bottom: 70px;
  }
  .baozhaun_box {
    min-height: 500px;
  }
  .baozhaun_box .right {
    max-width: 715px;
    padding-left: 60px;
    padding-top: 40px;
  }
  .baozhaun_box .right ul li {
    width: 48%;
  }
  .baozhaun_box .right ul li {
    margin-top: 65px;
  }
  .baozhaun_box .left {
    padding-top: 126px;
  }
  .baozhaun_box3 .box .right {
    max-width: 647px;
  }
  .baozhaun_box3 .box .right ul li .icon {
    width: 46px;
  }
  .haibao_box ul li .text {
    margin-top: 42px;
    min-height: 256px;
  }
  
  .title_bt {
    margin-top: 86px;
  }
  .about_box,
  .about_box2,
  .about_box3,
  .about_box4,
  .design_box2,
  .design_box3,
  .design_box4,
  .marketing_box,
  .marketing_box3,
  .marketing_box4,
  .planning_box,
  .planning_box3 {
    padding: 70px 0;
  }
  .marketing_box2 {
    padding: 80px 0;
  }
  .news_info .box {
    padding: 50px 70px;
  }
  .about_box3 .yjhd_box .box .text .date {
    font-size: 24px;
  }
  .about_box4 .left h3,
  .design_box2 .left h3,
  .design_box3 .right .text h3,
  .design_box4 ol li h3 span,
  .design_box6 .right .text h3,
  .marketing_box2 .box .text h3,
  .marketing_box4 ol li .top .text h3,
  .marketing_box5 .box h3,.marketing_box5 .box h2 {
    font-size: 22px;
  }
  .about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt h3,
  .design_box3 .right .text h4,
  .design_box4 ol li h3,
  .design_box6 .right .text h4,
  .marketing_box3 .left ol li .t h3,
  .marketing_box4 ol li dl dt h3,
  .marketing_box4 ol li dl dd h3,
  .planning_box .box ol li .text h3,
  .planning_box3 ol li .text h3 {
    font-size: 18px;
  }
  .about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt span {
    font-size: 18px;
  }
  .design_box4 ol {
    margin-top: 70px;
  }
  .design_box6 .right .text h3 {
    margin-top: 26px;
  }
  .design_box ul li .text p {
    font-size: 20px;
    font-weight: normal;
  }
  .marketing_box2 .box .text h4 {
    font-size: 44px;
    line-height: 45px;
  }
  .marketing_box3 .left ol li {
    width: 47%;
  }
  .marketing_box4 ol li dl dt,
  .marketing_box4 ol li dl dd {
    width: 47%;
  }
  .marketing_box4 ol li a {
    margin-top: 50px;
  }
  .marketing_box5 {
    background-size: 100% 100%;
    min-height: 760px;
  }
  .planning_box .box ol li.last {
    padding-bottom: 0;
  }
  .planning_box {
    min-height: 718px;
  }
  .planning_box2 .right .text a {
    margin-top: 45px;
  }
  .planning_box3 ol li .icon img {
    height: 60px;
  }
  
}

@media (max-width: 1280px) {
	.kongjian_box .box .left{
		width: 350px;
	}
	.pinpai_box3 .box .con ul li{
		width: 48%;
	}
	.pinpai_box3 .box .con ul li .t h3{
		font-size: 16px;
	}
	.pinpai_box3 .box .con ul li .t{
		margin-top: 0;
	}
	.pinpai_box3 .box .con ul li{
		margin-bottom: 38px;
	}
	.home_service .right{
		width: 76%;
	}
  .design_box ul li .icon img {
    height: 50px;
  }
  .design_box ul li .text h3 {
    font-size: 16px;
  }
  .design_box ul li .text p {
    font-size: 14px;
  }
  .design_box ul li {
    height: 110px;
  }
  .design_box6 .right {
    padding-top: 55px;
  }
  .design_box2 .left a {
    margin-top: 45px;
  }
  .footer .left .foot_nav a {
    font-size: 14px;
  }
  .marketing_box3 .left ol li .icon img {
    height: 30px;
  }
  .marketing_box3 .left ol li .t p {
    height: 110px;
  }
  .marketing_box5 {
    min-height: 680px;
  }
  .about_box4 .left h3 {
    margin-top: 18px;
  }
  .about_box4 .left p {
    margin-top: 5px;
  }
  .home_about .text {
    max-width: 660px;
    float: right;
    margin-left: 0;
  }
  .links .links_con {
    max-width: 650px;
  }
  .haibao_box ul li .text {
    margin-top: 40px;
    min-height: 239px;
    padding-top: 32px;
  }
  .baozhaun_box .right {
    max-width: 680px;
  }
  .baozhaun_box2 .box ul li .text {
    width: 206px;
    height: 206px;
    padding-top: 44px;
  }
  .baozhaun_box3 .box .right {
    max-width: 576px;
  }
  .contact_banner .container {
    padding-top: 165px;
  }
  .contact_top .box ul li .t em {
    width: 182px;
  }
  .feedback .box ul li .text div em {
    margin-right: 24px;
  }
  .news_list ul li .text {
    width: 65%;
  }
  .news_box .box .right .wz_con li .text {
    width: 56%;
  }
  .pinpai_box4 .top .ny_title p{
	  display:none;
  }
}

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

.fx_btn.bdsharebuttonbox a { 
  background: none;
  width: 20px;
  height: 16px !important;
  padding: 0;
  margin: 0 0 0 10px;
  float: left;
}
.fx_btn.bdsharebuttonbox a.bds_weixin { 
  background: url(../images/s5.jpg) no-repeat center center;
}
.fx_btn.bdsharebuttonbox a.bds_tsina { 
  background: url(../images/s6.jpg) no-repeat center center;
}
.fx_btn.bdsharebuttonbox a.bds_sqq { 
  background: url(../images/fx_icon3.jpg) no-repeat center center;
}
.fx_btn.bdsharebuttonbox a.bds_qzone { 
  background: url(../images/s7.jpg) no-repeat center center;
}

.page a {
    display: inline-block;
    border: 1px solid #e4e4e4;
    line-height: 40px;
    color: #666666;
    font-size: 14px;
    margin: 0 1px;
    transition: all .5s;
    padding: 0 16px;
}

.page a:hover, .page a.cur {
    background: #222222;
    border-color: #222222;
    color: #fff;
}

/*新增NEW右侧-2018.7.11*/
.xiaotong{
	margin-top: 20px;
    margin-bottom: 20px;
}

.xiaotong li{
	float:left;
	width: auto;
    height: 35px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    margin: 0 10px 8px 0;
    padding: 0 1em;
}

.xiaotong li a{
	display: block;
    text-align: center;
    line-height: 33px;
    color: #777777;
    font-size: 14px;
}
/*右侧边栏样式*/
.sidebar-box{
    position: fixed;
    right:0;
    bottom:10%;
    transform: translateY(-50%);
    -ms-transform:translateY(-50%); /* IE 9 */
    -moz-transform:translateY(-50%);    /* Firefox */
    -webkit-transform:translateY(-50%); /* Safari 和 Chrome */
    -o-transform:translateY(-50%);
    z-index:1000;
}
.sidebar li{
    width:50px;
    height:50px;
    background-color: #EAEAEA;
    /*padding: 15px;*/
    position:relative;
    text-align:right;
    border-bottom: 1px solid #DBDBDB;
    transition:all 0.5s ease-in-out;
}
.sidebar li+li{

}
.sidebar li i{
    width:50px;
    height:49px;
    position: absolute;
    right:0;
    top:0;
    z-index:1100;
    background-color: #EAEAEA;
    transition:all 0.5s ease-in-out;
}

.sidebar li a{
    display:block;
    width:100%;
}
.sidebar li .text{
    width:220px;
    font-size:14px;
    color:#181818;
    font-weight: 600;
    position:absolute;
    left:50px;
    top:50%;
    transform: translateY(-50%);
    -ms-transform:translateY(-50%); /* IE 9 */
    -moz-transform:translateY(-50%);    /* Firefox */
    -webkit-transform:translateY(-50%); /* Safari 和 Chrome */
    -o-transform:translateY(-50%);
    text-align:left;
    z-index:10;
}
.sidebar li .icon01{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img01.png') no-repeat center #EAEAEA;
}
.sidebar li .icon02{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img02.png') no-repeat center #EAEAEA;
}
.sidebar li .icon03{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img03.png') no-repeat center #EAEAEA;
}
.sidebar li .icon04{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img04.png') no-repeat center #EAEAEA;
}
.sidebar li .icon05{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img05.png') no-repeat center #EAEAEA;
}
.sidebar li .icon06{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img06.png') no-repeat center #EAEAEA;
}



.sidebar:hover li{
    width: 250px;
}
.sidebar:hover li .text{
    left:30px;
}
.sidebar li:hover{
    background-color: #181818;
}
.sidebar li:hover .text{
    color: #FFFFFF;
}
.sidebar li:hover .icon01{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img01.png') no-repeat center #181818;
}
.sidebar li:hover .icon02{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img02.png') no-repeat center #181818;
}
.sidebar li:hover .icon03{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img03.png') no-repeat center #181818;
}
.sidebar li:hover .icon04{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img04.png') no-repeat center #181818;
}
.sidebar li:hover .icon05{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img05.png') no-repeat center #181818;
}
.sidebar li:hover .icon06{
    background:url('https://ad.vpabrand.com/templates/default/images/aside-img06.png') no-repeat center #181818;
}


@media (max-width:1024px){
	.sidebar-box{
		display:none;
	}
}

@media (max-width:1280px){
	.home_case .top .gdzx_R a,.home_news .gdzx_box .top .gdzx_R a{
		padding: 0 12px;
	}
}

.m_w1920{
	max-width: 1920px;
	margin: 0 auto;
}
.banner img,
.nybanner img{
	width: 100%;
}

@media (max-width:1680px ) {
	.case_show .right .float_box{
		width: 19.7%;
	}
}

/**2018-8-2**/
.planning_b1,.planning_b2,.planning_b3,.planning_b_icon,
.design_w1,.design_w2,.design_w3,
.logo_w1,.logo_w2,.packaging_w1,.poster_w1,.space_w1,
.marketing_w1,.marketing_w2,.marketing_w_icon,
.about_w1,.about_w2,.about_w_icon,.news_w1{
	position: absolute;
	line-height: 0;
}
.planning_b1{
	width: 10.98958%;
	left: 50%;
	top: 27%;
	margin-left: -5.49479%;
}
.planning_b2{
	width: 28.6979%;
	top: 49%;
	left: 50%;
	margin-left: -14.34895%;
}
.planning_b3,.design_w2,.marketing_w2{
	top: 32%;
	right: 8.8%;
	width: 1.875%;
}
.planning_b_icon,.design_w3{
	bottom: 19%;
	width: 2.6%;
	left: 50%;
	margin-left: -1.3%;
}
.design_w1{
	width: 33.3333%;
	left: 8.9%;
	top: 32%;
}
.design_w3{
	left: 8.9%;
	margin-left: 0;
	bottom: auto;
	top: 58%;
}
.logo_w1{
	width: 32.4479%;
	left: 13.5%;
	top: 37%;	
}
.logo_w2{
	width: 34.0625%;
	right: 13.5%;
	top: 35%;	
}
.packaging_w1{
	width: 36.25%;
	left: 13.5%;
	top: 35%;	
}
.poster_w1{
	right: 13.5%;
	top: 36%;
	width: 31.302%;	
}
.space_w1{
	width: 25.677%;
	right: 13.5%;
	top: 36%;
}
.marketing_w1{
	width: 30.57%;
	left: 8.9%;
	top: 32%;
}
.marketing_w_icon{
	width: 2.6%;
	left: 8.9%;
	margin-left: 0;
	top: 65%;
}

.about_w1{
	width: 28.90625%;
	left: 8.9%;
	top: 34%;
}
.about_w2{
	top: 32%;
	right: 8.8%;
	width: 1.875%;
}
.about_w_icon{
	width: 2.6%;
	left: 8.9%;
	margin-left: 0;
	top: 62%;
}
.news_w1{
	width: 24.58%;
	left: 13.5%;
	top: 42%;
}
/*2018.8.21*/
.da .img img{
	transition: all 1.2s;
	-o-transition: all 1.2s;
	-moz-transition: all 1.2s;
	-ms-transition: all 1.2s;
	-webkit-transition: all 1.2s;
}

.da ul li:hover .img img{
	transform: scale(1.2);
-o-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-webkit-transform: scale(1.2);
}
/*2018.8.24  首页最新服务动态样式*/
.text1{
	padding-top:20px;
}

.text1 h3{
	font-weight: normal;
    float: left;
    max-width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 24px;
    color: #000;
}

.text1 span{
	float: right;
    color: #000;
    font-size: 0px;
}

.text1 p{
	    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
/*2018.9.8增加上下一页与面包屑*/
.fanpian p{
	width:48%;
	overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}

.fanpian p:nth-child(1){
	float:left;
}

.fanpian p:nth-child(2){
	float:right;
}

.fanpian p a{
	color:#666;
}

.mianbaoxue{
	background: #fff;
    padding: 15px 90px 15px 90px;
}

.mianbaoxue p a,.mianbaoxue p span{
	color:#999;
}

/*.nybanner img{
	opacity: 0;
}*/
#newBridge .nb-webim-light-message-0 .nb-webim-light-message-content{background: #efefef !important;}
.mianbaoxue_contact {
    background: none;
    padding-left: 0;
    padding-right: 0;
}
.contact_banner .container .mianbaoxue_contact p a, .contact_banner .container .mianbaoxue_contact p span {
    color: #fff;
}

.case_box .case_list ul{ display:flex;flex-wrap:wrap; }