* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



.animated{
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
    -webkit-animation-fill-mode:both;
    -moz-animation-fill-mode:both;
    animation-fill-mode:both;

}


.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}



.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}


@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}


@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


@-webkit-keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60%, 0);
    transform: translate3d(0, 60%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60%, 0);
    transform: translate3d(0, 60%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}


@-moz-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;

}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}


.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}




@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}





*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
button::-moz-focus-inner {
  border: 0;
}
:focus, :active {
    outline: 0;
    border: 0;
}
a{
    color: #666;
    -webkit-transition:color .3s,opacity .3s;
    transition:color .3s,opacity .3s;
}
a:hover{
    color: #f49712;
}
textarea { overflow: auto; }

a, a:visited, a:focus, a:active, a:hover{
    outline:0 none !important;
}
u{text-decoration: none;}
img{
    max-width: 100%;
    height: auto;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
}
select,
input,
textarea{
    outline: none;
}

h1,h2,h3,h3,h4,h5,h6{font-weight: normal;}
.fix:before,
.fix:after{
  content: '.';
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.fix:after{
  clear: both;
}

.fix{
  zoom: 1;
}

.hide-tab{
	height: 0;
	overflow: hidden;
	padding-top: 0;
	padding-bottom: 0;
}
#map img{
	max-width: 999999999px;
}
.BMapLabel{
	display: none !important;
}
body{
    -webkit-text-size-adjust: 100%;
    font-family:"微软雅黑","Microsoft Yahei";
    color: #686868;
    font-size: 14px;
}
p{
	line-height: 2;
}

.wp{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}


/*手机头部*/
.m-bar{
    height: 60px;
    background-color: #fff;
}
.logo-m{
    width: 75%;
    display: inline-block;
    float: left;
    margin-left: 10px;
    height: 60px;
    line-height: 60px;
}
.logo-m img{
    height: 40px;
    display: inline-block;
    z-index: 60;
    vertical-align: middle;
}
.m-hd{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000000;
    -webkit-box-shadow: 0px 4px 5px -2px rgba(0,0,0,.2);
    box-shadow: 0px 4px 5px -2px rgba(0,0,0,.2);
}
.m-nav{
    clear: both;
    position: absolute;
    top: 60px;
    left: 0;width: 100%;
   -webkit-box-shadow: 0px 4px 5px -2px rgba(0,0,0,.2);
   box-shadow: 0px 4px 5px -2px rgba(0,0,0,.2);
   max-height: 0;
   overflow: hidden;
   -webkit-transition: all 300ms ease;
   transition: all 300ms ease;
}


.m-nav a{
    display: block;
    width: 100%;
    line-height: 40px;
    text-align: left;
    border-top: 1px solid #f3f2f2;
    font-size: 15px;
    background-color: #fff;
    padding: 0 20px;
    color: #333;
}

.m-trigger{
    height: 60px;
    cursor: pointer;
    width: 60px;
    float: right;
    background: url(../image/menu.png) no-repeat center center;
    -webkit-background-size: 25px;
    -moz-background-size: 25px;
    -o-background-size: 25px;
    background-size: 25px;
}
.m-sub{
	max-height: 0;
	overflow: hidden;

}
.m-sub h3{
	height: 50px;
	line-height: 50px;
	background-color: #fff;
	padding: 0 30px;
	background-color: #f49712;
	color: #fff;
}
.m-sub.on,
.m-nav.on{
	-webkit-transition: all .6s linear;
	transition: all .6s linear;
	max-height: 999px;
}

.m-sub a{font-size: 14px;padding: 0 30px;
	/*background-color: #F1F1F1;*/
	border-top-color: #efefef;}

.m-show{display: none;}



#nav-toggle { position: absolute; right: 14px; top: 18px; color: #fff;
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7); 
	-ms-transform: scale(0.7); 
	-o-transform: scale(0.7); 
	transform: scale(0.7);
	transform-origin: 50% 50%;
 }
#nav-toggle { cursor: pointer; padding: 10px 35px 16px 0px; }
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after { cursor: pointer; border-radius: 1px; -moz-border-radius: 1px; -webkit-border-radius: 1px; -o-border-radius: 1px; height: 5px; width: 35px; background: #f49712; position: absolute; display: block; content: ''; }
#nav-toggle span:before { top: -10px; }
#nav-toggle span:after { bottom: -10px; }
#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after { transition: all 500ms ease-in-out; -webkit-transition: all 500ms ease-in-out; -moz-transition: all 500ms ease-in-out; -o-transition: all 500ms ease-in-out; }
#nav-toggle.active span { background-color: transparent; }
#nav-toggle.active span:before, #nav-toggle.active span:after { top: 0; }
#nav-toggle.active span:before { transform: rotate(45deg); -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); }
#nav-toggle.active span:after { transform: translateY(-10px) rotate(-45deg); -webkit-transform: translateY(-10px) rotate(-45deg); -ms-transform: translateY(-10px) rotate(-45deg); top: 10px; }




.slick-slider{position:relative;display:block;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block}.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}.slick-slider,.slick-slider{outline:0}



.list-1{
	margin: 0 -22px;
	overflow: hidden;
}
.list-1 li{
	float: left;
	width: 33.3333%;
	padding: 0 22px;
	margin-bottom: 30px;
}
.list-1 .img-cover{
	padding-top: 56%;
	position: relative;
	display: block;
	margin-bottom: 20px;
}
.more-2{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	text-align: center;
	width: 106px;
	height: 106px;
	border-radius: 50%;
	background:rgba(244,151,18,.7) url(../image/ic1.png) no-repeat 50%;
	opacity: 0;
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity= 0)';
	filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	-webkit-transition:.3s;
	transition:.3s;
	z-index: 20;
}
.list-1 .img-cover:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(0,0,0,.2);
	opacity: 0;
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity= 0)';
	filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	-webkit-transition:.3s;
	transition:.3s;
}
.list-1 a:hover .more-2{
	opacity: 1;
	/*background-color: #e74a45;*/
}



.list-1 a:hover:after{
	opacity: 1;
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity= 100)';
	filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.list-1 .con{
	padding: 10px 0;
}
.list-1 h3{
	margin-bottom: 4px;
}
.list-1 h3 a{
	color: #000;
	font-size: 18px;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
	display: block;
}
.list-1 h3 a:hover{
	color: #f49712;
}
.list-1 h4{font-size: 14px;
	color: #a5a4a4;
	margin-bottom: 10px;
}
.list-1 span{
	color: #a5a4a4;
}
.list-1 p{
	color: #686868;
	line-height: 2;
	max-height: 80px;	
	overflow: hidden;
} 

.list-1 .title{text-align:center;font-size:18px;display:block;}

.tag-tit{padding-top:20px;padding-bottom:20px;}

.tag-tit a{

	display: inline-block;

	padding: 10px 20px;

	border: 1px solid #ddd;

	color: #595757;

	-webkit-transition:.3s;

	transition:.3s;

	margin: 5px 3px;

}




.tag-tit a.on{

	background-color: #ff9e15;

	border-color: #ff9e15;

	color: #fff;

}




.fd-nv{
	background-color: #545454;
	color: #fff;
	text-align: center;
}
.fd-add span{
	font-size: 18px;
	margin: 0 20px;
}

.fd-add{
	padding: 50px 0;
}
.fd-menu{
	padding-bottom: 50px;
}
.fd-menu a{
	position: relative;
	padding: 0 20px;
}
.fd-menu a{
	color: #fff;
	-webkit-transition:.3s;
	transition:.3s;
}
.fd-menu a:hover{
	color: #f49712;
}
.fd-menu a:after{
	content: '';
	height: 12px;
	width: 1px;
	background-color: rgba(255,255,255,.4);
	position: absolute;
	right: 0px;
	top: 4px;
}
.fd-menu a:last-child:after{
	display: none;
}
.fd-copy{
	background-color: #f49712;
	color: #fff;
	padding: 15px 0;
	text-align: center;
	font-size: 12px;
}
.fd-copy span{margin: 0 8px;}
.fd-copy a{color: #fff;}
.fd-copy a:hover{
	opacity: .8;
	-ms-filter:'progid:DXImageTransform.Microsoft.Alpha(Opacity= 80)';
	filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
}
.list-logo{font-size: 0;display: none;}
.list-logo li{
	display: inline-block;
	padding: 25px;
	vertical-align: middle;
	width: 20%;
	text-align: center;
}
.list-logo{
	margin: 0 -20px;
	text-align: center;
}


.list-a{
	padding:40px 0 130px 0;
	overflow: hidden;
}
.list-a li{
	float: left;width: 20%;
	text-align: center;
}
.list-a li h3{
	font-size: 24px;
	color: #000;
	padding: 4px 0;
}
.list-a li a img{
	-webkit-transition:.3s;
	transition:.3s;
}
.list-a li a:hover img{
	-webkit-transform: scale(1.06);
	-moz-transform: scale(1.06); 
	-ms-transform: scale(1.06); 
	-o-transform: scale(1.06); 
	transform: scale(1.06);
}
.t1 h3{
	font-size: 60px;
	text-transform: uppercase;
	color: #f1f1f1;
}
.t1 h2{
	font-size: 30px;
	color: #000;
	position: relative;
	margin-bottom: 40px;
}
.t1 h4{
	font-size: 24px;
}
.t1{
	text-align: center;
	padding-bottom: 20px;
	margin: 20px 0;
}

.t1 h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: #f49712;
}
.i-row1 .para1{
	width: 524px;
	margin: 0 auto;
	letter-spacing: 2px;
}
.i-row2{
	text-align: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-image: url(../image/bg1.jpg);
	padding: 13.02% 0;
}


.more-1 {
    color: #000;
    font-size: 14px;
    text-align: center;
    border: 0;
    cursor: pointer;
    display: inline-block;
    border: 1px solid #ff9e15;
    padding: 17px 64px;
    /* width: 122px; */
    /* height: 44px; */
    text-transform: capitalize;
    -webkit-transition: .3s;
    transition: .3s;
}

.i-row2 .con p{
	color: #fff;
	line-height: 2.8;
}
.i-row2 .con{
	padding-bottom: 60px;
}
.i-row2 .t1 h2,
.i-row2 .t1 h4{
	color: #fff;
}
.i-row2 .t1 h3{color: #5e5e5e;}
.i-row2 .more-1{
	border: 1px solid #fff;
	color: #fff;
}
.i-row2 .more-1:hover{
	background-color: #f49712;
	border-color: #f49712;
}
.i-row3{
	padding: 65px 0;
}
.i-row4{
	padding-bottom: 6.5%;
}
#hd{
	/*overflow: hidden;*/
	clear: both;
	position: relative;
	z-index: 50;
	height: 100px;
	line-height: 100px;
	background-color: #fff;
	-webkit-box-shadow: 0px 4px 10px -2px rgba(0,0,0,.2);
	box-shadow: 0px 4px 10px -2px rgba(0,0,0,.2);
}
a.logo{
	float: left;
	height: 100px;
	line-height: 100px;
	margin-left: 30px;
}
a.logo img{vertical-align: middle;}
.hdr{float: right;}
.nav{
	display: inline-block;
}
.nav li{
	display: inline-block;
	padding: 0 15px;
}
.nav li.on a{
	color: #f49712;
}
.hdr *{vertical-align: top;}
.tel-top{
	background-color: #b2d132;
	color: #fff;
	font-size: 24px;
	display: inline-block;
	padding: 0 40px;
}
.tel-top em{
	display: inline-block;
	font-weight: bold;
	padding-left: 46px;
	background: url(../image/tel-top.png) no-repeat left 50%;
}

.lan-change a{
	display: inline-block;
	margin: 0 30px;
	margin-left: 20px;
	margin-top: 35px;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	background-color: #f49712;
	text-transform: capitalize;
	-webkit-transition:.3s;
	transition:.3s;
	padding: 0 !important;
}
.m-hd .lan-change{
	background-color: #fff;
	padding-bottom: 10px;
}
.m-hd .lan-change a{
	margin-top: 0;
	margin-bottom: 0;
	
}
.m-hd .lan-change{
	text-align: center;
}
.lan-change a:hover{
	-webkit-transform: scale(1.06);
	-moz-transform: scale(1.06); 
	-ms-transform: scale(1.06); 
	-o-transform: scale(1.06); 
	transform: scale(1.06);
}


.fd-add a{
	color: #fff;
}



.fd-add a:hover{
	color: #f49712;
}
#banner .item,
#banner .slick-track,
#banner .slick-list,
#banner .bg,
#banner{
	height: 100%;
}

#banner .animated {
    opacity: 0;
}
#banner{
	overflow: hidden;
	clear: both;
}


#banner .bg{
	position: relative;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

#banner .slick-dots{
	left: 0;
    width: 100%;
    position: absolute;
    bottom: 20px;
    text-align: center;
    right: 60px;
}
#banner .slick-dots li{
    display: inline-block;
    line-height: 1;
    margin: 0 5px;
}
#banner .slick-dots li a{
    width: 17px;
    height: 17px;
    background-color: #fff;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
}
#banner .slick-dots li.slick-active a{
    background-color: #f49712;
	
}

#banner .item{
	position: relative;
}
#banner .circle{
	position: absolute;
	width: 100%;
	padding-top: 100%;
	background-color: rgba(244,151,18,.8);
	border-radius: 50%;
	z-index: 1;
	top: 100%;
	margin-top: -330px;
}
#banner .con{
	position: absolute;
	text-align: center;
	width: 100%;
	text-align: center;
	bottom: 0;left: 0;
	z-index: 2;
	padding: 60px 0 80px 0;
}
#banner h4{
	color: #acce22;
	font-size: 24px;
	text-transform: uppercase;
}
#banner h3{
	color: #fff;
	font-size: 48px;
	margin: .2em 0;
	letter-spacing: 8px;
}
#banner p{
	font-size: 18px;
	color: #fff;
	letter-spacing: 2px;
}
.i-row1{
	padding-top: 80px;
}
.i-row{
	overflow: hidden;
}
.ban-in .bg{
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	/*padding-top: 35%;*/
	position: absolute;
	left: 0;
	top: -15%;
	width: 100%;
	bottom: -15%;
}
.ban-in{
	margin-top: 100px;
	overflow: hidden;
	position: relative;
	margin-bottom: 100px;
	padding-top: 29%;
}
.about-row1 .con{
	padding: 0 70px;
	text-align: center;
}
.about-box p{
	letter-spacing: 1px;
	line-height: 2.2;
}
.about-row1{
	padding: 0 0 170px 0;
}

.about-row2 .right,
.about-row2 .left{
	width: 50%;
	float: left;
	position: relative;
} 
.about-row2 img{
	width: 100%;
	vertical-align: bottom;
}
.about-row2{
	clear: both;
	overflow: hidden;
}
.about-row2 .left .txt{
	width: 620px;
	margin: 0 auto;
	padding-top: 50%;
	position: relative;
}
.about-row2 .t1-box{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 100%;
	text-align: center;
}
.about-row2 .s2,
.about-row2 .s1{
	float: left;
	width: 50%;
}
.about-row2 .s3{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	background-color: #fff;
	padding-top: 50%;
}
.about-row2 .s2{
	padding-top: 50%;
	background-color: #b2d132;
	position: relative;
}
.about-row2 .s2 h3{
	font-size: 60px;
	color: #c5e34b;
}
.pro-detail .txt,
.pro-detail .img{
	display: inline-block;
	vertical-align: top;
}
.pro-detail{
	padding-top: 70px;
}
.pro-detail .txt{
	width: 58%;
	line-height: 2.2;
}
.pro-detail .img{
	width: 40%;
	padding-right: 5%;
}
.pro-detail .img img{width: 100%;}
.pro-detail .txt h4{
	font-size: 18px;
	color: #000;
}
.pro-detail .box{
	margin-bottom: 30px;
}
.tit-pro{
	text-align: center;
}
.ser-box .wp .tit-pro{
	margin-top: -30px;
}
.tit-pro span{
	display: inline-block;
	color: #fff;
	font-size: 30px;
	letter-spacing: 2px;
	padding: 14px 70px;
	background-color: #f49712;
}
.pro-box{
	padding:0 0 80px 0;
}
.parter-logo{
	text-align: center;
}
.parter-logo img{
	margin: 0 30px;
	vertical-align: middle;
}
.ser-box .con{
	padding: 40px 30px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}
.ser-box .con p{
	line-height: 2.2;
}
.ser-box h4{
	font-size: 18px;color: #000;
	margin-bottom: 30px;
	text-align: center;
}
.ser-box .img{
	margin: 110px 0;
}
.ser-box .img img{
	width: 100%;
}
.fd-space{
	height: 160px;
}
.slider-2{
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	margin-top: 60px;
	box-shadow: 0 0 10px 5px rgba(0,0,0,.14);
	padding: 0 120px;
	position: relative;
}
.slider-2 img{width: 100%;}
.slider-2 .item{
	padding:50px 65px;
}
.slider-2 .slick-arrow{
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    margin-top: -30px;
    border: none;
    font-size: 0;
    cursor: pointer;
    background: none;
    background-position: 50%;
    background-repeat: no-repeat;
    z-index: 50;
    -webkit-transition:.3s;
    transition:.3s;
}
.slider-2 .slick-prev{
    left: 22px;
    background-image:url(../image/ar_l.png);
}
.slider-2 .slick-next{
    right: 22px;
    background-image:url(../image/ar_r.png);
}
.slider-2 .slick-arrow:hover{
	opacity: .8;
}

.add-list{
	overflow: hidden;
	margin: 0 -20px;
	padding: 40px 0 80px 0;
}
.add-list li{
	float: left;
	width: 25%;
	padding: 0 20px;
}
.add-list h4{
	font-size: 14px;
	color: #f49712;
}
.contact-box p,
.contact-box .con{
	line-height: 2.6;
}
#map{
	height: 670px;
}





.article-box .bd img{
	margin: 20px 0;
}
.article-box .hd{
    text-align: center;
    padding: 20px 0 40px 0;
}
.article-box .hd h1{
    font-size: 30px;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 30px;
}
.article-box .bd{
    border-top: 1px dashed #ddd;
    padding: 50px 0;
    line-height: 2;
}
.article-box .bd p{
	margin-bottom: 30px;
	line-height: 2.4;
}
.article-box .fd{
    font-size: 18px;
    padding-bottom: 120px;
}
.article-box .fd span{
    width: 145px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border: 1px solid #f49712;
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    color: #f49712;
    text-indent: 30px;
    -webkit-transition:.3s;
    transition:.3s;
}
.article-box .prev span{
	background: url(../image/ar_u1.png) no-repeat 24px 50%;
}

.article-box .next span{
	background: url(../image/ar_u2.png) no-repeat 24px 50%;
}
.article-box .prev:hover span,
.article-box .next:hover span{
	background-color: #f49712;
	color: #fff;
}
.article-box .prev:hover span{
	background-image: url(../image/ar_u1_2.png);
}
.article-box .next:hover span{
	background-image: url(../image/ar_u2_2.png);
}
.article-box .fd a{
    color: #000;

}
.article-box .fd p:hover a{
    color: #f49712;
}
.article-box .fd p{
    margin-bottom: 14px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}

.article-box h6 span{
	margin: 0 20px;
	color: #a5a4a4;
}
.article-box h6{
	font-size: 14px;
	color: #686868;
}
.article-box{
	overflow: hidden;
}



.news-box{
    overflow: hidden;
}
.news-list2{
    margin-bottom: 40px;
}
.news-list2 h3{
    font-size: 30px;
    color: #000;
    position: relative;
    margin-bottom: 10px;
}
.news-list2 h3 a{color: #000;}
.news-list2 h3 a:hover{color: #f49712;}
.news-list2 h3:after{
	content: '';
	position: absolute;
	width: 200%;
	margin-left: -50%;
	border-top: 1px solid #ddd;
	left: 0;
	bottom: -20px;
}
.news-list2 li{
    padding: 10px 0 30px 0;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
}
.news-list2 p{
    padding: 30px 0;
    line-height: 2.4;
}
.news-list2 li:hover{
}


.news-list2 h6{
	font-size: 14px;
	color: #a4a4a4;
}



.page{
  color: #686868;
  clear: both;
  padding: 50px 0 100px 0;
}
.page span,
.page a{
  display: inline-block;
  padding: 0 18px;
  height: 46px;
  line-height: 46px;
  border: 1px solid #dddddd;
  margin-right: 8px;
  -webkit-transition:.3s;
  transition:.3s;
  background-color: #fff;

}
.page a{
	background-color: #fff;
}
.page span{
    border: none;
}
.page a.on,.page a:hover{
  background-color: #f49712;
  color: #fff;
  border-color: #f49712;
}

.page li{
	display: inline-block;
}

.page li.on a,
.page li.thisclass a,.page a:hover{
  background-color: #f49712;
  color: #fff;
}

.page li{list-style:none;}




.t5{
	font-size: 24px;
	color: #000;
	padding-left: 1.1em;
	border-left: 3px solid #f49712;
	margin-bottom: 30px;
}
.rec-hd h4{
	font-size: 24px;
	text-align: center;
}
.rec-hd .con{
	padding: 50px 0;
	line-height: 2.6;
}
.rec-hd{
	padding: 0 100px;
	margin-bottom: 60px;
}
.rec-hd em{
	color: #f49712;
}








.recruitment-table span{
	float: left;	
	width: 22%;
	text-align: center;
}
.recruitment-table .s5{
	width: 12%;
}
.recruitment-table .hd,
.recruitment-table .th{
	overflow: hidden;
}
.recruitment-table .s1{
	text-align: left;
}
.recruitment-table .hd{
	border-bottom: 1px dashed #e4e4e4;
	height: 78px;
	line-height: 78px;
}
.recruitment-table .hd .s1{
	font-size: 18px;
	font-weight: bold;
	color: #000;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}
.recruitment-table .th{
	height: 50px;
	line-height: 50px;
	border-bottom: 1px dashed #e4e4e4;
}
.recruitment-table .bd .wp{
	padding: 30px 0;
	line-height: 2;
}


.open-con{
	padding-left: 30px;
	background: url(../image/ar4.png) no-repeat left 50%;
}
.recruitment-table .bd{
	display: none;
}
.recruitment-table .on{
	background-image: url(../image/ar5.png);
	color: #e74a45;
}
.recruitment-box .img-list{
	margin-top: 60px;
}

.rec-hd  p{
	line-height: 2.4;
}
.recruitment-box .t5{margin-top: 100px;}


.news-box .list-1{padding-bottom: 30px;}


.sub-nv{
	display: none;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	left: 0;
	width: 100%;
	top: 100px;
	font-size: 0;
	text-align: center;
	padding: 50px 0 40px 0;
}
.sub-nv dt{
	font-size: 18px;
	color: #b2d132;
	line-height: 60px;
}
.sub-nv dd a{
	display: block;
	font-size: 14px;
	color: #fff;
	margin-bottom: 6px;
	line-height: 1.4;
}
.sub-nv dl{
	display: inline-block;
	padding: 0 32px;
	vertical-align: top;
}
.sub-nv dd a:hover{
	color: #b2d132;
}
#hd.i-hd{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}

.sec-box{
	display: none;
}
/*9.3*/
.down-box4{
	background-color: #E6E6E6;
	padding: 20px;
	display:  table;
	width: 100%;
	vertical-align: middle;
}

.down-box4 .img{
	display: table-cell;
	vertical-align: middle;
	width: 157px;
}
.down-box4 .txt{
	padding: 20px;
	display: table-cell;
	font-size: 16px;
	line-height: 1.6;
	padding-left: 30px;
	vertical-align: middle;
}
.down-box4 a{
	display: table-cell;
	width: 100px;
	vertical-align: middle;
	text-align: center;
}
