﻿/*
    ----------------------------------- 
            方法变量    
                     
    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(#D80011,blue)  // 线性渐变 - 两个颜色值 是开始到结束  目前支持 *上下* 渐变
   03 .bgFull             // 背景充满 - 背景等比例拉伸 使用 ：bgFull;
   04 .css3Tansition()    // 过度属性 - 默认两个值 前者是过渡动画时间 后者是过渡动画效果 使用 : .css3tansition(.4s,ease)
   

   //滤镜

   05 .filterBlur()       // 滤镜模糊 - 使用 ：.filterBlur(2px); 默认 5px
   06 .filterGrayscale()  // 滤镜灰度 - 使用 ：.filterGrayscale(100%); 默认100% ★注意参数 是 0%~100$; 100%代表全灰
   07 .filterSepia()      // 滤镜褐色 - 使用 ： .filterSepia(1); 默认1 ★注意参数 (同上)
   08 .filterBrightness() // 滤镜亮度 - 使用 ： .filterBrightness(10); 默认5 ★注意参数 10代表100% 5代表50%
   09 .filterHue()        // 滤镜色相 - 使用 ： .filterHue(180deg); 默认180deg ★注意参数 0deg~360deg
   10 .filterInvert()     // 滤镜反色 - 使用 ： .filterInvert(1); 默认1 ★注意参数 0.1~1 1代表100%
   11 .filterSaturate()   // 滤镜饱和 - 使用 ： .filterSaturate(5); 默认5 ★注意参数 5 代表 50%
   12 .filterContrast()   // 滤镜对比 - 使用 ： .filterContrast(1.5); 默认1.5 ★注意参数 1.5代表 15%
    
   ----------------------
        普通嵌套 
   ---------------------- 

   01 .vcenter            // 垂直水平居中
   02 .tHide              // 文本超出隐藏省略
   03 .blockFull          // 块状元素 宽高100%
   04 .block              // 块状元素 没有设置宽高
   05 .centerBlock        // 左右居中
   05 .clearfix           // 清除浮动

    -----------------------------------
*/
.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/cover.htc);
  behavior: url(css/cover.htc);
}
.vcenter {
  display: block;
  width: 100%;
  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;
  z-index: 1;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-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 #D80011;
  z-index: 3;
}
.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;
  z-index: 2;
}
.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;
}
/*
--------------------------------------------
公用样式 
--------------------------------------------
*/
/*按钮*/
input,
button,
textarea,
select {
  font-size: 100%;
  outline: none;
  resize: none;
  border: none;
  background: none;
}
/*字体缩进*/
.t2 {
  text-indent: 2em;
}
/*图片居中*/
fieldset,
img {
  border: 0;
  vertical-align: middle;
}
.lxmimg {
  display: block;
  text-align: center;
}
.lxmimg img {
  max-height: 100%;
  max-width: 100%;
}
.lxmimg i {
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.lazy-hidden {
  background: url(../images/loading.svg) no-repeat center;
}
.w1140 {
  width: 1200px;
  margin: 0 auto;
}
.dh-qh {
 /* margin-top: 17px;*/
 height: 50px;
}
.dh-qh .lang {
  z-index: 100;
  margin-top: 3px;
  cursor: pointer;
  padding: 10px 30px 10px 10px;
  position: relative;
  display: block;
}
.dh-qh .lang:before {
  content: "";
  width: 10px;
  height: 7px;
  position: absolute;
  right: 10px;
  top: 13px;
  background: url(../images/icon1.jpg) no-repeat;
}
.dh-qh .lang ul {
  display: none;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 5px 10px;
}
.dh-qh .lang ul li {
  margin: 5px 0;
}
.dh-qh .lang.on {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.dh-qh .lang.on:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.dh-qh .lang.on ul {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.dh-qh .tel {
  padding-left: 44px;
  margin-top: 15px;
  /*height: 24px;*/
  line-height: 24px;
  /*color: #077cd3;*/
  font-size: 24px;
  font-family: "Arial";
  margin-right: 15px;
  position: relative;
}
.dh-qh .tel:before {
  content: "";
  position: absolute;
  top: 3;
  left: 0;
  background: url(../images/icon2.jpg) 0 0 no-repeat;
  height: 44px;
  width: 44px;
}
.nav {
  margin-top: 28px;
}
.nav ul li {
  z-index: 99;
  height: 51px;
  float: left;
  margin-left: 35px;
  position: relative;
}
.nav ul li:hover > a {
  border-bottom: 3px solid #D80011;
}
.nav ul li:hover > div {
  display: block;
}
.nav ul li.cur > a {
  border-bottom: 3px solid #D80011;
}
.nav ul li:first-child:hover > a {
  border-bottom: none;
}
.nav ul li > a {
  padding: 0 3px;
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 3px;
}
.nav ul li > div {
  display: none;
  width: 200%;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
}
.nav ul li > div > a {
  display: block;
  height: 37px;
  line-height: 37px;
  padding: 0 18px;
  border-bottom: 1px solid #d9d9d9;
  color: #626262;
}
.nav ul li > div > a:hover {
  color: #fff;
  background: #D80011;
}
.link {
  background: #3b3b3b;
  padding: 14px 0;
}
.link span {
  color: #fefefe;
  padding-left: 25px;
  background: url(../images/link.jpg) 0 center no-repeat;
  line-height: 18px;
  height: 18px;
  margin-right: 10px;
}
.link div.wz {
  width: 1010px;
}
.link div.wz a {
  line-height: 18px;
  color: #9f9f9f;
  padding: 0 3px;
}
.link div.wz a:hover {
  color: #067ad1;
}
.footer {
  min-width: 1140px;
  background: #202020;
  padding: 30px 0 25px 0;
}
.footer .footer_left {
  color: #878787;
  font-size: 12px;
  line-height: 22px;
}
.footer .footer_right p.lj a {
  color: #717171;
  line-height: 24px;
  margin-left: 32px;
}
.footer .footer_right p.lj a:hover {
  color: #067ad1;
}
.footer .footer_right div.fx {
  margin-top: 10px;
}
.footer .footer_right div.fx a.tongji {
  margin-right: 31px;
  margin-top: 8px;
}
.column_banner {
  min-width: 1140px;
  overflow: hidden;
  width: 100%;
}
.column_banner p {
  position: relative;
  text-align: center;
  width: 1700px;
  left: 50%;
  margin-left: -850px;
}
.column_banner img {
  max-width: 100%;
}
.main .main_left {
  width: 230px;
}
.main .main_left .column_bt {
  background: #D80011;
  height: 80px;
  padding-left: 26px;
  padding-top: 18px;
  margin-bottom: 1px;
}
.main .main_left .column_bt span {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 23px;
  height: 26px;
  overflow: hidden;
}
.main .main_left .column_bt i {
  display: block;
  font-style: normal;
  color: #ffffff;
  font-size: 14px;
  line-height: 21px;
  height: 21px;
  overflow: hidden;
  font-family: "Arial";
  margin-top: 3px;
}
.main .main_left > ul > li {
  margin-bottom: 1px;
  background: #f2f2f2;
}
.main .main_left > ul > li.cur {
  background: #ababab;
}
.main .main_left > ul > li.cur > a {
  color: #ffffff;
}
.main .main_left > ul > li.cur > a:before {
  background: #fff;
}
.main .main_left > ul > li:hover {
  background: #ababab;
}
.main .main_left > ul > li:hover > a {
  color: #ffffff;
}
.prottwo:hover > a {
  color: #ffffff;
}
.main .main_left > ul > li:hover > a:before {
  background: #fff;
}
.main .main_left > ul > li > a {
  margin-left: 26px;
  display: block;
  height: 41px;
  line-height: 41px;
  padding-left: 25px;
  color: #2f2f2f;
  font-size: 15px;
  position: relative;
}
.main .main_left > ul > li > a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 3px;
  background: #D80011;
  margin-top: -1px;
}
.main .main_left .con {
  background: #f2f2f2;
  padding: 44px 0 18px 24px;
  margin-bottom: 1px;
}
.main .main_left .con .lx {
  background: url(../images/main_left1.jpg) no-repeat;
  padding-left: 44px;
  min-height: 35px;
}
.main .main_left .con .lx span {
  display: block;
  color: #2a2a2a;
  line-height: 16px;
  font-family: "Arial";
}
.main .main_left .con .lx a {
  display: block;
  color: #1c1c1c;
  font-size: 15px;
  line-height: 16px;
}
.main .main_left .con .lx a:hover {
  color: #067ad1;
}
.main .main_left .con .rx {
  margin-top: 27px;
  background: url(../images/main_left2.jpg) no-repeat;
  padding-left: 44px;
  min-height: 37px;
}
.main .main_left .con .rx span {
  display: block;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 18px;
}
.main .main_left .fxdm {
  background: #f2f2f2;
  padding: 24px 0 34px 29px;
}
.main .main_right {
  width: 882px;
}
.main .main_right .bcn {
  margin-top: 35px;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 32px;
}
.main .main_right .bcn h2 {
  font-size: 18px;
  line-height: 28px;
  height: 31px;
  color: #000000;
}
.main .main_right .bcn p {
  line-height: 28px;
  height: 28px;
  background: url(../images/bcn.jpg) 0 center no-repeat;
  padding-left: 23px;
  color: #979797;
}
.main .main_right .bcn p a {
  color: #979797;
}
.main .main_right .bcn p a:hover {
  color: #067ad1;
}
.fy {
  text-align: right;
}
.fy a {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  height: 21px;
  line-height: 21px;
  color: #5f5f5f;
  padding: 0 5px;
  border: 1px solid #d5d5d5;
  margin-left: 2px;
}
.fy a:hover {
  color: #fff;
  background: #bb3c39;
  border: 1px solid #bb3c39;
}
.fy a.cpb {
  color: #fff;
  background: #bb3c39;
  border: 1px solid #bb3c39;
}
.ny {
  margin-bottom: 50px;
}
.ny2 {
  margin: 60px 0;
  color: #444444;
 /* font-size: 13px;*/
  line-height: 25px;
  position: relative;
}
.main2 {
  margin-top: 32px;
}
.main2 .lj_bcn {
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 30px;
}
.main2 .lj_bcn .n_nav {
  width: 618px;
}
.main2 .lj_bcn .n_nav a {
  margin-right: 9px;
  background: #49494e;
  border: 1px solid #313134;
  float: left;
  width: 94px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  font-size: 15px;
  margin-bottom: 5px;
}
.main2 .lj_bcn .n_nav a:hover {
  background: #D80011;
  border: 1px solid #D80011;
}
.main2 .lj_bcn .n_nav a.cur {
  background: #D80011;
  border: 1px solid #D80011;
}
.main2 .lj_bcn p.bcn {
  max-width: 465px;
  overflow: hidden;
  line-height: 28px;
  height: 28px;
  background: url(../images/bcn.jpg) 0 center no-repeat;
  padding-left: 23px;
  color: #979797;
}
.main2 .lj_bcn p.bcn a {
  color: #979797;
}
.main2 .lj_bcn p.bcn a:hover {
  color: #067ad1;
}
.sx {
  line-height: 30px;
  height: 30px;
  background: #ededed;
  padding: 0 17px;
  font-size: 15px;
  color: #666666;
  margin-top: 40px;
}
.sx p {
  max-width: 450px;
  height: 30px;
  overflow: hidden;
}
.sx a {
  color: #666666;
}
.sx a:hover {
  color: #067ad1;
}
/*
--------------------------------------------
首页样式 
--------------------------------------------
*/
.banner {
  position: relative;
  height: 581px;
  min-width: 1140px;
  overflow: hidden;
}
.banner ul li {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -850px;
  width: 1700px;
  display: none;
  text-align: center;
}
.banner ul li:first-child {
  display: block;
}
.banner .banner-btn {
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 3;
  width: 100%;
  background: url(../images/banner-btn3.png) 0 8px repeat-x;
}
.banner .banner-btn > div {
  text-align: center;
}
.banner .banner-btn .banner-an {
  position: relative;
  margin-left: 40px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.banner .banner-btn .banner-an:first-child {
  margin-left: 0;
}
.banner .banner-btn .banner-an b {
  display: block;
  width: 16px;
  height: 16px;
  background: url(../images/banner-btn1.png) center 0 no-repeat;
}
.banner .banner-btn .banner-an > span {
  text-align: center;
  width: 20px;
  color: #000000;
  font-size: 11px;
  font-family: "Arial";
  display: block;
  margin-top: 3px;
}
.banner .banner-btn .banner-an p {
  display: none;
  position: absolute;
  top: -70px;
  left: 50%;
  background: #fff;
  padding: 5px 5px;
  margin-left: -71.5px;
}
.banner .banner-btn .banner-an p a.lxmimg {
  width: 133px;
}
.banner .banner-btn .banner-an p span {
  background: url(../images/banner-btn4.png) no-repeat;
  position: absolute;
  bottom: -6px;
  width: 11px;
  height: 6px;
  left: 50%;
  margin-left: -5px;
}
.banner .banner-btn div.cur b {
  background: url(../images/banner-btn2.png) center 0 no-repeat;
}
.banner .banner-btn div.cur p {
  display: block;
}
.home_about {
  margin-top: 60px;
  margin-bottom: 60px;
}
.home_about .home_about_left {
  color: #878787;
  font-size: 12px;
  line-height: 21px;
  width: 680px;
}
.home_about .home_about_left p.bt {
  border-left: 10px solid #D80011;
  padding-left: 5px;
}
.home_about .home_about_left p.bt span {
  color: #D80011;
  font-size: 17px;
  display: block;
  text-transform: uppercase;
  line-height: 20px;
  margin-left: 3px;
}
.home_about .home_about_left p.bt i {
  display: block;
  font-style: normal;
  color: #000000;
  font-size: 29px;
  line-height: 32px;
}
.home_about .home_about_left a.more {
  color: white;
  font-size: 13px;
  display: inline-block;
  width: 210px;
  line-height: 38px;
  height: 38px;
 /* border: 1px solid #d6d6d6;*/
  padding-left: 13px;
  position: relative;
  background-color: #D80011;
}
.home_about .home_about_left a.more:hover {
  text-decoration: underline;
}
.home_about .home_about_left a.more:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  background: url(../images/home_abouticon.jpg) no-repeat;
  width: 10px;
  height: 13px;
  margin-top: -6px;
}
.home_service {
 /* background: #f5f5f5;*/
  min-width: 1140px;
  padding: 60px 0;
}
.home_service ul li {
  float: left;
  width: 285px;
}
.home_service ul li p.tp {
  text-align: center;
}
.home_service ul li p.tp a {
  display: inline-block;
  /*background: url(../images/home_servicebj.jpg) no-repeat;*/
  width: 128px;
  height: 115px;
  position: relative;
}
.home_service ul li p.tp a:before {
  content: "";
  position: absolute;
  top: 47px;
  left: 24px;
  width: 85px;
  height: 70px;
}
.indexpic{
  margin-left: 5px;
  margin-top: 47px;
}
.home_service ul li p.tw {
  margin-top: 37px;
  text-align: center;
}
.home_service ul li > a {
  /*padding-bottom: 26px;*/
  display: block;
  text-align: center;
  overflow: hidden;
  color: #202020;
  font-size: 19px;
  font-weight: bold;
  line-height: 24px;
  /*height: 50px;*/
  margin-top: 10px;
  position: relative;
}
.home_service ul li > a:hover {
  color: #D80011;
}
.home_service ul li > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -75px;
  width: 150px;
  height: 3px;
  /*background: url(../images/home_servicebj2.jpg) no-repeat;*/
}
.home_service ul li p.wz {
  text-align: left;
  width: 210px;
  margin: 0 auto;
  color: #a29c9c;
  font-size: 12px;
  line-height: 21px;
  height: 84px;
  overflow: hidden;
  margin-top: 20px;
}
.customer {
  padding: 30px 0 25px 0;
}
.customer .customer_wz span {
  display: block;
  color: #423f3f;
  font-size: 24px;
  font-weight: bold;
  line-height: 26px;
}
.customer .customer_wz i {
  display: block;
  font-style: normal;
  color: #343434;
  font-size: 14px;
  line-height: 17px;
  font-family: "Arial";
  margin-top: 5px;
}
.customer .customer_box {
  width: 890px;
  margin-right: 20px;
}
.customer .customer_box .slick-prev,
.customer .customer_box .slick-next {
  width: 11px;
  height: 19px;
  margin-top: -9px;
  border: none;
}
.customer .customer_box .slick-prev {
  background: url(../images/customer_boxbtn1.jpg) no-repeat;
  left: -15px;
}
.customer .customer_box .slick-next {
  background: url(../images/customer_boxbtn2.jpg) no-repeat;
  right: -15px;
}
.customer .customer_box a {
  position: relative;
  display: block;
  width: 166px;
  height: 49px;
}
.customer .customer_box a:before {
  content: "";
  display: block;
  padding-bottom: 49px;
}
.pro ul {
  width: 110%;
  margin-bottom: 45px;
}
.pro ul li {
  float: left;
  width: 280px;
  height: 226px;
  border: 4px solid #ffffff;
 /* padding: 38px 13px 0 14px;*/
  margin-top: 25px;
  margin-right: 20px;
}
.pro ul li:hover {
  border: 4px solid #D80011;
}
.pro ul li a.tp {
  position: relative;
  display: block;
  width: 270px;
  height: 175px;
}
.pro ul li a.tp:before {
  content: "";
  display: block;
  padding-bottom: 175px;
}
.pro ul li a.wz {
  display: block;
  text-align: center;
  color: #131313;
  font-size: 18px;
  line-height: 20px;
/*  height: 23px;*/
  margin-top: 15px;
}
.pro ul li p {
  text-align: center;
  color: #8f8f8f;
  font-size: 12px;
  line-height: 20px;
  height: 60px;
  overflow: hidden;
  margin-top: 22px;
}
.pro ul li a.ck {
  display: block;
  width: 140px;
  height: 30px;
  line-height: 30px;
  background: #8d8d8d;
  margin: 0 auto;
  text-align: center;
  border-radius: 18px;
  margin-top: 28px;
  font-size: 14px;
  color: #fff;
}
.pro ul li a.ck:hover {
  background: #D80011;
}
.proshow {
  margin-top: 40px;
}
.proshow .proshow_img {
  text-align: center;
}
.proshow p.btn {
  margin-top: 48px;
  border-bottom: 1px solid #d80011;
}
.proshow p.btn a {
  float: left;
  width: 134px;
  text-align: center;
  line-height: 32px;
  height: 32px;
  color: #000000;
  font-size: 14px;
}
.proshow p.btn a.cur {
  color: #fff;
  background: #d80011;
}
.proshow .proshow_box {
  margin-top: 40px;
}
.proshow .proshow_box .proshow_list {
  color: #7a7a7a;
  font-size: 13px;
  line-height: 22px;
}
.proshow .proshow_box .proshow_list .ms {
  margin-left: 28px;
  border-left: 1px solid #eb6100;
  padding-left: 28px;
  padding-right: 15px;
  position: relative;
}
.proshow .proshow_box .proshow_list .ms:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  height: 7px;
  width: 3px;
  background: #fff;
}
.proshow .proshow_box .proshow_list .ms b {
  display: block;
  color: #141414;
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
}
.proshow .proshow_box .proshow_list .ms b:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  left: -33px;
  background: url(../images/ms2.jpg) no-repeat;
  width: 9px;
  height: 9px;
}
.proshow .proshow_box .proshow_list .ms_img {
  margin-top: 50px;
  margin-left: 82px;
}
.proshow .proshow_box .proshow_list .xz ul li {
  float: left;
  height: 30px;
  line-height: 30px;
  width: 100%;
  background: #f4f4f4;
  padding: 0 40px;
  margin-bottom: 5px;
}
.proshow .proshow_box .proshow_list .xz ul li span {
  color: #010101;
  font-size: 13px;
}
.proshow .proshow_box .proshow_list .xz ul li a {
  color: #ffffff;
  font-family: "宋体";
  height: 19px;
  line-height: 19px;
  width: 102px;
  text-align: center;
  background: #7b7b7b;
  border-radius: 5px;
  margin-top: 6px;
}
.proshow .proshow_box .proshow_list .xz ul li a:hover {
  background: #d80011;
}
.about .about_sp {
  float: right;
  margin-top: 20px;
  margin-left: 40px;
}
.about p.bt {
  border-left: 10px solid #D80011;
  padding-left: 5px;
}
.about p.bt span {
  color: #D80011;
  font-size: 15px;
  display: block;
  text-transform: uppercase;
  line-height: 20px;
  margin-left: 3px;
}
.about p.bt i {
  display: block;
  font-style: normal;
  color: #000000;
  font-size: 23px;
  line-height: 32px;
}
.about .about_img {
  text-align: center;
}
.about p.fh {
  margin-top: 50px;
}
.about p.fh a,.fanhuisyy {
  width: 111px;
  height: 29px;
  line-height: 29px;
  background: url(../images/fh.jpg) no-repeat;
  color: #fff;
  padding-left: 45px;
  font-size: 12px;
}
.about p.fh a:hover {
  text-decoration: underline;
}
.search {
  position: absolute;
  right: 0;
  top: -43px;
}
.search input[type="text"] {
  width: 222px;
  height: 27px;
  line-height: 27px;
  border: 1px solid #a7a7a7;
  padding: 0 5px;
}
.search input[type="submit"] {
  background: url(../images/ss.jpg) no-repeat;
  width: 33px;
  height: 27px;
}
.news ul {
  margin-bottom: 40px;
}
.news ul li {
  margin-bottom: 30px;
  float: left;
  width: 100%;
  border-top: 1px solid #e3e3df;
  padding-top: 21px;
}
.news ul li:first-child {
  border-top: none;
  padding-top: 0;
}
.news ul li div.wz {
  width: 690px;
  margin-left: 10px;
}
.news ul li div.wz .rq {
  height: 64px;
  line-height: 62px;
}
.news ul li div.wz .rq span {
  color: #49494e;
  font-size: 46px;
  font-family: "Arial";
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
}
.news ul li div.wz .rq span i {
  font-style: normal;
  color: #bf2430;
}
.news ul li div.wz .rq a {
  width: 533px;
  overflow: hidden;
  color: #49494e;
  font-size: 24px;
  font-weight: bold;
  margin-left: 40px;
  height: 64px;
}
.news ul li div.wz .rq a:hover {
  color: #bf2430;
}
.news ul li div.wz .js {
  color: #626262;
  font-size: 12px;
  line-height: 23px;
/*  height: 92px;*/
  overflow: hidden;
/*  margin-top: 32px;*/
}
.news ul li > a {
  width: 360px;
  height: 186px;
  margin-right: 6px;
  margin-top: 5px;
  position: relative;
  display: block;
}
.news ul li > a:before {
  content: "";
  display: block;
  padding-bottom: 186px;
}
.newsshow h1 {
  text-align: center;
  font-size: 30px;
  color: #000000;
  font-weight: normal;
  line-height: 32px;
}
.newsshow div.fx {
  border-bottom: 1px solid #cacaca;
  padding-left: 405px;
  margin-top: 20px;
  padding-bottom: 40px;
}
.newsshow div.fx span {
  margin-right: 37px;
  color: #999999;
  font-size: 12px;
  line-height: 28px;
}
.newsshow .nr {
  margin-top: 30px;
}
.newsshow .newsshow_img {
  text-align: center;
}
.newsshow p.fh {
  margin-top: 20px;
}
.newsshow p.fh a {
  width: 111px;
  height: 29px;
  line-height: 29px;
  background: url(../images/fh.jpg) no-repeat;
  color: #fff;
  padding-left: 45px;
  font-size: 12px;
}
.newsshow p.fh a:hover {
  text-decoration: underline;
}
.honor ul {
  width: 110%;
  margin-bottom: 50px;
}
.honor ul li {
  width: 266px;
  float: left;
  margin-right: 25px;
  margin-bottom: 25px;
}
.honor ul li a {
  width: 266px;
  height: 187px;
  position: relative;
  display: block;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}
.honor ul li a:before {
  content: "";
  display: block;
  padding-bottom: 187px;
}
.honor ul li p {
  text-align: center;
  color: #5c5c5c;
  font-size: 13px;
  line-height: 21px;
  height: 21px;
  overflow: hidden;
  margin-top: 15px;
}
.common ul {
  margin-bottom: 36px;
}
.common ul li {
  padding: 25px 25px;
  border: 1px solid #d8d8d8;
  margin-bottom: 10px;
}
.common ul li p.bt {
  cursor: pointer;
}
.common ul li p.bt span {
  color: #040404;
  font-size: 20px;
  line-height: 22px;
  background: url(../images/common3.jpg) 0 center no-repeat;
  padding-left: 53px;
}
.common ul li p.bt a {
  background: url(../images/common1.jpg) 0 center no-repeat;
  width: 17px;
  height: 22px;
}
.common ul li div.wz {
  color: #8b8b8b;
  font-size: 12px;
  line-height: 21px;
  height: 42px;
  overflow: hidden;
  background: url(../images/common4.jpg) no-repeat;
  padding-left: 53px;
  margin-top: 15px;
}
.common ul li.xx2 {
  background: #f6f6f6;
  border: 1px solid #f6f6f6;
}
.common ul li.xx2 p.bt span {
  color: #ea5413;
}
.common ul li.xx2 p.bt a {
  background: url(../images/common2.jpg) 0 center no-repeat;
}
.common ul li.xx2 div.wz {
  height: auto;
}
.service .service_left .service_bt p.bt {
  border-left: 10px solid #e20821;
  padding-left: 5px;
}
.service .service_left .service_bt p.bt span {
  color: #e20821;
  font-size: 17px;
  display: block;
  text-transform: uppercase;
  line-height: 20px;
  margin-left: 3px;
}
.service .service_left .service_bt p.bt i {
  display: block;
  font-style: normal;
  color: #000000;
  font-size: 29px;
  line-height: 32px;
}
.service .service_left .service_bt p.tel_dh {
  background: url(../images/service2.jpg) 0 center no-repeat;
  padding-left: 27px;
  margin-top: 18px;
  margin-right: 40px;
}
.service .service_left .service_bt p.tel_dh span {
  line-height: 28px;
  color: #444444;
  font-size: 13px;
  vertical-align: middle;
  margin-right: 8px;
}
.service .service_left .service_bt p.tel_dh i {
  color: #077cd3;
  font-size: 27px;
  font-family: "Arial";
  line-height: 28px;
  display: inline-block;
  vertical-align: middle;
}
.balance p.bt {
  border-left: 10px solid #e20821;
  padding-left: 5px;
}
.balance p.bt span {
  color: #e20821;
  font-size: 17px;
  display: block;
  text-transform: uppercase;
  line-height: 20px;
  margin-left: 3px;
}
.balance p.bt i {
  display: block;
  font-style: normal;
  color: #000000;
  font-size: 29px;
  line-height: 32px;
}
.balance p span.zm {
  color: #e20821;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}
.balance .balance_img {
  text-align: center;
}
.balance p.bt {
  border-left: 10px solid #e20821;
  padding-left: 5px;
}
.balance p.bt span {
  color: #e20821;
  font-size: 17px;
  display: block;
  text-transform: uppercase;
  line-height: 20px;
  margin-left: 3px;
}
.balance p.bt i {
  display: block;
  font-style: normal;
  color: #000000;
  font-size: 29px;
  line-height: 32px;
}
.balance .seminar_wz {
  width: 880px;
}
.balance .seminar_img {
  margin-top: 58px;
}
.balance .seminar_bj p {
  padding-left: 22px;
  background: url(../images/seminar2.jpg) 0 8px no-repeat;
}
.balance .seminar_bj p span {
  text-transform: uppercase;
}
.balance p.bt {
  border-left: 10px solid #e20821;
  padding-left: 5px;
}
.balance p.bt span {
  color: #e20821;
  font-size: 17px;
  display: block;
  text-transform: uppercase;
  line-height: 20px;
  margin-left: 3px;
}
.balance p.bt i {
  display: block;
  font-style: normal;
  color: #000000;
  font-size: 29px;
  line-height: 32px;
}
.balance ul {
  width: 110%;
}
.balance ul li {
  float: left;
  width: 360px;
  margin-right: 27px;
  margin-bottom: 30px;
}
.balance ul li span {
  border: 1px solid #d8d8d8;
  position: relative;
  display: block;
  width: 360px;
  height: 225px;
}
.balance ul li p {
  text-align: center;
  height: 38px;
  line-height: 38px;
  background: #f4f4f4;
  color: #6c6c6c;
  font-size: 14px;
}
.contact .nr_map {
  margin-bottom: 40px;
}
.contact .nr_map .map {
  width: 625px;
  height: 518px;
  border: 1px solid #cfcfcf;
  padding: 5px 5px;
}
.contact .nr_map .nr {
  width: 475px;
}
.contact .nr_map .nr b {
  display: block;
  color: #d80011;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 12px;
}
.contact .nr_map .nr div.wz {
  margin-top: 10px;
  margin-bottom: 32px;
}
.contact .nr_map .nr div.ly {
  margin-top: 25px;
}
.contact .nr_map .nr div.ly p {
  margin-right: 13px;
  margin-bottom: 10px;
}
.contact .nr_map .nr div.ly p input[type="text"] {
  padding: 0 15px;
  width: 218px;
  border: 1px solid #cfcfcf;
  background: #f7f7f7;
  height: 36px;
  line-height: 36px;
}
.contact .nr_map .nr div.ly p input.input2 {
  width: 79px;
}
.contact .nr_map .nr div.ly p img {
  margin-left: 13px;
}
.contact .nr_map .nr div.ly p a {
  height: 36px;
  line-height: 36px;
  margin-left: 8px;
  color: #0e85ba;
  font-size: 13px;
  text-decoration: underline;
}
.contact .nr_map .nr div.ly p a:hover {
  color: #067ad1;
}
.contact .nr_map .nr div.ly p input[type="submit"] {
  width: 130px;
  height: 36px;
  color: #ffffff;
  font-size: 14px;
  background: url(../images/tjan.jpg) no-repeat;
  text-align: left;
  padding-left: 14px;
  margin-right: 26px;
}
.contact .nr_map .nr div.ly textarea {
  width: 449px;
  height: 139px;
  border: 1px solid #cfcfcf;
  background: #f7f7f7;
  padding: 8px 15px;
}
.contact .con_box {
  margin-top: 20px;
  width: 110%;
  padding-bottom: 22px;
}
.contact .con_box .fbdz {
  width: 544px;
  float: left;
  margin-right: 50px;
}
.contact .con_box .fbdz b {
  display: block;
  color: #d80011;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 20px;
}
.contact .con_box .fbdz .fbdz_div .fbdz_tp span {
  position: relative;
  display: block;
  width: 210px;
  height: 124px;
}
.contact .con_box .fbdz .fbdz_div .fbdz_wz {
  width: 303px;
  margin-left: 29px;
}
.case .caseshow_box {
  margin-top: 40px;
}
.case .caseshow_box .caseshow_left {
  width: 823px;
  position: relative;
  padding-left: 11px;
}
.case .caseshow_box .caseshow_left span {
  position: relative;
  display: block;
  width: 812px;
  height: 665px;
}
.case .caseshow_box .caseshow_left b {
  position: absolute;
  bottom: 21px;
  left: 0;
  width: 320px;
  height: 58px;
  line-height: 70px;
  background: url(../images/caseshowbj.png) no-repeat;
  color: #ffffff;
  font-size: 21px;
  padding-left: 30px;
  font-weight: normal;
}
.case .caseshow_box .caseshow_right {
  width: 288px;
  margin-right: 15px;
  overflow: hidden;
}
.case .caseshow_box .caseshow_right ul {
  width: 110%;
}
.case .caseshow_box .caseshow_right ul li {
  float: left;
  margin-right: 8px;
  margin-bottom: 8px;
}
.case .caseshow_box .caseshow_right ul li div {
  width: 140px;
  height: 113px;
  position: relative;
}
.case .caseshow_box .caseshow_right ul li div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.case .caseshow_box .caseshow_right ul li.cur div:before {
  background: none;
  border: 3px solid #d80011;
  width: 134px;
  height: 107px;
}
.biglist {
  position: relative;
}
.biglist li {
  display: none;
  width: 812px;
  height: 665px;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
}
.biglist li:first-child {
  display: block;
}
.biglist li p {
  position: absolute;
  bottom: 21px;
  left: -11px;
  height: 58px;
  line-height: 70px;
  background: url(../images/caseshowbj1.png) no-repeat;
  color: #ffffff;
  font-size: 21px;
  padding-left: 11px;
  font-weight: normal;
  z-index: 5;
}
.biglist li p > span {
  background: #c20b19;
  display: inline-block;
  height: 49px;
  line-height: 49px;
  padding-left: 19px;
  position: relative;
  top: -2px;
  max-width: 750px;
  min-width: 277px;
}
.biglist li p > span:before {
  content: "";
  position: absolute;
  right: -35px;
  bottom: 0;
  width: 35px;
  height: 49px;
  background: url(../images/caseshowbj2.png) no-repeat;
}
.biglist li > span {
  float: left;
  width: 812px;
  height: 665px;
  display: block;
  text-align: center;
}
.biglist li > span img {
  max-height: 100%;
  max-width: 100%;
}
.biglist li > span i {
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.smallBox {
  float: right;
  width: 290px;
  height: 655px;
  position: relative;
  overflow: hidden;
  margin-top: 5px;
}
.prev,
.next {
  display: block;
  position: absolute;
  width: 289px;
  height: 21px;
  left: 0px;
}
.prev {
  background: url(../images/caseshowbtn1.jpg) no-repeat;
  top: 0px;
}
.next {
  background: url(../images/caseshowbtn2.jpg) no-repeat;
  bottom: 0px;
}
.small_list {
  margin-top: 28px;
  width: 100%;
  height: 605px;
  overflow: hidden;
  position: relative;
}
.small_list ul {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 605px;
}
.small_list ul ul {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.small_list ul ul.ul1 {
  opacity: 1;
  filter: alpha(opacity=100);
}
.small_list li {
  float: left;
  margin-right: 8px;
  margin-bottom: 8px;
}
.small_list li div {
  width: 140px;
  height: 113px;
  position: relative;
}
.small_list li div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.small_list li.cur div:before {
  background: none;
  border: 3px solid #d80011;
  width: 134px;
  height: 107px;
}
/************20151231*******************/
.service .service_left {
  position: relative;
  padding-right: 476px;
}
.nav ul li > div > a {
  overflow:hidden;
}
.pro ul li a.wz {
  overflow:hidden;
}
.main .main_left > ul > li > a {
  overflow:hidden;
}
.main .main_right .bcn h2 {
  /*width: 41%;*/
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}


.izl-rmenu{
         margin-right: 0;
         width: 82px;
         position: fixed;
         right: 2px;
         top: 65%;
         -webkit-box-shadow: #DDD 0px 1px 5px;
         -moz-box-shadow: #DDD 0px 1px 5px;
         box-shadow: #DDD 0px 1px 5px;
         z-index:999;
}
.izl-rmenu .consult{    
  background-image: url(../images/consult_icon.gif);
    background-repeat: no-repeat;
    background-position: center -77px;
    display: block;
    height: 76px;
    width: 82px;
}
.izl-rmenu .consult .phone {
    background-color: rgb(247,247,255);
    position: absolute;
    width: 160px;
    left: -160px;
    top: 0px;
    line-height: 73px;
    color: #000;
    font-size: 18px;
    text-align: center;
    display: none;
    box-shadow: #DDD -1px 1px 4px;
}
.izl-rmenu a.consult:hover .phone{display:inline !important;}
.izl-rmenu .cart {
    background-image: url(../images/consult_icon.gif);
    background-repeat: no-repeat;
    background-position: center bottom;
    display: block;
    /*height: 16px;
    width: 16px;*/
    font-size: 12px;
    line-height: 16px;
    color: #45BDFF;
    text-align: center;
/*    padding-top: 15px;
    padding-right: 18px;
    padding-bottom: 47px;
    padding-left: 48px;*/
      height: 76px;
    width: 82px;
}
.izl-rmenu a.cart:hover .pic{display:block;}
.izl-rmenu .btn_top {
    background-image: url(../images/float_top.gif);
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    height: 39px;
    width: 82px;
    -webkit-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}
.izl-rmenu .btn_top:hover {
  background-image: url(../images/float_top.gif);
  background-repeat: no-repeat;
  background-position: center bottom;
}
.izl-rmenu .cart .pic {
  display:none;
    position: absolute;
    left: -160px;
    top: 65px;
    width: 160px;
    height: 160px;
    
}
#udesk-feedback-tab {
    position: fixed;
    right: 2px;
    top: 65%;
    margin-top: -76px;
    -webkit-box-shadow: #DDD 0px -1px 5px;
    -moz-box-shadow: #DDD 0px -1px 5px;
    box-shadow: #DDD 0px -1px 5px;
    z-index: 10000;
    cursor: pointer;
    background-image: url(../images/consult_icon.gif);
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
    height: 76px;
    width: 82px;
    background-color: #FFF!important;
    z-index:999;
}


/*分页*/
.danyemianbox{ overflow: hidden; }
.danyemianbox img,.danyemianbox p img,.danyemianbox p span img{max-width: 98% !important;}
.page{ padding:20px 0 0 0; text-align:center;}
.page a{ display:inline-block; margin:0 5px; height:30px; line-height:30px; padding:0 12px; border:#bcbcbc solid 1px; border-radius:2px; color:#666;}
.page i{width:0;height:0;line-height:0; display:block; border-width:5px;border-style:solid;Filter:Chroma(color=color); position:absolute;top:10px;}
.page .first{ padding-left:20px !important; position:relative;}
.page .last{ padding-right:20px !important; position:relative;}
.page .first i{border-color:transparent #999 transparent transparent; left:5px;}
.page .last i{border-color:transparent transparent transparent #999; right:5px;}
.page a:hover{border:#e7942c solid 1px; text-decoration:none; box-shadow:#e7942c 0 0 3px;}
.page .on{color:#FFF; border:#e7942c solid 1px; background:#e7942c;}
.page .next,.page .prev{display: none;}
.protitled{text-align: center;    font-size: 30px;}
.probiaoqiand{ text-align: center; }
.prinrd{}

