/*
    ----------------------------------- 
            方法变量    
                     
    Create Time : 2014-07-22
    Update Time : 2015-03-26
    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 .filterGaryscale()  // 滤镜灰度 - 使用 ：.filterGaryscale(1); 默认1 ★注意参数 是 0.1~1; 1代表全灰
   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           // 清除浮动

    -----------------------------------
*/
html {
  overflow-x: hidden;
}
/*图片居中*/
.jzimg {
  display: table-cell;
  *display: block;
  overflow: hidden;
  font: 0px/0px 'Arial';
  text-align: center;
  vertical-align: middle;
}
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;
}
/* 按钮样式 */
input,
button,
textarea,
select {
  font-size: 100%;
  outline: none;
  resize: none;
  border: none;
  background: none;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
  cursor: pointer;
}
/*字体大小、缩进*/
.t2 {
  text-indent: 2em;
}
.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.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;
}
/*浮动*/
.fl {
  float: left;
  display: inline;
}
.fr {
  float: right;
  display: inline;
}
.clear {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
  line-height: 0;
  content: '\20';
}
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}
@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}
@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}
@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}
@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}
@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}
@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    transform: rotate(2deg) scaleY(1);
  }
  50% {
    transform: rotate(-2deg);
  }
  65% {
    transform: rotate(1deg);
  }
  80% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }
  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }
  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }
  50% {
    -webkit-transform: rotate(-2deg);
  }
  65% {
    -webkit-transform: rotate(1deg);
  }
  80% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }
  60% {
    transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }
  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }
  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }
  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }
  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}
/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}
@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}
@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }
  40% {
    transform: scaleY(1.02);
  }
  60% {
    transform: scaleY(0.98);
  }
  100% {
    transform: scaleY(0.98);
  }
  80% {
    transform: scaleY(1.01);
  }
  100% {
    transform: scaleY(1);
  }
}
@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }
  40% {
    -webkit-transform: scaleY(1.02);
  }
  60% {
    -webkit-transform: scaleY(0.98);
  }
  100% {
    -webkit-transform: scaleY(0.98);
  }
  80% {
    -webkit-transform: scaleY(1.01);
  }
  100% {
    -webkit-transform: scaleY(1);
  }
}
/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}
@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }
  40% {
    transform: scaleX(1.02);
  }
  60% {
    transform: scaleX(0.98);
  }
  100% {
    transform: scaleX(0.98);
  }
  80% {
    transform: scaleX(1.01);
  }
  100% {
    transform: scaleX(1);
  }
}
@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }
  40% {
    -webkit-transform: scaleX(1.02);
  }
  60% {
    -webkit-transform: scaleX(0.98);
  }
  100% {
    -webkit-transform: scaleX(0.98);
  }
  80% {
    -webkit-transform: scaleX(1.01);
  }
  100% {
    -webkit-transform: scaleX(1);
  }
}
.frame-1600 {
  position: relative;
  width: 1600px;
  top: 0;
  left: 50%;
  margin-left: -800px;
}
.frame-1004 {
  margin: 0 auto;
  width: 1004px;
}
/*图片垂直居中*/
.lxmimg {
  display: block;
  text-align: center;
}
fieldset,
img {
  border: 0;
  vertical-align: middle;
}
.lxmimg img {
  max-height: 100%;
  max-width: 100%;
}
.lxmimg i {
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
/*
	--------------------------
	首页样式
	--------------------------
*/
.banner {
  position: relative;
  height: 500px;
}
.banner .banner_ul>li {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -800px;
}
.banner #hbannerl {
  position: absolute;
  top: 213px;
  left: 89px;
  z-index: 3;
}
.banner #hbannerr {
  position: absolute;
  top: 213px;
  right: 89px;
  z-index: 3;
}
.rec_pro {
  margin: 0 auto;
  width: 1004px;
  margin-top: 40px;
}
.rec_pro .rec_proimg {
  text-align: center;
}
.rec_pro .rec_probt {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  background: url(../images/rec_prox.jpg) 0 bottom no-repeat;
  padding-bottom: 20px;
}
.rec_prodiv {
  margin: 0 auto;
  width: 1155px;
  margin-top: 55px;
}
.rec_prodiv .rec_prol {
  margin-right: 35px;
  margin-top: 96px;
}
.rec_prodiv .rec_pror {
  margin-top: 96px;
}
.rec_prodiv .rec_proswitch {
  width: 1004px;
  height: 251px;
  overflow: hidden;
  background: url(../images/in_probj.jpg) no-repeat;
}
.rec_prodiv .rec_proswitch ul {
  width: 99999px;
}
.rec_prodiv .rec_proswitch ul li {
  float: left;
  width: 183px;
  padding: 48px 26px 0 28px;
  margin-right: 19px;
}
.rec_prodiv .rec_proswitch ul li:hover .rec_proa {
  text-decoration: underline;
}
.rec_prodiv .rec_proswitch ul li .rec_proa {
  color: #666666;
  line-height: 18px;
  height: 36px;
  overflow: hidden;
  display: block;
  text-align: center;
  margin-top: 33px;
}
.rec_prodiv .rec_proswitch ul li .rec_proa span {
  font-weight: bold;
}
.rec_prodiv .rec_proswitch ul li a.jzimg {
  width: 183px;
  height: 125px;
  *font-size: 109px;
}
.rec_news-frame {
  position: relative;
  width: 1600px;
  top: 0;
  left: 50%;
  margin-left: -800px;
  border-top: 1px solid #ededed;
  background: #f5f5f5;
  height: 353px;
  margin-top: 55px;
  padding-top: 39px;
}
.rec_news-frame .rec_news {
  margin: 0 auto;
  width: 1004px;
}
.rec_news-frame .rec_news .rec_newsl {
  width: 424px;
  height: 280px;
  background: url(../images/rec_news.jpg) no-repeat;
  padding: 16px 0 0 35px;
}
.rec_news-frame .rec_news .rec_newsl a.jzimg {
  width: 391px;
  height: 264px;
  *font-size: 231px;
}
.rec_news-frame .rec_news .rec_newsl .rec_newsldiv {
  display: none;
}
.rec_news-frame .rec_news .rec_newsr {
  width: 502px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv {
  background: url(../images/icon5.jpg) 0 center no-repeat;
  height: 35px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv .rec_newsdivp {
  border-bottom: 1px dotted #cccccc;
  position: relative;
  margin-left: 47px;
  height: 35px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv .rec_newsdivp span {
  color: #666666;
  font-weight: bold;
  font-size: 16px;
  height: 16px;
  line-height: 16px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv .rec_newsdivp a {
  color: #999999;
  line-height: 30px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv .rec_newsdivp a:hover {
  text-decoration: underline;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv .rec_newsdivp b {
  position: absolute;
  font-weight: normal;
  top: 22px;
  left: 0;
  text-transform: uppercase;
  color: #999999;
  background: #f5f5f5;
  padding-right: 10px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv2 {
  margin-top: 31px;
  background: url(../images/rec_newsbj.jpg) 0 bottom repeat-x;
  padding-bottom: 20px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv2:hover .rec_newsdiv2wz a {
  color: #154A98;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv2 .rec_newsdiv2p {
  width: 82px;
  text-align: center;
  border: 1px solid #cfcfcf;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv2 .rec_newsdiv2p b {
  display: block;
  color: #636363;
  font-size: 42px;
  height: 48px;
  line-height: 48px;
  border-bottom: 1px solid #cfcfcf;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv2 .rec_newsdiv2p span {
  display: block;
  height: 24px;
  line-height: 24px;
  color: #fff;
  background: #636363;
  font-size: 16px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv2 .rec_newsdiv2wz {
  width: 396px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv2 .rec_newsdiv2wz a {
  color: #333333;
  font-weight: bold;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  display: block;
  width: 396px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.rec_news-frame .rec_news .rec_newsr .rec_newsdiv2 .rec_newsdiv2wz p {
  color: #868686;
  line-height: 24px;
  margin-top: 8px;
  height: 48px;
  overflow: hidden;
}
.rec_news-frame .rec_news .rec_newsr .rec_newslb li.cur a {
  color: #154A98;
}
.rec_news-frame .rec_news .rec_newsr .rec_newslb li {
  border-bottom: 1px dotted #e1e1e1;
  float: left;
  width: 502px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newslb li a {
  color: #666666;
  height: 40px;
  line-height: 40px;
  background: url(../images/icon6.jpg) 0 center no-repeat;
  width: 378px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 17px;
  margin-left: 2px;
}
.rec_news-frame .rec_news .rec_newsr .rec_newslb li span {
  color: #b1b1b1;
  height: 40px;
  line-height: 40px;
}
.rec_contact-frame {
  position: relative;
  width: 1600px;
  top: 0;
  left: 50%;
  margin-left: -800px;
  background: url(../images/rec_contactbj.jpg) no-repeat;
  height: 371px;
  padding-top: 27px;
}
.rec_contact-frame .rec_contact {
  margin: 0 auto;
  width: 1004px;
}
.rec_contact-frame .rec_contact .rec_contactbt {
  text-align: center;
}
.rec_contact-frame .rec_contactzw {
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  background: url(../images/rec_contactx.png) 0 bottom no-repeat;
  padding-bottom: 12px;
}
.rec_contact-frame .rec_nr {
  margin: 0 auto;
  width: 925px;
  margin-top: 52px;
}
.rec_contact-frame .rec_nr ul {
  width: 120%;
}
.rec_contact-frame .rec_nr ul li {
  float: left;
  margin-right: 162px;
  position: relative;
}
.rec_contact-frame .rec_nr ul li>span{
    position: absolute;
    top: 106px;
    left: 7px;
    text-align: center;
    width: 184px;
    color: #fff;
    font-size:24px;
    line-height: 30px;
    line-height: 30px;

}
.rec_contact-frame .rec_nr ul li p {
  position: absolute;
  top: 42px;
  left: 30px;
  text-align: center;
  width: 140px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  background: url(../images/rec_nrpbj.jpg) center bottom no-repeat;
  padding-bottom: 8px;
}
.rec_contact-frame .rec_nr ul li p span {
  font-size: 14px;
  font-weight: normal;
}
.synopsis {
  margin: 0 auto;
  width: 1004px;
  margin-top: 32px;
}
.synopsis .synopsisimg {
  text-align: center;
}
.synopsis .synopsiswz {
  text-align: center;
  color: #999999;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  background: url(../images/rec_prox.jpg) 0 bottom no-repeat;
  padding-bottom: 12px;
}
.synopsis .synopsisnr {
  margin-top: 75px;
  width: 110%;
  margin-bottom: 45px;
}
.synopsis .synopsisnr .synopsisdiv {
  float: left;
  width: 234px;
  height: 198px;
  border: 1px solid #d2d2d2;
  margin-right: 21px;
  position: relative;
}
.synopsis .synopsisnr .synopsisdiv .syn_dw1 {
  position: absolute;
  left: 49px;
  top: -25px;
}
.synopsis .synopsisnr .synopsisdiv .syn_dw2 {
  position: absolute;
  left: 80px;
  top: 107px;
}
.synopsis .synopsisnr .synopsisdiv p {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  font-weight: bold;
  text-align: center;
  margin-top: 47px;
  height: 48px;
  overflow: hidden;
}
.synopsis .synopsisnr .synopsisdiv p span {
  color: #666666;
  font-size: 12px;
  font-weight: normal;
}
/*
	--------------------------
	公共样式
	--------------------------
*/
.head-frame {
  position: relative;
  width: 1600px;
  top: 0;
  left: 50%;
  margin-left: -800px;
  background: #f3f3f3;
  height: 126px;
}
.head-frame .head {
  margin: 0 auto;
  width: 1004px;
}
.head-frame .head .headright {
  margin-top: 38px;
  width:540px;
}
.head-frame .head .headright .switch .search {
  margin-left: 26px;
}
.head-frame .head .headright .switch .search input[type="text"] {
  width: 141px;
  height: 18px;
  border: 1px solid #cccccc;
  background: #fff;
  vertical-align: middle;
}
.head-frame .head .headright .switch .search input[type="submit"] {
  background: url(../images/magnifier.jpg) no-repeat;
  width: 28px;
  height: 20px;
  line-height: 20px;
  vertical-align: middle;
}
.head-frame .head .headright .switch .zx {
  line-height: 20px;
  height: 20px;
  font-size: 14px;
}
.head-frame .head .headright .switch .zx a {
  color: #666666;
  line-height: 20px;
  padding-left: 20px;
}
.head-frame .head .headright .switch .zx a:hover {
  text-decoration: underline;
}
.head-frame .head .headright .switch .zx a:first-child {
  background: url(../images/icon1.jpg) 0 center no-repeat;
  margin-right: 15px;
}
.head-frame .head .headright .switch .zx a + a {
  background: url(../images/icon2.jpg) 0 center no-repeat;
  margin-left: 15px;
}
.head-frame .head .headright .nav {
  margin-top: 17px;
  width:540px;
  
}
.head-frame .head .headright .nav ul li.on > a {
  background: url(../images/navbj.jpg) center bottom no-repeat;
}
.head-frame .head .headright .nav ul li {
  float: left;
  position: relative;
  z-index: 5;
}
.head-frame .head .headright .nav ul li:hover > a {
  background: url(../images/navbj.jpg) center bottom no-repeat;
}
.head-frame .head .headright .nav ul li > a {
  float: left;
  text-align: center;
  color: #666666;
  font-size: 15px;
  line-height: 19px;
  height: 19px;
  width: 108px;
  padding-bottom: 8px;
}
.head-frame .head .headright .nav ul li div {
  position: absolute;
  top: 27px;
  width: 160px;
  left: 0;
  margin-left: -5px;
  border: 1px solid #c7c7c7;
  background: url(../images/owhite.png) repeat repeat;
  padding: 7px 0;
  display: none;
  border-radius: 5px;
  overflow: hidden;
}
.head-frame .head .headright .nav ul li div p:hover {
  background: #b2b1b1;
  height: 31px;
}
.head-frame .head .headright .nav ul li div p:hover a {
  color: #fff;
  background: url(../images/icon4.png) 2px center no-repeat;
}
.head-frame .head .headright .nav ul li div p a {
  display: block;
  text-align: left;
  padding: 0 15px;
  height: 31px;
  line-height: 31px;
  margin: 0 12px;
  border-bottom: 1px solid #e6e6e6;
  color: #666666;
  font-size: 13px;
  background: url(../images/icon3.png) 2px center no-repeat;
  overflow:hidden;
}
.footer-frame {
  position: relative;
  width: 1600px;
  top: 0;
  left: 50%;
  margin-left: -800px;
  border-top: 1px solid #353535;
  background: #272727;
  min-height: 225px;
}
.footer-frame .footer {
  margin: 0 auto;
  width: 1004px;
}
.footer-frame .footer .footerl {
  margin-top: 34px;
}
.footer-frame .footer .footerl ul li {
  float: left;
  width: 140px;
  margin-right: 35px;
}
.footer-frame .footer .footerl ul li a {
  font-size: 14px;
  line-height: 30px;
  color: #999999;
  display: block;
  height:30px;
  overflow:hidden;
}
.footer-frame .footer .footerl ul li a:hover {
  text-decoration: underline;
}
.footer-frame .footer .footerl ul li a:first-child {
  color: #ffffff;
  font-size: 16px;
  line-height: 15px;
  margin-bottom: 25px;
}
.footer-frame .footer .footerl ul li a:first-child span {
  color: #666666;
  font-size: 12px;
  text-transform: uppercase;
}
.footer-frame .footer .footerr {
  width: 225px;
  min-height: 183px;
  background: url(../images/footer1.jpg) 65px 0 no-repeat;
  margin-top: 22px;
  padding-left: 65px;
  border-left: 1px solid #373737;
  text-align: center;
  color: #b8b8b8;
  line-height: 23px;
}
.footer-frame .footer .footerr .footerrp1 {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  height: 24px;
  line-height: 24px;
  margin-top: 17px;
}
.footer-frame .footer .footerr .footerrp2 {
  color: #ffffff;
  font-size: 16px;
  height: 18px;
  line-height: 18px;
  margin-top: 8px;
}
.copyright-frame {
  position: relative;
  width: 1600px;
  top: 0;
  left: 50%;
  margin-left: -800px;
  background: #181818;
}
.copyright-frame .copyright {
  margin: 0 auto;
  width: 1004px;
  line-height: 18px;
  padding: 8px 0;
  color: #666666;
}
/*
	--------------------------
	公共组件
	--------------------------
*/
.n_banner {
  position: relative;
  height: 280px;
}
.n_banner img {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -800px;
}
.crumbs-frame {
  position: relative;
  width: 1600px;
  top: 0;
  left: 50%;
  margin-left: -800px;
  height: 32px;
  border-bottom: 1px solid #e0e0e0;
}
.crumbs-frame .crumbs {
  margin: 0 auto;
  width: 1004px;
  border-left: 1px solid #E0E0E0;
}
.crumbs-frame .crumbs a {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  margin-left: 17px;
  background: url(../images/crumbsbj.jpg) right 0 no-repeat;
  padding-right: 24px;
  color: #999999;
  vertical-align: middle;
}
.crumbs-frame .crumbs a:hover {
  color: #4e75ac;
}
.crumbs-frame .crumbs span {
  margin-left: 17px;
  height: 32px;
  line-height: 32px;
  background: url(../images/crumbsbj.jpg) right 0 no-repeat;
  padding-right: 24px;
  display: inline-block;
  color: #4e75ac;
}
.crumbs-frame .crumbs span b {
  font-weight: normal;
  display: inline-block;
  background: url(../images/icon8.jpg) right center no-repeat;
  padding-right: 18px;
}
.ny {
  margin: 0 auto;
  width: 1004px;
  margin-top: 55px;
}
.fh {
  text-align: center;
}
.fh a {
  display: inline-block;
  width: 48px;
  height: 27px;
  text-align: center;
  line-height: 27px;
  color: #fff;
  background: #154a98;
  margin-top: 40px;
}
.fh a:hover {
  text-decoration: underline;
  color: #fff;
}
.fy {
  text-align: center;
}
.fy a {
  display: inline-block;
  height: 27px;
  line-height: 27px;
  color: #565656;
  text-align: center;
  background: #f4f4f4;
  width: 20px;
  margin-right: 7px;
}
.fy a:hover,.fy a.cpb {
  color: #fff;
  background: #154a98;
}
.fy a.prve {
  width: 47px;
  text-align: center;
  border: 1px solid #d3d3d3;
  background: none;
  height: 25px;
  line-height: 25px;
}
.fy a.prve:hover {
  color: #154a98;
}
.fy a.next {
  width: 47px;
  text-align: center;
  border: 1px solid #d3d3d3;
  background: none;
  height: 25px;
  line-height: 25px;
}
.fy a.next:hover {
  color: #154a98;
}
/*
	--------------------------
	栏目样式
	--------------------------
*/
.probt {
  color: #333333;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Arial';
}
.probtzw {
  text-align: center;
  color: #999999;
  font-size: 18px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  background: url(../images/rec_prox.jpg) 0 bottom no-repeat;
  padding-bottom: 15px;
}
.pro .pro_switchnr {
  width: 796px;
  margin: 0 auto;
  margin-top: 50px;
}
.pro .pro_switchnr .probtnl {
  margin-right: 12px;
}
.pro .pro_switchnr .pro_switch {
  width: 720px;
  height: 103px;
  overflow: hidden;
  position: relative;
}
.pro .pro_switchnr .pro_switch ul {
  width: 99999px;
}
.pro .pro_switchnr .pro_switch ul li.cur > p {
  display: none;
}
.pro .pro_switchnr .pro_switch ul li {
  float: left;
  margin-right: 12px;
  position: relative;
}
.pro .pro_switchnr .pro_switch ul li:hover > p {
  display: none;
}
.pro .pro_switchnr .pro_switch ul li a.jzimg {
  width: 108px;
  height: 100px;
  *font-size: 88px;
  border: 1px solid #ebebeb;
}
.pro .pro_switchnr .pro_switch ul li p {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/probj.png) repeat;
  width: 94px;
  height: 62px;
  padding: 40px 8px 0 8px;
  text-align: center;
  color: #ffffff;
  line-height: 14px;
  overflow: hidden;
}
.pro .prolb {
  margin-top: 47px;
}
.pro .prolb ul li.pro_gl {
  background: #f2f2f2;
}
.pro .prolb ul li.pro_gl .prolbl {
  float: right;
}
.pro .prolb ul li.pro_gl .prolbl .prolblbt {
  background: url(../images/proxbj2.jpg) no-repeat;
}
.pro .prolb ul li.pro_gl .prolbr {
  float: left;
}
.pro .prolb ul li {
  float: left;
  width: 1004px;
  position: relative;
  top: 0;
  left: 50%;
  margin-left: -800px;
  padding: 0 298px;
}
.pro .prolb ul li .prolbl {
  float: left;
  margin-top: 100px;
}
.pro .prolb ul li .prolbl .prolblbt {
  background: url(../images/proxbj.jpg) no-repeat;
  height: 57px;
  line-height: 57px;
  padding-left: 17px;
  color: #333333;
  font-size: 24px;
  position: relative;
  overflow:hidden;
}
.pro .prolb ul li .prolbl .prolblbt span {
  color: #4972af;
}
.pro .prolb ul li .prolbl .prolblbt b {
  font-weight: normal;
  color: #cccccc;
  font-size: 12px;
  position: absolute;
  top: 46px;
  left: 95px;
  height: 12px;
  line-height: 12px;
}
.pro .prolb ul li .prolbl .prolbldiv {
  width: 460px;
  color: #666666;
  font-size: 15px;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
  margin-top: 26px;
}
.pro .prolb ul li .prolbl .prolbldiv p {
  background: url(../images/icon9.png) 0 8px no-repeat;
  padding-left: 20px;
}
.pro .prolb ul li .prolbl .cpxx {
  background: url(../images/cpxx.png) no-repeat;
  display: block;
  width: 117px;
  height: 29px;
  line-height: 29px;
  padding-left: 15px;
  color: #999999;
  font-size: 15px;
  margin-top: 30px;
}
.pro .prolb ul li .prolbl .cpxx:hover {
   /*text-decoration: underline;*/
  color: #154a98;
}
.pro .prolb ul li .prolbr {
  float: right;
}
.pro .prolb ul li .prolbr a.jzimg {
  width: 497px;
  height: 440px;
  *font-size: 385px;
}
.proshow {
  margin-bottom: 78px;
}
.proshow .proshowdiv {
  margin-top: 45px;
}
.proshow .proshowdiv .proswr {
  background: url(../images/proshow2.jpg) no-repeat;
  width: 387px;
  height: 304px;
  padding: 35px 28px 0 28px;
  overflow:hidden;
}
.proshow .proshowdiv .proswr .proswrp {
  color: #333333;
  font-size: 24px;
  height:36px;
  overflow:hidden;
}
.proshow .proshowdiv .proswr .proswrp span {
  color: #4972af;
}
.proshow .proshowdiv .proswr .proswrspan {
  color: #cccccc;
  font-size: 12px;
}
.proshow .proshowdiv .proswr .proswrbjp {
  font-size: 13px;
  line-height: 22px;
  color: #666666;
  background: url(../images/icon9.png) 0 7px no-repeat;
  padding-left: 20px;
}
.proshow .proshowdiv .proswr .proswrbjp span {
  font-weight: bold;
}
.proshow .proswimg {
  text-align: center;
  margin-top: 90px;
}
.proshow .cpcs {
  margin-top: 105px;
  border-top: 1px dashed #ccc;
  padding-left: 26px;
  position: relative;
}
.proshow .cpcs i {
  position: absolute;
  top: -1px;
  left: 0;
}
.proshow .cpcs p {
  margin-top: 24px;
  font-size: 32px;
  color: #666666;
  line-height: 32px;
  margin-bottom: 5px;
}
.proshow .cpcs p span {
  color: #4f4f4f;
  font-weight: bold;
  line-height: 32px;
}
.proshow .cpcs b {
  font-weight: normal;
  color: #999999;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 12px;
}
.proshow .cpcsul {
  margin-top: 28px;
  border-top: 1px dashed #ccc;
}
.proshow .cpcsul li {
  height: 39px;
  line-height: 39px;
  border-bottom: 1px dashed #ccc;
}
.proshow .cpcsul li p {
  width: 482px;
  padding-left: 20px;
  color: #6e6e6e;
  font-size: 13px;
  font-family: '宋体';
}
.wdxz {
  margin-top: 18px;
}
.wdxz li {
  line-height: 64px;
  height: 64px;
  color: #666666;
  font-size: 13px;
  border-bottom: 1px dashed #dfdfdf;
  float: left;
  width: 1004px;
}
.wdxz li:hover a.djxz {
  color: #fff;
  background: #154a98;
  border: 1px solid #154a98;
}
.wdxz li span {
  margin-left: 15px;
  margin-right: 20px;
  vertical-align: middle;
}
.wdxz li b {
  margin-right: 11px;
  vertical-align: middle;
  line-height: 60px;
}
.wdxz li a.wdxzwz {
  color: #666666;
  width: 774px;
  height: 64px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.wdxz li a.djxz {
  margin-right: 24px;
  color: #154a98;
  font-size: 12px;
  background: #b6c9e5;
  height: 20px;
  width: 76px;
  border: 1px solid #154a98;
  line-height: 20px;
  text-align: center;
  margin-top: 22px;
  vertical-align: middle;
}
.news {
  margin-bottom: 66px;
}
.news ul {
  margin-top: 37px;
}
.news ul li.news_gl .newsl {
  float: right;
  margin-right: 0;
  margin-left: 14px;
}
.news ul li.news_gl .newsldiv {
  float: right;
}
.news ul li.news_gl .newsr {
  float: left;
  padding-right: 20px;
  padding-left: 0;
  border-right: 1px solid #dcdcdc;
  border-left: none;
}
.news ul li {
  background: url(../images/newslibj.jpg) 0 bottom repeat-x;
  padding-bottom: 47px;
  float: left;
  width: 1004px;
  margin-bottom: 26px;
}
.news ul li:hover .newsldiv a {
  color: #154a98;
}
.news ul li:hover .newsr b {
  color: #154a98;
}
.news ul li:hover .newsr span {
  color: #154a98;
}
.news ul li .newsl {
  float: left;
  margin-right: 14px;
}
.news ul li .newsl span.jzimg {
  padding: 1px 1px;
  width: 207px;
  height: 140px;
  *font-size: 123px;
  border: 1px solid #cccccc;
}
.news ul li .newsldiv {
  float: left;
  width: 701px;
}
.news ul li .newsldiv a {
  display: block;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
  height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
  font-family: '宋体';
  margin-top: 10px;
}
.news ul li .newsldiv p {
  color: #666666;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
  margin-top: 20px;
}
.news ul li .newsr {
  float: right;
  height: 125px;
  border-left: 1px solid #dcdcdc;
  padding-left: 20px;
  padding-top: 15px;
}
.news ul li .newsr b {
  color: #cccccc;
  font-size: 38px;
  font-family: 'Arial';
}
.news ul li .newsr span {
  display: block;
  color: #e2e2e2;
  font-size: 19px;
}
.newsshow {
  color: #666666;
  line-height: 22px;
  font-size: 14px;
  margin-bottom: 105px;
}
.newsshow h1 {
  text-align: center;
  color: #666666;
  font-size: 18px;
  height: 30px;
  line-height: 30px;
}
.newsshow .ly {
  font-size: 12px;
  text-align: center;
  color: #999999;
  line-height: 30px;
  margin-top: 6px;
  padding-bottom: 6px;
  border-bottom: 1px dotted #cccccc;
}
.newsshow .newsswimg {
  text-align: center;
}
.download {
  margin-bottom: 75px;
}
.download .dowp {
  text-align: center;
  margin-top: 28px;
}
.download .dowp a.cur {
  background: url(../images/dowpbj2.jpg) no-repeat;
  color: #fff;
}
.download .dowp a {
  display: inline-block;
  color: #999999;
  font-size: 15px;
  width: 109px;
  text-align: center;
  height: 33px;
  line-height: 33px;
  background: url(../images/dowpbj.jpg) no-repeat;
  margin-right: 10px;
}
.download .dowtab {
  margin-top: 15px;
  margin-bottom: 33px;
}
.about {
  margin-bottom: 80px;
}
.about .aboutwz {
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  margin-top: 50px;
}
.about .aboutwz .aboutwzbt {
  font-size: 24px;
  color: #333333;
  line-height: 24px;
  height: 24px;
}
.about .aboutwz div {
  width: 864px;
}
.honor {
  margin-bottom: 46px;
}
.honor .honortab {
  width: 894px;
  height: 621px;
  border: 1px solid #e9e9e9;
  margin: 0 auto;
  margin-top: 45px;
  padding: 8px 9px 5px 9px;
  position: relative;
}
.honor .honortab .biglist {
  width: 894px;
  height: 621px;
  position: relative;
}
.honor .honortab .biglist span.jzimg {
  width: 894px;
  height: 621px;
  *font-size: 546px;
}
.honor .honortab .biglist .slick-slide {
  position: relative;
}
.honor .honortab .biglist .biglistdiv {
  padding-top: 20px;
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  padding-left: 11px;
  margin-top: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/honorbj.png) repeat;
  height: 74px;
  width: 894px;
}
.honor .honortab .biglist .biglist2p {
  font-weight: bold;
}
.honor .honortab .honordw {
  width: 894px;
  position: absolute;
  bottom: 0;
  left: 9px;
  padding-top: 10px;
  z-index: 4;
  height: 84px;
}
.honor .honortab .honordw .honordwp {
  position: absolute;
  top: 50px;
  left: 339px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  height: 22px;
}
.honor .honortab .honordw .biglist3 {
  width: 463px;
  margin-right: 34px;
}
.honor .honortab .honordw .biglist3 div.lxmimg {
  width: 91px;
  height: 61px;
  border: 1px solid #adafac;
  margin-right: 2px;
  cursor: pointer;
}
.faq {
  margin-bottom: 121px;
  margin-top: 33px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.faq .faqdiv {
  border-bottom: 1px dashed #c7c7c7;
}
.faq .faql {
  width: 714px;
  color: #929191;
  line-height: 30px;
  margin-top: 28px;
}
.faq .faql .faqlbt {
  color: #646363;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 30px;
}
.faq ul {
  margin-top: 46px;
}
.faq ul li {
  border-bottom: 1px dashed #c7c7c7;
  padding-bottom: 25px;
  margin-top: 32px;
}
.faq ul li .faqp {
  background: url(../images/icon15.jpg) 0 2px no-repeat;
  padding-left: 35px;
}
.faq ul li .faqdiv2 {
  background: url(../images/icon16.jpg) 0 2px no-repeat;
  padding-left: 35px;
  margin-top: 15px;
  line-height: 24px;
}
.fhtp {
  position: fixed;
  right: 20px;
  bottom: 20px;
}



/*2015-7-10*/
.banner_xt ul{
    float:right;
    margin-top:15px;
}
.banner_xt ul li{
    float:left;
    position:relative;
    margin-right:5px;
    cursor:pointer;
}
.banner_xt ul li table{
    border:3px solid #cacaca;
}
.banner_xt ul li table:hover{
    border:3px solid #cb2922;
}
.banner_xt ul li.cursour table{ 
    border:3px solid #cb2922;
}
.banner_xt ul li:hover span{
    display:block;
}
.banner_xt ul li span{
    text-align:center;
    display:inline-block;
    width:102px;
    display:none;
    position:absolute;
    top:-4px;
    left:0;
    *top:-10px;
}
.banner_xt ul li.cursour span{
    text-align:center;
    display:inline-block;
    width:102px;
    display:none;
    position:absolute;
    top:-4px;
    left:0;
    display:block;
    *top:-10px;
}
.banner_xt{
    width:100%;
    height:70px;
    position:absolute;
    bottom:0;
    left:0;
    z-index:2;
}
.banner_xt_t{
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -205px;
}