﻿.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.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;
  width: 1280px;
}
.clearfix {
  clear: both;
}
/*
==============================================
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);
  }
}
html {
  overflow-x: hidden;
}
body {
  font-family: "微软雅黑";
  font-size: 14px;
  line-height: 1.42857143;
  color: #666;
  background-color: #fff;
  word-break:break-all;
}
ul,
ol,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
a {
  color: #666;
  text-decoration: none;
}
/*a:hover {
  text-decoration: none;
  color: #000;
  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;
}*/

.fl{ float:left; }
.fr{ float:right;}
.f999{ color:#999;}
.link_a{ line-height:24px;}
.link_a a{ display:inline-block; margin:0 5px;}
.link_a a:hover{ color:#95847C; text-decoration:underline;}
.other_t{ font-size:24px; padding-bottom:10px; margin-top:50px;}
.others_list li{ float:left; width:50%;}
.others_list a{ width:90%; overflow:hidden; display:block; border-bottom:1px dotted #e3e3e3; height:36px; line-height:36px;}

@media (max-width: 1280px) {
  .centerBlock {
    width: 100%;
    padding: 0 15px;
  }
}
/*字体大小、缩进*/
.t2 {
  text-indent: 2em;
}
img {
  max-width: 100%;
}
/*
    --------------------------------
            公共样式 (如 header nav footer ...)
    --------------------------------
*/
@keyframes headerPos {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes headerPos {
  0% {
    -webkit-transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
.header-fix {
  position: fixed;
  animation: headerPos .4s ease-in 1;
  top:0;
}
.header-fix .logo img {
  margin-top: 5px;
  height: 50px;
}
.header-fix .nav ul li div {
  top: 60px;
}
.header-fix .nav ul li > a {
  height: 60px;
  line-height: 60px;
}
.header {
  background: url(../images/headbj.png) repeat;
  width: 100%;
  z-index: 9001;
  box-shadow: 0 0 2px 1px #EFEFEF;
}
.head {
  position: relative;
  z-index:100000;
}


@media (max-width: 1070px) {
  .head {
    padding: 15px;
  }
}
.nav-botton {
  width: 30px;
  height: 30px;
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -15px;
  z-index:999999;
}
.fn-suspend { top:61%;}
.nav-botton img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 1082px) {
  .nav-botton {
    display: block;
  }
}
.logo img {
  position: relative;
  margin-top: 9px;
  height: 60px;
}
@media (max-width: 1070px) {
  .logo img {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 50px;
  }
  .others_list li{ width:100%;}
  .others_list li a{ width:100%;}
}
@media (max-width: 520px) {
  .logo img {
    height: 40px;
  }
}
.nav   ul > li {
  float: left;
  z-index: 3;
  position: relative;
}
.nav  ul > li:hover > a {
  background: #95847c;
  color: #fff;
    text-decoration: none;
}
.nav  ul > li > a {
  display: block;
  height: 80px;
  line-height: 80px;
  padding: 0 34px;
  color: #323232;
  font-size: 15px;
}
.nav ul > li div {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  text-align: center;
  background: url(../images/nav_xlbj.png) repeat;
  padding: 10px 0;
}
.nav ul > li div a {
  display: block;
  color: #fff;
  line-height: 30px;overflow:hidden; white-space:nowrap; text-overflow:ellipsis;
  padding: 0 2px;
}
.nav   ul > li div a:hover {
  text-decoration: underline;
}
.nav   ul > li.cur > a {
  background: #95847c;
  color: #fff;
}
@media (max-width: 1082px) {
  .nav {
    display: none;
  }
}
.ckgd {
  color: #797979;
  font-size: 12px;
  width: 91px;
  height: 28px;
  display: inline-block;
  border: 2px solid #dddddd;
  line-height: 28px;
  margin-top: 25px;
}
.ckgd:hover {
  border: 2px solid #95847C;
  color: #95847C;
    text-decoration: none;
}
@media (max-width: 640px) {
  .ckgd {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.cpbt {
  font-family: 'Arial';
  color: #333333;
  font-size: 36px;
  line-height: 38px;
  background: url(../images/icon2.jpg) center bottom no-repeat;
  padding-bottom: 15px;
  text-align: center;
}
@media (max-width: 1000px) {
  .cpbt {
    font-size: 24px;
    line-height: 26px;
  }
}
.cpbtz {
  color: #333333;
  font-size: 26px;
  line-height: 38px;
  text-align: center;
}
@media (max-width: 1000px) {
  .cpbtz {
    font-size: 20px;
    line-height: 26px;
  }
}
.footer-nav-frame {
  background: #f6f6f6;
  border-top: 1px solid #e6e6e6;
  padding-top: 40px;
  margin-top: 30px;
}
.footer-nav-frame .footer-nav .navigation {
  width: 60%;
}
@media (max-width: 880px) {
  .footer-nav-frame .footer-nav .navigation {
    width: 60%;
  }
}
@media (max-width: 720px) {
  .footer-nav-frame .footer-nav .navigation {
    width: 55%;
  }
}
@media (max-width: 540px) {
  .footer-nav-frame .footer-nav .navigation {
    width: 100%;
    display: none;
  }
}
.footer-nav-frame .footer-nav .navigation ul li {
  float: left;
  width: 25%;
  padding-left: 40px;
}
@media (max-width: 880px) {
  .footer-nav-frame .footer-nav .navigation ul li {
    padding-left: 20px;
  }
}
@media (max-width: 720px) {
  .footer-nav-frame .footer-nav .navigation ul li {
    padding-left: 10px;
  }
}
@media (max-width: 640px) {
  .footer-nav-frame .footer-nav .navigation ul li {
    padding: 0;
  }
}
@media (max-width: 540px) {
  .footer-nav-frame .footer-nav .navigation ul li {
    padding-left: 9%;
    width:100%;
  }
}
@media (max-width: 440px) {
  .footer-nav-frame .footer-nav .navigation ul li,.footer-nav-frame .footer-nav .we .lxwm {
    padding-left: 7%;
  }
}
@media (max-width: 320px) {
  .footer-nav-frame .footer-nav .navigation ul li,.footer-nav-frame .footer-nav .we .lxwm {
    padding-left: 5%;
  }
}
.footer-nav-frame .footer-nav .navigation ul li .fla {
  color: #838383;
  line-height: 27px;
  font-size: 12px;
  background: url(../images/icon3.jpg) 0 center no-repeat;
  display: block;
  padding-left: 10px;
  overflow:hidden; white-space:nowrap; text-overflow:ellipsis;
}
.footer-nav-frame .footer-nav .navigation ul li .fla:hover {
  text-decoration: underline;
}
.footer-nav-frame .footer-nav .navigation ul li .lia {
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background: none;
  padding: 0;
}
.footer-nav-frame .footer-nav .we {
  width: 15%;
}
@media (max-width: 880px) {
  .footer-nav-frame .footer-nav .we {
    width: 40%;
  }
}
@media (max-width: 720px) {
  .footer-nav-frame .footer-nav .we {
    width: 45%;
  }
}
@media (max-width: 540px) {
  .footer-nav-frame .footer-nav .we {
    width: 100%;
    clear: both;
    margin-top: 20px;
  }
}
.footer-nav-frame .footer-nav .we .fxwm {
  width: 50%;
  padding-left: 40px;
}
@media (max-width: 880px) {
  .footer-nav-frame .footer-nav .we .fxwm {
    padding-left: 20px;
  }
}
@media (max-width: 640px) {
  .footer-nav-frame .footer-nav .we .fxwm {
    padding: 0;
    width: 40%;
  }
}
@media (max-width: 540px) {
  .footer-nav-frame .footer-nav .we .fxwm,.footer-nav-frame .footer-nav .we .lxwm {
    width: 50%;
    padding-left: 9%;
  }
}
@media (max-width: 440px) {
  .footer-nav-frame .footer-nav .we .fxwm {
    padding-left: 7%;
  }
}
@media (max-width: 320px) {
  .footer-nav-frame .footer-nav .we .fxwm,.footer-nav-frame .footer-nav .we .lxwm {
    padding-left: 5%;
  }
}
.footer-nav-frame .footer-nav .we .fxwm a.jiathis {
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  margin-right: 3px;
  margin-left: 0;
}
.footer-nav-frame .footer-nav .we .fxwm a {
  font-size: 12px;
  line-height: 27px;
  color: #838383;
  margin-left: 5px;
}
.footer-nav-frame .footer-nav .we .fxwm a:hover {
  text-decoration: underline;
}
.footer-nav-frame .footer-nav .we .lxwm {
  width: 100%;
}
@media (max-width: 640px) {
  .footer-nav-frame .footer-nav .we .lxwm {
    /*width: 60%;*/
  }
}
@media (max-width: 540px) {
  .footer-nav-frame .footer-nav .we .lxwm {
    /*width: 51%;*/
  }
}
.footer-nav-frame .footer-nav .we .lxwm a {
  display: block;
  color: #333333;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
}
.footer-nav-frame .footer-nav .we .lxwm a:hover {
  text-decoration: underline;
}
.footer-nav-frame .footer-nav .we .lxwm span {
  display: block;
  color: #565567;
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
}
.footer-nav-frame .footer-nav .we .lxwm p {
  color: #95847c;
  font-size: 25px;
  line-height: 27px;
  margin-top: 13px;
}
@media (max-width: 880px) {
  .footer-nav-frame .footer-nav .we .lxwm p {
    font-size: 20px;
    line-height: 24px;
  }
}
.footer-nav-frame .footer-nav .qr-code {
  float: right;
  width: 24%;
  padding-right: 1%;
}
@media (max-width: 880px) {
  .footer-nav-frame .footer-nav .qr-code {
    float: left;
    width: 100%;
    margin-top: 20px;
    padding-left: 2%;
  }
}
@media (max-width: 640px) {
  .footer-nav-frame .footer-nav .qr-code {
    padding-left: 9%;
      margin-left: 0px;
  }
}
@media (max-width: 540px) {
  .footer-nav-frame .footer-nav .qr-code {
    padding-left: 9%;
  }
}
@media (max-width: 440px) {
  .footer-nav-frame .footer-nav .qr-code {
    padding-left: 9%;
  }
}
@media (max-width: 340px) {
  .footer-nav-frame .footer-nav .qr-code {
    padding-left: 9%;
  }
}
@media (max-width: 327px) {
  .footer-nav-frame .footer-nav .qr-code {
    padding-left: 9%;
  }
}
@media (max-width: 320px) {
  .footer-nav-frame .footer-nav .qr-code {
    padding-left: 9%;
  }
}
.footer-nav-frame .footer-nav .qr-code .codel {
  float: left;
}
.footer-nav-frame .footer-nav .qr-code .coder {
  float: right;
}
@media (max-width: 880px) {
  .footer-nav-frame .footer-nav .qr-code .coder {
    float: left;
   /* margin-left: 20px;*/
  }
}
.footer-nav-frame .footer-nav .qr-code .codel,
.footer-nav-frame .footer-nav .qr-code .coder {
  width: 48%;
  max-width: 131px;
}
.footer-nav-frame .footer-nav .qr-code .codel  .divcodel,
.footer-nav-frame .footer-nav .qr-code .coder .divcodel {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  border: 1px solid #dcdbdb;
}
.footer-nav-frame .footer-nav .qr-code .codel i,
.footer-nav-frame .footer-nav .qr-code .coder i {
  display: block;
  padding-bottom: 100%;
}
.footer-nav-frame .footer-nav .qr-code .codel p,
.footer-nav-frame .footer-nav .qr-code .coder p {
  text-align: center;
  color: #343331;
  font-size: 14px;
  line-height: 32px;
}
.copyright-frame {
  border-top: 2px solid #545454;
  background: #686868;
  padding: 12px 0;
}
.copyright-frame .copyright {
  color: #bfbfbf;
  line-height: 27px;
  font-size: 12px;
  text-align: center;
}
.copyright-frame .copyright p {
  margin-bottom: 0;
}
.copyright-frame .copyright a {
  color: #bfbfbf;
}
.copyright-frame .copyright a:hover {
  text-decoration: underline;
}
.copyright-frame .copyrightl {
  float: left;
  padding-left: 3%;
}
@media (max-width: 720px) {
  .copyright-frame .copyrightl {
    clear: both;
    text-align: center;
    padding: 0;
    width: 100%;
  }
}
.copyright-frame .copyrightr {
  float: right;
  padding-right: 3%;
}
@media (max-width: 720px) {
  .copyright-frame .copyrightr {
    clear: both;
    text-align: center;
    padding: 0;
    width: 100%;
  }
}
.ny {
  margin-bottom: 50px;
}
/*
	------------------------------
	首页样式 (如 banner abouts ... )
	------------------------------
*/
.banner a {
  display: block;
  width: 100%;
}
.banner img {
  width: 100%;
}
@media (max-width: 640px) {
  .banner img {
    width: 640px;
  }
}
.banner .slick-prev,
.banner .slick-next {
  height: 63px;
  width: 34px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
}
@media (max-width: 660px) {
  .banner .slick-prev,
  .banner .slick-next {
    height: 30px;
    width: 16px;
    margin-top: -15px;
  }
}
.banner .slick-prev {
  background: url(../images/banner_btnl.png) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  left: 0;
}
.banner .slick-prev:hover {
  background: url(../images/banner_btnl.png) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
}
.banner .slick-next {
  background: url(../images/banner_btnr.png) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  right: 0;
}
.banner .slick-next:hover {
  background: url(../images/banner_btnr.png) no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
}
.company-profile {
  margin-top: 40px;
  text-align: center;
  color: #646464;
  line-height: 30px;
  font-size: 14px;
}
.engineering-case-frame {
  background: #f7f7f7;
  margin-top: 45px;
  padding: 55px 0;
}
@media (max-width: 640px) {
  .engineering-case-frame {
    padding: 25px 0;
    margin-top: 25px;
  }
}
.engineering-case-frame .tab-button {
  text-align: center;
  margin-top: 22px;
}
.engineering-case-frame .tab-button a.cur {
  color: #fff;
  font-weight: bold;
  background: #95847c;
}
.engineering-case-frame .tab-button a {
  display: inline-block;
  padding: 0 15px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #e6e6e6;
  color: #95847c;
  margin-right: 25px;
  font-size: 14px;
  overflow: hidden;
}
@media (max-width: 660px) {
  .engineering-case-frame .tab-button a {
    margin-right: 15px;
  }
}
@media (max-width: 580px) {
  .engineering-case-frame .tab-button a {
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    margin-right: 10px;
  }
}
@media (max-width: 382px) {
  .engineering-case-frame .tab-button a {
    margin-right: 7px;
    padding: 0 7px;
  }
}
.engineering-case-frame .tab-button a:hover {
  color: #fff;
  font-weight: bold;
  background: #95847c;
}
ul.tab_caseul {
  margin-top: 30px;
}
ul.tab_caseul li {
  width: 20%;
  float: left;
  padding: 1%;
  height: 225px;
  overflow: hidden;
}
@media (max-width: 660px) { /*解决手机端案例列表只显示显示四个数据问题*/
/*   ul.tab_caseul li {
  display: none;
}
ul.tab_caseul li:nth-child(1),
ul.tab_caseul li:nth-child(2),
ul.tab_caseul li:nth-child(3),
ul.tab_caseul li:nth-child(4) {
  display: block;
} */
}
ul.tab_caseul li:hover .casea {
  display: block;
}
ul.tab_caseul li > div {
    position: relative;
    /*overflow: hidden;*/
    /*line-height: 225px;*/
    /*text-align:center;*/
}
ul.tab_caseul li .casea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 30%;
  color: #fff;
  background: url(../images/casebj.png) repeat;
  display: none;
    text-decoration: none;
}
ul.tab_caseul li .casea p {
  height: 20px;
  line-height: 20px;
  overflow: hidden;
}
@media (max-width: 860px) {
  ul.tab_caseul li .casea {
    padding-top: 20%;
    font-size: 13px;
  }
}
@media (max-width: 680px) {
  ul.tab_caseul li .casea {
    padding-top: 15%;
    font-size: 13px;
  }
}
@media (max-width: 660px) {
  ul.tab_caseul li .casea {
    padding-top: 15%;
    font-size: 14px;
    top:0px;
  }
}
@media (max-width: 340px) {
  ul.tab_caseul li .casea {
    padding-top: 10%;
    font-size: 14px;
    top:0px;
  }
}
ul.tab_caseul li .casea p {
  text-align: center;
}
@media (max-width: 660px) {
  ul.tab_caseul li {
    width: 50%;
  }
  ul.tab_caseul li img{
    width: 100%;
  }
}
ul.tab_caseul li a > div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
}
ul.tab_caseul li i {
  padding-bottom: 86%;
  display: block;
}
.news_cen {
  padding-top: 55px;
}
@media (max-width: 640px) {
  .news_cen {
    padding-top: 25px;
  }
}
.news_cen ul li {
  float: left;
  width: 33.3%;
  padding: 1%;
}
@media (max-width: 480px) {
  .news_cen ul li {
    width: 100%;
  }
}
.news_cen ul li div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  position: relative;
  text-align: center;
  height: 190px;
}
.news_cen ul li div span {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  font-size: 36px;
  background: #ff5f2a;
  line-height: 36px;
  padding: 20px 15px;
}
@media (max-width: 1000px) {
  .news_cen ul li div span {
    font-size: 30px;
    line-height: 30px;
    padding: 18px 13px;
  }
}
@media (max-width: 800px) {
  .news_cen ul li div span {
    font-size: 24px;
    line-height: 24px;
    padding: 15px 10px;
  }
}
@media (max-width: 660px) {
  .news_cen ul li div{
    height: 140px;
  }
  .news_cen ul li div img{
    max-height: 140px!important;
  }
  .news_cen ul li div span {
    display: none;
  }
}
.news_cen ul li i {
  padding-bottom: 65%;
  display: block;
}
.news_cen ul li .bta {
  color: #323232;
  font-size: 24px;
  height: 26px;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  margin-top: 15px;
}
@media (max-width: 800px) {
  .news_cen ul li .bta {
    font-size: 20px;
    line-height: 24px;
    height: 24px;
  }
}
@media (max-width: 660px) {
  .news_cen ul li .bta {
    font-size: 18px;
    line-height: 22px;
    height: 22px;
    margin-top: 8px;
  }
}
@media (max-width: 600px) {
  .news_cen ul li .bta {
    font-size: 14px;
    height: 22px;
    line-height: 22px;
  }
}
.news_cen ul li .bta:hover {
  text-decoration: underline;
}
.news_cen ul li p {
  color: #78706c;
  font-size: 14px;
  line-height: 24px;
  height: 96px;
  overflow: hidden;
  margin-top: 12px;
}
@media (max-width: 800px) {
  .news_cen ul li p {
    font-size: 13px;
    line-height: 22px;
    height: 88px;
  }
}
@media (max-width: 660px) {
  .news_cen ul li p {
    margin-top: 5px;
  }
}
@media (max-width: 600px) {
  .news_cen ul li p {
    font-size: 12px;
    height: 36px;
    line-height: 18px;
  }
}
/*
	--------------------------
	公共组件 （如 page title ...）
	--------------------------
*/
.column_bt {
  background: url(../images/background1.jpg) 0 center repeat-x;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 0;
}
.column_bt span {
  display: inline-block;
  color: #322424;
  font-size: 24px;
  line-height: 36px;
  background: #fff;
  padding: 0 2%;
  height: 36px;
}
.crumbs {
  text-align: center;
  color: #989898;
  font-size: 14px;
  line-height: 36px;
}
.crumbs i{color:#8195B7;font-style:normal;}
@media (max-width: 640px) {
  .crumbs {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 80%;
    padding-left: 17px;
    font-size: 13px;
  }
  .page .page-num{
    display: none;
  }
  .crumbs i{color:#8195B7;font-style:normal;}
}
@media (max-width: 400px) {
  .crumbs {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 80%;
    padding-left: 17px;
    font-size: 12px;
  }
  .crumbs i{color:#8195B7;font-style:normal;}
}
.crumbs a {
  color: #989898;
}
.crumbs a:hover {
  text-decoration: underline;
}
.n_nav > a,.n_nav span {
    float: left;
    color: #323232;
    font-size: 15px;
    width: 15%;
    text-align: center;
    line-height: 38px;
    height: 38px;
    border: 1px solid #d8d8d8;
    margin-right: 10px;
    margin-bottom: 10px;
    position:relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
}
.n_nav a.cur{ color:#fff; background-color:#a5726f;}
.n_nav span a{ display:block;overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.n_nav span a:hover{ color:#fff;text-decoration: none;}
.nnav_two{ position:absolute; width:100%; background-color:#fff; border:1px solid #ccc; top:36px; display:none;}
.n_nav a:hover{ background-color:#a5726f; color:#fff;}

@media (max-width: 640px) {
    .n_nav > a,.n_nav span ,.pro-lj {
        display:none;
    }
}
@media (max-width: 340px) {
    .n_nav > a,.n_nav span {
        width: 30%;
        display:none;
    }
}
@media (max-width: 330px) {
    .n_nav > a,.n_nav span {
        font-size: 12px;
        width: 27%;
        display:none;
    }
}
.page {
  text-align: center;
  margin-top: 40px;
}
.page a,.page span  {
  display: inline-block;
  line-height: 25px;
  height: 25px;
  border: 1px solid #cccacb;
  color: #656565;
  font-size: 12px;
  padding: 0 8px;
  margin-right: 10px;
    margin-top: 5px;
}
.page a:hover,.page span.page-cur {
  background: #4c4c4c;
  color: #fff;
  font-weight: bold;
}
/*
	----------------------------------------------
	栏目样式 (如 contact about products news hr ... )
	----------------------------------------------
*/
.about {
  background: #fafafa;
  margin-top: 20px;
  color: #646464;
  font-size: 14px;
  line-height: 24px;
}
.about .about-profile {
  float: left;
  width: 46%;
}
.about .about-profile h2 {
  color: #322424;
  font-size: 24px;
  line-height: 38px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.about .about-img {
  float: right;
  width: 60%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  margin-right: -12.5%;
}
.about .about-img i {
  display: block;
  padding-bottom: 49%;
}
.about .about-culture {
  padding-bottom: 20px;
}
.about .about-culture h2 {
  color: #322424;
  font-size: 24px;
  line-height: 38px;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media (max-width: 1100px) {
  .about .about-profile {
    width: 100%;
    float: none;
  }
  .about .about-img {
    width: 100%;
    max-width: 770px;
    margin: 0px auto;
    float: none;
    margin-top: 20px;
  }
}
.news {
  margin-top: 26px;
}
.news ul li {
  padding: 30px 3% 10px 2%;
}
.news ul li:hover .newsbt p:first-child {
  text-decoration: underline;
}
.news ul li .ckxq {
  text-align: right;
  margin-bottom: 0;
}
@media (max-width: 750px) {
  .news ul li .ckxq {
    text-align: center;
  }
}
.news ul li .ckxq a {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  color: #fefefe;
  font-size: 16px;
  background: #949494;
  width: 150px;
  text-align: center;
}
@media (max-width: 750px) {
  .news ul li .ckxq a {
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    width: 120px;
  }
}
.news ul li .ckxq a:hover {
  text-decoration: underline;
}
.news ul li .newswz .newsrq {
  float: left;
  width: 5%;
  border: 1px solid #a6716b;
}
.news ul li .newswz .newsrq span {
  display: block;
  text-align: center;
}
.news ul li .newswz .newsrq span:first-child {
  color: #a77073;
  font-size: 36px;
  line-height: 42px;
}
.news ul li .newswz .newsrq span + span {
  color: #ffffff;
  font-size: 14px;
  line-height: 26px;
  background: #a6716b;
}
.news ul li .newswz .newsbt {
  float: right;
  width: 93%;
}
.news ul li .newswz .newsbt p:first-child {
  color: #323232;
  font-size: 18px;
  line-height: 24px;
  height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news ul li .newswz .newsbt p + p {
  color: #78706c;
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
  height: 48px;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .news ul li .newswz .newsrq {
    width: 6%;
  }
  .news ul li .newswz .newsbt {
    width: 92%;
  }
}
@media (max-width: 1004px) {
  .news ul li .newswz .newsrq {
    width: 7%;
  }
  .news ul li .newswz .newsbt {
    width: 91%;
  }
}
@media (max-width: 880px) {
  .news ul li .newswz .newsrq {
    width: 8%;
  }
  .news ul li .newswz .newsbt {
    width: 90%;
  }
}
@media (max-width: 750px) {
  .news ul li .newswz .newsrq {
    display: none;
  }
  .news ul li .newswz .newsbt {
    width: 100%;
  }
}
.newsshow h1 {
  text-align: center;
  color: #323232;
  font-size: 24px;
  line-height: 39px;
}
.newsshow p.ly {
  text-align: center;
  color: #adadad;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}
.newsshow .newsshownr {
  margin-top: 35px;
  padding: 0 6%;
  font-size: 14px;
  line-height: 25px;
  color: #4d4d4d;
}
.newsshow .newsshownr p {
  margin-bottom: 0px;
}
.newsshow .newsshownr .newsshowimg {
  text-align: center;
}
@media (max-width: 640px) {
  .newsshow .newsshownr {
    padding: 0 0;
  }
  .newsshow h1 {
    font-size: 20px;
  }
  .newsshow p.ly {
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .newsshow h1 {
    font-size: 18px;
    margin-top: 0px;
  }
  .newsshow p.ly {
    font-size: 12px;
  }
}
@media (max-width: 880px) {
  .sense {
    margin-top: -20px;
  }
}
@media (max-width: 600px) {
  .sense {
    /* margin-top: -30px; */
  }
}
.sense ul li {
  border-bottom: 1px dashed #c8c5c4;
  padding-bottom: 0.2%;
}
.sense ul li:hover .sensediv {
  background: #f6f6f6;
}
.sense ul li:hover .senser p:first-child {
  text-decoration: underline;
}
.sense ul li .sensediv {
  padding: 1% 1%;
}
.sense ul li .sensel {
  float: left;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
  width: 34.4%;
  text-align: center;
}
.sense ul li .sensel i {
  display: block;
  padding-bottom: 52.3%;
}
.sense ul li .senser {
  width: 63%;
  float: right;
}
.sense ul li .senser p:first-child {
  color: #212121;
  font-size: 16px;
  line-height: 20px;
  height: 20px;
  font-weight: bold;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sense ul li .senser p + p {
  color: #626262;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .sense ul li .senser p:first-child {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .sense ul li .senser p + p {
    font-size: 12px;
    line-height: 18px;
    height: 36px;
  }
}
@media (max-width: 400px) {
  .sense ul li {
    margin-top: 15px;
  }
  .sense ul li .sensel {
    float: none;
    width: 100%;
  }
  .sense ul li .senser {
    float: none;
    width: 100%;
  }
}
.job .page {
  margin-top: 0;
}
.job .jobp {
  text-align: center;
  font-size: 14px;
  line-height: 30px;
}
.job .jobp a {
  color: #a5726f;
  font-weight: bold;
}
.job .jobp a:hover {
  text-decoration: underline;
}
.job ul {
  margin-top: 5%;
}
.job ul li {
  float: left;
  width: 24%;
  margin-right: 1%;
  margin-bottom: 8%;
}
@media (max-width: 490px) {
  .job ul li {
    width: 48%;
  }
}
.job ul li:hover .jobspan {
  background: #d87a00;
}
.job ul li .jobspan {
  float: left;
  width: 27%;
  text-align: center;
  background: #d1d1d1;
  margin-right: 3%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -mz-border-radius: 50%;
  color: #ffffff;
  font-size: 36px;
  position: relative;
  display: block;
}
@media (max-width: 880px) {
  .job ul li .jobspan {
    font-size: 30px;
  }
}
@media (max-width: 680px) {
  .job ul li .jobspan {
    font-size: 20px;
  }
}
.job ul li .jobspan b {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 41px;
  line-height: 41px;
  font-family: 'Arial';
}
@media (max-width: 620px) {
  .job ul li .jobspan b {
    height: 39px;
    line-height: 39px;
  }
}
@media (max-width: 550px) {
  .job ul li .jobspan b {
    height: 34px;
    line-height: 34px;
  }
}
@media (max-width: 480px) {
  .job ul li .jobspan b {
    height: 30px;
    line-height: 30px;
    font-size: 20px;
  }
}
.job ul li .jobspan i {
  display: block;
  padding-bottom: 100%;
}
.job ul li .jobdiv {
  float: left;
  width: 70%;
}
.job ul li .jobdiv span {
  display: block;
}
.job ul li .jobdiv span:first-child {
  color: #3a3a3a;
  font-size: 16px;
  margin-top: 8%;
  height: 24px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 880px) {
  .job ul li .jobdiv span:first-child {
    margin-top: 5%;
  }
}
@media (max-width: 780px) {
  .job ul li .jobdiv span:first-child {
    margin-top: 8%;
  }
}
@media (max-width: 620px) {
  .job ul li .jobdiv span:first-child {
    font-size: 14px;
  }
}
.job ul li .jobdiv span + span {
  color: #929292;
  font-size: 12px;
  margin-top: 2%;
  line-height: 14px;
  height: 14px;
  overflow: hidden;
}
@media (max-width: 780px) {
  .job ul li .jobdiv span + span {
    display: none;
  }
}
@media (max-width: 490px) {
  .job ul li .jobdiv span + span {
    display: block;
  }
}
@media (max-width: 405px) {
  .job ul li .jobdiv span + span {
    display: none;
  }
}
.hr_detail .group {
  background: #6a6969;
  color: #fff;
  padding: 15px 20px;
}
.hr_detail .group span {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
 /* white-space: nowrap;*/
    word-wrap: break-word;
}
@media (max-width: 480px) {
  .hr_detail .group {
    padding: 10px 20px;
  }
  .hr_detail .group span {
    width: 100%;
    padding: 5px 0;
  }
}
.hr_editor {
  padding: 30px;
}
.hr_editor .col-sm-4 {
  padding: 10px 0;
    margin-left: 30px;
}
.hr_editor .editor {
  margin-top: 30px;
  line-height: 35px;
    margin-left: 30px;
}
@media (max-width: 640px) {
  .hr_editor {
    padding: 20px;
  }
}
/*----contact---*/
.contact {
  padding-bottom: 72px;
  overflow: hidden;
}
.contact #allmap {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
} /*地图容器*/
.contact .anchorBL {
  display: none;
} /*隐藏百度LOGO*/
.contact .cdiv {
  margin-top: 50px;
  color: #333;
  font-size: 16px;
  background: #f0f0f0;
  padding: 12px 10px;
  line-height: 30px;
}
.contact .condiv {
  margin-top: 55px;
}
.contact .condiv .tit {
  color: #333333;
  font-size: 20px;
  margin-bottom: 40px;
}
.contact .condiv .form {
  float: left;
  width: 50%;
}
.contact .condiv .form p {
  height: 40px;
  line-height: 40px;
  margin-bottom: 22px;
}
.contact .condiv .form p span input{
  float: left;
  display: inline-block;
  width: 62.5%;
  background: #f0f0f0;
  border: 1px solid #d6d6d6;
  padding: 0px 5px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -mz-border-radius: 3px;
  height: 40px;
  line-height:40px;
}
/*.contact .condiv .form p span input {
  float: left;
  width: 100%;
  height: 30px;
  line-height: 30px;
  background: none;
  border: none;
}*/
.contact .condiv .form p i {
  float: left;
  font-style: normal;
  margin-right: 15px;
  color: #333333;
  display: inline-block;
  width: 48px;
  text-align: right;
  font-size: 16px;
}
.contact .condiv .form p em {
  float: left;
  margin-left: 10px;
  color: #ee0000;
  font-style: normal;
}
.contact .condiv .form p a {
  float: left;
  margin-left: 10px;
}
.contact .condiv .form .ptext {
  height: 180px;
}
.contact .condiv .form .ptext textarea {
  width: 75%;
  height: 180px;
  background: #f0f0f0;
  border: 1px solid #d6d6d6;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -mz-border-radius: 3px;

    float: left;
    padding: 4px 10px;
}
/*.contact .condiv .form .ptext textarea {
  width: 100%;
  height: 170px;
  padding: 0px 10px;
  border: none;
  background: none;
  line-height: 23px;
}*/
.contact .condiv .form button {
  margin-left: 64px;
  background: #95847c;
  color: #fff;
  border: 1px solid #95847c;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -mz-border-radius: 3px;
  width: 100px;
  height: 40px;
}
.contact .condiv .info {
  float: right;
  width: 42%;
}
.contact .condiv .info .p1 {
  font-size: 16px;
  line-height: 36px;
  margin-bottom: 10%;
}
.contact .condiv .info .p1 span {
  display: block;
}
.contact .condiv .info .p1 a {
  font-style: normal;
  color: #95847c;
  font-size: 28px;
}
.contact .condiv .info .p2 {
  line-height: 46px;
  color: #999999;
}
.contact .condiv .info .p2 img {
  margin-right: 10px;
  vertical-align: middle;
}
.contact .condiv .info .p2 a {
  color: #999999;
}
.contact .condiv .info .p2 .atel {
  font-size: 20px;
}
.contact .condiv .info .p2 span {
  color: #4c4c4c;
}
@media (max-width: 875px) {
  .contact {
    padding-bottom: 12%;
  }
  .contact .cdiv {
    font-size: 14px;
    line-height: 26px;
    margin-top: 8%;
  }
  .contact .condiv {
    margin-top: 0px;
  }
  .contact .condiv .tit {
    margin-top: 12%;
    margin-bottom: 5%;
  }
  .contact .condiv .form {
    float: none;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
  .contact .condiv .info {
    float: none;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
  .contact .condiv .info .p1 {
    line-height: 28px;
    margin-bottom: 4%;
  }
  .contact .condiv .info .p1 span {
    display: inline;
  }
  .contact .condiv .info .p1 a {
    font-size: 20px;
  }
  .contact .condiv .info .p2 {
    line-height: 30px;
  }
}
.exce_img div {
  position: relative;
  z-index: 1;
  transition-delay: 0s;
  transition-duration: 1s;
  transition-property: all;
  transition-timing-function: ease;
  /* Firefox 4 */
  -moz-transition-delay: 0s;
  -moz-transition-duration: 1s;
  -moz-transition-property: all;
  -moz-transition-timing-function: ease;
  /* Safari 和 Chrome */
  -webkit-transition-delay: 0s;
  -webkit-transition-duration: 1s;
  -webkit-transition-property: all;
  -webkit-transition-timing-function: ease;
  /* Opera */
  -o-transition-delay: 0s;
  -o-transition-duration: 1s;
  -o-transition-property: all;
  -o-transition-timing-function: ease;
}
.exce_img:hover div {
  transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);/* IE 9 */
  -moz-transform: scale(1.2, 1.2);/* Firefox */
  -webkit-transform: scale(1.2, 1.2);/* Safari 和 Chrome */
  -o-transform: scale(1.2, 1.2);/* Opera */
}
.honor {
  padding: 7% 0px;
}
.honor .honor_c {
  max-width: 1254px;
  margin: 0 auto;
}
.honor li {
  float: left;
  width: 25%;
  padding: 0px 3%;
  margin-bottom: 6%;
}
.honor li span {
  position: relative;
  display: block;
}
.honor li span img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.honor li span i {
  padding-bottom: 75%;
  display: block;
}
.honor li p {
  padding: 6% 0px;
  text-align: center;
  border-bottom: 1px solid #cccccc;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
@media (max-width: 1004px) {
  .honor {
    padding: 10% 0px;
  }
  .honor li {
    width: 33.333333333333336%;
  }
}
@media (max-width: 680px) {
  .honor li {
    width: 50%;
  }
  .honor li p {
    font-size: 12px;
  }
}
.honorpop {
  position: fixed;
  z-index: 100000;
  background: url(../images/png0006.png);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  text-align: center;
}
.honorpop .honorpop_c {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  max-width: 90%;
  text-align: center;
  background: url(../images/honorpop_p.png);
  position: relative;
}
.honorpop .honorpop_c .close {
  position: absolute;
  background: url(../images/close.png);
  width: 35px;
  height: 35px;
  right: -37px;
  top: 0px;
  cursor: pointer;
}
.honorpop .honorpop_c img {
  max-width: 100%;
}
.honorpop .honorpop_c p {
  padding: 10px;
  line-height: 24px;
  max-height: 72px;
  overflow: hidden;
  color: #f9f9f9;
}
.honorpop .honorpop_c + i {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*# sourceMappingURL=public.css.map */

.pub_form_ul li input[type="text"]{line-height:30px!important;height:30px!important;}
a.l-btn span.l-btn-left{height:auto!important;}
a.l-btn{padding-right: 16px!important;}
label {margin-bottom: 1px!important;}
.pub_form_ul li label {margin-right: 0px!important;}
.panel {margin-bottom: 0px!important;}
.panel_inner .tip{padding: 0px!important;}
.panel-body {   padding: 0px; }

.modulebann{overflow: hidden;}
.modulebann img{}

@media (max-width: 640px){
    .modulebann{height: auto;}
    .modulebann img{height: auto;}
}

/*.nav{overflow: hidden;}*/

.BMapLib_nav{display:none;padding:10px!important;}
.BMapLib_bubble_content{padding:0 10px 10px 10px!important;}
.BMapLib_sendToPhone,.BMapLib_bubble_close{display:none;}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f0f0f0 inset;
}
#contact-form .validate-on{border: 1px solid #ff0000; box-shadow: 0 0 1px #ff0000;}
*:focus{ outline: none; }
input,textarea {outline:none;}

.up_down_p{ margin-top:50px; border-bottom:1px solid #e3e3e3; border-top:1px solid #e3e3e3; padding:10px 0;}
.up_down_p span{ width:45%;}
.up_down_p a{ display:inline-block; vertical-align:middle; width:70%; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; margin-top:-3px;}
.up_down_p a:hover{ text-decoration:underline;}
@media (max-width: 640px) {
  .up_down_p span{ width:100%; padding:10px 0;}
  .copyright-frame .copyright {text-align: left;}
  .contact .condiv .form .ptext textarea{width: 62%;}
}

.job{min-height:100px;}

/*sitemap*/
.sitemap{font-family:"微软雅黑";text-align:left; padding:30px;}
.sitemap > ul > li {line-height: 30px;border-bottom: dashed 1px #f8f6f6;margin-bottom: 20px; text-decoration:none;font-size: 14px; font-size:14px;}
.sitemap > ul > li > ul > li{ border-bottom:1px solid #e3e3e3; padding:5px 0;}
.sitemap > ul > li > ul > li > ul >li a{ padding-left:10px; color:#999;}
.sitemap > ul > li > ul > li > ul >li{ display:inline-block; margin-right:10px;}
.sitemap > ul ul{ margin-left:20px;}
.sitemap li h2{ font-size:14px;}
.sitemap li h2 a{background:#a5726f;color:#fff;padding: 5px 10px;text-decoration: none;}
.sitemap li a {margin-right: 10px;text-decoration: none;color:#666;}


/*product*/
.tab_productul{margin: 30px 0;}
.tab_productul .n_pro-wz p:first-child{font-size: 18px; padding-top: 10px; white-space: nowrap; overflow: hidden; text-overflow:ellipsis;padding-right: 5px;}
.tab_productul .n_pro-wz p:nth-child(2){height: 60px; overflow: hidden; margin-bottom: 30px; color: #888;}

.pro-lj{margin-top: 20px; background-color: #e3e3e3;}
.pro-lj a{display: inline-block; margin: 10px;}
.tab_productul .pro-pic{ display: block; height: 200px; line-height: 200px; text-align: center;}
.tab_productul .pro-pic img{max-width: 100%; max-height: 100%; vertical-align: middle;}
@media (max-width: 640px){
  .tab_productul .pro-pic{height: 120px; line-height: 120px;}
  ul.tab_caseul li > div{line-height: normal;}
}
.pro-ljlm .cur{text-decoration: underline;}

.fn-suspend{margin-right:20px\0 !important;}
.banner .slick-next {
  margin-right: 18px\0 !important;
}
.banner .slick-prev {
  margin-left:18px\0 !important;
}

@media(min-width:1083px){
  #pnav{display:none}
}
