.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/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: 1003px;
}
.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);
  }
}
body {
  font-family: "微软雅黑";
  font-size: 14px;
  line-height: 1.42857143;
  color: #666;
  background-color: #fff;
}
ul,
li,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #000;
}
@media (max-width: 1003px) {
  .centerBlock {
    width: 100%;
    padding: 0 15px;
  }
}
.header {
  position: relative;
  z-index: 5;
}
.pnav_btn {
  display: none;
  cursor: pointer;
  position: absolute;
  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;
  right: 15px;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
}
@media (max-width: 1024px) {
  .pnav_btn {
    display: block;
  }
}
.pnav_btn_on {
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -mz-transform: scale(0);
}
.logo {
  margin: 14px 0;
}
.logo img {
  height: 50px;
  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;
}
@media (max-width: 1024px) {
  .logo img {
    height: 40px;
  }
}
.nav > ul > li.active > a {
  font-weight: 600;
}
.nav > ul > li {
  float: left;
  position: relative;
  padding: 14px 0;
}
.nav > ul > li > a {
  display: block;
  padding: 0 22px;
  line-height: 50px;
  font-size: 15px;
}
.nav > ul > li > ul {
  position: absolute;
  top: 78px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 14px;
  background-color: #002c56;
  display: none;
}
.nav > ul > li > ul > li > a {
  color: #fff;
  height: 38px;
  line-height: 38px;
  border-bottom: 1px solid #002f65;
  border-top: 1px solid #00142b;
  display: block;
  overflow: hidden;
  font-size: 14px;
}
.nav > ul > li > ul > li:first-child > a {
  border-top: 0;
}
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
}
.footer_nav {
  padding: 30px 0;
  background: #4a4a4a;
  color: #898989;
  font-size: 14px;
}
.footer_nav .item_box {
  float: left;
  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;
  min-height: 180px;
  overflow: hidden;
  border-right: 1px solid #6e6e6e;
  padding-right: 37px;
  margin-right: 10px;
}
.footer_nav .item_box .title {
  font-size: 18px;
  line-height: 20px;
  height: 23px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  margin-bottom: 20px;
}
.footer_nav .item_box .title span {
  font-family: arial;
  font-size: 12px;
  text-transform: uppercase;
}
.footer_nav .foot_contact {
  line-height: 38px;
  font-size: 14px;
}
.footer_nav .foot_contact img {
  margin-right: 5px;
}
.footer_nav .foot_links {
  width: 340px;
  line-height: 38px;
}
.footer_nav .foot_links a {
  display: inline-block;
  height: 12px;
  line-height: 12px;
  border-right: 1px solid #898989;
  padding-right: 12px;
  margin-right: 12px;
  color: #898989;
}
.footer_nav .foot_erweima li {
  height: 77px;
  margin-bottom: 15px;
}
.footer_nav .foot_erweima img {
  width: 77px;
  height: 77px;
  float: left;
}
.footer_nav .foot_erweima span {
  display: block;
  width: 150px;
  float: left;
  padding-left: 20px;
  line-height: 23px;
  padding-top: 14px;
  overflow: hidden;
}
@media (max-width: 1040px) {
  .footer_nav .foot_erweima_box {
    display: none;
  }
  .footer_nav .foot_contact_box {
    width: 40%;
  }
  .footer_nav .foot_links_box {
    width: 50%;
    border: 0;
    margin-right: 0;
  }
  .footer_nav .foot_links_box .foot_links {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer_nav .item_box {
    min-height: auto;
  }
  .footer_nav .foot_links_box,
  .footer_nav .foot_contact_box {
    width: 100%;
    float: none;
    border: 0;
    margin: 0;
    padding: 0;
  }
  .footer_nav .foot_links_box {
    margin-top: 30px;
  }
}
.footer {
  background: #3c3c3c;
  color: #848484;
  padding: 20px;
  overflow: hidden;
}
.footer a {
  color: #848484;
}
.footer > div {
  padding: 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 10px 20px;
  }
  .footer .text-left,
  .footer .text-right {
    text-align: center;
    float: none;
    display: block;
    width: 100%;
    clear: both;
    line-height: 26px;
  }
}
.content {
  padding: 30px 0 50px 0;
  overflow-x: hidden;
}
@media (max-width: 1024px) {
  .content {
    width: 100%;
    padding: 30px 15px 50px 15px;
  }
}
.column_type {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 10px 0;
}
.column_type a {
  display: inline-block;
  height: 16px;
  font-size: 16px;
  line-height: 16px;
  padding: 0 25px;
  border-right: 1px solid #d7d7d7;
  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;
}
.column_type a:last-child {
  border-right: 0;
}
@media (max-width: 768px) {
  .column_type {
    padding: 0 0;
    margin: 0 0;
    border: 0;
  }
  .column_type a {
    display: block;
    width: 50%;
    height: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    float: left;
    line-height: 40px;
    margin-top: -1px;
    margin-left: -1px;
    border: 1px solid #d7d7d7;
  }
  .column_type a:last-child {
    border: 1px solid #d7d7d7;
  }
}
.column_title {
  margin-bottom: 40px;
}
.column_title h2 {
  font-family: ToonTownIndustrialLight42490;
  font-size: 46px;
  color: #002950;
  margin-bottom: 10px;
  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;
}
@media (max-width: 768px) {
  .column_title h2 {
    font-size: 30px;
  }
}
.column_title h3 {
  line-height: 16px;
  display: inline-block;
  position: relative;
  padding: 0 20px;
  margin-bottom: 0;
  margin-top: 0px;
}
.column_title h3 span {
  display: inline-block;
  padding: 0 20px;
  background: #fff;
  font-size: 16px;
  color: #002950;
  position: relative;
}
.column_title h3:before {
  content: '';
  position: absolute;
  height: 1px;
  background: #002950;
  left: 0;
  top: 50%;
  margin-top: 1px;
  width: 100%;
}
/*
	------------------------------
	首页样式 (如 banner abouts ... )
	------------------------------
*/
.banner {
  overflow: hidden;
}
.banner .item {
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  display: block;
  width: 100%;
}
.banner .item i {
  display: block;
  padding-bottom: 35%;
}
@media (max-width: 680px) {
  .banner .item i {
    padding-bottom: 50%;
  }
}
.banner .slick-dots {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 10px;
}
.banner .slick-dots button {
  background: rgba(0, 0, 0, 0.4);
  text-indent: 9999px;
  overflow: hidden;
  width: 15px;
  height: 15px;
}
.banner .slick-dots .slick-active button {
  background: #aa2020;
}
.recommend_products {
  width: 1030px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}
.recommend_products .item {
  display: block;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
  transition: All .5s ease-in-out;
  -webkit-transition: All .5s ease-in-out;
  -moz-transition: All .5s ease-in-out;
  -o-transition: All .5s ease-in-out;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  position: relative;
}
.recommend_products .item i {
  display: block;
  padding-bottom: 125%;
}
.recommend_products .item .item_txt {
  width: 94%;
  height: 94%;
  background: rgba(0, 41, 80, 0.8);
  background: #002950 \9;/*Fuck IE8*/
  *background: #002950;/*Fuck IE7*/
  left: 3%;
  top: 3%;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: All .3s ease-in-out;
  -webkit-transition: All .3s ease-in-out;
  -moz-transition: All .3s ease-in-out;
  -o-transition: All .3s ease-in-out;
  transform: translateY(-200%);
  -webkit-transform: translateY(-200%);
  -moz-transform: translateY(-200%);
  -mz-transform: translateY(-200%);
}
.recommend_products .item .item_txt .box {
  display: block;
  padding: 15px;
  color: #fff;
}
.recommend_products .item .item_txt .box .name {
  font-size: 13px;
  height: 18px;
  line-height: 18px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 15px;
  margin-top: 30px;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: All 1s ease-in-out;
  -webkit-transition: All 1s ease-in-out;
  -moz-transition: All 1s ease-in-out;
  -o-transition: All 1s ease-in-out;
}
.recommend_products .item .item_txt .box .clude {
  font-size: 12px;
  line-height: 21px;
  height: 42px;
  overflow: hidden;
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: All 2s ease-in-out;
  -webkit-transition: All 2s ease-in-out;
  -moz-transition: All 2s ease-in-out;
  -o-transition: All 2s ease-in-out;
}
.recommend_products .item .item_txt .box .more {
  display: inline-block;
  border: 1px solid #fff;
  font-size: 12px;
  padding: 5px 15px;
  transition: All 3s ease-in-out;
  -webkit-transition: All 3s ease-in-out;
  -moz-transition: All 3s ease-in-out;
  -o-transition: All 3s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
}
.recommend_products .item:hover .item_txt {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -mz-transform: translateY(0%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.recommend_products .item:hover .item_txt .more {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.recommend_products .item:hover .item_txt .name,
.recommend_products .item:hover .item_txt .clude {
  opacity: 1;
  filter: alpha(opacity=100);
}
@media (max-width: 1030px) {
  .recommend_products {
    width: 100%;
    padding: 0 10px;
  }
}
.brand_info {
  background: #eee;
  padding-top: 50px;
  padding-bottom: 50px;
}
.brand_info .pic {

 background-image:url(../uploads/about_01.jpg) !important;
  width: 53%;
  height: 345px;
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  position: relative;
  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;
}
.brand_info .pic i {
  display: block;
  padding-bottom: 65%;
}
.brand_info .pic .txt {
  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;
  position: absolute;
  background: #fff;
  left: 95%;
  width: 90%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -mz-transform: translateY(-50%);
  max-height: 100%;
  overflow: hidden;
  /*margin-top: -150px \9;*/
}
.brand_info .pic .txt span {
  display: block;
  padding: 30px 40px;
  line-height: 27px;
}
.brand_info .pic .txt .home_companyname {
  color: #070707;
  margin-bottom: 20px;
}
.brand_info .pic .txt .editor_text {
  height: 168px;
  overflow: hidden;
}
@media (max-width: 1030px) {
  .brand_info {
    width: 100%;
    color: #333;
    padding: 30px 10px;
  }
  .brand_info .centerBlock {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .brand_info .pic {
    width: 100%;
  }
  .brand_info .pic i {
    padding-bottom: 40%;
  }
  .brand_info .pic .txt {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0) scale(0.95);
    -webkit-transform: translateY(0) scale(0.95);
    -moz-transform: translateY(0) scale(0.95);
    -mz-transform: translateY(0) scale(0.95);
    background: rgba(255, 255, 255, 0.8);
  }
}
.home_news {
  width: 1035px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
  overflow: hidden;
}
.home_news .item {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.home_news .item span {
  display: block;
}
.home_news .item .pic {
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
.home_news .item .pic i {
  display: block;
  padding-bottom: 45%;
}
.home_news .item .name {
  font-size: 16px;
  line-height: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 15px;
}
.home_news .item .clude {
  font-size: 13px;
  line-height: 21px;
  height: 40px;
  overflow: hidden;
  margin-top: 10px;
  color: #666;
}
.home_news .item .more {
  display: inline-block;
  padding: 5px 30px;
  background: #002950;
  font-size: 14px;
  color: #fff;
  border: 1px solid #1f4365;
  box-shadow: 0 0 0 3px #002950;
  margin-top: 20px;
  margin-bottom: 3px;
}
@media (max-width: 1035px) {
  .home_news {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.home_group {
  text-align: center;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
}
.home_group_ch {
  display: inline-block;
  border: 1px solid #002950;
  height: 24px;
  padding: 0 20px;
  margin-top: 0;
}
.home_group_ch span {
  display: block;
  padding: 8px 10px;
  background: #fff;
  font-size: 24px;
  line-height: 24px;
  color: #002950;
  font-weight: 600;
}
.home_group_en {
  font-size: 30px;
  line-height: 30px;
  color: #002950;
  font-family: DINOT-Regular46411;
  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;
}
@media (max-width: 768px) {
  .home_group_en {
    font-size: 20px;
    line-height: 20px;
  }
}
.home_group_en_min {
  font-size: 9px;
  color: #002950;
  display: inline-block;
  border-top: 1px solid #7f94a7;
  padding: 5px 15px 0 15px;
  margin: 0;
  font-family: DINOT-Regular46411;
}
.pnav {
  width: 100%;
  height: 100%;
  position: fixed;
  background: linear-gradient(to top, #002950, rgba(0, 41, 80, 0.5));
  background: -webkit-linear-gradient(to top, #002950, rgba(0, 41, 80, 0.5));
  left: 0;
  top: 0;
  z-index: 99;
  padding: 30px;
  overflow: auto;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -mz-transform: scale(0);
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
  display: none \9;
  *display: none;
}
.pnav > ul > li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.pnav > ul > li > a {
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.9);
  text-align: center;
}
.pnav > ul > li > ul > li > a {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}
.pnav_on {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -mz-transform: scale(1);
}
.pnav_closed {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.column_banner img {
  display: block;
  width: 100%;
}
.editor {
  line-height: 27px;
  font-size: 14px;
}
.editor img {
  max-width: 100%;
}
.paging span,
.paging a {
  display: inline-block;
  font-size: 12px;
  color: #828282;
  font-family: arial;
  border: 1px solid #dfdfdf;
  padding: 5px 10px;
  margin: 5px 3px;
}
.paging .active {
  border: 1px solid #002950;
  color: #002950;
}
@media (max-width: 540px) {
  .paging .num {
    display: none;
  }
}
.change {
  margin-top: 50px;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  font-weight: 600;
  color: #666;
}
.change a {
  color: #666;
}
.change .col-sm-6 {
  padding-top: 10px;
  padding-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.change .col-sm-6:first-child {
  border-right: 1px solid #d2d2d2;
}
@media (max-width: 768px) {
  .change .col-sm-6:first-child {
    border-right: 0;
    border-bottom: 1px solid #d2d2d2;
  }
}
/*
	----------------------------------------------
	栏目样式 (如 contact about products news hr ... )
	----------------------------------------------
*/
.news_list .row {
  margin-bottom: 50px;
  border-bottom: 1px solid #e3e3e3;
}
.news_list .row * {
  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;
}
.news_list .row:hover .name {
  color: #002950;
}
.news_list .row:hover .pic {
  filter: saturate(2);
  -webkit-filter: saturate(2);
  -moz-filter: saturate(2);
  -o-filter: saturate(2);
  -mz-filter: saturate(2);
}
.news_list .col-sm-4 {
  padding-left: 0;
}
.news_list .col-sm-8 {
  padding-right: 60px;
  position: relative;
  overflow: hidden;
}
.news_list .col-sm-8 i {
  display: block;
  padding-bottom: 25.9%;
}
.news_list .pic {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
.news_list .pic i {
  display: block;
  padding-bottom: 48%;
}
.news_list .name {
  font-size: 15px;
  line-height: 30px;
  height: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #666;
  margin-bottom: 10px;
  display: block;
}
.news_list .text {
  position: absolute;
  left: 10px;
  top: 0;
  width: 90%;
}
.news_list .clude {
  font-size: 12px;
  line-height: 23px;
  height: 65px;
  text-indent: 2em;
  overflow: hidden;
  display: block;
}
.news_list .more {
  width: 30px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #002950;
  color: #fff;
  text-align: center;
  overflow: hidden;
  font-size: 12px;
}
.news_list .more span {
  display: block;
  height: 70px;
 /* position: relative;*/
  top: 31%;
  margin-top: 44px;
  color: #fff;
}
@media (max-width: 768px) {
  .news_list .pic i {
    padding-bottom: 30%;
  }
  .news_list .col-sm-4,
  .news_list .col-sm-8 {
    padding: 0;
    width: 100%;
  }
  .news_list .col-sm-8 {
    margin-top: 20px;
  }
  .news_list .col-sm-8 i {
    display: none;
  }
  .news_list .text {
    position: relative;
    left: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 380px) {
  .news_list .text {
    width: 88%;
  }
  .news_list .clude {
    height: 40px;
  }
}
.news_title {
  font-size: 18px;
  color: #0076cd;
  line-height: 36px;
}
.news_come {
  background: #f3f3f3;
  font-size: 13px;
  padding: 10px;
  margin-bottom: 40px;
}
.news_come .pull-left,
.news_come .pull-right {
  width: 50%;
  padding: 0 20px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news_come {
    padding: 0;
  }
  .news_come .pull-left,
  .news_come .pull-right {
    width: 100%;
  }
  .news_come .text-left,
  .news_come .text-right {
    text-align: left;
    padding: 10px;
  }
  .news_come .text-right {
    border-bottom: 1px solid #e6e6e6;
  }
}
.news_other {
  margin-top: 20px;
  padding: 18px;
  background: #f7f7f7;
  color: #666;
}
.news_other li {
  float: left;
  width: 50%;
  height: 30px;
  line-height: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  background: url(../images/item_news.jpg) no-repeat left center;
  padding-left: 12px;
}
.news_other a {
  color: #666;
  display: block;
  max-width: 90%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_other a span {
  font-size: 10px;
}
.products_list {
  padding-top: 0;
  width: 100%;
}
.products_list > div {
  float: left;
  width: 25%;
  padding: 15px;
  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;
}
.products_list .item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 840px) {
  .products_list {
    padding-bottom: 30px;
  }
  .products_list > div {
    width: 33.333333333333336%;
  }
}
@media (max-width: 640px) {
  .products_list {
    padding-left: 0;
    padding-right: 0;
  }
  .products_list > div {
    width: 50%;
    padding: 10px;
  }
}
@media (max-width: 400px) {
  .products_list .item .item_txt .box .name {
    margin-top: 0;
  }
  .products_list .item .item_txt .box .more {
    padding: 4px 5px;
  }
}
.products_info {
  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;
}
.products_info .pic {
  width: 385px;
  height: 485px;
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  float: left;
  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;
}
.products_info .txt {
  width: 618px;
  height: 485px;
  background: #f5f5f5;
  float: right;
  padding: 30px 50px;
  overflow: hidden;
  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;
}
.products_info .txt .name {
  font-size: 30px;
  color: #5d5d5d;
  margin-top: 0;
}
.products_info .txt .title {
  background: url(../images/item_title_bg.jpg) repeat-x left bottom;
  padding-bottom: 17px;
  margin-top: 40px;
}
.products_info .txt .title span {
  display: block;
  height: 18px;
  line-height: 18px;
  font-size: 16px;
  color: #333;
  padding-left: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border-left: 4px solid #002950;
}
.products_info .txt .title span b {
  font-weight: 100;
  text-transform: uppercase;
  margin-left: 10px;
}
.products_info .products_info_editor {
  padding: 10px 0;
  font-size: 13px;
  color: #333;
}
.products_info .products_info_editor ul li {
  float: left;
  line-height: 30px;
  width: 50%;
  padding-left: 16px;
  background: url(../images/item_point.jpg) no-repeat left 12px;
}
@media (max-width: 1024px) {
  .products_info {
    background: #F5F5F5;
    padding-top: 30px;
  }
  .products_info .pic,
  .products_info .txt {
    float: none;
    width: 100%;
    height: auto;
  }
  .products_info .pic {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  .products_info .pic i {
    display: block;
    padding-bottom: 120%;
  }
}
@media (max-width: 640px) {
  .products_info .pic {
    width: 100%;
  }
  .products_info .txt {
    padding: 20px;
  }
  .products_info .products_info_editor ul li {
    float: none;
    width: 100%;
  }
}
.products_editor {
  line-height: 27px;
  color: #5d5d5d;
  font-size: 14px;
  padding: 30px 0;
}
.products_other_title {
  font-size: 18px;
  color: #333;
  border-bottom: 3px double #c6c6c6;
  padding-bottom: 10px;
}
.about_products {
  margin-bottom: 60px;
  margin-top: 0;
}
.case_list {
  margin-bottom: 30px;
}
.case_list li {
  width: 33.333333333333336%;
  padding: 15px;
  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;
  float: left;
}
.case_list li a {
  display: block;
}
.case_list li .pic {
  overflow: hidden;
  display: block;
}
.case_list li .pic i {
  display: block;
  padding-bottom: 100%;
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  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;
}
.case_list li .name {
  display: block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 16px;
  margin-top: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.case_list li:hover .pic i {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -mz-transform: scale(1.1);
}
@media (max-width: 640px) {
  .case_list li {
    padding: 10px;
  }
  .case_list li .name {
    font-size: 12px;
  }
}
.case_name {
  font-size: 18px;
  color: #333;
  font-weight: 400;
  margin-bottom: 30px;
}
.case_max {
  width: 785px;
  margin-left: auto;
  margin-right: auto;
}
.case_max .item i {
  display: block;
  padding-bottom: 100%;
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
.case_max .slick-prev,
.case_max .slick-next {
  width: 29px;
  height: 52px;
  top: 50%;
  margin-top: -26px;
  text-indent: 9999px;
  overflow: hidden;
}
.case_max .slick-prev {
  left: -60px;
  background: url(../images/case_arrows.png) no-repeat 0 0;
}
.case_max .slick-prev:active {
  background: url(../images/case_arrows.png) no-repeat 0 -52px;
}
.case_max .slick-next {
  right: -60px;
  background: url(../images/case_arrows.png) no-repeat -30px 0;
}
.case_max .slick-next:active {
  background: url(../images/case_arrows.png) no-repeat -30px -52px;
}
@media (max-width: 940px) {
  .case_max .slick-prev {
    left: 20px;
  }
  .case_max .slick-next {
    right: 20px;
  }
}
@media (max-width: 840px) {
  .case_max {
    width: 100%;
  }
}
.case_min {
  margin-top: 20px;
  width: 805px;
  margin-left: auto;
  margin-right: auto;
}
.case_min .item {
  margin-left: 10px;
  margin-right: 10px;
}
.case_min .item i {
  display: block;
  padding-bottom: 100%;
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
}
@media (max-width: 840px) {
  .case_min {
    width: 100%;
  }
}
.case_info {
  width: 785px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  line-height: 26px;
}
@media (max-width: 840px) {
  .case_info {
    width: 100%;
  }
}
.contact .container-fluid {
  padding: 0 0;
}
.contact .pic i {
  display: block;
  padding-bottom: 90%;
  background-position: center center;
  background-repeat: no-repeat;
background-size:100%;
  -ms-behavior: url(css/backgroundsize.min.htc);
  behavior: url(css/backgroundsize.min.htc);
  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;
}
.contact .txt {
  padding-left: 40px;
}
.contact .txt p {
  margin: 0 0;
}
.contact .txt li {
  padding-left: 80px;
  line-height: 26px;
  margin: 18px 0;
  color: #333;
  position: relative;
}
.contact .txt .icon {
  width: 70px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -35px;
  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;
}
@media (max-width: 1020px) {
  .contact .pic,
  .contact .txt {
    width: 100%;
  }
  .contact .pic {
    margin-bottom: 20px;
  }
  .contact .pic i {
    padding-bottom: 50%;
  }
  .contact .txt {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .contact .txt li {
    padding-left: 55px;
  }
  .contact .txt .icon {
    width: 40px;
    left: 0;
    margin-top: -20px;
  }
}
.message {
  border-top: 2px solid #c2c2c2;
}
.message .form_box,
.message .color_box {
  padding: 0 0;
}
.message .color_box {
  height: 520px;
  background: #244e8c;
  padding: 0 24px;
}
.message .color_box li {
  border-bottom: 1px solid #3c65a9;
  border-top: 1px solid #1d3a85;
  padding: 27px 0;
  color: #fff;
  line-height: 22px;
}
.message .color_box li:first-child {
  border-top: 0;
}
.message .color_box li:last-child {
  border-bottom: 0;
}
.message .color_box li p {
  margin: 0 0;
}
.message .color_box li a {
  color: #fff;
}
.message .color_box li .col-xs-9,
.message .color_box li .col-xs-3 {
  padding: 0 0;
}
@media (max-width: 768px) {
  .message .color_box li .col-xs-3 {
    width: 25%;
  }
  .message .color_box li .col-xs-9 {
    width: 75%;
  }
}
.message .form_box li {
  border-bottom: 1px solid #e2e2e2;
  padding: 10px;
  line-height: 25px;
  position: relative;
}
.message .form_box li input[type='email'],
.message .form_box li input[type='text'] {
  height: 27px;
  line-height: 25px;
  border: 1px solid #cecece;
  font-size: 12px;
  width: 90%;
}
.message .form_box li .im {
  background: url(../images/im.png) no-repeat right center #fff;
}
.message .form_box li textarea {
  border: 1px solid #cecece;
  font-size: 12px;
  width: 90%;
  max-width: 90%;
  min-height: 150px;
}
.message .form_box li .length1 {
  width: 40% !important;
}
.message .form_box li .length2 {
  width: 45% !important;
}
.message .form_box li .length3 {
  width: 70% !important;
}
.message .form_box li .input {
  float: right;
}
.message .form_box li .name {
  width: 25%;
  border-right: 1px solid #e2e2e2;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  line-height: 44px;
  padding: 0 5%;
  text-align: right;
  background: #fafafa;
}
.message .form_box li .input {
  width: 75%;
  padding-left: 5px;
}
.message .form_box .changecode {
  margin-left: 10px;
}
@media (max-width: 520px) {
  .message .form_box li .name {
    padding: 0 1%;
    font-size: 12px;
  }
  .message .form_box li .length1,
  .message .form_box li .length2,
  .message .form_box li .length3 {
    width: 100% !important;
  }
  .message .form_box li input[type='email'],
  .message .form_box li input[type='text'] {
    width: 100%;
  }
  .message .form_box li textarea {
    width: 100%;
    max-width: 100%;
  }
  .message .form_box .changecode {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .message .form_box {
    margin-bottom: 30px;
  }
}
.message .form_box .form_control {
  padding-top: 20px;
}
.message .form_box .form_control input {
  padding: 5px 25px;
  margin: 0 7px;
}
.hr_list li {
  margin-bottom: 30px;
}
.hr_list li .name {
  position: relative;
  margin-bottom: -15px;
  z-index: 2;
}
.hr_list li .name span {
  display: inline-block;
  border: 3px solid #2e73b5;
  color: #2e73b5;
  font-size: 16px;
  padding: 15px;
  padding-bottom: 25px;
  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;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.hr_list li .txt {
  border: 1px solid #d0d0d0;
  padding: 20px;
  width: 90%;
  float: right;
  font-size: 14px;
  line-height: 27px;
  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;
  color: #8d8d8d;
}
.hr_list li .txt .cont {
  display: block;
  height: 56px;
  overflow: hidden;
}
.hr_list li .txt .pull-right {
  color: #ea5454;
  margin-top: 10px;
  font-family: "宋体";
}
.hr_list li:hover .name span,
.hr_list li:hover .txt {
  border-color: #ea5454;
  color: #ea5454;
}
.hr_list li:hover .name span {
  transform: translateX(10px);
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -mz-transform: translateX(10px);
}
@media (max-width: 640px) {
  .hr_list li .name span {
    padding: 10px;
    padding-bottom: 20px;
  }
  .hr_list li .txt {
    padding: 15px;
  }
}
.hr_detail .group {
  background: #6a6969;
  color: #fff;
  padding: 15px 20px;
}
.hr_detail .group span {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@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;
}
.hr_editor .editor {
  margin-top: 30px;
  line-height: 35px;
}
@media (max-width: 640px) {
  .hr_editor {
    padding: 20px;
  }
}
/*# sourceMappingURL=public.css.map */


/*联系页面的 a:hover*/

.row .col-sm-7 ul li p a{color:#2190BC;}
.row .col-sm-7 ul li p a:hover{color:#000;}