@charset "UTF-8";
/*导入*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  margin: 0;
  padding: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

* {
  font-family: "Microsoft Yahei","Open Sans","Helvetica Neue","Helvetica",微软雅黑,tahoma,arial,宋体\5b8b\4f53; }

body, button, input, select, textarea {
  font: 14px/1.5 "Microsoft Yahei","Open Sans","Helvetica Neue","Helvetica",微软雅黑,tahoma,arial,宋体\5b8b\4f53; }

input, select, textarea {
  font-size: 100%; }

.web_font {
  font-family: "webfont" !important;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

th {
  text-align: inherit; }

fieldset, img {
  border: 0; }

iframe {
  display: block; }

abbr, acronym {
  border: 0;
  font-variant: normal; }

del {
  text-decoration: line-through; }

address, caption, cite, code, dfn, em, th, var {
  font-style: normal; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400; }

q:before, q:after {
  content: ''; }

sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

a:hover {
  text-decoration: none; }

ins, a {
  text-decoration: none; }

.fn-clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0; }

.fn-clear {
  zoom: 1; }

body .fn-hide {
  display: none; }

.fn-left, .fn-right {
  display: inline; }

.fn-left {
  float: left; }

.fn-right {
  float: right; }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 * Demo - https://daneden.github.io/animate.css/
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0); } }

.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in; }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in; } }

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    transform: none;
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }

.jackInTheBox {
  animation-name: jackInTheBox; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

.slideOutUp {
  animation-name: slideOutUp; }

.fs12 {
  font-size: 12px; }

.fs13 {
  font-size: 13px; }

.fs14 {
  font-size: 14px; }

.fs15 {
  font-size: 15px; }

.fs16 {
  font-size: 16px; }

.fs17 {
  font-size: 17px; }

.fs18 {
  font-size: 18px; }

.fs19 {
  font-size: 19px; }

.fs20 {
  font-size: 20px; }

.fs21 {
  font-size: 21px; }

.fs22 {
  font-size: 22px; }

.fs23 {
  font-size: 23px; }

.fs24 {
  font-size: 24px; }

@font-face {
  font-family: 'icomoon';
  src: url("/build/fonts/icomoon.eot?gojuw1");
  src: url("/build/fonts/icomoon.eot?gojuw#iefix") format("embedded-opentype"), url("/build/fonts/icomoon.ttf?gojuw") format("truetype"), url("/build/fonts/icomoon.woff?gojuw") format("woff"), url("/build/fonts/icomoon.svg?gojuw#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*="icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-1:before {
  content: "\e900"; }

.icon-2:before {
  content: "\e901"; }

.icon-3:before {
  content: "\e902"; }

.icon-4:before {
  content: "\e903"; }

.icon-5:before {
  content: "\e904"; }

.icon-6:before {
  content: "\e905"; }

.icon-7:before {
  content: "\e906"; }

.icon-8:before {
  content: "\e907"; }

.icon-9:before {
  content: "\e908"; }

.icon-10:before {
  content: "\e909"; }

.icon-11:before {
  content: "\e90a"; }

.icon-12:before {
  content: "\e90b"; }

.icon-13:before {
  content: "\e90c"; }

.icon-14:before {
  content: "\e90d"; }

.icon-15:before {
  content: "\e90e"; }

.icon-16:before {
  content: "\e90f"; }

.icon-17:before {
  content: "\e910"; }

.icon-18:before {
  content: "\e911"; }

.icon-19:before {
  content: "\e912"; }

.icon-20:before {
  content: "\e913"; }

.icon-21:before {
  content: "\e914"; }

.icon-22:before {
  content: "\e915"; }

.icon-23:before {
  content: "\e916"; }

.icon-24:before {
  content: "\e917"; }

.icon-25:before {
  content: "\e918"; }

.icon-26:before {
  content: "\e919"; }

.icon-27:before {
  content: "\e91a"; }

.icon-28:before {
  content: "\e91b"; }

.icon-29:before {
  content: "\e91c"; }

.icon-30:before {
  content: "\e91d"; }

.icon-31:before {
  content: "\e91e"; }

.icon-32:before {
  content: "\e91f"; }

.icon-33:before {
  content: "\e920"; }

.icon-34:before {
  content: "\e921"; }

.icon-35:before {
  content: "\e922"; }

.icon-36:before {
  content: "\e923"; }

.icon-37:before {
  content: "\e924"; }

.icon-38:before {
  content: "\e925"; }

.icon-39:before {
  content: "\e926"; }

.icon-40:before {
  content: "\e927"; }

.icon-41:before {
  content: "\e928"; }

.icon-42:before {
  content: "\e929"; }

.icon-43:before {
  content: "\e92a"; }

.icon-44:before {
  content: "\e92b"; }

.icon-45:before {
  content: "\e92c"; }

.icon-46:before {
  content: "\e92d"; }

.icon-47:before {
  content: "\e92e"; }

.icon-48:before {
  content: "\e92f"; }

.icon-49:before {
  content: "\e930"; }

.icon-50:before {
  content: "\e931"; }

.icon-51:before {
  content: "\e932"; }

.icon-52:before {
  content: "\e933"; }

.icon-53:before {
  content: "\e934"; }

.icon-54:before {
  content: "\e935"; }

.icon-55:before {
  content: "\e936"; }

.icon-56:before {
  content: "\e937"; }

.icon-57:before {
  content: "\e938"; }

.icon-58:before {
  content: "\e939"; }

.icon-59:before {
  content: "\e93a"; }

.icon-60:before {
  content: "\e93b"; }

.icon-61:before {
  content: "\e93c"; }

.icon-62:before {
  content: "\e93d"; }

.icon-63:before {
  content: "\e93e"; }

.icon-64:before {
  content: "\e93f"; }

.icon-65:before {
  content: "\e940"; }

.icon-66:before {
  content: "\e941"; }

.icon-67:before {
  content: "\e942"; }

.icon-68:before {
  content: "\e943"; }

.icon-69:before {
  content: "\e944"; }

.icon-70:before {
  content: "\e945"; }

.icon-71:before {
  content: "\e946"; }

.icon-72:before {
  content: "\e947"; }

.icon-73:before {
  content: "\e948"; }

.icon-74:before {
  content: "\e949"; }

.icon-75:before {
  content: "\e94a"; }

.icon-76:before {
  content: "\e94b"; }

.icon-77:before {
  content: "\e94c"; }

.icon-78:before {
  content: "\e94d"; }

.icon-79:before {
  content: "\e94e"; }

.icon-80:before {
  content: "\e94f"; }

.icon-81:before {
  content: "\e950"; }

.fs12 {
  font-size: 12px; }

.fs13 {
  font-size: 13px; }

.fs14 {
  font-size: 14px; }

.fs15 {
  font-size: 15px; }

.fs16 {
  font-size: 16px; }

.fs17 {
  font-size: 17px; }

.fs18 {
  font-size: 18px; }

.fs19 {
  font-size: 19px; }

.fs20 {
  font-size: 20px; }

.fs21 {
  font-size: 21px; }

.fs22 {
  font-size: 22px; }

.fs23 {
  font-size: 23px; }

.fs24 {
  font-size: 24px; }

a, i, .css3, .J_f2 .m_con .con_l:hover {
  transition: All 0.3s ease-in-out;
  -webkit-transition: All 0.3s ease-in-out;
  -moz-transition: All 0.3s ease-in-out;
  -o-transition: All 0.3s ease-in-out; }

* {
  font-weight: 400;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.icon-31 {
  font-size: 5px;
  -webkit-transform: scale(0.3);
  display: inline-block; }

img {
  transition: All 0.35s ease-in-out;
  -webkit-transition: All 0.35s ease-in-out;
  -moz-transition: All 0.35s ease-in-out;
  -o-transition: All 0.35s ease-in-out; }

a:hover img, li:hover img, img :hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8; }

body {
  font-family: "Microsoft Yahei", "Open Sans", "Helvetica Neue", "Helvetica", 微软雅黑, tahoma, arial, 宋体\5b8b\4f53;
  font-size: 14px;
  color: #000;
  background: #fff;
  min-width: 1200px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

h1, h2, h3, h4, h5 {
  font-weight: 400; }

.clear {
  clear: both;
  display: inline-block;
  width: 100%;
  height: 2px;
  font-size: 0;
  overflow: hidden; }

.icon_n {
  float: left;
  width: 18px;
  height: 18px;
  background: url("/build/images/icon/icon1.png") no-repeat; }

a {
  color: #000;
  text-decoration: none; }

a:hover {
  color: #ff751a; }

.wrap {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  clear: both; }

.header {
  height: 102px;
  background: #fff;
  -moz-box-shadow: 0px 5px 10px #eee;
  -webkit-box-shadow: 0px 5px 10px #eee;
  box-shadow: 0px 5px 10px #eee; }
  .header .logo {
    width: 240px;
    float: left;
    text-align: left;
    margin: 15px 0;
    color: #666;
    overflow: hidden; }
    .header .logo span {
      background: url("/build/images/logo.png") no-repeat;
      float: left;
      width: 200px;
      height: 49px; }
    .header .logo p {
      margin-top: 5px;
      float: left;
      width: 100%;
      font-size: 12px; }
  .header .logo_b {
    background: url("/build/images/logo.png") no-repeat;
    float: left;
    width: 200px;
    height: 49px;
    margin: 25px 0; }
    .header .logo_b a {
      float: left;
      width: 100%;
      height: 49px; }
  .header .tel400 {
    font-size: 18px;
    color: #ff751a;
    margin-top: 35px;
    float: right; }
    .header .tel400 i {
      color: #999;
      font-size: 24px;
      margin-right: 5px; }
    .header .tel400 span {
      color: #999; }
  .header .menubar {
    float: right;
    font-size: 16px;
    margin-top: 35px; }
    .header .menubar div {
      float: left;
      margin: 0 5px;
      position: relative; }
      .header .menubar div:hover a {
        color: #ff751a; }
      .header .menubar div:hover .m_link {
        border-bottom: 3px solid #0ad15d; }
      .header .menubar div i {
        position: absolute;
        right: 0; }
      .header .menubar div .m_link {
        padding: 19px 15px;
        float: left; }
      .header .menubar div .sub_menu {
        position: absolute;
        display: none;
        background: #fff;
        border: 1px solid #ddd;
        font-size: 14px;
        z-index: 10;
        left: 50%;
        margin-left: -70px;
        top: 65px; }
        .header .menubar div .sub_menu li {
          text-align: center;
          width: 140px; }
          .header .menubar div .sub_menu li a {
            width: 100%;
            display: inline-block;
            padding: 10px 0;
            color: #999; }
            .header .menubar div .sub_menu li a:hover {
              background: #f0f0f0;
              color: #ff751a; }
        .header .menubar div .sub_menu .cur {
          background: #0ad15d;
          color: #fff; }
          .header .menubar div .sub_menu .cur:hover {
            background: #0ad15d;
            color: #fff; }
      .header .menubar div:hover .sub_menu {
        display: block; }
    .header .menubar .cur {
      color: #0ad15d; }
      .header .menubar .cur .m_link {
        border-bottom: 3px solid #0ad15d; }
      .header .menubar .cur a {
        color: #0ad15d; }
  .header .loginbar {
    position: absolute;
    top: 0;
    right: 0;
    background: #0ad15d;
    float: left;
    padding: 5px 20px;
    font-size: 14px;
    vertical-align: middle;
    line-height: 20px; }
    .header .loginbar:hover {
      background: #38af55; }
    .header .loginbar a {
      color: #fff;
      float: left;
      line-height: 20px; }
    .header .loginbar i {
      display: inline-block;
      width: 20px;
      height: 20px;
      font-size: 20px;
      margin-right: 5px;
      color: #fff;
      vertical-align: middle; }

.J_footer {
  width: 100%;
  overflow: hidden;
  padding: 40px 0; }
  .J_footer .serve_tixi {
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    margin-bottom: 40px;
    overflow: hidden;
    line-height: 24px;
    font-size: 18px; }
    .J_footer .serve_tixi a {
      float: left;
      height: 24px;
      line-height: 24px; }
    .J_footer .serve_tixi i {
      font-size: 24px;
      margin-right: 5px;
      vertical-align: middle; }
  .J_footer .f_l {
    float: left;
    height: 130px;
    width: 710px;
    margin-right: 50px;
    padding-right: 50px;
    border-right: 1px solid #ddd; }
    .J_footer .f_l .f_menu {
      overflow: hidden;
      margin-top: 10px; }
      .J_footer .f_l .f_menu li {
        float: left;
        margin-right: 40px;
        font-size: 22px; }
    .J_footer .f_l .f_txt {
      color: #999;
      margin-top: 20px; }
      .J_footer .f_l .f_txt p {
        margin: 10px auto; }
      .J_footer .f_l .f_txt span {
        margin-right: 15px; }
  .J_footer .f_r {
    float: right;
    height: 130px;
    width: 440px; }
    .J_footer .f_r dl dt {
      float: right;
      text-align: center; }
      .J_footer .f_r dl dt .erweima {
        display: inline-block;
        margin: 0 auto;
        width: 108px;
        height: 108px;
        background: url("/build/images/erweima.jpg") no-repeat center;
        background-size: 100%; }
      .J_footer .f_r dl dt p {
        font-size: 12px;
        color: #333; }
    .J_footer .f_r dl dd {
      float: left;
      font-size: 16px;
      color: #ccc;
      text-align: center; }
    .J_footer .f_r dl h3 {
      font-size: 42px;
      color: #ff751a; }

.footer {
  border-top: 1px solid #ddd;
  text-align: center;
  margin: 40px 0 0 0;
  color: #999;
  display: inline-block;
  width: 100%;
  background: #fff;
  padding-bottom: 40px; }
  .footer .f_menu {
    margin: 40px 0 15px 0; }
    .footer .f_menu li {
      display: inline-block; }
      .footer .f_menu li a {
        display: inline-block;
        padding: 0 10px;
        margin: 0 25px; }
  .footer .f_txt {
    font-size: 12px; }
    .footer .f_txt span {
      margin: 0 10px; }
      .footer .f_txt span a {
        color: #999; }
        .footer .f_txt span a:hover {
          color: #ff751a; }

.navbar {
  margin-top: 20px;
  display: inline-block;
  width: 100%;
  color: #ccc; }
  .navbar a {
    color: #999; }
    .navbar a:hover {
      color: #ff751a; }

#pages, .pages {
  font-size: 0;
  margin: 40px 0;
  text-align: center; }
  #pages a, #pages span, .pages a, .pages span {
    border: 1px solid #eee;
    padding: 8px 15px;
    font-size: 14px;
    margin: 0 -1px 0 0;
    color: #666;
    background: #fff; }
  #pages span, .pages span {
    background: #0ad15d;
    color: #fff;
    border: 1px solid #0ad15d; }

.share-con {
  overflow: hidden;
  margin-bottom: 15px; }
  .share-con dd {
    display: block;
    font-size: 16px;
    overflow: hidden;
    text-align: left;
    float: left;
    width: 50%;
    margin: 10px 0; }
    .share-con dd a {
      transition: all 0.6s ease 0s;
      -webkit-transition: all 0.6s ease 0s;
      -moz-transition: all 0.6s ease 0s;
      -o-transition: all 0.6s ease 0s; }
    .share-con dd:hover {
      background: #f0f0f0; }
      .share-con dd:hover a {
        margin-left: 5px;
        ilter: alpha(opacity=70);
        -moz-opacity: 0.7;
        -khtml-opacity: 0.7;
        opacity: 0.7; }
  .share-con a {
    display: block;
    line-height: 36px;
    width: 100%;
    height: 36px;
    text-indent: 50px;
    font-size: 16px;
    padding: 0; }
    .share-con a:hover {
      background: #f0f0f0; }
  .share-con .bds_weixin, .share-con .bds_tqq, .share-con .bds_qzone, .share-con .bds_tsina, .share-con .bds_baidu, .share-con .bds_douban, .share-con .bds_qqweixin {
    float: left;
    margin-right: 12px;
    background-position: 0px 0px; }
  .share-con .bds_weixin {
    background: url("/build/images/icon/icon-weixin.png") no-repeat;
    background-position: 0 0; }
  .share-con .bds_tqq {
    background: url("/build/images/icon/icon-qq.png") no-repeat;
    background-position: 0 0; }
  .share-con .bds_qzone {
    background: url("/build/images/icon/icon-qzone.png") no-repeat;
    background-position: 0 0; }
  .share-con .bds_tsina {
    background: url("/build/images/icon/icon-weibo.png") no-repeat;
    background-position: 0 0; }
  .share-con .bds_baidu {
    background: url("/build/images/icon/icon-baidu.png") no-repeat;
    background-position: 0 0; }
  .share-con .bds_douban {
    background: url("/build/images/icon/icon-douban.png") no-repeat;
    background-position: 0 0; }
  .share-con .bds_qqweibo {
    background: url("/build/images/icon/icon-qqweibo.png") no-repeat;
    background-position: 0 0; }
  .share-con .bds_weixin:hover {
    background: url("/build/images/icon/icon-weixin.png") no-repeat;
    background-position: 5px 0; }
  .share-con .bds_tqq:hover {
    background: url("/build/images/icon/icon-qq.png") no-repeat;
    background-position: 5px 0; }
  .share-con .bds_qzone:hover {
    background: url("/build/images/icon/icon-qzone.png") no-repeat;
    background-position: 5px 0; }
  .share-con .bds_tsina:hover {
    background: url("/build/images/icon/icon-weibo.png") no-repeat;
    background-position: 5px 0; }
  .share-con .bds_baidu:hover {
    background: url("/build/images/icon/icon-baidu.png") no-repeat;
    background-position: 5px 0; }
  .share-con .bds_douban:hover {
    background: url("/build/images/icon/icon-douban.png") no-repeat;
    background-position: 5px 0; }
  .share-con .bds_qqweibo:hover {
    background: url("/build/images/icon/icon-qqweibo.png") no-repeat;
    background-position: 5px 0; }

.b_top_01 {
  border-top: 1px solid #ddd; }

.shadow_c01, .J_slider .p_page li, .layer_box {
  -webkit-box-shadow: 0 0 20px rgba(102, 102, 102, 0.4);
  -moz-box-shadow: 0 0 20px rgba(102, 102, 102, 0.4);
  box-shadow: 0 0 20px rgba(102, 102, 102, 0.4);
  -webkit-text-shadow: 0 0 20px rgba(102, 102, 102, 0.4);
  -moz-text-shadow: 0 0 20px rgba(102, 102, 102, 0.4);
  text-shadow: 0 0 20px rgba(102, 102, 102, 0.4); }

.shadow_c04, .layer_box .sty2 .btn, .J_f1 ul li a:hover, .J_f2 .m_con .con_l:hover, .J_f2 .m_con .con_c .btn_xy:hover, .J_f3 .m_con ul li a:hover, .J_f4 .jz_tyg:hover, .J_f5 ul li a:hover {
  -webkit-box-shadow: 0 0 20px rgba(255, 117, 26, 0.8);
  -moz-box-shadow: 0 0 20px rgba(255, 117, 26, 0.8);
  box-shadow: 0 0 20px rgba(255, 117, 26, 0.8); }

.shadow_c06, .J_slider .p_page .cur, .layer_box .sty1 .btn, .J_f4 ul li a:hover i, .J_f4 .jz_school:hover {
  -webkit-box-shadow: 0 0 20px rgba(10, 210, 93, 0.8);
  -moz-box-shadow: 0 0 20px rgba(10, 210, 93, 0.8);
  box-shadow: 0 0 20px rgba(10, 210, 93, 0.8);
  -webkit-text-shadow: 0 0 20px rgba(10, 210, 93, 0.8);
  -moz-text-shadow: 0 0 20px rgba(10, 210, 93, 0.8);
  text-shadow: 0 0 20px rgba(10, 210, 93, 0.8); }

.shadow_c07 {
  -webkit-box-shadow: 0 0 20px rgba(0, 198, 247, 0.8);
  -moz-box-shadow: 0 0 20px rgba(0, 198, 247, 0.8);
  box-shadow: 0 0 20px rgba(0, 198, 247, 0.8);
  -webkit-text-shadow: 0 0 20px rgba(0, 198, 247, 0.8);
  -moz-text-shadow: 0 0 20px rgba(0, 198, 247, 0.8);
  text-shadow: 0 0 20px rgba(0, 198, 247, 0.8); }

.shadow_c01_1, .J_f3 .m_con ul li a {
  -webkit-box-shadow: 0 0 20px rgba(102, 102, 102, 0.2);
  -moz-box-shadow: 0 0 20px rgba(102, 102, 102, 0.2);
  box-shadow: 0 0 20px rgba(102, 102, 102, 0.2);
  -webkit-text-shadow: 0 0 20px rgba(102, 102, 102, 0.2);
  -moz-text-shadow: 0 0 20px rgba(102, 102, 102, 0.2);
  text-shadow: 0 0 20px rgba(102, 102, 102, 0.2); }

.t_l {
  text-align: left; }

.t_c {
  text-align: center; }

.t_r {
  text-align: right; }

.table_1 {
  width: 100%;
  border-right: 1px solid #ddd; }
  .table_1 th {
    background: #0ad15d;
    color: #fff;
    padding: 15px 20px;
    font-size: 120%;
    text-align: center; }
  .table_1 td {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px; }
  .table_1 tbody {
    border-right: 1px solid #ddd; }
  .table_1 tr.bg {
    background: #f6f6f6; }
  .table_1 a {
    color: #0ad15d; }
  .table_1 a:hover {
    color: #eb6309; }

.table_2 {
  width: 100%;
  text-align: center;
  border-right: 1px solid #ddd; }
  .table_2 th {
    background: #fff;
    color: #333;
    padding: 15px 20px;
    font-size: 120%;
    text-align: center;
    background: #f6f6f6; }
  .table_2 th, .table_2 td {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px; }
  .table_2 thead {
    border-top: 1px solid #ddd; }
  .table_2 tbody {
    border-right: 1px solid #ddd; }
  .table_2 a {
    color: #0ad15d; }
  .table_2 a:hover {
    color: #eb6309; }

.table_3 {
  width: 100%;
  border-right: 1px solid #ddd; }
  .table_3 th {
    background: #ff751a;
    color: #fff;
    padding: 15px 20px;
    font-size: 120%;
    text-align: center; }
  .table_3 td {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px; }
  .table_3 tbody {
    border-right: 1px solid #ddd; }
  .table_3 tr.bg {
    background: #f6f6f6; }
  .table_3 a {
    color: #ff751a; }
  .table_3 a:hover {
    color: #eb6309; }

.c04 {
  color: #ff751a; }

.btn_more {
  text-align: center;
  margin: 40px auto 20px auto;
  overflow: hidden; }
  .btn_more a {
    border: 1px solid #0ad15d;
    display: inline-block;
    padding: 10px 50px;
    font-size: 16px;
    color: #0ad15d;
    border-radius: 30px; }
    .btn_more a:hover {
      background: #0ad15d;
      color: #fff; }

.J_slider {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative; }
  .J_slider .p_slider li {
    display: inline-block;
    width: 100%;
    height: 400px; }
    .J_slider .p_slider li a {
      display: inline-block;
      width: 100%;
      height: 400px; }
  .J_slider .p_page {
    text-align: center;
    display: inline-block;
    height: 20px;
    margin-top: 360px;
    width: 100%;
    position: absolute;
    bottom: 20px; }
    .J_slider .p_page .cur {
      background: #0ad15d; }
    .J_slider .p_page li {
      display: inline-block;
      width: 20px;
      height: 20px;
      overflow: hidden;
      border-radius: 10px;
      background: #fff;
      margin: 0 5px;
      cursor: pointer; }

.layer_box {
  background: #fff;
  position: relative;
  float: left;
  width: 590px;
  height: 410px;
  overflow: hidden; }
  .layer_box .close {
    float: left;
    cursor: pointer;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px; }
    .layer_box .close:hover {
      color: #ff751a; }
  .layer_box .sty1 h1 {
    color: #0ad15d; }
  .layer_box .sty1 .bg {
    background: url("/build/images/img/dilog_bg2.jpg") no-repeat;
    width: 222px; }
  .layer_box .sty1 .btn {
    background: #0ad15d; }
    .layer_box .sty1 .btn:hover {
      background: #38af55; }
  .layer_box .sty2 h1 {
    color: #ff751a; }
  .layer_box .sty2 .bg {
    background: url("/build/images/img/dilog_bg1.jpg") no-repeat;
    width: 271px; }
  .layer_box .sty2 .btn {
    background: #ff751a; }
    .layer_box .sty2 .btn:hover {
      background: #eb6309; }
  .layer_box .bg, .layer_box h1, .layer_box h3, .layer_box .form {
    position: absolute;
    display: inline-block; }
  .layer_box .bg {
    height: 398px;
    top: 12px;
    left: 10px;
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
    animation: bounceInLeft 1.5s; }
  .layer_box .btn {
    color: #fff;
    font-size: 22px;
    width: 280px;
    height: 50px;
    border-radius: 8px;
    border: none; }
  .layer_box h1 {
    font-size: 20px;
    top: 23px;
    left: 250px;
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
    animation: bounceInDown 1.5s; }
  .layer_box h3 {
    font-size: 14px;
    top: 60px;
    left: 255px;
    color: #666;
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
    animation: bounceInDown 2s; }
  .layer_box .form {
    top: 60px;
    left: 255px;
    right: 30px;
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
    animation: bounceInUp 2.5s; }
    .layer_box .form li {
      margin: 15px 0; }
      .layer_box .form li label {
        margin: 5px 0;
        display: block; }
      .layer_box .form li input {
        border: 1px solid #eee;
        font-size: 16px;
        padding: 5px 10px;
        width: 100%;
        height: 44px;
        line-height: 44px; }
      .layer_box .form li button {
        margin-top: 10px; }
      .layer_box .form li input.btn {
        border: none;
        font-size: 20px;
        line-height: 28px;
        margin: 10px 0; }

.fs12 {
  font-size: 12px; }

.fs13 {
  font-size: 13px; }

.fs14 {
  font-size: 14px; }

.fs15 {
  font-size: 15px; }

.fs16 {
  font-size: 16px; }

.fs17 {
  font-size: 17px; }

.fs18 {
  font-size: 18px; }

.fs19 {
  font-size: 19px; }

.fs20 {
  font-size: 20px; }

.fs21 {
  font-size: 21px; }

.fs22 {
  font-size: 22px; }

.fs23 {
  font-size: 23px; }

.fs24 {
  font-size: 24px; }

.col_l_1 div.mb, .col_l_1 li, .col_l_1 dl.col {
  width: 100%;
  float: left; }

.col_l_2 div.mb, .col_l_2 li, .col_l_2 dl.col {
  width: 50%;
  float: left; }

.col_l_3 div.mb, .col_l_3 li, .col_l_3 dl.col {
  width: 33.33333%;
  float: left; }

.col_l_4 div.mb, .col_l_4 li, .col_l_4 dl.col {
  width: 25%;
  float: left; }

.col_l_5 div.mb, .col_l_5 li, .col_l_5 dl.col {
  width: 20%;
  float: left; }

.col_l_6 div.mb, .col_l_6 li, .col_l_6 dl.col {
  width: 16.66667%;
  float: left; }

.col_l_7 div.mb, .col_l_7 li, .col_l_7 dl.col {
  width: 14.28571%;
  float: left; }

.col_l_8 div.mb, .col_l_8 li, .col_l_8 dl.col {
  width: 12.5%;
  float: left; }

.col_l_9 div.mb, .col_l_9 li, .col_l_9 dl.col {
  width: 11.11111%;
  float: left; }

.col_l_10 div.mb, .col_l_10 li, .col_l_10 dl.col {
  width: 10%;
  float: left; }

.col_l_11 div.mb, .col_l_11 li, .col_l_11 dl.col {
  width: 9.09091%;
  float: left; }

.col_l_12 div.mb, .col_l_12 li, .col_l_12 dl.col {
  width: 8.33333%;
  float: left; }

.panel {
  border: 1px solid #ddd; }

.row {
  margin: 0 -10px; }

.J_f1 {
  padding: 60px 0;
  background: #f6f6f6; }
  .J_f1 h2 {
    font-size: 34px;
    color: #333;
    text-align: center; }
  .J_f1 h3 {
    font-size: 16px;
    color: #999;
    text-align: center;
    margin: 5px 0; }
  .J_f1 .l1 {
    background: url("/build/images/home/pic1_1.jpg") no-repeat; }
  .J_f1 .l2 {
    background: url("/build/images/home/pic1_2.jpg") no-repeat; }
  .J_f1 .l3 {
    background: url("/build/images/home/pic1_3.jpg") no-repeat; }
  .J_f1 .l4 {
    background: url("/build/images/home/pic1_4.jpg") no-repeat; }
  .J_f1 .l5 {
    background: url("/build/images/home/pic1_5.jpg") no-repeat; }
  .J_f1 .l6 {
    background: url("/build/images/home/pic1_6.jpg") no-repeat; }
  .J_f1 ul {
    margin: 55px 0 30px 0;
    width: 100%;
    clear: both;
    display: inline-block; }
    .J_f1 ul li {
      padding: 0 10px;
      height: 160px; }
      .J_f1 ul li a {
        float: left;
        width: 100%;
        height: 160px;
        position: relative; }
      .J_f1 ul li h5 {
        font-size: 16px;
        color: #666;
        text-align: center;
        margin-top: 20px; }
      .J_f1 ul li .hov {
        display: none;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        color: #fff; }
        .J_f1 ul li .hov i {
          z-index: 3;
          display: inline-block;
          width: 42px;
          height: 42px;
          font-size: 42px;
          position: absolute;
          bottom: 10px;
          left: 50%;
          margin-left: -21px; }
        .J_f1 ul li .hov p {
          position: absolute;
          top: 15px;
          bottom: 25px;
          right: 25px;
          left: 25px;
          z-index: 2;
          line-height: 1.5; }
        .J_f1 ul li .hov .bg {
          position: absolute;
          top: 0;
          bottom: 0;
          right: 0;
          left: 0;
          opacity: 0.9;
          filter: alpha(opacity=90);
          -moz-opacity: 0.9;
          -khtml-opacity: 0.9;
          background: #ff751a;
          z-index: 1; }
      .J_f1 ul li:hover .hov {
        display: block; }

.J_f2 {
  padding: 60px 0;
  overflow: hidden; }
  .J_f2 h2 {
    font-size: 34px;
    color: #333;
    text-align: center; }
  .J_f2 h3 {
    font-size: 16px;
    color: #999;
    text-align: center;
    margin: 5px 0; }
  .J_f2 .m_tab {
    clear: both;
    width: 100%;
    background: #f6f6f6;
    display: inline-block;
    margin: 50px 0 60px 0;
    padding: 20px 0;
    text-align: center; }
    .J_f2 .m_tab li {
      display: inline-block;
      font-size: 22px;
      margin: 0 20px;
      border-bottom: 3px solid #f6f6f6;
      padding-bottom: 5px; }
      .J_f2 .m_tab li a {
        padding: 15px 5px; }
    .J_f2 .m_tab .cur {
      border-bottom: 3px solid #0ad15d; }
      .J_f2 .m_tab .cur a {
        color: #0ad15d; }
  .J_f2 .m_con .con_l {
    float: left;
    height: 380px;
    width: 300px;
    position: relative; }
    .J_f2 .m_con .con_l span {
      background: #ff751a;
      color: #fff;
      font-size: 18px;
      text-align: center;
      position: absolute;
      bottom: 0;
      opacity: 0.8;
      filter: alpha(opacity=80);
      -moz-opacity: 0.8;
      -khtml-opacity: 0.8;
      width: 100%;
      padding: 20px 0; }
  .J_f2 .m_con .con_c {
    float: left;
    height: 380px;
    margin: 0 50px;
    width: 469px;
    border-right: 1px solid #ddd;
    padding-right: 50px; }
    .J_f2 .m_con .con_c dl {
      margin-bottom: 60px; }
      .J_f2 .m_con .con_c dl dt {
        font-size: 18px;
        color: #333; }
      .J_f2 .m_con .con_c dl dd {
        font-size: 14px;
        color: #999;
        margin-bottom: 25px; }
    .J_f2 .m_con .con_c .t_hig {
      color: #ff751a; }
    .J_f2 .m_con .con_c .btn_xy {
      background: #ff751a;
      color: #fff;
      font-size: 18px;
      border-radius: 5px;
      padding: 10px 50px; }
      .J_f2 .m_con .con_c .btn_xy:hover {
        background: #eb6309; }
  .J_f2 .m_con .con_r {
    float: right;
    height: 380px;
    width: 330px; }
    .J_f2 .m_con .con_r h5 {
      font-size: 18px;
      color: #333;
      margin-bottom: 15px; }
    .J_f2 .m_con .con_r li {
      margin: 10px 0;
      font-size: 14px; }
      .J_f2 .m_con .con_r li a {
        color: #999; }
        .J_f2 .m_con .con_r li a:hover {
          color: #ff751a; }
    .J_f2 .m_con .con_r .more {
      margin-top: 20px;
      font-size: 16px; }
      .J_f2 .m_con .con_r .more a {
        color: #666; }
        .J_f2 .m_con .con_r .more a:hover {
          color: #ff751a; }
  .J_f2 .m_con .con_1 .con_l {
    background: url("/build/images/home/pic3_1.jpg") no-repeat; }
  .J_f2 .m_con .con_2 .con_l {
    background: url("/build/images/home/pic3_2.jpg") no-repeat; }
  .J_f2 .m_con .con_3 .con_l {
    background: url("/build/images/home/pic3_3.jpg") no-repeat; }
  .J_f2 .m_con .con_4 .con_l {
    background: url("/build/images/home/pic3_4.jpg") no-repeat; }
  .J_f2 .m_con .con_5 .con_l {
    background: url("/build/images/home/pic3_5.jpg") no-repeat; }
  .J_f2 .m_con .con_6 .con_l {
    background: url("/build/images/home/pic3_6.jpg") no-repeat; }
  .J_f2 .m_con .con_7 .con_l {
    background: url("/build/images/home/pic3_7.jpg") no-repeat; }
  .J_f2 .m_con .con_8 .con_l {
    background: url("/build/images/home/pic3_8.jpg") no-repeat; }
  .J_f2 .m_con .con_1 {
    display: none; }
  .J_f2 .m_con .con_2 {
    display: none; }
  .J_f2 .m_con .con_3 {
    display: none; }
  .J_f2 .m_con .con_4 {
    display: none; }
  .J_f2 .m_con .con_5 {
    display: none; }
  .J_f2 .m_con .con_6 {
    display: none; }
  .J_f2 .m_con .con_7 {
    display: none; }
  .J_f2 .m_con .con_8 {
    display: none; }

.J_f3 {
  padding: 40px 0;
  overflow: hidden; }
  .J_f3 .m_t {
    border-bottom: 1px solid #ddd;
    height: 50px;
    line-height: 26px;
    display: block;
    width: 100%; }
    .J_f3 .m_t h2 {
      float: left;
      font-size: 26px; }
    .J_f3 .m_t .more {
      float: right;
      margin-top: 15px; }
    .J_f3 .m_t .m_tab {
      float: left;
      margin: 0px 40px;
      text-align: center; }
      .J_f3 .m_t .m_tab li {
        display: inline-block;
        font-size: 18px;
        margin: 0 20px;
        padding: 10px 0; }
        .J_f3 .m_t .m_tab li a {
          padding: 15px 5px;
          color: #666; }
          .J_f3 .m_t .m_tab li a:hover {
            color: #ff751a; }
      .J_f3 .m_t .m_tab .cur {
        border-bottom: 3px solid #0ad15d; }
  .J_f3 .m_con {
    clear: both;
    display: block;
    width: 100%; }
    .J_f3 .m_con ul {
      overflow: hidden;
      margin: 55px 0 30px 0; }
      .J_f3 .m_con ul li {
        padding: 0 10px;
        height: 290px;
        margin: 10px 0; }
        .J_f3 .m_con ul li a {
          float: left;
          width: 100%;
          position: relative;
          overflow: hidden; }
          .J_f3 .m_con ul li a:hover {
            margin-top: 3px; }
            .J_f3 .m_con ul li a:hover .pic img {
              opacity: 0.8;
              filter: alpha(opacity=80);
              -moz-opacity: 0.8;
              -khtml-opacity: 0.8; }
        .J_f3 .m_con ul li .pic {
          height: 220px;
          overflow: hidden; }
          .J_f3 .m_con ul li .pic img {
            width: 100%; }
        .J_f3 .m_con ul li .name {
          font-size: 18px;
          display: inline-block;
          margin: 10px 0 10px 15px;
          float: left; }
        .J_f3 .m_con ul li .price {
          float: right;
          margin: 8px 15px 10px 0;
          font-size: 24px;
          color: #ff751a; }
          .J_f3 .m_con ul li .price span {
            color: #999;
            font-size: 12px;
            margin-left: 5px; }

.J_f4 {
  padding: 0;
  overflow: hidden; }
  .J_f4 h2 {
    font-size: 26px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    position: relative;
    height: 30px; }
    .J_f4 h2 span {
      background: #fff;
      position: absolute;
      top: 10px;
      padding-right: 20px; }
  .J_f4 ul {
    width: 100%;
    float: left;
    margin-top: 30px;
    overflow: hidden;
    height: 150px; }
    .J_f4 ul li {
      float: left;
      width: 12.5%;
      text-align: center;
      margin: 10px 0; }
      .J_f4 ul li a {
        display: inline-block; }
      .J_f4 ul li i {
        display: inline-block;
        width: 96px;
        height: 96px;
        line-height: 96px;
        font-size: 48px;
        background: #0ad15d;
        color: #fff;
        border-radius: 48px;
        text-align: center; }
      .J_f4 ul li a:hover {
        margin-top: 3px; }
        .J_f4 ul li a:hover i {
          background: #0ad15d; }
      .J_f4 ul li p {
        margin: 10px 0; }
  .J_f4 .mb {
    color: #fff;
    padding: 60px 10px; }
    .J_f4 .mb .con {
      overflow: hidden;
      position: relative;
      float: left;
      height: 320px;
      width: 100%; }
      .J_f4 .mb .con .f4_m {
        position: absolute;
        top: 20px;
        bottom: 30px;
        left: 20px;
        right: 20px;
        z-index: 2;
        text-align: center; }
        .J_f4 .mb .con .f4_m .btn {
          font-size: 24px;
          display: inline-block;
          border-radius: 40px;
          padding: 7px 40px;
          margin: 0 0 0 -110px;
          position: absolute;
          bottom: -10px;
          width: 220px;
          left: 50%; }
      .J_f4 .mb .con .f4_bg {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1; }
    .J_f4 .mb h3 {
      font-size: 20px;
      border-bottom: 1px solid #fff;
      padding-bottom: 10px;
      text-align: left; }
    .J_f4 .mb h4 {
      font-size: 32px;
      text-align: center;
      margin: 30px 0 20px 0;
      line-height: 1; }
    .J_f4 .mb p {
      font-size: 16px;
      text-align: center; }
  .J_f4 .jz_school {
    background: url("/build/images/home/pic5_1.jpg") no-repeat; }
    .J_f4 .jz_school .f4_bg {
      background: #0ad15d;
      opacity: 0.9;
      filter: alpha(opacity=90);
      -moz-opacity: 0.9;
      -khtml-opacity: 0.9; }
    .J_f4 .jz_school span {
      margin: 0 20px; }
    .J_f4 .jz_school .btn {
      background: #fdd128;
      color: #fff; }
      .J_f4 .jz_school .btn:hover {
        background: #e7be21; }
  .J_f4 .jz_tyg {
    background: url("/build/images/home/pic5_2.jpg") no-repeat; }
    .J_f4 .jz_tyg .f4_bg {
      background: #ff751a;
      opacity: 0.9;
      filter: alpha(opacity=90);
      -moz-opacity: 0.9;
      -khtml-opacity: 0.9; }
    .J_f4 .jz_tyg .btn {
      background: #fff;
      color: #ff751a; }
      .J_f4 .jz_tyg .btn:hover {
        color: #eb6309; }

.J_f5 {
  padding: 40px 0;
  overflow: hidden;
  background: #f6f6f6; }
  .J_f5 ul {
    overflow: hidden;
    padding: 55px 0 30px 0; }
    .J_f5 ul li {
      padding: 0 10px;
      height: 380px; }
      .J_f5 ul li a {
        float: left;
        width: 100%;
        position: relative;
        overflow: hidden;
        background: #fff;
        -moz-box-shadow: 1px 5px 10px #eee;
        -webkit-box-shadow: 1px 5px 10px #eee;
        box-shadow: 1px 5px 10px #eee; }
        .J_f5 ul li a:hover .pic img {
          transform: scale(1.1);
          -webkit-transform: scale(1.1);
          -moz-transform: scale(1.1);
          -o-transform: scale(1.1);
          -ms-transform: scale(1.1);
          opacity: 0.8;
          filter: alpha(opacity=80);
          -moz-opacity: 0.8;
          -khtml-opacity: 0.8; }
      .J_f5 ul li .pic {
        height: 240px;
        overflow: hidden; }
      .J_f5 ul li h3 {
        font-size: 22px;
        margin: 10px 15px 5px 15px; }
      .J_f5 ul li p {
        margin: 0px 15px 15px 15px;
        font-size: 16px;
        color: #999; }

.J_f6 h2 {
  font-size: 24px;
  float: left; }

.J_f6 .m-l {
  float: left;
  border-right: 1px solid #ddd;
  height: 390px;
  width: 690px;
  margin: 55px 50px 55px 0;
  padding-right: 50px; }
  .J_f6 .m-l .more {
    float: right;
    margin-top: 10px; }
    .J_f6 .m-l .more a {
      color: #666; }
      .J_f6 .m-l .more a:hover {
        color: #ff751a; }

.J_f6 .m-r {
  float: right;
  height: 390px;
  width: 460px;
  margin: 55px 0; }
  .J_f6 .m-r .more {
    float: right;
    margin-top: 10px; }
    .J_f6 .m-r .more a {
      color: #666; }
      .J_f6 .m-r .more a:hover {
        color: #ff751a; }
  .J_f6 .m-r ul {
    margin-bottom: 30px; }

.J_f6 dl, .J_f6 ul {
  width: 100%;
  clear: both;
  padding-top: 8px;
  font-size: 16px; }
  .J_f6 dl li, .J_f6 ul li {
    margin: 10px 0;
    padding-left: 10px; }
    .J_f6 dl li i, .J_f6 ul li i {
      font-size: 5px;
      float: left;
      margin-top: 8px; }

.J_f6 dt {
  float: left;
  width: 230px;
  height: 155px;
  margin-right: 30px;
  overflow: hidden; }
  .J_f6 dt:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8; }

.J_f6 dd h3 {
  font-size: 24px;
  margin-top: -7px; }

.J_f6 dd p {
  margin: 10px 0;
  color: #999; }

.J_f7 {
  background: #f6f6f6;
  padding: 50px 0 60px 0;
  overflow: hidden;
  clear: both; }
  .J_f7 .tab_menu {
    font-size: 24px;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden; }
    .J_f7 .tab_menu li {
      float: left;
      margin-right: 50px;
      color: #999; }
    .J_f7 .tab_menu .cur {
      color: #333; }
  .J_f7 .m_con {
    clear: both;
    overflow: hidden;
    margin-top: 20px; }
    .J_f7 .m_con li {
      display: inline-block; }
    .J_f7 .m_con .con_1, .J_f7 .m_con .con_2 {
      margin-left: -10px; }
      .J_f7 .m_con .con_1 li, .J_f7 .m_con .con_2 li {
        width: 188px;
        overflow: hidden;
        text-align: center;
        margin: 10px 0 10px 10px; }
        .J_f7 .m_con .con_1 li p, .J_f7 .m_con .con_2 li p {
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .J_f7 .m_con .con_1 li:hover img, .J_f7 .m_con .con_2 li:hover img {
          transform: scale(1.1);
          -webkit-transform: scale(1.1);
          -moz-transform: scale(1.1);
          -o-transform: scale(1.1);
          -ms-transform: scale(1.1);
          opacity: 0.8;
          filter: alpha(opacity=80);
          -moz-opacity: 0.8;
          -khtml-opacity: 0.8; }
