body{
    margin: 0;
    padding: 0;
}

@charset "UTF-8";


h1,h2,h3{
  font-size: 14px;
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-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;
}

.layui-layer-loading .layui-layer-content.layui-layer-loading2{
  background: url("../images/loading-2.gif") no-repeat;
  width: 100px;
  height: 100px;
  background-size: 100%;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -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%, to {
    -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%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    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.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -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.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -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);
  }

  to {
    -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);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -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: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -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: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -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%, to {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -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);
  }

  from {
    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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -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);
  }

  from {
    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);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -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);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -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);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

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

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-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);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 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(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 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 zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 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(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 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);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 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(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 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 zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 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(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 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);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  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 zoomInUp {
  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);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    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);
  }

  to {
    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);
  }

  to {
    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);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  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);
  }

  to {
    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 zoomOutUp {
  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);
  }

  to {
    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);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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;
  }

  to {
    -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;
  }

  to {
    -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;
  }

  to {
    -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;
  }

  to {
    -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;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

























/**/


body a{outline:none;blr:expression(this.onFocus=this.blur());text-decoration: none;}
a:hover,a:focus{
    text-decoration: none!important;
    outline: none;
}
/**/
.tree {
    width: 900px;
}
.tree {
    border-radius: 4px;
    min-height: 20px;
}
.tree li {
    list-style-type: none;
    margin: 0;
    position: relative;
}
.tree ul ul li:hover {
    background: rgba(0, 0, 0, 0.016) none repeat scroll 0 0;
}
.tree li::after, .tree li::before {
    content: "";
    left: -25px;
    position: absolute;
    right: auto;
}
.tree li::before {
    border-left: 1px solid #999;
    bottom: 50px;
    height: 100%;
    top: -11px;
    width: 1px;
}
.tree li::after {
    border-top: 1px solid #999;
    height: 20px;
    top: 18px;
    width: 25px;
}
.tree li span {
    border: 1px solid #999;
    border-radius: 5px;
    display: inline-block;
    padding: 3px 8px;
    text-decoration: none;
   /* transition: color 0.1s ease 0.1s, background-color 0.1s ease 0.1s, border-color 0.1s ease 0.2s;*/
}
.tree li span:hover{
  border: 1px solid #fff;
}
.tree li span:hover span{
  border: 1px solid #fff;
} 
/*.tree ul li.parent_li:hover ul li span.pull-right{
  color: #fff !important;
} */

.tree li span:hover a{
  color: #fff;
}
.tree li.parent_li > span {
    cursor: pointer;
    padding: 3px 7px;
}
.tree > ul > li::after, .tree > ul > li::before {
    border: 0 none;
}
.tree li:last-child::before {
    height: 30px;
}
.tree li.parent_li > span:hover, .tree li.parent_li > span:hover + ul li span {
    background: #eee none repeat scroll 0 0;
    border: 1px solid #fff;
    color: #fff;
}
.tree li.parent_li:hover + ul li span.pull-right a{
  color: #fff !important;
}
.tree > ul {
    padding-left: 0;
}
.tree ul ul {
    padding-left: 34px;
    padding-top: 10px;
}
.tree li.parent_li > span:hover {
    background-color: #7dbef4;
    border: 1px solid #7dbef4;
    color: #fff;
}
.tree li.parent_li > span:hover + ul li::before {
    border-left-color: #1e89e0;
}
.tree li.parent_li > span:hover + ul li::after {
    border-top-color: #1e89e0;
}
.tree li.parent_li > span:hover + ul li span {
    background: #9acaf2 none repeat scroll 0 0;
    border: 1px solid #fff;
    color: #fff !important;
}
.tree li.parent_li > span:hover + ul li span.delLink a{
  color: #Fff;
}
.tree li span:first-child {
    width: 100%;
}
/*.pull-right:hover {
    border: 1px dotted #fff
}*/
.tree_span_right {
    margin-bottom: 4px;
    margin-left: 10px;
    margin-top: 6px;
    z-index: 99999;
}
.tree .text {
    font-size: 14px;
    line-height: 36px;
}
.tree a {
    color: #333;
    font-size: 14px;
    margin-left: 5px;
}
.tree a:hover {
    color: #FFF;
}
.tree .parent_li{
    padding-top: 10px;
}
.container-fluid{
    padding: 15px;
}
.icheck{
    display: inline
}



/*新知识树*/
.tree.treenew{
  width: 95%;
}


.tree.treenew ul ul li:hover{
     background: rgba(0, 0, 0, 0.05) none repeat scroll 0 0;
     /*background: #f2f2f2;*/
}
.tree.treenew li::after, .tree li::before {
    content: "";
    left: -25px;
    position: absolute;
    right: auto;
}
.tree.treenew li::before {
    border-left: 1px solid #999;
    bottom: 50px;
    height: 100%;
    top: -11px;
    width: 1px;
}
.tree.treenew li::after {
    border-top: 1px solid #999;
    height: 20px;
    top: 18px;
    width: 25px;
}
.tree.treenew li span {
    border:none;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
   /* transition: color 0.1s ease 0.1s, background-color 0.1s ease 0.1s, border-color 0.1s ease 0.2s;*/
}
.tree.treenew li span.tree_span_right{
  padding: 0px;
}

.tree.treenew li span:hover{
  border: none;
}
.tree.treenew li span:hover span{
  border: none;
} 
/*.tree ul li.parent_li:hover ul li span.pull-right{
  color: #fff !important;
} */

.tree.treenew li span:hover a{
  color: #333;
}
.tree.treenew li.parent_li > span {
    cursor: default;
    padding: 0px 7px;
}
.tree.treenew > ul > li::after, .tree.treenew > ul > li::before {
    border: 0 none;
}
.tree.treenew li:last-child::before {
    height: 30px;
}
.tree.treenew li.parent_li > span:hover, .tree.treenew li.parent_li > span:hover + ul li span {
    background:none;
    border: 1px solid #fff;
}
.tree.treenew > ul {
    padding-left: 0;
}
.tree.treenew ul ul {
    padding-left: 34px;
    padding-top: 0px;
}
.tree.treenew li.parent_li > span:hover {
    background: none;
    border:none;
    color: #333;
}
.tree.treenew li.parent_li > span:hover + ul li::before {
    border-left-color: #1e89e0;
    color: #333 !important;
}
.tree.treenew li.parent_li > span:hover + ul li::after {
    border-top-color: #1e89e0;
    color: #333 !important;
}
.tree.treenew li.parent_li > span:hover + ul li span {
    background:none;
    border: none;
    color: #333 !important;
}
.tree.treenew li.parent_li > span:hover + ul li span.delLink a{
  color: #333 !important;
}
.tree.treenew li span:first-child {
    width: 100%;
}
/*.pull-right:hover {
    border: 1px dotted #fff
}*/
.tree.treenew .tree_span_right {
    margin-bottom: 4px;
    margin-left: 10px;
    margin-top: 0px; 
    z-index: 99999;
}
.tree.treenew .text {
    font-size: 14px;
    line-height: 24px;
    cursor: pointer;
    display: inline-block;
    width: 70%;
}
.tree.treenew a {
    color: #333;
    font-size: 14px;
    margin-left: 5px;
}
.tree.treenew li span:first-child .fa{
  vertical-align: top;
  padding-top: 6px;
}
.tree.treenew .parent_li{
    padding-top: 0px;
}










#divSmallBoxes {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999999;
}

.SmallBox {
    position: absolute;
    right: 5px;
    top: 20px;
    width: 420px;
    color: #fff;
    z-index: 9999;
    overflow: hidden;
    border: 1px solid transparent
}

.SmallBox:hover {
    border: 1px solid #fff;
    cursor: pointer
}

.SmallBox .foto {
    font-size: 50px;
    position: absolute;
    left: 17px
}

.SmallBox .textoFull {
    width: 93%;
    float: left;
    padding-left: 20px
}

.SmallBox .textoFoto {
    width: 78%;
    margin: 3px 20px 3px 80px;
    float: left
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.animated.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.animated.fast {
    -ms-animation-duration: .4s
}
.textoFull p{
    margin-bottom: 0px;
}
.textoFull p,.miniIcono{
    line-height: 30px;
    
}
.miniIcono i.fa{
    margin-top: 5px;
}
/*#frm {
    border-radius: 3px;
    margin-top: 0;
    padding: 0;
    position: relative;
}
#frm label{ 
    margin-bottom: 0px;
}
form #searchDiv > label, #frm > label, form.frm label {
    color: #aaaaaa;
    float: left;
    height: 32px;
    margin-right: 10px;
    padding: 0;
    width: 140px;
}*/
.rowline::after, .rowline::before, #frm::after, #gridSection::after {
    content: " ";
    display: table;
}
.rowline::after, #frm::after, #gridSection::after {
    clear: both;
}

.font16 {
    font-size: 16px;
}



/*授课的css*/





.btn:focus{
  outline: none !important;
  box-shadow: 0px 0px 0px #fff;
}
.btn:active{
  box-shadow: 0px 0px 0px #fff;
}



.lh200{
  line-height: 200px;
}
.lh100{
  line-height: 100px;
}
.lh50{
  line-height: 50px;
}
.hui6{
    color: #666;
}
.tc{
  text-align: center;
}
.hui9{
    color: #999;
}
.layui-fl{
    float: left !important;
}
.f12{
    font-size: 12px;
}
.f14{
    font-size: 14px;
}
.f16{
    font-size: 16px;
}
.f18{
    font-size: 18px;
}
.layui-fr{
    float: right !important;
}
.layui-pr{
    position: relative;
}
.cheng{
    color: #e35f13;
}
.red{
   color: #d9534f;
}
.green{
  color: #5cb85c;
}
.blue{
    color: #1e89e0;
}
.blue a{
    color: #1e89e0;
}
a.blue{
  cursor: pointer;
}
a.blue:hover,a.blue:focus{
    color: #1e89e0;
}
.ml1{
    margin-left: 10px;
}
.ml2{
    margin-left: 20px;
}
.ml3{
    margin-left: 30px;
}
.mt05{
    margin-top: 5px;
}
.mt1{
    margin-top: 10px;
}
.mr05{
    margin-right: 5px;
}
.mr1{
    margin-right: 10px;
}
.mt15{
    margin-top: 15px;
}
.mt2{
    margin-top: 20px;
}
.pull-right {
    float: right;
}
.mr2 {
    margin-right: 20px !important;
}
.mb1{
    margin-bottom: 10px;
}
.mt06{
    margin-top:6px ;
}


a.link,a.link:visited{
    color: #1e89e0 !important;
    text-decoration: none;
    cursor: pointer;
}
a.link:hover{
    color: #1379cc;
    text-decoration: none;
    cursor: pointer;
}


/*a.layui-btn{
  color: #fff !important;
}*/

.layui-btn-primary:hover{
    color: #1e89e0 !important;
    border-color:#1e89e0 !important;
}

.layui-btn-cheng{
  background-color: #eb6100;
}
.layui-btn-cheng:hover{
  background-color: #eb6100;
}
.layui-btn-normal{
  background-color: #1e89e0;
}
.layui-btn-normal:hover{
  background-color: #1e89e0;
}

.layui-layer-btn a{
  height: auto !important;
}

.btn-cheng {
    background-color: #eb6100;
    color: #fff !important;
}
.btn-cheng:hover {
    background-color: #dd630e;
    color: #fff;
}
.layui-btn-normal{
  color: #fff !important;
}
.layui-btn-normal:hover{
   color: #fff !important;
}
.btn-w10{
  width: 100%;
}

.plr15{
  padding: 0px 15px;
}
.fb{
  font-weight: bold;
}

.pr{
  position: relative;
}
.pa{
  position: absolute;
}
.dis-n{
  display: none;
}
.mm-btn {
    display: inline-block;
    width: 80px;
    padding: 2px 0 3px;
    margin-left: 5px;
    background: #518df1;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    z-index: 2;
    outline: 0;
    border: 1px solid transparent;
}
.mm-btn1 {
    display: inline-block;
    width: 80px;
    padding: 2px 0 3px;
    margin-left: 5px;
    background: #518df1;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    z-index: 2;
    outline: 0;
    border: 1px solid transparent;
}

.shouke-wrap{
    background:#e9e9e9;
    padding-top: 10px;
}

.shouke-list-top {
    background:#fff;
    border-radius: 4px;
}

.shouke-top {
    background:#fff;
    border-radius: 4px;
    padding:10px 10px;
}
.shouke-con{
    background:#fff;
    border-radius: 4px;
    padding: 10px; 
}

.quality-top {
  background:#fff;
  border-radius: 4px;
  padding:10px 0;
}

.shouke-list-top .btn{
    margin-left: 10px;
}
.shouke-list-top .form-control{
    width: 200px;
}


.shouke-list-con{
    background:#fff;
    border-radius: 4px;
    /*margin-top: 10px;*/
    padding: 10px;
}
.section-t b{
    font-weight: normal;
    font-size: 16px;
    padding-left: 14px;
    padding-top: 5px;
    float: left;
    color: #494949;
}
.section-t label.input_t{
    margin-bottom: 0px;
    font-weight: normal;
    vertical-align: middle;
}
.section-t a.btn{
    padding: 3px 10px;
}
.section-t .txt{
    padding-top: 7px;
    margin-left: 10px;
    float: left;
}
.section-t .txt span{
    color: #e35f13;
}
.section-t .txt span.blue{
  color: #1e89e0;
}

.section-t .layui-fr{
    line-height: 35px;
}

.section-t .layui-fr  .section-t-layui-nav{
    background:none;
    display: inline-block;
    line-height: 36px;
    vertical-align: top;
    padding: 0px;
}

.section-t .layui-fr .layui-nav-child{
    top: 42px;
}
.section-t .layui-fr .layui-nav-child dd a{
    line-height: 36px;
}

/*.section-t .layui-fr  .section-t-layui-nav .layui-this a{
    color: #333 !important;
}*/


.section-t .layui-fr  .section-t-layui-nav .layui-nav-child dd.layui-this a{
    color: #fff !important;
}

.section-t .layui-fr  .section-t-layui-nav li.layui-nav-item{
    line-height: 36px;
}
.section-t .layui-fr  .section-t-layui-nav li.layui-this::after{
    display: none;
}
.section-t .layui-fr  .section-t-layui-nav  .layui-nav-bar{
    display: none;
}
.section-t .section-t-sm{

}
.section-t .section-t-sm img{
    width: 30px;
    margin: 0px 5px;
}


.section-t a.section-load{
    color: #1e89e0;
    float: right;
    padding-top: 7px;
    position: relative;
}
.section-t a.section-load .section-load-img{
    position:absolute;
    top: 30px;
    right: 0px;
    z-index: 10;
    display: none;
}
.section-t a.section-load .section-load-img img{
    width: 200px;
}

.section-t{
    height: 45px;
    padding: 1px 20px 0 0;
    border-bottom: 1px solid #e9e9e9;
}

.section-t ul.tabs{
    list-style-type: none;
    display: inline-block;
    margin-bottom: 0px;
    font-size: 14px;
    padding-left: 36px;
    line-height: 14px;

}
.section-t ul.tabs li{
    float:left;
    padding: 0px 5px;
    margin-right: 22px;
    height: 43px;
}
.section-t ul.tabs li.current{
    border-bottom: 2px solid #488ffa;
    color: #488ffa;
}
.section-t ul.tabs li a{
    line-height: 30px;
    display: inline-block;
}
.section-t ul.tabs li.current a{
    color: #1e89e0;
}
.section-t ul.tabs li span.numberTip{
    background: #ded7d7;
    color: #999;
    margin-left: 5px;
    padding: 0px 1px;
    width: 28px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    line-height: 19px;
    vertical-align: baseline;
    border-radius: 10px;
}
.layui-table th.tc{
  text-align: center;
}
.section-t ul.tabs li.current span.numberTip{
    background-color: #f0ad4e;
    color: #fff;
}
.section-t ul.tabs li.go.current span.numberTip{
    background: #25cc3f;
    color: #fff;
}
.section-t ul.tabs li.wei.current span.numberTip{
    background-color: #f0ad4e;
    color: #fff;
}
.section-t ul.tabs li.yi.current span.numberTip{
    background: #ded7d7;
    color: #999;
}
.section-t .arror{
  padding-top: 7px;
  margin-left: 10px;
  float: left;
  color: #ff0000;
}
.section-t-classlist{
  padding-bottom: 15px;
}
.section-t-classlist .section-t-class{
  width: 30%;
  float: left;
  margin: 5px 1%;
 

}
.section-t-classlist .section-t-class{
  background: #ececec;
  border-radius: 20px;
}
.section-t-classlist .section-t-class.active{
   background: #1e89e0;
   border-radius: 20px;
}

.section-t-classlist .section-t-class a{
  color: #666;
  height: 32px;
  padding:8px 15px;
  display: inherit;
}

.section-t-classlist .section-t-class.active a{
  color: #fff;
  vertical-align: middle;
  display: inherit;
}
.section-t-classlist .section-t-class span.state{
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-block;
  background-color: #f3d66f;
  color: #4e3a15;
  text-indent: 0;
  margin-top: -4px;
  vertical-align: middle;
  line-height: 15px;
  text-align: center;
  font-size: 12px;
}
.section-t-classlist .section-t-class span.text{
  display: inline-block;
  width: 75%;
  margin-left: 2px;
  overflow: hidden;
  text-overflow:ellipsis;
  line-height: 14px;
  white-space: nowrap;
}
.section-t-classlist .section-t-class span.num{
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #fff;
  color: #1e89e0;
  text-align: center;
  vertical-align: top;
  line-height: 17px;
  margin-top: 2px;


}
.section-c{
    margin-top: 10px;
    /*overflow-x:auto;*/
    /*min-height: 500px;*/
} 
.section-c .kong{
    padding:150px 0px;
}
.kong.ptb50{
   padding:50px 0px;
} 
.kong.ptb100{
   padding:100px 0px;
} 
.section-c .kong.ptb50{
   padding:50px 0px;
} 

.section-c .kong.ptb100{
   padding:100px 0px;
} 
.section-c .kong .btn{
    margin-left: 5px;
}
div.Pagination{
    margin: 0px;
}
div.Pagination .pagination{
  margin: 15px 0px;
}

.layui-table tr th.bg-green{
    background: #dffce0;
}
.layui-table tr th.bg-cheng{
    background: #fef5e8;
}


.layui-table tr td.bg-green{
    background: #eefbef;
}
.layui-table tr td.bg-cheng{
    background: #fcf8f2;
}

.layui-table tr:hover td.bg-green{
    background: #f2f2f2 !important;
}
.layui-table tr:hover td.bg-cheng{
    background: #f2f2f2 !important;
}



.section-c .layui-table th{
    font-weight: normal;
    position: inherit;
}


.kong{

}
.kong img{
  width: 40%;
  margin-bottom: 0px;
  max-width: 130px;
}
.kong p{
  color: #666;
}
.section-c .layui-table td{
    font-size: 13px;
    position: inherit;
    padding: 7px 15px;
}
.section-c .layui-table td.edit{
  line-height: 30px;
  position: relative;
}
.section-c .layui-table td.edit span{
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
  max-width: 300px;
  min-width: 240px;
  display: inline-block;
  vertical-align: middle;
}

.section-c .layui-table td.edit i.fa-pencil{
   display: none;
   line-height: 30px;
   position:absolute;
   top: 10px;
   right: 15px;
    cursor: pointer;
}
.section-c .layui-table td .tablecon-edit{ 
  height: 30px;
  line-height: 30px; 
  width:100%; 
  font-size: 13px; 
  padding: 0 10px;  
  border: 1px solid #b5c9f2;
}


.section-c .layui-table td.edit:hover i.fa-pencil{
  display:inline-block;
 
  line-height: 30px;
}

.section-c .layui-table td.edit .edit_check{
   position: absolute;
   top:10px;
   display: none;
   right: 10px;
}
.section-c .layui-table td.edit .edit_check a{
  border: 1px solid #1e89e0;
  padding:0px 5px;
  border-radius: 4px;
  margin: 0px 5px;
  background: #fff;
  display:inline-block;
}
.section-c .layui-table td.edit .edit_check a i{
  color: #1e89e0;
}
.section-c .layui-table td.edit .edit_check a:first-of-type{
   border: 1px solid #eb6100;
}
.section-c .layui-table td.edit .edit_check a:first-of-type i{
  color: #eb6100;
}

.section-c .layui-table td.w200{
  width: 200px;
}
.section-c .layui-table td.w300{
  width: 300px;
}
.section-c .layui-table td.w400{
  width: 400px;
}



.section-c .layui-table tr td.td-zt{
    text-align: center;
}
.section-c .layui-table tr td.td-zt img{
    width: 20px;
}
.layui-table tr td .btn{
    padding: 2px 12px;
}
.layui-table tr td.red{
    color: #d9534f;
}
.layui-table tr td.green{
   color: #5cb85c;
}
.layui-table tr td.tc,.section-c .layui-table tr th.tc{
    text-align: center;
}


.layui-table tr.hui td{
    color: #999;
} 


.layui-btn-warm{
  color: #fff !important;
}
.layui-btn-green{
  background: #28c76f;
}

.section-c .homework-have{
    padding: 0px 10px;
}
.section-c .homework-have-top{
    /*line-height: 30px;*/
}
.section-c .homework-have-top .homework-have-top-l p.p1{
    margin-top: 10px;
    margin-left: 7px;
}
.section-c .homework-have-top .homework-have-top-c{
    line-height: 45px;
}   

.section-c .homework-have-top .homework-have-top-r{
    line-height: 35px;
    margin-top: 10px;
}
.section-c .homework-have-top .homework-have-top-r a{
    margin: 0px 5px;
}

/*我布置的课后巩固我发布的*/
.section-c .homework-set{
    padding: 0px 10px;
}

.section-c .homework-set-top .homework-set-top-l{
    float: left;
    line-height: 35px;
    font-size: 14px;
    font-weight: bold;
} 
.section-c .homework-set-top .homework-set-top-r{
    float: left;
}
.section-c .homework-set-top .homework-set-top-r ul{
    margin-left: 10px;
}
.section-c .homework-set-top .homework-set-top-r ul li{
   line-height: 35px;
}
.section-c .homework-set-top .homework-set-top-r ul li .iradio_square-blue{
    margin-right: 10px;
}
.section-c .homework-set-top .homework-set-top-r ul li label{
    font-weight: normal;
    margin-right: 15px;
}
.section-c .homework-set-top .homework-set-top-r ul li .h-slide{
    display: inline-block;
    position: relative;
    line-height: 35px;
}
.section-c .homework-set-top  .homework-set-top-r ul li .h-slide a .fa{
    margin-left: 5px;
    font-size: 18px;
    -webkit-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
}
.section-c .homework-set-top  .homework-set-top-r ul li .h-slide:hover a .fa{
    transform:rotate(180deg);
    -ms-transform:rotate(180deg);     /* IE 9 */
    -moz-transform:rotate(180deg);    /* Firefox */
    -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
    -o-transform:rotate(180deg);  /* Opera */
}
.section-c .homework-set-top  .homework-set-top-r ul li .h-slide .h-slide-box{
    position: absolute;
    top: 0px;
    width: 400px;
    top: 35px;
    background:#fff;
    border: 1px solid #ddd;
    padding:10px;
    border-radius: 6px;
    display: none;
    z-index: 1;
}
.section-c .homework-set-top  .homework-set-top-r ul li .h-slide .h-slide-box ul{
    margin-left: 0px;
}
.section-c .homework-set-top  .homework-set-top-r ul li .h-slide .h-slide-box ul li{
    line-height: 28px;
}
.section-c .homework-set-top  .homework-set-top-r ul li .h-slide .h-slide-box ul li label{
    margin-right: 0px;
}
.icheckbox_square-blue, .iradio_square-blue{
    display: inline-block;
    margin:0px 3px 0px 5px;
    vertical-align: middle;
    width: 14px;
    height: 14px;
}


.icheckbox_square-blue, .iradio_square-blue {
    background: rgba(0, 0, 0, 0) url("skins/square/blue1.png") no-repeat scroll 0 0;
}
.icheckbox_square-blue{
    background: rgba(0, 0, 0, 0) url("skins/square/blue1.png") no-repeat scroll 1px 0;
}

.iradio_square-blue{
    background-position: -126px 0;
}
.iradio_square-blue.hover{
    background-position: -84px 0;
}
.iradio_square-blue.checked{
    background-position: -98px 0;
}
.icheckbox_square-blue.hover{
    background-position: -14px 0;
}
.icheckbox_square-blue.checked{
    background-position: -28px 0;
}

.section-c .homework-set-con{
    padding-right: 180px;
}
.section-c .homework-set-con .layui-tab-title{
    margin: 0px -20px;
    height: 50px;
}
.layui-tab-title li{
    transition: all 0s;
    -webkit-transition: all 0s;
    line-height: 47px;
}

.section-c .homework-set-con .layui-tab-title .layui-this{
    border-top: 3px solid #1e89e0;
    color: #1e89e0;

}
.section-c .homework-set-con .layui-tab-title li i{
    font-size: 18px;
    margin: 0px 5px;
}
.section-c .homework-set-con .layui-tab-title  .layui-this::after{
    height: 47px;
}

.section-c .homework-set-con1 .homework-set-con1-t{
    padding: 10px 0px;
}



.homework-set-con1-t  .section-t-layui-nav{
    background:none;
    display: inline-block;
    line-height: 36px;
    vertical-align: top;
    padding: 0px;
}

.homework-set-con1-t .layui-nav-child{
    top: 35px;
}
.homework-set-con1-t .layui-nav-child dd a{
    line-height: 36px;
}

.homework-set-con1-t  .section-t-layui-nav .layui-this a{
    color: #333 !important;
}


.homework-set-con1-t  .section-t-layui-nav .layui-nav-child dd.layui-this a{
    color: #fff !important;
}

.homework-set-con1-t  .section-t-layui-nav li.layui-nav-item{
    line-height: 19px;
}
.homework-set-con1-t  .section-t-layui-nav li.layui-this::after{
    display: none;
}
.homework-set-con1-t .section-t-layui-nav  .layui-nav-bar{
    display: none;
}



.section-c .homework-set-con1 .homework-set-con1-t label{
    font-weight: normal;
    margin-right: 3px;
}



.section-c .homework-set-con2 .homework-set-con1-t .well{
    padding: 10px 19px;
}

.section-c .videolist{
    background: #fff;
    margin-top: 20px;
}
.section-c .videolist .videolist-t{
    /*height: 200px;
    line-height: 200px;*/
    text-align: center;
    position: relative;
    cursor: pointer;
}
.section-c  .videolist .videolist-t:hover .mengban{
    display: block;
}
.section-c .videolist .videolist-t span{
   
    color: #fff;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 55px;
    padding: 0px 3px;

}
.section-c .videolist .videolist-t span.axt{
   background: #e6564f;
}
.section-c .videolist .videolist-t span.dz{
   background: #1e89e0;
}
.section-c .videolist .videolist-t span.bd{
   background: #ec971f;
}

.section-c .videolist .videolist-t .mengban {
    width: 100%;
    height: 100%;
    background: #000;
        background-color: rgb(0, 0, 0);
    background-color: rgb(0, 0, 0);
    position: absolute;
    top: 0px;
    left: 0px;
    filter: Alpha(opacity=40);
    opacity: rgba(0,0,0,0.4);
    background-color: rgba(0,0,0,0.4);
    display: none;
}

.section-c .videolist .videolist-t .mengban i {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    left: 50%;
    margin-left: -25px;
}

.section-c .videolist .videolist-t .mengban i img {

    width: 50px;

}
.section-c .videolist .videolist-b{
    border: 1px solid #ddd;
    border-top: none;
    padding: 10px 10px;
}
.section-c .videolist .videolist-b a{
    margin: 0px 10px;
    color: #1e89e0;
}



/*授课界面文档*/
#wendangshow .videolist{
    cursor:pointer;
    margin-top: 10px;
}
#wendangshow .videolist .videolist-t{
    text-align: center;
    position: relative;
}

#wendangshow .videolist .videolist-t span{
   
    color: #fff;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 55px;
    padding: 0px 3px;

}
#wendangshow .videolist .videolist-t:hover .mengban{
    display: block;
}
#wendangshow .videolist .videolist-t .mengban{
        width: 100%;
        height: 100%;
        background: #000;
        background-color: rgb(0, 0, 0);
        position: absolute;
        top: 0px;
        left: 0px;
        filter: Alpha(opacity=40);
        opacity: rgba(0,0,0,0.4);
        background-color: rgba(0,0,0,0.4);
        display: none;
}
#wendangshow .videolist .videolist-t .mengban i{
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    left: 50%;
    margin-left: -25px;
}
#wendangshow .videolist .videolist-t .mengban i img{
    width: 50px;

}
#wendangshow .videolist .videolist-t span.axt{
   background: #e6564f;
}
#wendangshow .videolist .videolist-t span.dz{
   background: #1e89e0;
}
#wendangshow .videolist .videolist-t span.bd{
   background: #ec971f;
}
#wendangshow .videolist .videolist-b{
    border: 1px solid #ddd;
    border-top: none;
    padding: 10px 10px;
}



.homework-set-right{
    position: fixed;
    right: 65px;
    top: 35%;
    width: 120px;
    border: 1px solid #ddd;
}
.homework-set-right .homework-set-right-t{
    height: 45px;
    line-height: 45px;
    text-align: center;
    background:#d5eaff;
    color: #333;
    font-size: 14px;
}
.homework-set-right .homework-set-right-c{
    text-align: center;
    padding: 10px 0px 0px;
    background:#fff;
    line-height: 26px;
}
.homework-set-right .homework-set-right-b{
    background:#fff;
    padding: 10px 0px;
}
.homework-set-right .homework-set-right-b p{
    margin-bottom: 10px;
}
.homework-set-right .homework-set-right-b p a{
    /*padding: 0px 0px;*/
    border-radius: 6px;
}
.homework-set-right .homework-set-right-b p a.layui-btn-small{
  padding:0px 5px !important; 
  width: 70%;
  font-size: 12px;
   color: #fff !important;
   height: 30px;
   line-height: 30px;
}
.homework-set-right .homework-set-right-b p a:hover,.homework-set-right .homework-set-right-b p a:visited{
    color: #fff !important;
}


.modal label{

    font-weight: normal;
}




/*状态的图标*/
.btn-no{
    display: inline-block;
    padding: 6px 12px;
    line-height: 1.42857143;
}

.btn-no.cursord{
  cursor: default;
}

a.no-upload{
  /*   border: 1px solid #f0ad4e; */
    color: #1e89e0;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
   /* width: 75px;
    display:inline-table;*/
}
a.overdue{
    /* border: 1px solid #bdb9b9; */
    color: #bdb9b9;
    pointer-events:none;
    cursor: default;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*width: 75px;
    display:inline-table;*/
}
a.no-examine{
    /* border: 1px solid #5bc0de; */
    color: #f0ad4e;/* #5bc0de; */
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
   /* width: 75px;
    display:inline-table;*/
}
a.have-passed{
   /*  border: 1px solid #5cb85c; */
    color: #5cb85c;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
   /* width: 75px;
    display:inline-table;*/
}
a.have-refuse{
   /*  border: 1px solid #d9534f; */
    color: #d9534f;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*width: 75px;
    display:inline-table;*/
}
a.no-arrangement{
    /* border: 1px solid #f0ad4e; */
    color: #1e89e0;/* #f0ad4e; */
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
   /* width: 75px;
    display:inline-table;*/
}
a.have-arrangement{
    /* border: 1px solid #5cb85c; */
    color: #5cb85c;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*width: 75px;
    display:inline-table;*/
}



span.no-upload{
    border: 1px solid #f0ad4e;
    color: #f0ad4e;
    border-radius: 15px;
    padding: 3px 8px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
span.no-examine{
    border: 1px solid #5bc0de;
    color: #5bc0de;
    border-radius: 15px;
    padding: 3px 8px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
span.have-passed{
    border: 1px solid #5cb85c;
    color: #5cb85c;
    border-radius: 15px;
    padding: 3px 8px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
span.have-refuse{
    border: 1px solid #d9534f;
    color: #d9534f;
    border-radius: 15px;
    padding: 3px 8px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
span.no-arrangement{
    border: 1px solid #f0ad4e;
    color: #f0ad4e;
    border-radius: 15px;
    padding: 3px 8px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
span.have-arrangement{
    /* border: 1px solid #5cb85c; */
    color: #5cb85c;
    border-radius: 15px;
    padding: 3px 8px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.shouke-list-chose-con{
    background:#fff;
    border-radius: 4px;
    padding: 10px;
}


/*定向提问*/
.shouke-putquestion-top{
    background:#fff;
    border-radius: 4px;
    padding:10px 10px;
    line-height: 26px;
}
.shouke-putquestion-top .layui-fl b{
    font-weight: normal;
    font-size: 16px;
    padding-left: 20px;
    margin-right: 10px;
}
.shouke-putquestion-top .layui-fl span{
    color: #e35f13;
}
.shouke-putquestion-top .layui-fr{

}
.shouke-putquestion-top .layui-fr img {
    width: 30px;
    margin: 0px 5px;
}


.shouke-putquestion-con{
    background:#fff;
    border-radius: 4px;
    padding: 10px; 
    margin-top: 20px;
}

.shouke-stu-list{
     padding-bottom: 10px;
}
.shouke-stu-list ul{
    margin: 20px 0px;
}
.shouke-stu-list ul li{
    width: 8%;
    float: left;
    cursor:pointer;
    margin: 30px 1% 10px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #ddd;
    position: relative;
    padding-bottom: 10px;
}
.shouke-stu-list ul li.red{
    border: 1px solid red;
}
.shouke-stu-list ul li.over .portrait img{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);    
    -ms-filter: grayscale(100%);     
    -o-filter: grayscale(100%);       
    filter: grayscale(100%);
    filter: gray;
}
 
.shouke-stu-list ul li p{
    color: #e35f13;
    font-size: 12px;
    height: 14px;
}
.shouke-stu-list ul li .portrait img{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-top: -32px;
    border: 1px solid #ddd;
}
.shouke-stu-list ul li h3{
    margin-top: 10px;
    margin-bottom: 5px;
}
.shouke-stu-list ul li span{
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: -15px;
}
.shouke-stu-list ul li.on span,.shouke-stu-list ul li.red span,.shouke-stu-list ul li.over span{
    background:#fff;
}
.shouke-stu-list ul li span img{
    width: 30px;
}
@media screen (max-width: 960px){
    .layer-photos a{
        width: 100px;
        height: 100px;
    }   
}

/*授课右侧菜单*/
.shouke-wrap1{
    padding-right: 50px;
}


.lpk_fr_menu{
    position: fixed;
    background: #000;
    top: 0px;
    right: 0px;
    width: 35px;
    height: 100%;
    z-index: 9999;
}
.fr_menu_c{
    top: 18%;
    position: fixed;
    width: 35px;
    padding: 50px 0px;
    background: rgba(0,0,0,0.2);
    text-align: center;
}
.fr_menu_c .fr_menu_c_box{
    position: relative;
    margin: 10px 0px;
  height: 38px;
}
.fr_menu_c .fr_line{
    border-bottom:1px solid #b0adad;
    margin: 15px auto;
}
.fr_menu_c .fr_menu_c_box a{
    display: block;
    text-align: center;
    padding: 8px 0px;
    height: 38px;
}
.fr_menu_c .fr_menu_c_box a img{
  width: 30px;
}
.fr_menu_c .fr_menu_c_box .fr_menu_c_box_l{
    position: absolute;
    top: 4px;
    font-size: 12px;
    color: #fff;
    width: 90px;
    height: 30px;
    background: #666;
    text-align: center;
    line-height: 30px;
    opacity: 0;
    transition:right 1s,opacity 0.5s;
    -moz-transition:right 1s, opacity 0.5s;;
    -webkit-transition:right 1s,opacity 0.5s;
    -o-transition:right 1s,opacity 0.5s;
    -ms-transition:right 1s,opacity 0.5s;
    display: none;

}
.fr_menu_c_box_l{
    z-index: 10000;
}
.fr_menu_c .fr_menu_c_box .fr_menu_c_box_l1{
    background: #666;
    position: absolute;
    bottom: 0px;
    opacity: 0;
    width: 200px;
    height: 0px;
  z-index: 999999;
    transition:opacity 0.5s,height 0.01s;
    -moz-transition: opacity 0.5s,height 0.01s;
    -webkit-transition:opacity 0.5s,height 0.01s;
    -o-transition:opacity 0.5s,height 0.01s;
    -ms-transition:opacity 0.5s,height 0.01s;
    display: none;
}
.fr_menu_c .fr_menu_c_box .fr_menu_c_box_l1 h2{
    font-size: 20px;
}
.fr_menu_c .fr_menu_c_box .fr_menu_c_box_l1:after{
    content: "";
    position: absolute;
    border-top: 5px solid transparent;
    border-left: 7px solid #666;
    border-bottom: 5px solid transparent;
    right: -7px;
    bottom: 16px;
}
.fr_menu_c .fr_menu_c_box:hover .fr_menu_c_box_l{
    right: 35px;
    opacity: 1;
    display: block;
    right: 55px;
}
.fr_menu_c .fr_menu_c_box:hover .fr_menu_c_box_l1{
    opacity: 1;
    height: auto;
    padding: 10px;
    right: 35px;
    display: block;
}
.fr_menu_c .fr_menu_c_box .fr_menu_c_box_l:after{
    content: "";
    position: absolute;
    border-top: 5px solid transparent;
    border-left: 7px solid #666;
    border-bottom: 5px solid transparent;
    right: -7px;
    top: 9px;
}
.fr_menu_c .fr_menu_c_box a:hover{
    background:none;
}
.fr_menu_c_box_l1 a{
    font-size: 12px;
    color: #fff;
}


/*盾币弹出*/
.dunbi-layer{
    padding: 15px;
}
.dunbi-layer ul li{
    width: 120px;
    float: left;
    height: 120px;
    margin: 10px 12px;
    text-align: center;
    cursor: pointer;
    position: relative;
}
.dunbi-layer ul li img{
    width: 85px;
    height: 85px;
    padding: 5px;
    background: #efefef;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
}
.dunbi-layer ul li i{
    font-size: 11px;
    display: block;
    position: absolute;
    right: 8px;
    top: 2px;
    font-style: normal;
    background: #0089EC;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    line-height: 16px;
    border: 1px solid #fff;
    color: #fff;
}
.dunbi-layer ul li p{
    margin-top: 10px;
}
.layui-layer-nobg{
    box-shadow: 1px 1px 50px rgba(0,0,0,0) !important;
}


/*授课上讲课后巩固*/
.shouke-top{
    background:#fff;
    border-radius: 4px;
    padding:10px 10px;
    line-height: 26px;
}
.shouke-con {
    background: #fff;
    border-radius: 4px;
    margin-top: 15px;
    padding: 10px;
}
.shouke-con .layui-table th{
    text-align: center;
}
.shouke-lastwork-top .shouke-lastwork-top-l{
   
}
.shouke-lastwork-top .shouke-lastwork-top-t h2{
    font-size: 14px;
    margin: 35px 0px 0px 0px;
}
.shouke-lastwork-top .shouke-lastwork-top-c{
  width: 180px;
  text-align: center;
}
.shouke-lastwork-top .shouke-lastwork-top-c .circliful{
   margin-left: 40px;
}


.shouke-lastwork-top .shouke-lastwork-top-c .circliful .circle-info{
  display: none
}
.shouke-lastwork-top .shouke-lastwork-top-c .circliful .circle-text{
  color: #4689e2 !important;
  line-height: 80px !important;
}

a.layui-btn-yx{
  background: #4689e2;
  line-height: 32px;
  height: 32px;
  color: #fff !important;
}
a.layui-btn-yx:hover{
  color: #fff !important;
}

.shouke-lastwork-top a.lookcontent{
  float: right;
  margin-right: 15px;
}
.shouke-lastwork-top a.dunbicontent{
  float: right;
}


.shouke-lastwork-top .shouke-lastwork-top-c .circliful-txt{
    /*float: left;*/
    /*line-height: 110px;*/
    margin: 0px 10px;
    display: inline-block;
    font-size: 12px;
}
.shouke-lastwork-top .shouke-lastwork-top-c a.btn{
    margin-top:40px;
    margin-left: 80px;
}



.shouke-lastwork-con ul.ti_xu li{
  border: 1px solid #4689e2;
  background: #fff;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 32px;
  width: 36px;
  text-align: center;
  border-radius: 50%;
  color: #4689e2;
  font-size: 18px;
  margin: 10px;
  cursor: pointer;
}

.shouke-lastwork-con ul.ti_xu li.active{
  background: #4689e2;
  color: #fff;
}

.shouke-lastwork-con .ti_dashuju{
  border: 1px dashed #ddd;
  padding:10px 15px;
  line-height: 26px;
  border-radius: 8px;
}
.shouke-lastwork-con .ti_dashuju h2{
  font-weight: bold;
  font-size: 14px;
}

/*备课下面课后巩固*/
.beike-work-con{
    background:#fff;
    border-radius: 4px;
    margin-top: 0px;
    padding: 10px;
}
.navigation{
    line-height: 30px;
    margin-left: 15px;
}
.navigation a.current{
    color: #1e89e0;
}
.beike-work-con .section-t{
    margin: 0px -15px;
    padding-left: 10px;
}

.beike-work-con ul.tabs{
    padding-left: 20px;
}
.beike-work-con ul.tabs li{
    margin-right: 40px;
}
.beike-work-con ul.tabs li:last-child{
  margin-right: 0px;

}
.ti-box{
    padding: 0px 10px;
}
.ti-box p.tit span{
    color: #1e89e0;
}
.ti-single{
    border: 1px solid #ddd;
    margin: 10px auto;
    padding: 10px;
    padding-bottom: 0px;
    position:relative;
    width: 100%;
}
.ti-single:hover{
    border: 1px solid #1e89e0;
}
.ti-single span.gou{
    position: absolute;
    top: -2px;
    right: 0px;
}
.ti-single span.gou i{
    font-size: 30px;
    color: #999;
}
.ti-single span.gou.active i{
    color: #339933;
}

.ti-single .ti-single-l{
    width: 30px;
    text-indent: 10px;
    position: absolute;

}
.ti-single .ti-single-r{
    float: left;
    padding: 0px 0px 0px 30px;
	width: 100%;
}
.ti-single .ti-single-r .ti-single-tit img{
    margin: 10px 0;
    display: inherit;
}
.ti-single-tit p{
	    word-break: break-all;
}
.ti-single .ti-single-r .ti-single-con{
    margin-top: 5px;
}
.ti-single .ti-single-r .ti-single-con p{
    margin-bottom: 5px;
}
.ti-single .ti-single-b {
    color: #666;
    background:#f2f2f2;
    padding: 15px;
    margin: 0px -9px;
    margin-top: 5px;

}
.ti-single .ti-single-b a{
    color: #1e89e0;
    float: right;
    cursor: pointer;
}
.ti-single .ti-single-b a.btn{
    margin-top: -7px;
}
.ti-single.ti-single-small{
    border: none;
    margin-left: -15px;
}
.ti-single.ti-single-small:hover{
    border: none;
}

.student-manage-top{
    margin-top: 10px;
}




/*Spinner数字增减部分css*/
.wan-spinner {
  border: 1px solid #dddddd;
  display: inline-block;
}

.wan-spinner .minus,
.wan-spinner .plus,
.wan-spinner input {
  height: 30px;
  float: left;
  line-height: 1.5em;
  padding: 5px 10px;
  text-align: center;
}

.wan-spinner input {
  border: none;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  margin: 0;
  width: 40px;
}

.wan-spinner .minus,
.wan-spinner .plus {
  color: #333333;
  cursor: pointer;
  text-decoration: none;
}




/*备课下面我的课件*/

.section-c .courseware-con{
    padding: 0px 10px;
}
.section-c .courseware-con .layui-upload{
    padding: 10px;
}


.section-c .courseware-no-con{
    padding: 10px 10px;
}




/*班课的*/

/*顶部通用的*/



#frm {
    margin-top: 0 !important;
    background: #fff;
    padding: 10px 20px 0px;
    margin-bottom: 5px;
    position: relative;
    border-radius: 3px;
}

form #searchDiv > label,
#frm > label,
form.frm label {
  width: 140px;
  margin-right: 10px;
  float: left;
  padding: 0;
  margin-bottom: 10px;
  height: 32px;
  color: #aaaaaa;
}
form #searchDiv > label .select2-container,
#frm > label .select2-container,
form.frm label .select2-container {
  padding: 0;
}
.shouke-list-top label .form-control{
    width: 100%;
    font-weight: normal;
}

form.frm .btn,
#frm .btn {
  margin-right: 6px;
}

form #rightButtonsDiv {
    position: absolute !important;
    display: inline-block;
    right: 20px;
    top: 15px;
}
form #rightButtonsDiv:hover{
    right: 20px;
    top: 15px;
}
form #rightButtonsDiv #showMoreSelects {
    user-select: none;
    -webkit-user-select: none;
    padding-right: 0;
    margin-right: 0;
    border: none;
}
form #rightButtonsDiv #showMoreSelects:hover{
    color: #1e89e0;
}
form #rightButtonsDiv span.link {
    color: #aaa;
    margin: 0 6px 0 0;
    margin-right: 6px;
    display: inline-block;
    cursor: pointer;
    padding: 6px 8px;
    padding-right: 8px;
    border-radius: 3px;
    background-color: #fff;
    font-size: 14px;
    line-height: initial;
}
form .RangeWidth{
    width: 202px!important;
}
form #searchDiv {
    float: left;
    height: 42px;
    overflow-y: hidden;
    padding-right: 10px;
}
form #searchDiv.spread {
    height: auto;
    overflow-y: initial;
}









.classlie-box {
    display: inline-block;
}

.classlie-box span.show-col{
    cursor: pointer;
}

.classlie{
    position: absolute;
    right: 15px;
    box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    max-width: 580px;
    display: none;
    z-index: 10;
}

.classlie > .arrow, .classlie > .arrow::after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-bottom-color: transparent;
    border-style: solid;
}
.classlie .arrow{
    border-width: 11px;
    border-top-width: 11px;
    top: -11px;
    right: 40px;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0,0,0,0);
    border-bottom-color: rgba(0,0,0,.25);
}
.classlie .arrow::after{
    content: "";
    border-width: 10px;
    border-top-width: 10px;
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff;
}


.classlie .classlie-con{
    
    padding: 10px;
}

.mustChooseDiv .block-body,.optionalChooseDiv .block-body{
    margin: 0px 0 0px 10px;
}

.mustChooseDiv label span ,.optionalChooseDiv label span{
    width: 80px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
    line-height: 26px;
}
.mustChooseDiv .st-input,.optionalChooseDiv .st-input {
    width: auto;
    height: 16px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: initial;
}
.mustChooseDiv .block-header,.optionalChooseDiv .block-header{
    margin-top: 10px;
}
.mustChooseDiv .block-header .st-input,.optionalChooseDiv .block-header .st-input{
    margin-bottom: 10px;
}






/*模态框弹出的表格*/



/*知识点结构css*/
.shouke-list-top .shouke-list-topbox{

} 
.shouke-list-top .shouke-list-topbox b.mune{
  float: left;
  font-weight: normal;
  color: #666;
  margin: 10px 10px 0px 15px;
}

.shouke-list-top .select-subject-list{
    padding-top: 10px;
    padding-bottom: 0px;
    overflow: hidden;
}
.shouke-list-top  .select-subject-list li.select-title {
    width: 90px;
    color: #999;
    font-size: 14px;
    border: 0;
    margin: 0;
}
.shouke-list-top .select-subject-list li {
    float: left;
    text-align: center;
    font-size: 14px;
    font-family: 'Microsoft YaHei';
    overflow: hidden;
    border-radius: 5px;
    margin-right: 12px;
    margin-bottom: 10px;
    height: 25px;
    padding: 0px 15px;
    line-height: 22px;
}
.shouke-list-top .select-subject-list li a{
  color: #666;
}
.shouke-list-top .select-subject-list li.current {
    background: #1e89e0;
    color: #fff;
}
.shouke-list-top .select-subject-list li.current a {
    color: #fff;
}





/*教师编辑教案*/

.lesson-edit-box .ll-title{
  padding: 10px;
  font-weight: normal;
  font-size: 22px;
  text-align: center;
  border: 1px solid #fff;
  transition: border-color .3s;
}
.lesson-edit-box{
  padding: 15px;
  padding-top: 5px;
}
.lesson-edit-box .ll-title:hover{
  border: 1px solid #1e89e0;
}


.lesson-edit-box .lesson-edit-l{
  background: #fff;
  padding: 5px 10px;
  min-height: 500px;
}
.mm-panel{
  position: relative;
  padding:5px 10px;
}
.mm-heading {
    padding: 10px 0 10px 10px;
    margin: 10px 0;
    color: #518df1;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    line-height: 18px;
}

.mm-hover-show {
    border: 1px solid transparent;
    border-radius: 2px;
    transition: border-color .2s linear;
}

.mm-hover-show.active{
  border:1px solid #1e89e0;
}
.mm-hover-show.is-active-show,.mm-hover-show:hover {
 border-color:#518df1
}
.mm-btn-group {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}
.mm-btn-group.active{
  display: block;
}
.mm-btn-danger {
 background:#eb6100;
}
.mm-btn-radius {
 border-radius:2px
}
.mm-btn[disabled] {
 cursor:not-allowed;
 filter:alpha(opacity=65);
 box-shadow:none;
 opacity:.65
}


.mm-hover-show.is-active-show .mm-btn-group,.mm-hover-show:hover .mm-btn-group{
  display:block
}

.mm-body .es-tabs{
  position: relative;
}
.mm-body .es-hover:hover .mm-btn-group{
  display:block
}

.mm-body .q-blank{
  height: 20px;
}

.mm-body .mm-body-c{
  padding:10px 15px;
  border: 1px dashed #1e89e0;
}

/*知识导图的弹窗*/
#Knowledgetree .tree{
  margin: auto;
}

#Knowledgetree .tree li span.delLink,#Knowledgetree .tree li span.del,#Knowledgetree .tree li span.add{
  border: none;
}
#Knowledgetree .tree li span a{
  color: #1e89e0;
}

#jsmind_container{
      width:800px;
      height:500px;
}


jmnode {
    padding: 8px;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    border: 1px solid #000;
        border-top-color: rgb(0, 0, 0);
        border-right-color: rgb(0, 0, 0);
        border-bottom-color: rgb(0, 0, 0);
        border-left-color: rgb(0, 0, 0);
    font: 12px/1.125 Verdana,Arial,Helvetica,sans-serif;
        font-size: 12px;
}
jmnode.root {
  font-size:18px
}
jmnodes.theme-primary jmnode {
    background-color: #fff;
    color: #333;
    border-color: #000;
    font-size: 12px;
}
jmnodes.theme-primary jmnode:hover {
 background-color:#fff;
 border-color:#285e8e
}
jmnodes.theme-primary jmnode.selected {
 background-color:#fff;
 color:#333
}
jmexpander {
    width: 11px;
    height: 11px;
    display: block;
    line-height: 8px;
    font-size: 12px;
    text-align: center;
    border-radius: 6px;
    border-width: 1px;
    border-style: solid;
    cursor: pointer;
}
jmnodes.theme-primary jmnode.root {
 font-size:14px;
 background-color:#fff;
 color:#333;
 font-weight:700
}


/*课程教案编辑的右半部分*/
.lesson-edit-r{
  position: fixed;
  top:18px;
  right: 0px;
  overflow-y:auto;
}

.lesson-edit-r .lesson-edit-menu{
  background: #fff;
  padding:5px 15px;
}

.lesson-edit-r .lesson-edit-menu h3.tit{
  line-height: 20px;
  border-left:4px solid #4689e2;
  margin: 10px 10px;
  margin-left: -5px;
  margin-top: 5px;
  padding-left: 10px;
  margin-right: 0px;
}

.lesson-edit-r .lesson-edit-menu .layui-form p{
  margin: 10px 0px;
  margin-left: 30px;
}
.lesson-edit-r .lesson-edit-menu .layui-form p span{
  margin-left: 10px;
  cursor: pointer;
}

.lesson-edit-r .lesson-editr-uploadbtn{
  background: #fff;
}
.lesson-edit-r .lesson-editr-uploadbtn a.add-power{
  padding: 10px 15px;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1;
  white-space: nowrap;
  color: #333;
  text-align: center;
  outline: 0;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
  transition: background-color .3s ease-in,border-color .3s ease-in;
  color: #518df1;
  font-size: 14px;
  letter-spacing: 3px;
  border: 1px dashed #518df1;
  display: block;
  width: 100%;
}

.lesson-edit-r .lesson-editr-uploadbtn a.add-fzpower{
  padding: 10px 15px;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1;
  white-space: nowrap;
  color: #333;
  text-align: center;
  outline: 0;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
  transition: background-color .3s ease-in,border-color .3s ease-in;
  color: #518df1;
  font-size: 14px;
  letter-spacing: 3px;
  border: 1px dashed #518df1;
  display: block;
  width: 100%;
}



/*辅助展示*/

.lesson-edit-r .fuzhushow{
  background: #fff;
  padding-top: 1px;
}






.lesson-edit-r .fuzhushow h3.tit{
  line-height: 20px;
  border-left:4px solid #4689e2;
  margin: 10px 10px;
  padding-left: 10px;
}
.lesson-edit-r .fuzhushow .fuzhushowlist{
  height: 80px;
  overflow-y:auto;
}
.lesson-edit-r .fuzhushow .fuzhushowlist li{
  position: relative;
  height: 36px;
  margin-bottom: 4px;
  padding: 0 15px;
  margin:0px 10px;
  line-height: 36px;
  color: #333;
  cursor: pointer;
  border: none;
  transition: all .15s;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lesson-edit-r .fuzhushow .fuzhushowlist li img{
  width: 20px;
  margin-right: 10px;
  vertical-align: top;
  margin-top: 10px;
  float: left;
}
.lesson-edit-r .fuzhushow .fuzhushowlist li .module-form-control {
    float: left;
    width: 70%;
    height: 28px;
    font-size: 12px;
    padding: 6px;
    display: none;
    margin-top: 6px;
    border-radius: 0;
    box-shadow: none;
    border-color: #66afe9;
}

.lesson-edit-r .fuzhushow .fuzhushowlist li .module-btn-group {
    position: absolute;
    top: 3px;
    right: 0px;
    z-index: 6;
    width: 60px;
    display: none;
}
.lesson-edit-r .fuzhushow .fuzhushowlist li.active{
  background: rgba(150, 189, 245, 0.4)
}
.lesson-edit-r .fuzhushow .fuzhushowlist li.active .module-btn-group{
  display: block;
}


.lesson-edit-r .fuzhushow .fuzhushowlist li:hover{
  background: rgba(150, 189, 245, 0.4)
}
.lesson-edit-r .fuzhushow .fuzhushowlist li:hover .module-btn-group{
  display: block;
}
.lesson-edit-r .fuzhushow .fuzhushowlist li span.module-name {
    display: inline-block;
    width: 75%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 40px;
    font-size: 12px;
}

.lesson-edit-r .fuzhushow .fuzhushowlist li .module-btn-group .div0 {
    position: absolute;
    right: 25px;
}
.lesson-edit-r .fuzhushow .fuzhushowlist li .module-btn-group .div1 {
    display: inline-block;
}

.lesson-edit-r .fuzhushow .fuzhushowlist li .module-btn-group .div2 span{
   color: #1e89e0;
   display: inline-block;
   width: 20px;
}




#add-powerbtn{
  border: 1px solid #1e89e0;
  border-radius: 6px;
  padding: 6px 10px;
  color: #1e89e0;
  margin: 10px 10px 0px 15px;
  display: inline-block;
}

#add-powerbtn1{
  border: 1px solid #1e89e0;
  border-radius: 6px;
  padding: 6px 10px;
  color: #1e89e0;
  margin: 10px 10px 0px 15px;
  display: inline-block;
  margin-top: 0px;
}

#add-power .add-power-list{
  height: 320px;
  overflow-y:scroll;
}
#add-power .add-power-list li{
  position: relative;
  height: 36px;
  margin-bottom: 4px;
  padding: 0 15px;
  margin: 10px;
  line-height: 36px;
  color: #333;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: all .15s;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#add-power .add-power-list li.is-active-edit {
    border-color: transparent;
    background-color: rgba(151,190,244,.4);
}


#add-power .add-power-list li.is-active-edit .module-form-control{
  display: block;
}

#add-power .add-power-list li span.module-name{
  display: inline-block;
  width: 220px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#add-power .add-power-list li .module-form-control{
  float: left;
  width: 212px;
  height: 30px;
  padding: 6px;
  margin-top: 2px;
  border-radius: 0;
  box-shadow: none;
  border-color: #66afe9;
}
#add-power .add-power-list li .module-btn-group{
  position: absolute;
  top: 0;
  right: 6px;
  z-index: 6;
}

#add-power .add-power-list li .module-btn-group .div0{
  position: absolute;
  right: 25px;
}
#add-power .add-power-list li .module-btn-group .div0 span{
  font-size: 16px;
}

#add-power .add-power-list li .module-btn-group .div2 span{
  color: #1e89e0;
  width: 24px;
  height: 32px;
  display: inline-block;
  line-height: 32px;
  text-align: center;
}




#add-power .add-power-list li i.fa-pencil{
  display: none;
  line-height: 30px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}
#add-power .add-power-list li .edit_check{
  position: absolute;
  top: 10px;
  display: none;
  right: 10px;
}



#add-power .module-add-panel{
  height: 0;
  margin-top: 4px;
  border: 1px solid transparent;
  transition: height .3s ease;
}
#add-power .module-add-panel .module-add {
    position: relative;
    height: 36px;
    padding: 0 4px;
    line-height: 30px;
    border: 1px solid transparent;
    background-color: rgba(151,190,244,.4);
}
#add-power .module-add-panel .module-form-control {
    float: left;
    width: 212px;
    height: 30px;
    padding: 6px;
    margin-top: 2px;
    border-radius: 0;
    box-shadow: none;
    border-color: #66afe9;
}
#add-power .module-add-panel .module-btn-group {
    position: absolute;
    top: 0;
    right: 6px;
    z-index: 6;
}

#add-power .module-add-panel.is-active {
    height: 34px;
    margin: 10px;
    margin-bottom: 0px;
}

#add-power .module-add-panel.is-active .module-btn-group span{
  position: relative;
  display: inline-block;
  padding: 0 2px;
  margin-left: 6px;
  cursor: pointer;
  color: #666;
  font-weight: normal;
  font-size: 14px;
  line-height: 30px;
  color: #1e89e0;
}


#uploadfz{

}

#uploadfz h3{
  border-bottom: 1px solid #ddd;
  line-height: 35px;
  font-size: 14px;
  margin-bottom: 15px;
}



/*layer弹窗题库*/
#layer-itembank{
  padding:15px 15px 10px;
}


#layer-itembank .tiku-l{
  border:1px solid #e1e1e1;
  min-height:300px;
  padding: 0px 0px;
  width: 25%;
}



#layer-itembank .tiku-t{
  line-height: 40px;
}
#layer-itembank .tiku-t span{
  margin: 0px 3px;
  color: #eb6100;
}
#layer-itembank .tiku-l h2{
  background: #f8f8f8;
  font-weight: 700;
  text-indent: 1em;
  line-height: 40px;
  font-size:14px;
}
#layer-itembank .tiku-l h2 span{
  float: right;
  font-weight: normal;
  color: #eb6100;
  margin-right: 10px;
}

#layer-itembank .tiku-l .tiku-l-c{
  padding: 10px;
}

.itembank-con{
  margin-top: 10px;
}

#layer-itembank .tiku-l .tiku-l-c .erji {
    border: 1px solid;
    width: 17px;
    height: 17px;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    line-height: 13px;
    font-weight: 900;
    background: #1e89e0;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    vertical-align: top;
    line-height: 11px;
}
#layer-itembank .tiku-l .tiku-l-c  .sanji {
    border: 1px solid;
    width: 17px;
    height: 17px;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    line-height: 13px;
    font-weight: 900;
    background: #1e89e0;
    color: #fff;
    font-size: 20px;
    margin-top: 3px;
    cursor: Default;
    cursor: pointer;
    vertical-align: top;
    line-height: 11px;
}

#layer-itembank .tiku-l .tiku-l-c .sanjidiv {
    min-height: 18px;
}

#layer-itembank .tiku-l .tiku-l-c .siji{
  border: 1px solid;
    width: 17px;
    height: 17px;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    line-height: 13px;
    font-weight: 900;
    background: #fff;
    color: #fff;
   font-size: 20px;
  cursor:pointer;
  
}



#layer-itembank .tiku-r{
  width:75%;
  padding: 0px 15px;
  height:388px;
  overflow: auto;
}
/*题库选择年级*/

.tiku-sel-box{
  /*border:1px solid #ddd;*/
}
ul.tiku-sel{
  padding-top: 10px;
  padding-bottom: 5px;
  overflow: hidden;
}
ul.tiku-sel li.sel-title {
    width: 70px;
    color: #999;
    font-size: 14px;
    padding-right: 5px;
    border: 0;
    margin: 0;
}
ul.tiku-sel li{
  float: left;
  text-align: center;
  font-size: 14px;
  font-family: 'Microsoft YaHei';
  border-radius: 50px;
  margin-right: 12px;
  margin-bottom: 5px;
  /*min-width: 85px;*/
  height: 25px;
  padding: 0px 15px;
  line-height: 25px;
}
ul.tiku-sel li.current a{
  color: #1e89e0;
}
ul.tiku-sel.pt0{
  padding-top: 0px;
}

.tiku-sorthead{
  background: #f0f5fe;
  border:1px solid #ddd;
  padding: 10px;
}
.tiku-sorthead div{
  margin: 0px 8px;
}
.tiku-sorthead .layui-inline a i{
  margin: 0px 5px;
}
.tiku-sorthead .layui-inline a.active{
  color: #eb6100;
}


/*弹出框试题部分*/
.tiku-sortbody{
  margin-top: 5px;
}

.tab-header-c{
	    word-break: break-all;
}

.tiku-sortbody .es-tabs .tab-header > ul > li >.actv1{
      padding: 4px 8px;
    margin: 8px 4px;
    background: #1e89e0;
    border-radius: 6px;
    color: #fff;
}
.tiku-sortbody .es-tabs .tab-header > ul > li > a {
      padding: 13px 13px;
}
.tiku-sortbody .es-tabs {
    margin-bottom: 17px;
}
.tiku-sortbody .xuanzhong2{
  color:red;
}
.tiku-sortbody .xuanzhong3{
  color:red;
}
.tiku-sortbody .xuanzhong4{
  color:red;
}
.tiku-sortbody .lan{
  float:right;
  background-color: rgba(54, 169, 206, 1);
  text-align: center;
  line-height:30px;
  color: #FFFFFF;
  margin-right:15px;
  border: none;
  border-radius: 5px;
}
.tiku-sortbody .qiehuan{
  float:right;
  text-align: center;
  line-height:30px;
  color: #FFFFFF;
  margin-right:15px;
  border: none;
  border-radius: 5px;
}
.tiku-sortbody .lan>a{
  color: #FFFFFF;
}


.tiku-sortbody .es-hover:hover{
      border: 1px solid #057ee1;
    cursor:pointer;
}
.tiku-sortbody .addques {
    height: 32px;
    width: 100px;
    line-height: 32px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    background-image: url(../images/btn_bg.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;
}
.tiku-sortbody .tab-header .tab-header-tit{
  font-size: 14px;
  width: 40px;
  text-align: center;
  margin: 0px 0px;
  line-height: 20px;
  float: left;
  display: inline;
}
.tiku-sortbody .tab-header .tab-header-tit.mt1{
  margin-top: 10px;
}
.tiku-sortbody .tab-header .tab-header-c{
  border-bottom: 0px dashed #ddd; 
  padding-bottom: 0px; 
  overflow: hidden;
  margin: 10px 0px 10px;
  padding-right: 30px;
}
.tiku-sortbody .tab-header .tab-header-c p{
  word-break:break-all;
}
.tiku-sortbody .tab-header .tab-header-jiexi{
  padding: 10px 0px 10px 40px;
  border-top: 1px dashed #ddd;
  display:block;
}


.tiku-sortbody .tab-header.es-m{
  border-top: none;
  position: relative;
} 






.tiku-sortbody .delques {
    height: 32px;
    width: 100px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    background-image: url(../images/btn_bg.png);
    background-repeat: no-repeat;
    background-position: -150px -100px;
}

.tiku-sortbody .detail {
    background-image: url(../images/icon_bg.png);
    background-repeat: no-repeat;
    background-position: 0 -347px;
    width: 70px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    padding-left: 22px;
    font-size: 12px;
    color: #057ee1;
    cursor: pointer;
    box-sizing: border-box;
    float:right;
    margin:8px 10px 5px;
}



.tiku-sortbody .update_time{
  display:inline-block;
  margin:0px 14px;
  line-height: 38px;
  font-size: 12px;
}
.tiku-sortbody .quesdiv{
  margin-bottom: 10px;
  line-height: 14px;
  margin-left: 40px;
}
.tiku-sortbody .quesdiv .select1{
  vertical-align: top; display: inline-block;
 /* width: 24%;*/
}


.tiku-sortbody .tab-header .tab-header-b{
  line-height: 35px;
  background:#f2f2f2;
}

.tab-header .quesdiv-pd{
  margin:10px 0px 10px 40px;
}

#edui_fixedlayer{
  z-index: 10000000000000000000000 !important;
}







#itembank-add .edui-default.edui-editor{
  width: 100% !important;
}
#siwei .edui-default.edui-editor,#siwei .edui-editor-iframeholder{
  width: 100% !important;
}
#editnormal1 .edui-default.edui-editor,#editnormal1 .edui-editor-iframeholder{
  width: 100% !important;
}

#editnormal12 .edui-default.edui-editor,#editnormal12 .edui-editor-iframeholder{
  width: 100% !important;
}
.layui-form-item .edui-default.edui-editor,.layui-form-item .edui-editor-iframeholder{
  width: 100% !important;
}
#itembank-add .edui-editor-iframeholder{
  width: 100% !important;
}




/*教案展示*/
.lesson-edit1-box .ll-title:hover{
  border: 1px solid #fff;
}

.lesson-edit1-box .mm-hover-show:hover{
  border: 1px solid #fff;
}
.lesson-edit1-box .es-tabs:hover{
  border: 1px solid #e1e1e1;
}










/*题库上导入试题部分*/
.leadin-que{
  margin-top: 15px;
}

.leadin-que .leadin-que-l{
  padding: 132px 0px;
  margin-top: 15px;
  background: #f8f8f8;
  width: 100%;
}
.leadin-que .leadin-que-c{
  line-height: 400px;
  text-align: center;
}
.leadin-que .leadin-que-rz{
  padding: 155px 0px;
  margin-top: 15px;
  background: #f8f8f8;
  width: 100%;
}
.leadin-que .leadin-que-l-con{
  border: 1px solid #Ddd;
  padding: 10px;
  margin-top: 10px;
}
.leadin-que .leadin-que-l-con .warn{
  position: absolute;
  top: 0px;
  width: 15px;
  right: 10px;
}


/*右侧部分*/
.leadin-que .leadin-que-r1{
  padding: 15px;
  margin-top: 15px;
  height: 630px;
  padding-left: 0px;
 /*  overflow-y:auto; */
  border: 1px solid #ddd;
  width: 100%;
}


.leadin-que-r2 .leadin-que-r2-1{
   padding: 15px;
  margin-top: 15px;
  padding-left: 0px;
  border: 1px solid #ddd;
  width: 100%;
  padding-right: 0px;
  overflow-y:hidden;
}




.leadin-que .leadin-que-r1 .edui-editor{
  width: 100% !important;
}
.layui-form .edui-editor{
  width: 100% !important;
}

.layui-form-select dl{
  z-index: 10001;
}




/*后期改动知识点*/
.knowsel-box{
  position: absolute;
  width: 800px;
  top: 40px;
  z-index: 9999;
  
}
.knowsel-box .knowsel-box-t{
  line-height: 26px;
  position: absolute;
  top:-30px;
  right: 0px;

}
.knowsel-box .knowsel-box-t a{
  margin: 0px 10px;
}
.knowsel-box .knowsel-box-c{
   border: 1px solid #ddd;
   padding:10px 0px 0px;
   background: #fff;
   border-radius: 8px;
}
.knowsel-box .knowsel-box-c ul{
  max-height: 200px;
  overflow-y:auto;
}
.knowsel-box .knowsel-box-c ul li{
  padding: 0px 10px;
  cursor:pointer;
  line-height: 30px;
}
.knowsel-box .knowsel-box-c ul li:hover{
  background: #f2f2f2;
}



.knowsel-box .knowsel-box-c1{
   border: 1px solid #ddd;
   padding:10px;
   background: #F5F9FF;
   border-radius: 8px;
}
.knowsel-box .knowsel-box-c1 ul{
  width: 33%;
  float: left;
  background: #fff;
  height: 200px;
  border:1px solid #d5e4fa;
  overflow-y:auto;
}
.knowsel-box .knowsel-box-c1 ul li{
  line-height: 30px;
  cursor: pointer;
  padding: 0px 8px;
}
.knowsel-box .knowsel-box-c1 ul li i{
  float: right;
  font-size: 18px;
  color: #999;
  line-height: 30px;
}
.knowsel-box .knowsel-box-c1 ul li.active{
  border: 1px solid #9cd7fc;
  background-color: #dff1fb;
}



.knowsel-box.knowsel-box1{
  width: 480px;
  top: 70px;
}


/*布置试卷弹窗*/
#layer-choseclass .layui-form-item{
  margin-bottom: 10px;

  
}

.imguploads_input{
	left:130px;
}


/*教研教师端首页前端*/
.t_index_t{
  margin-top:0px;
}
.t_index_t .col-md-8.col-sm-8{
  width: 65%;
}
.t_index_t .col-md-4.col-sm-4{
  width: 35%;
  padding-left: 10px;
}

.t_index_t_wu{
  background: #Fff;
  /*margin-top: 15px;*/
  border-top: 1px solid #ddd;
  padding: 15px 20px;
  text-align: center;
}
.t_index_t_wu_c{
  /*float: left;*/
  display: inline-block;
  /*width: 16%;*/
  /*height: 145px;*/
  margin-right: 5%;
  /*background: #000;*/
  color: #333;
}
.t_index_t_wu_c h2{
  text-align: center;
  /*font-size: 46px;
  margin-top: 25px;*/
  color: #4689e2;
  font-weight: bold;
  display: inline-block;
}
.t_index_t_wu_c p{
  text-align: center;
  /*margin-top:25px;*/
  display: inline-block;
}
/*.t_index_t_wu_c.t_index_t_wu_c1{
   background: #65cea7;
}
.t_index_t_wu_c.t_index_t_wu_c2{
   background: #5bc0de;
}
.t_index_t_wu_c.t_index_t_wu_c3{
   background: #f0ad4e;
}
.t_index_t_wu_c.t_index_t_wu_c4{
   background: #428bca;
}

.t_index_t_wu_c.t_index_t_wu_c5{
  background: #d9534f;
  margin-right: 0px;
}*/



/*首页消息通知部分*/
.t_index_t_xt{
  padding: 15px 0px;
  background: #fff;
  margin-top: 10px;
}
.t_index_title{
  border-bottom: 1px solid #ddd;
  padding: 0px 15px;
  padding-bottom: 13px;
}
.t_index_title h2{
  font-size: 16px;
}

.t_index_title h2 img{
  width: 20px;
  margin-right: 10px;
}

.t_index_title h2 span{
  float: right;
  font-size: 12px;
  color: #999;
  margin-right: 40px;
}
.t_index_title h2 a.more{
  float: right;
  color: #999;
  font-size: 12px;
}
.t_index_title h2 span a{
  color: #999;
}
.t_index_t_xt .t_index_t_xt_ckong{
  height: 145px;
  line-height: 280px;
  text-align: center;
  color:#bdb9b9;
}
.t_index_t_xt .t_index_t_xt_c{
  height: 380px;
  margin-top: 15px;
}
.t_index_t_xt .t_index_t_xt_c ul{
  height: 300px;
}
.t_index_t_xt .t_index_t_xt_c ul li{
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 40px;
} 
.t_index_t_xt .t_index_t_xt_c ul li.active a{
  background: #1e89e0;
  border-radius: 6px;
  padding: 3px 5px;
  color: #fff;
}
.t_index_t_xt .t_index_t_xt_c .maintubox{
  padding-left: 0px;
}
.t_index_t_xt .t_index_t_xt_c .maintu{
  width: 100% !important;
  height: 380px;
}

/*首页日历*/
span.ketype{
  border-radius: 15px;
  padding: 3px 8px;
  border:1px solid #5bc0de;
  color: #5bc0de;
  font-size: 12px;
  margin-right: 5px;
}
span.ketype.cheng{
  color: #eb6100;
  border: 1px solid #eb6100;
}
.t_index_t_rl{
  background: #fff;
  height: 458px;
  padding: 15px 0px 0px 0px;
}

.t_index_t_rl .t_index_t_rl_ckong{
  height: 400px;
  line-height: 400px;
  text-align: center;
  color: #bdb9b9;
}
.t_index_t_rl .t_index_t_rl_ckong i{
  font-size: 20px;
  margin-right: 5px;
}

.t_index_t_rl .t_index_t_rl_c{
  padding: 10px 10px 10px 80px;
  margin-top: 8px;
  height: 395px;
  overflow-y:auto;
}
.t_index_t_rl .t_index_t_rl_c ul{
    border-left:1px solid #ddd;
}
.t_index_t_rl .t_index_t_rl_c ul li{
  padding-left: 15px;
  position: relative;
 /*  height: 57px; */
}
.t_index_t_rl .t_index_t_rl_c ul li span.ketype{
  position: absolute;
  left: -60px;
  top: 15px;
}



.t_index_t_rl .t_index_t_rl_c ul li span.ketype::after{
  content: "";
  border-top: 1px solid #4689e2;
  width: 15px;
  position: absolute;
  top: 10px;
  right: -15px;
}

.t_index_t_rl .t_index_t_rl_c ul li span.ketype.cheng{
  color: #4689e2;
  border: 1px solid #4689e2;
}
.t_index_t_rl .t_index_t_rl_c ul li span.dian{
  position: absolute;
  left: -6px;
  top: 21px;
  background: #4689e2;
  width: 12px;
  border-radius: 50%;
  height: 12px;

}
.t_index_t_rl .t_index_t_rl_c ul li h2{
  font-size: 16px;
  margin-bottom: 5px;
  padding-top:5px;
}
.t_index_t_rl .t_index_t_rl_c ul li p{
  font-size: 12px;
  color: #999;
}


.t_index_c{
    /*margin-top: 15px;*/
    margin-bottom: 20px;
}
.t_index_t_qk{
  background: #fff;
  margin-top: 10px;
  padding: 15px 0px 10px;
}
.t_index_t_qk .t_index_t_qk_ckong{
  height: 171px;
  line-height: 185px;
  text-align: center;
  color: #bdb9b9;
}

.t_index_t_qk .t_index_t_qk_c{
  padding: 22px 5px 16px;
}

.t_index_t_qk .t_index_t_qk_c h2{
  text-align: center;
  font-size: 24px;
  margin: 25px 0px 10px 0px;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item{
  width: 20%;
  float: left;
  padding: 10px 0px;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dt{
  font-weight: normal;
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
  color: #666;
}

.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dt span{
  font-size: 12px;
  font-weight: bold;
  color: #666;
}


.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress{
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: none;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress:after{
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress > span{
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress .progress-left{
    left: 0;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress .progress-bar{
    width: 100%;
    height: 100%;
    background: none;
    border-width: 2px;
    border-style: solid;
    position: absolute;
    top: 0;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress .progress-left .progress-bar{
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress .progress-right{
    right: 0;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.green .progress-right .progress-bar{
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-01 1.8s linear forwards;
}

.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.blue .progress-right .progress-bar{
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-02 1.8s linear forwards;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.yellow .progress-right .progress-bar{
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-03 1.8s linear forwards;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.pink .progress-right .progress-bar{
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-04 1.8s linear forwards;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.zi .progress-right .progress-bar{
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-05 1.8s linear forwards;
}







.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress .progress-value{
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 2px solid #ebebeb;
    font-size: 16px;
    line-height:50px;
    text-align: center;
    position: absolute;
    top: 7.5%;
    left: 7.5%;
}

.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.green .progress-bar{
    border-color: #4689e2;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.green .progress-value{
    color: #4689e2;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.green .progress-left .progress-bar{
    animation: loading-1 1.2s linear forwards 1.8s;
}


.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.blue .progress-bar{
    border-color: #4689e2;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.blue .progress-value{
    color: #4689e2;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.blue .progress-left .progress-bar{
    animation: loading-2 1.5s linear forwards 1.8s;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.yellow .progress-bar{
    border-color: #4689e2;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.yellow .progress-value{
    color: #4689e2;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.yellow .progress-left .progress-bar{
    animation: loading-3 1s linear forwards 1.8s;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.pink .progress-bar{
    border-color: #63c6f2;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.pink .progress-value{
    color: #63c6f2;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.pink .progress-left .progress-bar{
    animation: loading-4 0.4s linear forwards 1.8s;
}


.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.zi .progress-bar{
    border-color: #8b99ed;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.zi .progress-value{
    color: #8b99ed;
}
.t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dd .progress.zi .progress-left .progress-bar{
    animation: loading-5 1.2s linear forwards 1.8s;
}



.t_index_t_rk{
  /*height: 230px;*/
  background: #fff;
  padding-top: 15px;
}
.t_index_t_rk .t_index_t_rk_c{
  padding: 10px 15px;
}
.t_index_t_rk .t_index_t_rk_c ul li{
  width: 16.6%;
  float: left;
}
.t_index_t_rk .t_index_t_rk_c ul li a{
  width: 70px;
  height: 80px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.t_index_t_rk .t_index_t_rk_c ul li a span {
    display: block;
    /*background-color: #4ec051;*/
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    /*height: 40px;*/
    font-size: 35px;
    line-height: 40px;
    color: #fff;
}
.t_index_t_rk .t_index_t_rk_c ul li a span img{
  margin-top: 6px;
  width: 50px;
}
.t_index_t_rk .t_index_t_rk_c ul li a i {
    color: #333;
    display: block;
    height: 28px;
    font-weight: normal;
    font-style:normal;
    line-height: 28px;

    /*border: 1px solid #4ec051;*/
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}




.t_index_b{
  margin-top: 15px;
  margin-bottom: 15px;
}
.t_index_b .t_index_b_kc{
  padding: 15px 0px;
  background: #fff;
}
.t_index_b_kc_ckong{
  height: 220px;
  line-height: 220px;
  text-align: center;
  color: #bdb9b9;
}
.t_index_b_kc_c{
  padding: 0px 10px;
}
.t_index_b_kc_c ul li{
  line-height: 45px;
}
.t_index_b_kc_c ul li p img{
  width: 30px;
  margin:0px 5px;
}

.t_index_b_kc_c_item{
  width: 15%;
  float: left;
  margin: 0px 0.83333%;
  margin-top: 12px;
  text-align: center;
  background: url("../images/t_indexkc.png") no-repeat;
  background-size:100% 100%;
  padding: 15px 0px 5px;
}
.t_index_b_kc_c_item h2{

}
.t_index_b_kc_c_item h2 img{
  width: 24px;
}
.t_index_b_kc_c_item p{
  line-height: 20px;
  font-size: 14px;
  height: 40px;
  color: #666;
  margin: 3px auto;
} 
.t_index_b_kc_c_item h3{
  font-size: 16px;
}


/*授课界面副班随机提问弹窗*/

#layer-fubansj ul li{
  line-height: 45px;
  border-bottom: 1px dashed #ddd;
}
#layer-fubansj ul li a{

}



.message-t{
  height: 80px;
} 


.message-btngroup{
  margin-top: 35px;
  margin-left: 10px;
}
.message-btngroup .btn{
  margin: 0px 10px;
}
.message-c label{
  margin-left: 3px;
}
.message-c .layui-table td{
  padding: 10px 15px;
  cursor: pointer;
}
.message-c .hui9 a{
  color: #999;
}


/*教师监控*/
.teachcontrol-l-close{
   position: fixed;
   top: 50%;
   left: 0px;
   width: 25px;
   margin-top: -60px;
   background: #1e89e0;
   padding: 10px 5px;
   font-size: 14px;
   color: #fff;
   border-radius: 0px 4px 4px 0px;
   cursor: pointer;
 }


 .teachcontrol-l-open{
  background: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px;
  min-height: 650px;
  width: 290px;
 }


 .teachcontrol-l-open .teachcontrol-l-search{
  margin-top: 10px;
}


.icon-input-group{
      position: relative;
      display: inline-block;
}
.teachcontrol-l-search .icon-input-group i{
   position: absolute;
    top: 10px;
    left: 10px;
    font-size: 16px;
    color: #aeaeae;
   
    z-index: 100;
}
 .teachcontrol-l-open .teachcontrol-l-search #pcSearch{
  padding-left: 30px;
}

 .teachcontrol-l-open .teachcontrol-l-search a.link{
  line-height: 35px;
  margin-left: 10px;
}

 .teachcontrol-l-open ul li{
  float: left;
  width: 25%;
  line-height: 30px;
  text-align: center;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
 }

 .shouke-top.ml30{
  margin-left: 300px !important;
 }
  .shouke-con.ml30{
    margin-left: 300px !important;
  }

 .teachcontrol-l-open a.closeteachcontrol-l{
    font-size: 30px;
    position:absolute;
    top: 100px;
    width: 30px;
    height: 30px;
    background: rgba(30,137,224,0.8);
    right: -15px;
    padding: 0px 5px;
    border-radius: 50px;
    text-align: center;
 }
  .teachcontrol-l-open a.closeteachcontrol-l i{
    font-size: 30px;
    color: #fff;
  }


  /*审核课件用的css*/

.coursewareaudit-l ul{
    border-left: 1px solid #Ddd;
    border-top: 1px solid #ddd;
 }

.coursewareaudit-l ul li{
  border: 1px solid #ddd;
  margin-top: -1px;
  border-left: 0px;
  position: relative;
}
.coursewareaudit-l ul li a{

}
.coursewareaudit-l ul li a:hover{
  color: #1e89e0;
}
.coursewareaudit-l ul li.active:after{
  content: "";
  width: 5px;
  height: 5px;
  background: #1e89e0;
  position: absolute;
  border-radius: 50%;
  top: 5px;
  right: 5px;
  z-index: 2;
}
.coursewareaudit-l ul li .delimg{
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 3;
  display: none;
}
.coursewareaudit-l ul li.current a{
  color: #1e89e0;
}









/*资料库首页*/
.ziliao-wrap {
    padding-top: 10px;
    background: #e9e9e9;
}
.ziliao-index-top{
  background: #fff;
  padding: 10px 0px 22px;
  position: relative;
}

.ziliao-index-top .ziliaotit{
  position: absolute;
  top: 20px;
  border-left:5px solid #4689e2;
  left: 0px;
  padding-left: 10px;
  font-size: 18px;
}


.ziliao-index-top .suosuobox{
  text-align: center;
  margin: 0px auto;
  width: 480px;
  position: relative;

}
.ziliao-index-top a.uoload{
  margin-right: 15px;
}
.ziliao-index-top .suosuobox .layui-input{
  display: inline-block;
  max-width: 600px;
  border-radius: 0px;
  line-height: 32px;
  height: 32px;
  vertical-align: middle;
  padding-left: 40px;
  border: 2px solid #4689e2 !important;
  border-radius: 30px;
  padding-right: 70px;

}

.ziliao-index-top .suosuobox .searchimg{
  position: absolute;
  top: -2px;
  left: 3px;
}



.ziliao-index-top .suosuobox button.layui-btn{
  border-radius: 0px;
  height: 32px;
  border-radius: 30px;
  outline: none;
  border: none;
  line-height: 32px;
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0px 20px;
  font-size: 16px;
}
.ziliao-index-top .layui-form-item{
  margin-bottom: 0px;
}
.ziliao-index-top .layui-form-item a.shaixuan{
  height: 18px;
  display: inline-block;
  margin-top: 5px;
  vertical-align: middle;
  color: #1e89e0;
}
.ziliao-index-top .suosuobox .layui-input:focus{
  /*border: 1px solid #1e89e0 !important;*/
}
.ziliao-index-top  .layui-form-checkbox[lay-skin="primary"] span{
  height: 18px;
}
.ziliao-index-con{
  margin-bottom: 30px;
  background: #fff;
  padding:15px;
}
.ziliao-index-con .layui-col-md3{
  width: 20%;
  padding-bottom: 30px;
  background: #fff;
  height: 480px;
  overflow-y:hidden;
 

}

.ziliao-index-con .ziliao-index-con1,.ziliao-index-con .ziliao-index-con5{
  margin-top: 35px;
   box-shadow: 2px 2px 2px #ddd;
    border: 1px solid #ddd;
   height: 400px;
   margin-left: -1px;
   border-radius: 15px 15px 0px 0px;
}
.ziliao-index-con .ziliao-index-con2,.ziliao-index-con .ziliao-index-con4{
  margin-top: 15px;
   box-shadow: 2px 2px 2px #ddd;
    border: 1px solid #ddd;
   height: 440px;
   margin-left: -1px;
   border-radius: 15px 15px 0px 0px;


}
.ziliao-index-con .ziliao-index-con3{
  margin-top: 0px;
   box-shadow: 2px 2px 2px #ddd;
   border: 1px solid #ddd;
   height: 466px;
   margin-left: -1px;
   border-radius: 15px 15px 0px 0px;
   position: relative;
   z-index: 2;
}




.ziliao-index-con .ziliao-index-con1 .ziliao-index-con1-t{
  position: relative;
  height: 40px;
  border-radius: 8px 8px 0px 0px;
  background: #63c6f2;
  text-align: center;
  color: #fff;
  font-size: 14px;
} 



.ziliao-index-con .ziliao-index-con2 .ziliao-index-con1-t{
  background: #8b99ed;
  height: 42px;
}
.ziliao-index-con .ziliao-index-con3 .ziliao-index-con1-t{
  background: #4689e2;
   height: 46px;
   padding-top: 5px;
}
.ziliao-index-con .ziliao-index-con4 .ziliao-index-con1-t{
  background: #8b99ed;
  height: 42px;
}
.ziliao-index-con .ziliao-index-con5 .ziliao-index-con1-t{
  background: #63c6f2;
}


.ziliao-index-con .ziliao-index-con1 .ziliao-index-con1-t .himg{
  width: 39px;
  height: 39px;
  margin-right: 5px;
}

.ziliao-index-con .ziliao-index-con1 .ziliao-index-con1-t .bimg{
  position: absolute;
  bottom: 8px;
  right: 8px;
}



.ziliao-index-con .ziliao-index-con1.ziliao-index-con3 .layui-table td{
  padding: 8.5px 3px;
  font-size: 13px;
}

.ziliao-index-con .ziliao-index-con1 .layui-table td,.ziliao-index-con .ziliao-index-con5 .layui-table td{
  padding: 5.5px 3px;
  font-size: 12px;
}
.ziliao-index-con .ziliao-index-con2 .layui-table td,.ziliao-index-con .ziliao-index-con4 .layui-table td{
  padding: 7.4px 3px;
  font-size: 12px;
}



.chrome10px{ 
   -webkit-transform:scale(0.8);
    -webkit-transform-origin: 0 0;
    display: inline-block;
    font-size:10px;
 }

 .chrome9px{ 
   -webkit-transform:scale(0.7);
    -webkit-transform-origin: 0 0;
    display: inline-block;
    font-size:9px;
 }



.ziliao-index-conb-c ul li.allziliao_li a{
  color: #1268da;
}





















.my-ziliao-con .ziliao-cont{
  background: #fff;
  /*padding: 15px;*/
}

.my-ziliao-con .ziliao-cont .layui-input{
  height: 28px;
  line-height: 28px;
}

.ziliao-index-conb{
  background: #fff;
  padding: 15px;
}
.ziliao-index-conb .tit {
    float: left;
    font-weight: normal;
    color: #333;
    border-left: 3px solid #1e89e0;
    padding-left: 10px;
    font-size: 16px;
}

.ziliao-index-conb-c ul{
  margin: 20px auto 0px;
}
.ziliao-index-conb-c ul li{
  float: left;
  margin-right: 15px;
}

.ziliao-index-conb-c ul li a.no-examine{
    
}

.ziliao-cont span.search_tool_tf{
    border: 1px solid #ddd;
    padding:5px 10px 4px 20px;
    cursor: pointer;
}

.ziliao-cont span.search_tool_tf .fa-caret-down{
  color: #d8d8d8;
  font-size: 18px;
}

.ziliao-search-con .ziliao-cont span.search_tool_tf{
    border: none;
}
.ziliao-search-con .ziliao-cont span.search_tool_tf i{
  color: #999;
}



#checkbox_string{
  margin-top: -30px;
}
.ziliao-cont span.search_tool_tf b{
  font-weight: normal;
}
.ziliao-cont span.search_tool_tf i{
  margin-left: 8px;
}
.ziliao-cont .c-tip-con{
  position: absolute;
  z-index: 1;
  top: 30px;
  left: -5px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border: 1px solid rgba(0,0,0,.2);
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
  padding: 5px 0;
  display: none;
  font-size: 12px;
  line-height: 20px;
  display: none;
}

.ziliao-cont .c-tip-con .c-tip-timerfilter ul {
    width: 115px;
    text-align: left;
    color: #666;
}

.ziliao-cont .c-tip-con .c-tip-timerfilter li span{
  text-indent: 15px;
  padding: 3px 0;
  color: #999;
  display: block;
}
.ziliao-cont .c-tip-con .c-tip-menu li a{
  display: block;
  text-decoration: none;
  cursor: pointer;
  background-color: #fff;
  padding: 3px 0;
 text-indent: 15px;
  color: #666;

}
.ziliao-cont .c-tip-con .c-tip-menu li a:hover{
  background: #f2f2f2;
}
.ziliao-cont .c-tip-con .c-tip-custom{
  padding: 0 10px 10px;
  position: relative;
  zoom: 1;
}
.ziliao-cont .c-tip-con .c-tip-custom p{
  color: #b6b6b6;
  height: 25px;
  line-height: 25px;
  margin: 2px 0;
}
.ziliao-cont .c-tip-con .c-tip-custom p .c-tip-custom-input{
  display: inline-block;
  font-size: 12px;
  color: #333;
  margin-left: 4px;
  padding: 0 2px;
  width: 74%;
  height: 16px;
  line-height: 16px\9;
  border: 1px solid #ebebeb;
  outline: 0;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  overflow: hidden;
  position: relative;


}


.ziliao-cont .c-tip-con .c-tip-custom .c-tip-custom-et{
  margin-bottom: 7px;
}

.ziliao-cont .c-tip-con .c-tip-timerfilter li .c-tip-custom-submit,.ziliao-cont .c-tip-con .c-tip-timerfilter li .c-tip-timerfilter-si-submit {
    display: inline;
    padding: 4px 10px;
    margin: 0;
    color: #333;
    border: 1px solid #d8d8d8;
    font-family: inherit;
    font-weight: 400;
    text-align: center;
    vertical-align: 0;
    background-color: #f9f9f9;
    outline: 0;
}

.my-ziliao-con .ziliao-cont .layui-input-inline{
  width: 150px;
}
.my-ziliao-conb .layui-form{
  margin-top: 10px;
}
.my-ziliao-conb .layui-form thead tr th{
  font-size: 16px;
  padding: 8px 0px;
}


.ziliao-index-con .layui-col-md3:last-of-type{
  margin-right: 0%;
}
.ziliao-index-con .layui-col-md3 img{
  max-width: 100%;
}


.ziliao-index-con table.layui-table{
  width: 100%;
  margin-top: 0px;

}
.ziliao-index-con .layui-table thead tr{
  background: #fff;
}

.ziliao-index-con .layui-table td img{
  max-width: 13px;
}
.ziliao-index-con .layui-table td,.ziliao-index-con .layui-table th{
  padding: 8px 3px;
  max-width: 80px;
  font-size: 13px;
  color: #515151;
  border-left-width: 0px;
}
.ziliao-index-con .layui-table td.f12{
  font-size: 12px;
}
.ziliao-index-con .layui-table td img.pai{
  width: 18px;
  max-width: none;
}

.ziliao-index-con .layui-table td p.p1{
  font-size: 14px;
}
.ziliao-index-con .layui-table td p.p2{
  font-size: 12px;
  color: #999;
  padding-right: 10px;
}
.ziliao-index-con .layui-table td p.p2 a{
  margin-right: 10px;
  color: #999;
}
.ziliao-index-con .layui-table td p.p2 span img{
  vertical-align: middle;
  margin-top: -2px;
}
.ziliao-index-con .layui-table td.tc,.ziliao-index-con .layui-table th.tc{
  text-align: center;
}

.ziliao-search-top .layui-form-item .layui-input-inline{
  float: none;
}

/*资料搜索结果页*/
.ziliao-con{
  padding-bottom: 30px;
}
.ziliao-con .layui-table-page{
  height: 50px;
}
.ziliao-con .tit{
  float: left;
  font-weight: normal;
  color: #333;
  border-left: 5px solid #1e89e0;
  padding-left: 10px;
  font-size: 16px;
  margin-left: -15px;
}

.ziliao-search-top .xuanbox{
  margin-top: 15px;
}


.ziliao-search-con{
   margin-top: 25px;
   background: #fff;
   padding: 15px;
}
.ziliao-search-con .ziliao-cont{
  line-height: 22px;
}


.ziliao-cont  a.seachbtn{
  background: #4689e2;
  padding: 3px 10px;
  color: #fff !important;
  border-radius: 15px;
  font-size: 12px;
}


.ziliao-search-con .ziliao-cont .layui-fl .layui-form{
  margin: 0px 3px;
}
.ziliao-search-con .ziliao-cont .layui-fl .layui-input{
  height: 25px;
}
.ziliao-search-con .ziliao-cont .layui-fl .layui-form-select .layui-input{
  height: 25px;
  border: none;
  width: 100px;
  text-align: right;
}
.ziliao-search-con .ziliao-cont .layui-fr{
  vertical-align: bottom;
}

.ziliao-search-con .ziliao-cont .layui-fr .reset{
  background: none;
  border: none;
  display: none;
  color: #1e89e0;
}

.ziliao-search-con .ziliao-search-conc .layui-table{
  /*width: 100%;*/
  
}
.ziliao-con .layui-table img.biao{
    width: 18px;
    margin-right: 5px;
}


.ziliao-shangchuan-conb img.demo-delete{
  width: 20px;
}
.ziliao-shangchuan-con{
  min-height: 300px;
}
.ziliao-shangchuan-conc{
  text-align: center;
}

.ziliao-shangchuan-conc .layui-upload-drag{
  border:1px solid #1e89e0;
  border-radius: 15px;
  margin-top: 40px;
  padding: 40px 60px;
}
.ziliao-shangchuan-conc .layui-upload-drag p{
  color: #1e89e0;
}


.ziliao-shangchuan-conb .layui-table img.biao{
  padding-top: 5px;
  margin-right: 0px;
}

.ziliao-con .layui-table-fixed-r{
  border-left: none;
  box-shadow: 0px 0px 0px #fff;
}

.ziliao-con .layui-table-fixed-r a.del img{
  width: 20px;
  margin-top: 6px;
}
.ziliao-con .layui-table-cell a.del img{
  width: 18px;
  margin-top: 6px;
}

.ziliao-con .layui-table-body{
  overflow: hidden;
}

.my-ziliao-conc{
  background: #Fff;
}

.biao_qian_search{
  font-size: 14px;
}
.biao_qian_search span{
    position: absolute;
    right: -5px;
    top: -5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    display: none;
}

.biao_qian_search.active span{
  display: block;
}


a.lpk_bg1{
  background: #4689e2;
  color: #fff;
border-radius: 25px;
padding: 5px 15px;
margin: 5px 0px;
    margin-right: 0px;
display: inline-block;
position: relative;
margin-right: 5px;
}
a.lpk_bg2{
  background: #63c6f2;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  margin-right: 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
a.lpk_bg3{
  background: #85b8ff;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  margin-right: 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
a.lpk_bg4{
  background: #5b9ff8;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  margin-right: 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
a.lpk_bg5{
  background: #b3bdef;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  margin-right: 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}

.biao_qian_search.lpk_bg1{
  background: #4689e2;
  color: #fff;
  border-radius: 25px;
  padding: 3px 15px;
  margin: 5px 0px;
  margin-right: 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
.biao_qian_search.lpk_bg1 span{
  background: #4689e2;
}

.biao_qian_search.lpk_bg2{
  background: #63c6f2;
  color: #fff;
  border-radius: 25px;
  padding: 3px 15px;
  margin: 5px 0px;
  margin-right: 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}

.biao_qian_search.lpk_bg2 span{
  background: #63c6f2;
}
.biao_qian_search.lpk_bg3{
  background: #85b8ff;
  color: #fff;
  border-radius: 25px;
  padding: 3px 15px;
  margin: 5px 0px;
  margin-right: 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}

.biao_qian_search.lpk_bg3 span{
  background: #85b8ff;
}

.biao_qian_search.lpk_bg4{
  background: #5b9ff8;
  color: #fff;
  border-radius: 25px;
  padding: 3px 15px;
  margin: 5px 0px;
  margin-right: 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}

.biao_qian_search.lpk_bg4 span{
  background: #5b9ff8;
}


.biao_qian_search.lpk_bg5{
  background: #b3bdef;
  color: #fff;
  border-radius: 25px;
  padding: 3px 15px;
  margin: 5px 0px;
  margin-right: 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}

.biao_qian_search.lpk_bg5 span{
  background: #b3bdef;
}




/*
.biao_qian_search.active:after{
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: -10px;
  right: -8px;
  background: url("../images/biao_qian_searchdui.png") no-repeat;
}
*/
/*我的资料*/
.my-ziliao-conc-t{
  padding:10px 0px;
}
.my-ziliao-conc-t .layui-col-xs3{
  padding-top: 20px;
}
.my-ziliao-conc-t dl {
  padding-top: 10px;
}
.my-ziliao-conc-t dl dt{
  float: left;
}
.my-ziliao-conc-t dl dt img{
  margin-right: 15px;
  width:43px;
  vertical-align: middle;
  margin-top: 0px;
}
.my-ziliao-conc-t dl dd{
  
}

.my-ziliao-conc-t a.open-biaoqian{
  background: #4689e2;
  color: #fff !important;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 12px;

}
.my-ziliao-conb .layui-table img.biao{

}

.my-ziliao-conb .layui-table tr td:first-of-type .layui-table-cell{
  padding: 0px 0px 0px 15px;
}


.my-ziliao-conb .layui-table img.biao.tu{
  margin-top: 5px;
  margin-right: 0px;
}
.my-ziliao-conc-t dl dd{
  color: #333;
  font-size: 24px;
  margin-top: 5px;
}

.my-ziliao-conc-t dl dd.dd1{
  color: #a1a1a1;
  font-size: 14px;
  display: none;
}

.ziliao-detailc-lboxt{
  /* border-bottom: 1px solid #ddd; */
  padding-bottom: 10px;
}
.ziliao-detailc-lboxt .ziliao-detailc-ltit{
  font-size: 14px;
}
.ziliao-detailc-lboxt .ziliao-detailc-ltit img{
  width: 15px;
  margin-right: 5px;
  vertical-align: top;
}
.ziliao-detailc-lboxt .ziliao-detailc-ldes{
  margin: 8px 0px 0px 0px;
  color: #515151;
}
.ziliao-detailc-lboxt .ziliao-detailc-ldes img.portrait{
  width: 30px;
  border-radius: 50%;
}

.ziliao-detailc-lboxt .ziliao-detailc-ldes img.img{
  width: 35px;
  margin-right: 5px;
}
.ziliao-detailc-lboxt .ziliao-detailc-ldes p.time{
  font-size: 12px;
  color: #666;
}


.ziliao-detailc-lboxc{
  padding: 10px;
}

.ziliao-detailc-lboxc .ziliao_file{
/*  min-height: 150px;*/
  text-align: center;
}

.ziliao-detailc-lboxc .ziliao_file .aplayer{
  margin: 20px auto 0px;
}

.ziliao-detailc-l .title{
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.ziliao-detailc-l .tit{
    float: left;
    font-weight: normal;
    color: #333;
    border-left: 3px solid #1e89e0;
    padding-left: 10px;
    font-size: 16px;
}
.ziliao-detailc-zan{
  padding-top: 15px;
}
.ziliao-detailc-zan .zan{
  margin: 15px 0px;
  color: #999;
}
.ziliao-detailc-zan .zan img{
   width: 60px;
}
.ziliao-detailc-zan .zanshow{
  margin-bottom: 15px;
}
.ziliao-detailc-zan .zanshow li{
  float: left;
  line-height: 26px;
  padding: 4px 5px;
  color: #515151;
  font-size: 13px;

}
.ziliao-detailc-zan .zanshow li img{
  width: 26px;

}
.ziliao-detailc-ping .ping-con{
  margin-top: 15px;

}
.ziliao-detailc-ping .ping-con .layui-col-md1{
  max-width: 65px;
}
.ziliao-detailc-ping .ping-con .layui-col-md1 img{
  max-width: 50px;
}
.ziliao-detailc-ping .ping-con .ping-score{
  margin-top: 15px;
  margin-bottom: 15px;
}
.ziliao-detailc-ping .ping-con .ping-score .star-score{
  margin-right: 8px;
}
.ziliao-detailc-ping .ping-con .ping-score .hint{
  margin-top: 8px;
  vertical-align: bottom;
  line-height: 16px;
}


.ziliao-detailc-ping .pingshow-con{
  padding-bottom: 50px;
}
.ziliao-detailc-ping .pingshow-con .star-score{
  margin-top: 2px;
  line-height: 16px;
  font-size: 12px;
  color: #999;
}
.ziliao-detailc-ping .pingshow-con .star-score img:last-of-type{
  margin-right: 10px;
}
.ziliao-detailc-ping .pingshow-con .star-score img{
  margin-top: -2px;
}

.ziliao-detailc-ping .pingshow-con .layui-col-md1{
  max-width: 65px;
} 
.ziliao-detailc-ping .pingshow-con .layui-col-md1 img{
  max-width: 50px;
  border-radius: 50%;
}
.ziliao-detailc-ping .pingshow-con .layui-row{
  border-bottom: 1px solid #ddd;
  padding: 15px 0px 10px;
}


.layui-form-checkbox[lay-skin="primary"] span{
  height: 18px;
}



/*右边部分*/
.ziliao-detailc-r{
  padding:15px 15px 0px 20px;
  background: #fff;
  /*margin-top: 15px;*/
  width: 32.7%;
  float: right;

 /* position: fixed;
  top:160px;
  right: 0px;*/

}
.ziliao-detailc-r.affix{
  position: fixed;
  right: 15px;
  top: 0px;
  width: 32%;
}

.ziliao-detailc-r a.closebtn-ziliao{
  font-size: 16px;
  width: 30px;
  height: 30px;
  background: rgba(30,137,224,0.8);
  padding: 0px 5px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  color: #fff;
  line-height: 30px;
  position: absolute;
  left: -15px;
  top: 300px;
}
.ziliao-detailc-r a.closebtn-ziliao i{
  line-height: 26px;
  font-size: 26px;
}

.ziliao-detailc-r .title{
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.ziliao-detailc-r .tit{
    float: left;
    font-weight: normal;
    color: #333;
    border-left: 3px solid #1e89e0;
    padding-left: 10px;
    font-size: 16px;
}

.ziliao-detailc-r .ziliao-detailc-rt-tit{
  font-size: 14px;
  line-height: 40px;
}
.ziliao-detailc-r .ziliao-detailc-rt-tit img{
  margin-right: 5px;
  width: 22px;
}
.ziliao-detailc-r .ziliao-detailc-rt-des{
  padding-right: 15px;
}
.ziliao-detailc-r .ziliao-detailc-rt-des img.portrait{
  width: 26px;
  margin-right: 8px;
}




.ziliao-detailc-rt-box{
  margin: 0px 10px 15px;
  max-height:580px;
  overflow-y:auto;
  margin-right:0px;
}
.ziliao-detailc-rt-box .layui-row{
  padding-bottom: 10px;
  border-bottom: 1px solid #Ddd;
}
.ziliao-detailc-r .ziliao-detailc-rt-des img{
  width: 15px;
  margin-right: 8px;
}
.ziliao-detailc-r .ziliao-detailc-rt-des img.img{
  width: 20px;
}


/*资料教案*/
.ziliao-jiaoancon-rt-box{
  padding: 15px;
}
.ziliao-jiaoancon-rt-box ul{
  padding-left: 40%;

}
.ziliao-jiaoancon-rt-box ul li{
  line-height: 50px;
  border-left: 1px solid #e2e2e2;
}
.ziliao-jiaoancon-rt-box ul li img{
  margin-right: 8px;
  width: 16px;
  margin-left: -8px;
}


/*资料榜单*/
.ziliao-list{
  margin-top: 50px;
}
.ziliao-list .layui-col-md4{
  width: 25%;
  margin-left: 6.25%;
  height:500px;
  background: #fff;
}
.ziliao-list .layui-col-md4:last-of-type{

}
.ziliao-list .layui-col-md4 .w10{
  width: 100%;
}
.ziliao-list .ziliao-listc{
    max-height: 501px;
    overflow-y:auto;
}

.ziliao-list .layui-col-md4 .layui-table{
  margin-top: 0px;
  width: 100%;
}
.ziliao-list .layui-col-md4 .layui-table .tou{
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
}


/*上传资料表格*/
.layui-table-view .layui-table td span.bg_blue{
  background: #1e89e0;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  display: inline-block;
  position: relative;
}
.ziliao-shangchuan-conb .layui-table-view .layui-table td{
  padding: 3px 0;
}
.ziliao-shangchuan-conb .layui-table-view .layui-table td .laytable-cell-1-do{
  height: auto;
}
.ziliao-shangchuan-conb .layui-table-view .layui-table td span a.qie{
  position: absolute;
  top: -5px;
  right: -5px;
}
.ziliao-shangchuan-conb .layui-table-view .layui-table td span a.qie img{
  width: 20px;
  height: 20px;
}


a.lpk_bgblue{
  background: #60a6f5;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}


a.lpk_bggreen{
  background: #64c368;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
a.lpk_bgqing{
  background: #0db5c9;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
a.lpk_bgzhuanhong{
  background: #f58360;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
a.lpk_bgtu{
  background: #d4882f;
  color: #fff;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}


a.lpk_bdblue{
  background: none;
  color: #60a6f5;
  border-radius: 25px;
  padding: 5px 15px;
  margin: 5px 0px;
  border: 1px solid #60a6f5;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}



a.lpk_bg2{

}











.biaoqian-box a img{
    position: absolute;
    right: -10px;
    top: -10px;
    display: none
}

.biaoqian-t{
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
  background: #fff;
  margin-bottom: 10px;
  padding: 15px;
  margin-top: 15px;
}

.ziliao-search-con .white{
  background: #fff;
}
.ziliao-shangchuan-con{
  background: #fff;
  padding: 15px;
}

.my-ziliao-con .bgwhite{
  background: #fff;
  padding: 15px;
}

.biaoqian-t .layui-form{
  margin-bottom: 10px;
}


/*赞的列表*/
.zan_con{
  background: #fff;
  padding:20px 15px 10px;
}

.zan_con .tit{
  float: left;
  font-weight: normal;
  color: #333;
  border-left: 4px solid #1e89e0;
  padding-left: 10px;
  font-size: 16px;
  margin-left: -15px;

}

.zan_con .zan_con_t .txt{
  display: inline-block;
  float: left;
  line-height: 20px;
  margin-left: 20px;
  vertical-align: middle;
}
.zan_con .zan_con_t .caozuo{
  float: right;
}
.zan_con .zan_con_t .caozuo a{
  margin: 10px;
  background: #4689e2;
  border-radius: 15px;
  padding:3px 8px;
  color: #fff !important;
}
.zan_con .zan_con_c ul{
  height: 550px;
  overflow-y:auto;
}


.ziliao-detailc-l{
  background: #fff;
  /*margin-top: 15px;*/
  padding: 15px;
}
.ziliao-detailc-l.w10{
  width: 100%;
}


.ziliao-detailc-r1{
  position: fixed;
  top: 50%;
  right: 0px;
  width: 25px;
  margin-top: -60px;
  background: #1e89e0;
  padding: 10px 5px;
  font-size: 14px;
  color: #fff;
  border-radius: 4px 0px 0px 4px;
  cursor: pointer;
  display: none;
}
.zan_con .zan_con_c ul li{
  margin: 10px 0px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
.zan_con .zan_con_c ul li img{
  width: 35px;
  height: 35px;
  margin-right: 5px;
  border-radius: 50%;
}
.zan_con .zan_con_c ul li .text{
  
  margin-left: 30px;
  cursor: pointer;
}
.zan_con .zan_con_c ul li .text.hui{
  color: #999;
}
.zan_con .zan_con_c ul li span.check{
  display: inline-block;
  width: 12px;
  text-align: left;
  float: left;
  margin-top: 11px;
}

.zan_con .zan_con_c ul li span.check.checked{
  background: #4689e2;
  border-radius: 50px;
  height: 12px;
}
.zan_con .zan_con_c ul li span.check.checked0{
  border: 2px solid #4689e2;
  border-radius: 50px;
  height: 12px;
}
.zan_con .zan_con_c ul li span.check.checkedy{
  height: 12px;

}

/*评论*/
.pinglun_con{
  background: #fff;
  padding:20px 15px 10px;
  margin-left: 10px;
}

.pinglun_con .tit{
  float: left;
  font-weight: normal;
  color: #333;
  border-left: 4px solid #1e89e0;
  padding-left: 10px;
  font-size: 16px;
  margin-left: -15px;
}

.pinglun_con .pinglun_con_t .txt{
  display: inline-block;
  float: left;
  line-height: 20px;
  margin-left: 10px;
  vertical-align: middle;
}
.pinglun_con .pinglun_con_t .caozuo{
  float: right;
}
.pinglun_con .pinglun_con_t .caozuo a{
  margin: 10px;
   background: #4689e2;
  border-radius: 15px;
  padding:3px 8px;
  color: #fff !important;
}
.pinglun_con .pinglun_con_c ul{
  height: 550px;
  overflow-y:auto;
}
.pinglun_con .pinglun_con_c ul li{
  margin: 10px 0px;
  padding-bottom: 0px;
  border-bottom: 1px solid #ddd;
  color: #333;
}
.pinglun_con .pinglun_con_c ul li img{
   width: 45px;
  height: 45px;
  margin-right: 5px;
  border-radius: 50%;
}
.pinglun_con .pinglun_con_c ul li span.check{
  display: inline-block;
  width: 12px;
  text-align: left;
  float: left;
  margin-top: 22px;
}
.pinglun_con .pinglun_con_c ul li span.check.checked{
  background: #4689e2;
  border-radius: 50px;
  height: 12px;
}
.pinglun_con .pinglun_con_c ul li span.check.checked0{
  border: 2px solid #4689e2;
  border-radius: 50px;
  height: 12px;
}
.pinglun_con .pinglun_con_c ul li span.check.checkedy{
  height: 12px;
  
}



















.pinglun_con .pinglun_con_c ul li dl{
  margin-left: 30px;
  cursor: pointer;
}
.pinglun_con .pinglun_con_c ul li.hui{                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  color: #999;
}
.pinglun_con .pinglun_con_c ul li dl dt{
  float: left;
  width: 14%;
  text-align: center;
  height: 60px;
  padding-right: 5px;
}
.pinglun_con .pinglun_con_c ul li dl dt p{
  font-weight: normal;
  font-size: 12px;
  margin-top: 5px;
}
.pinglun_con .pinglun_con_c ul li dl dd{
  width: 86%;
  margin-bottom: 5px;
  float: left;
  word-wrap: break-word;
  word-break: break-all;
} 
.pinglun_con .pinglun_con_c ul li dl dd.dd1 img{
  width: 16px !important;
  height: 15px !important;
  margin-right: 5px;
}

.pinglun_con .pinglun_con_c ul li dl dd.dd3{
  font-size: 12px;
}

/*首页飘动*/
.piao{
  display: inline-block;
  background: rgba(255,182,153,0.58);
  border:2px solid #fff;
  border-radius: 30px;
  padding: 0px 20px;
  padding-right: 40px;
  position: fixed;
  left: 10px;
  right: 0px;
  top: 0px;
  margin: auto;
  width: 470px;
  word-break:keep-all; 
  /*animation:piao 60s linear infinite alternate;
  -moz-animation:piao 60s linear infinite alternate; 
  -webkit-animation:piao 60s linear infinite alternate; 
  -o-animation:piao 60s linear infinite alternate; */
}

.layui-form-select dl dd.layui-this{
  background-color: #1e89e0;
}
.piao img{
  width: 50px;
}
.piao b{
  color: #eb6100;
  font-size: 16px;
}
.piao a{
  color: #000;
}
.piao a.close1{
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 999999;
  display: none;

}
.piao a.close1 img{
  width:25px;
}
.piao:hover{
   -webkit-animation-play-state:paused;
   animation-play-state:paused;
}
.piao:hover a.close1{
  display: block;
}
@keyframes piao
{
  0%   { left:0px; top:0px;}
  50%  { left:1200px; top:0px;}
  100% { left:0px; top:0px;}
}

@-moz-keyframes piao /* Firefox */
{
  0%   { left:0px; top:0px;}
  50%  { left:1200px; top:0px;}
  100% { left:0px; top:0px;}
}

@-webkit-keyframes piao /* Safari and Chrome */
{
 0%   { left:0px; top:0px;}
  50%  { left:1200px; top:0px;}
  100% { left:0px; top:0px;}
}

@-o-keyframes piao /* Opera */
{
   0%   { left:0px; top:0px;}
  50%  { left:1200px; top:0px;}
  100% { left:0px; top:0px;}
}


.layer-chart{
  
}
.layer-chart-person{
  margin-bottom: 10px;
}
.layer-chart .layer-chart-personl{
  float: left;
}
.layer-chart .layer-chart-personl img{
  width: 30px;
}
.layer-chart .layer-chart-personr{
  margin-left: 40px;
  width: 80%;
}
.layer-chart .layer-chart-personr p.name{
  color: #999
}
.layer-chart .layer-chart-personr p.name span{
  margin-left: 15px;
}
.layer-chart .layer-chart-personr .layer-chart-c{
  background: #e1e1e1;
  border-radius: 4px;
  padding:5px 15px;
  margin-top: 5px;
  word-wrap:break-word;
  word-break:break-all; 
}
.kejian_type{
  width:5px;
  height:5px;
  background:#25cc3f;
  margin-top: -24px;
  margin-left: 62px;
  border-radius: 50%;
}


.section-c .empty-list{
   margin: 200px auto;
}
.layui-layer label{
  font-weight: normal;
}
.layui-layer label a{
  cursor: pointer;
}


/*教研学期列表*/

#add-power.get-xueqibox .add-power-list li span.module-name{
  width: 100%;
}
#add-power.get-xueqibox .add-power-list li .module-form-control{
  width:80%;
}
#add-power.get-xueqibox .add-power-list li .module-btn-group{

}
#add-power.get-xueqibox .add-power-list li .module-btn-group .div1{
  right: 0px;
  display:none;
}
#add-power.get-xueqibox .add-power-list li .module-btn-group .div1 .fa{
  margin-right: 7px;
}
#add-power.get-xueqibox .add-power-list li:hover .module-btn-group .div1{
  display: block !important;
}
#add-power.get-xueqibox .add-power-list li .module-btn-group .div2{
  position: absolute;
  top: 0px;
  width: 60px;
  background-color: #d5e5fb;
  right: -10px;
}


.get-xueqibox ul{
  margin-top: 30px;
}
#add-power.get-xueqibox ul li{
   width: 18%;
   float:left;
   margin: 0% 1% 15px;
   border: 1px solid #ddd;
   border-radius: 6px;
}

#add-power.get-xueqibox  #add-powerbtn{
  margin-top: 0px;
}





/*教研上反馈*/

.chosetimebox span.search_tool_tf{
    border: 1px solid #ddd;
    padding:7px 10px 5px 20px;
    cursor: pointer;
    display: inline-block;
    border-radius: 6px;
}
.chosetimebox  span.search_tool_tf i{
  color: #999;
}


.chosetimebox span.search_tool_tf b{
  font-weight: normal;
  color: #333;
}
.chosetimebox span.search_tool_tf i{
  margin-left: 8px;
}







.chosetimebox .c-tip-con{
  position: absolute;
  z-index: 1;
  top: 35px;
  left: -5px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border: 1px solid rgba(0,0,0,.2);
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
  padding: 5px 0;
  display: none;
  font-size: 12px;
  line-height: 20px;
  font-weight: normal;
  display: none;
}
.chosetimebox .c-tip-con.active{
	display: block
}

.chosetimebox .c-tip-con .c-tip-timerfilter ul {
    width: 115px;
    text-align: left;
    color: #666;
}

.chosetimebox .c-tip-con .c-tip-timerfilter li span{
  text-indent: 15px;
  padding: 3px 0;
  color: #999;
  display: block;
}
.chosetimebox .c-tip-con .c-tip-menu li a{
  display: block;
  text-decoration: none;
  cursor: pointer;
  background-color: #fff;
  padding: 3px 0;
 text-indent: 15px;
  color: #666;

}
.chosetimebox .c-tip-con .c-tip-menu li a:hover{
  background: #f2f2f2;
}
.chosetimebox .c-tip-con .c-tip-custom{
  padding: 0 10px 10px;
  position: relative;
  zoom: 1;
}
.chosetimebox .c-tip-con .c-tip-custom p{
  color: #b6b6b6;
  height: 25px;
  line-height: 25px;
  margin: 2px 0;
}
.chosetimebox .c-tip-con .c-tip-custom p .c-tip-custom-input{
  display: inline-block;
  font-size: 12px;
  color: #333;
  margin-left: 4px;
  padding: 0 2px;
  width: 74%;
  height: 16px;
  line-height: 16px\9;
  border: 1px solid #ebebeb;
  outline: 0;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  overflow: hidden;
  position: relative;


}


.chosetimebox .c-tip-con .c-tip-custom .c-tip-custom-et{
  margin-bottom: 7px;
}

.chosetimebox .c-tip-con .c-tip-timerfilter li .c-tip-custom-submit,.chosetimebox .c-tip-con .c-tip-timerfilter li .c-tip-timerfilter-si-submit {
    display: inline;
    padding: 4px 10px;
    margin: 0;
    color: #333;
    border: 1px solid #d8d8d8;
    font-family: inherit;
    font-weight: 400;
    text-align: center;
    vertical-align: 0;
    background-color: #f9f9f9;
    outline: 0;
}








/*授课界面新改*/
.dingtiwen{
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1032;
}
.dingtiwensheng{
  text-align: center;
  margin-top: -50px;
}
.dingtiwensheng img{
  width: 600px;
}

.dingtiwenc{
  background: url("../images/dingbg.png");
  width: 900  ;
  height: 671px;
  position: relative;
  z-index: 10;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
}
.dingtiwenc .suijibtn{
  position: absolute;
  right: 115px;
  top: 120px;
}
.dingtiwenc .suijibtn img{
  width: 170px;
  height: 85px;

}

/* .dingtiwenc .tiwenclose{
    position: absolute;
    right: 45px;
    top: 120px;
}
.dingtiwenc .tiwenclose img{
  width: 35px;
  height: 35px;
} */
.dingtiwenc .dingtiwencbox{
   padding:200px 0px 0px 36px;
}
.dingtiwenc .dingtiwencul{
  height: 390px;
  overflow-y:auto;
  padding-top: 5px;

}
.dingtiwenc .dingtiwencul::-webkit-scrollbar {
  display: none;/*隐藏滚动条*/
}
.dingtiwenc .dingtiwencul li {
  position: relative;
  float: left;
  width: 140px;
  margin-right: 32px;
  margin-bottom: 43px;
}
.dingtiwenc .dingtiwencul li:nth-child(5n) {
  margin-right: 0;
}
.dingtiwenc .dingtiwencul li .student-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  text-align: center;
}
.dingtiwenc .dingtiwencul li .student-avatar img {
  display: inline-block;
  width: 64px;
  height: 64px;
  border: 2px solid #a36438;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
}
.dingtiwenc .dingtiwencul li .student-avatar .dunnum {
  position: absolute;
  top: -5px;
  left: 50px;
  min-width: 28px;
  min-height: 28px;
  font-size: 12px;
  color: #fff;
  line-height: 28px;
  text-align: center;
  background: url('/assets/images/coin/dun_num_bg_circle@2x.png') no-repeat 0 0;
  background-size: 100% 100%;
}
.dunbi-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.dunbi-controls .student-name {
  flex: 1;
  margin: 0 8px;
  padding: 0 9px;
  height: 36px;
  font-size: 15px;
  color: #76380C;
  line-height: 36px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: url('/assets//images/coin/student_name_bg@2x.png') no-repeat 0 0;
  background-size: 100% 100%;
}

.dunbi-controls img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.dunbi-controls .jia_img {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-image: url("/assets/images/jia_img.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.dunbi-controls .jia_img_disabled {
  background-image: url("/assets/images/coin/jia_img_disabled.png");
}

.dingtiwenc .dingtiwencul li .donghua img{
  position: fixed;
  bottom:0px;
  left: 10px;
  z-index: 10000;
}

/* .dingtiwenc .dingtiwencul li{
  float: left;
  background: url("../images/dingtiwencli.png");
  width: 116px;
  height: 55px;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  text-align: center;
  line-height: 50px;
  color: #a36438;
  font-size: 18px;
  margin: 0px 8.5px 25px;
  cursor: pointer;
  font-weight: bold;
 
padding: 0px 20px;
position: relative;

  
}

.dingtiwenc .dingtiwencul li span.dunname{
    overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}

.dingtiwenc .dingtiwencul li span.dunnum{
   position: absolute;
   right: -5px;
   top: -5px;
   background: url("../images/dunnum.png") no-repeat;
   min-width: 28px;
   min-height: 21px;
   background-size: 100% 100%;
   font-size: 10px;
   line-height: 21px;
   color: #fff;
   padding: 4px 4px;
}

.dingtiwenc .dingtiwencul li.active{
  background: url("../images/dingtiwencliactive.png");
   -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
}


.dingtiwenc .dingtiwencul li .donghua img{
  position: fixed;
  bottom:0px;
  left: 10px;
  z-index: 10000;
}
.dingtiwenc .jianglibtn{
  text-align: center;
  position:absolute;
  bottom: 50px;
  left: 0px;
  right: 0px;
}

.dingtiwenc .jianglibtn img{
  width: 180px;
  height: 77px;
} */
/*课堂标签css*/
.tag-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  box-sizing: border-box;
  border: 4px solid #480809;
  border-radius: 40px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  overflow: hidden;
  z-index: 3000;
}

.tag-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transition: .2s;
  z-index: 2999;
}

.tag-modal_visible,
.tag-mask_visible {
  opacity: 1;
  visibility: visible;
}

.tab-header {
  width: 100%;
  background-color: #480809;
}

.tab-title {
  display: inline-block;
  width: 188px;
  height: 48px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.tab-close {
  position: absolute;
  top: 20px;
  right: 19px;
  width: 37px;
  height: 37px;
  cursor: pointer;
}

.tab-rule {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
  text-align: left;
  padding: 0 20px;
}

.tab-toolbar {
  display: flex;
  color: #480809;
}

.tab-item {
  width: 144px;
  height: 36px;
  border-radius: 20px 20px 0 0;
  background-color: #AF852D;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  margin: 0;
  padding: 0
}

.tab-item_active {
  background-color: #FFD9A7;
}

.tab-content {
  position: relative;
  min-height: 254px;
  background: #FFD9A7;
  box-sizing: border-box;
  padding-bottom: 76px;
}

.tab-content ul {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 0 36px;
}

.tag-ul .tag-item {
  width: 144px;
  height: 42px;
  padding: 7px 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  background-image: url('/assets/images/coin/tag_bg@2x.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% 100%;
  margin-right: 40px;
  margin-bottom: 16px;
  cursor: pointer;
}

.tag-ul .tag-item_disabled {
  background-image: url('/assets/images/coin/tag_bg_disabled@2x.png');
}

.tag-ul .tag-item:active {
  background-image: url('/assets/images/coin/tag_bg_active@2x.png');
}

.tag-ul .tag-item_disabled:active{
  background-image: url('/assets/images/coin/tag_bg_disabled@2x.png');
}

.tag-ul .tag-item:nth-child(3n) {
  margin-right: 0;
}

.tag-ul_g .tag-item {
  background-image: url('/assets/images/coin/tag_bg_g@2x.png');
}

.tag-ul_g .tag-item:active {
  background-image: url('/assets/images/coin/tag_bg_g_active@2x.png');
}
/*课堂标签css*/






/*随机提问*/
.suitiwen  .dingtiwenc{
    background: url(../images/suibg.png);
    width: 808px;
    height: 672px;
    margin: -200px auto 0px;
    position: relative;
    z-index: 10;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;


}

.suitiwen .dingbtn {
    position: absolute;
    left:55px;
    top: 180px;
}
.suitiwen .dingbtn img{
  width: 170px;
  height: 85px;
}

.suitiwen .feidie{
    position: absolute;
    right: 40px;
    top: 160px;
    z-index: 5;
}

.suitiwen img.guang{
  position: absolute;
  right: 220px;
  top: 300px;
  opacity:0
}





/* .suitiwen .dingtiwenc .tiwenclose{
     top:160px;
     z-index: 6;
} */
.suitiwen  .dingtiwenc .jianglibtn{
     text-align: right;
}

.suitiwen .dingtiwenc .suiname{
    font-size: 80px;
    display: inline-block;
    width: 320px;
    position: absolute;
    bottom: 100px;
    left: 100px;
    text-align: center;
    z-index: 5;
    opacity: 1;
}


.suitiwen .huan{
  position: absolute;
  bottom: 180px;
  right: 50px;
  z-index: 5;
}

.suitiwen .dunbox{
  position: absolute;
  right: 30px;
  bottom: 80px;
}

.suitiwen .dunbox li{
  float: left;
  margin: 0px 10px;
  cursor: pointer;
  background: url("../images/dunbg.png");

}
.suitiwen .dunbox li.li3{
  width: 111px;
  height: 79px;
  background-position: -10px -15px;
}
.suitiwen .dunbox li.li2{
  width: 72px;
  height: 79px;
  background-position: -133px -15px;
}
.suitiwen .dunbox li.li1{
  width: 51px;
  height: 79px;
  background-position: -220px -15px;
}



.suitiwen .dunbox li.li3.active{
  background-position: -10px -109px;
}
.suitiwen .dunbox li.li2.active{
  background-position: -133px -109px;
}
.suitiwen .dunbox li.li1.active{
  background-position: -220px -109px;
}


#dingjianglibox{
  background: url("../images/dingjianglibg.png") no-repeat;
  width: 509px;
  height: 262px;
  -webkit-background-size: 100%;
  background-size: 100%;
  position:fixed;
  top: 200px;
  z-index: 1035;
  left: 0px;
  right: 0px;
  margin: auto;
  display: none;
}

#dingjianglibox ul{
  padding: 100px 20px 0px 20px; 
}

#dingjianglibox ul li{
  float: left;
  margin: 0px 10px;
  cursor: pointer;
  background: url("../images/dunbg1.png");

}
#dingjianglibox ul  li.li3{
  width: 181px;
  height: 120px;
  background-position: -10px -15px;
}
#dingjianglibox ul  li.li2{
  width: 125px;
  height: 120px;
  background-position: -205px -15px;
}
#dingjianglibox ul li.li1{
  width: 86px;
  height: 120px;
  background-position: -350px -15px;
}

#dingjianglibox ul  li.li3.active{
  background-position: -10px -142px;
}
#dingjianglibox ul  li.li2.active{
  background-position: -205px -142px;
}
#dingjianglibox ul li.li1.active{
  background-position: -350px -142px;
}


#dungifbox{
  position:fixed;
  top: 200px;
  z-index: 1040;
  left: 0px;
  right: 0px;
  margin: auto;
  display: none;
  width: 300px;
  height: 300px;

}










/*授课界面课后巩固*/
.sk_show_right .zuoye_nav{
  border: 1px solid #4689e2;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  width: 184px;
}

.sk_show_right .zuoye_nav .layui-btn{
  border-radius: 50px;
  border: none;
  height: 32px;
  line-height: 32px;
}





/*英雄累了的表格*/
.yx-tit{
  margin: 10px 0px 10px -10px;
  border-left: 3px solid #4689e2;
  padding-left:20px;
}
.yx-row{
  margin-bottom: 10px;
  box-shadow: 3px 3px 3px #ddd;
}
.yx-row .yx-col{
  border:1px solid #ddd;
  border-left: none;
  /*margin-left: -1px;*/
  padding: 4px 1%;
  height: 66px;
}


.yx-row .yx-col.layui-col-xs2{
  width: 18%;
}
.yx-row .yx-col.layui-col-xs4{
  width: 32%;
}

.yx-row .yx-col a.no-upload{
  /*   border: 1px solid #f0ad4e; */
    color: #1e89e0;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 75px;
    display:inline-table;
}
.yx-row .yx-col a.overdue{
    /* border: 1px solid #bdb9b9; */
    color: #bdb9b9;
    pointer-events:none;
    cursor: default;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 75px;
    display:inline-table;
}
.yx-row .yx-col a.no-examine{
    /* border: 1px solid #5bc0de; */
    color: #f0ad4e;/* #5bc0de; */
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 75px;
    display:inline-table;
}
.yx-row .yx-col a.have-passed{
   /*  border: 1px solid #5cb85c; */
    color: #5cb85c;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 75px;
    display:inline-table;
}
.yx-row .yx-col a.have-refuse{
   /*  border: 1px solid #d9534f; */
    color: #d9534f;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 75px;
    display:inline-table;
}
.yx-row .yx-col a.no-arrangement{
    /* border: 1px solid #f0ad4e; */
    color: #1e89e0;/* #f0ad4e; */
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 75px;
    display:inline-table;
}
.yx-row .yx-col a.have-arrangement{
    /* border: 1px solid #5cb85c; */
    color: #5cb85c;
    border-radius: 15px;
    padding: 0px 0px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 75px;
    display:inline-table;
}
























.yx-row .yx-col:first-of-type{
  border-left: 1px solid #ddd;
}
.yx-row .yx-col h2{
  font-size: 14px;
  font-weight: bold;
  line-height: 30px;
}
.yx-row .yx-col h2 input{
  border-radius: 6px;
  margin-left: 5px;
  border:1px solid #4689e2;
  padding: 0px 5px;
  font-size: 14px;
}


.yx-row .yx-col p{
  color: #898989;
    font-size: 12px;
    line-height: 20px;
}
.yx-row .yx-col h2 p{
  margin-left: 8px;
}
.yx-row .yx-iconbox{
  margin: 15px 0px 0px;
  text-align: left;
}
.yx-row .yx-iconbox img{
  margin: 0px 5px;
}

.yx-badge{
  border: 1px solid #4689e2;
  border-radius: 6px;
  padding:0px 6px;
  color: #4689e2;
  margin-right: 10px;
  line-height: 18px;
  font-size: 12px;

}
.yx-btn{
  background:#4689e2;
  color: #fff !important;
  border:none;
  padding:3px 10px;
  margin: 0px 3px;
  border-radius: 6px;
}
.yx-btn:hover{
  color: #fff !important;
}

.yx-btnbox{
  margin-top: 15px;
}
.yx-btnbox.yx-btnbox2{
  margin-top: 8px;
} 
.yx-link{
  background: none;
  color: #4689e2;

}

.yx-state{
  position: absolute;
  top: 0px;
  right: 0px;
  background:#39b745;
  color: #fff;
  padding:3px 5px; 
  font-size: 12px;
  font-size: 12px;
  top: -4px;
  right: -5px;
  /*font-size: 10px;*/
  -webkit-transform:scale(0.8);
}
.jxz-state{
  position: absolute;
  top: 0px;
  right: 0px;
  background:#c6c6c6;
  color: #fff;
  padding:1px 5px; 
  font-size: 12px;
  top: -4px;
  right: -5px;
  /*font-size: 10px;*/
  -webkit-transform:scale(0.8);

}
.yx-state.bg-red{
  background: #ff8976;
}


.yx-section-t{
  padding: 0px 8px;
  margin: 0px -10px;
}


.commen-rnavsmall{
  position: fixed;
  right:10px;
  top: 50%;
	z-index:999999999;
  margin-top: 15px;
  cursor: pointer;

  display: none;
}
.commen-rnav{
  position: fixed;
  right:10px;
  
  top: 35%;
  border-radius: 5px;
  padding:10px 18px;
  z-index: 999;
}
.commen-rnav ul{
	width:100%;
}
.commen-rnav ul li{
  margin-bottom: 8px;
  position: relative;
  color: #4689e2;
  text-align: right;
  cursor: pointer;
  font-size: 12px;
  vertical-align: middle;
}
.commen-rnav ul li img{
  margin-left: 0px;
  vertical-align: middle;
}
.commen-rnav ul li span.yx-badge1{
  right: -9px;
  top: 0px;

}
.commen-rnav ul li a{
  display: inline-block;
}
.commen-rnav ul li a span{
   background: #9b9b9b;
   border-radius: 8px;
   padding:3px 10px;
   color: #fff;
   display: none;
   position:absolute;
   left: -80px;
}
.commen-rnav ul li a:hover span{
  display: inline-block;
  opacity: 1;
}
.commen-rnav ul li a span:hover{
  opacity: 0;
}



.commen-rnav ul li.li1 a span{
  /*color: #63c6f2;*/
} 
.commen-rnav ul li.li2 span{
  /*color: #8b99ed;*/
} 



.commen-rnav ul p.line{
  /*background: #cbdffb;*/
  width: 100%;
  height: 1px;
  margin-bottom: 15px;
}
.yx-badge1{
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #29ca71;
  display: inline-block;
  position: absolute;
  top: 5px;

}


.yx-edit{
  position: relative;
}

.yx-edit i.fa-pencil {
    display: none;
    line-height: 30px;
    position: absolute;
    top: 0px;
    right: 15px;
    cursor: pointer;
}

.yx-edit .edit_check {
    position: absolute;
    top: 5px;
    display: none;
    background: #fff;
    right: -15px;
}
.yx-edit .edit_check a {
    border: 1px solid #1e89e0;
    padding: 0px 5px;
    border-radius: 4px;
    margin: 0px 5px;
    background: #fff;
    display: inline-block;
}

.yx-edit .edit_check a:first-of-type {
    border: 1px solid #eb6100;
}

.yx-edit .edit_check a:first-of-type i {
    color: #eb6100;
}
.yx-edit .edit_check a i {
    color: #1e89e0;
}

.yx-edit:hover i.fa-pencil{
  display:inline-block;
  line-height: 30px;
}



.yx-fixwarn{
  position: fixed;
  top: 0px;
  left: 0%;
  margin: 0px auto;
  background: #FFC2C2;
  display: inline;
  padding: 10px 10px;
z-index:99999999;
}



/*英雄分组pk*/
/*开始分组*/
.yx-pk1 #yx-pk1-c{

}

.yx-pk1 #yx-pk1-c h2{
  color: #480809;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
}

.yx-pk1 #yx-pk1-c ul.yx-pk1-cul{
  margin: 20px auto;
  width: 360px;
}
.yx-pk1 #yx-pk1-c ul.yx-pk1-cul li{
  background: url("../images/yx-pk1-cli.png");
  width: 93px;
  height: 40px;
  margin: 10px;
  background-size: 100% 100%;
  float: left;
  font-size: 16px;
  text-align: center;
  line-height: 34px;
  cursor: pointer;
  color: #fff;
}

.yx-pk1 #yx-pk1-c ul.yx-pk1-cul li.active{
  background: url("../images/yx-pk1-cliactive.png");
  width: 100px;
  height: 43px;
  background-size: 100% 100%;
}

/*分组展示*/
.yx-pk2 #yx-pk2-c h2{
  margin: 30px 0px 0px 50px;
  font-size: 15px;
  color: #480809;
}

.yx-pk2 #yx-pk2-c h2 .yx-pk2-cfenzu{
  background: #480809;
  color: #fff;
  border-radius: 6px;
  margin: 0px 6px;
  padding: 0px 5px;
}

.yx-pk2 #yx-pk2-c h2 .yx-pk2-cfenzubtn{

   background: #480809;
   color: #fff;
   font-size: 14px;
   border-radius: 6px;
  padding: 3px 8px;
  margin-left: 10px;
  cursor: pointer;
}

.yx-pk2 #yx-pk2-c .layui-row{
  height: 380px;
  overflow-y:auto;
}
.yx-pk2 .yx-pk2-czu{
  margin-top: 20px;
}
.yx-pk2 .yx-pk2-czu dl{
  height: 70px;
}
.yx-pk2 .yx-pk2-czu dl dt{

  float: left;
}
  
  .yx-pk2 .yx-pk2-czu dl dt img{
    width: 60px;
    margin-right: 10px;
    border-radius: 50%;
    height:60px;
  }
  .yx-pk2 .yx-pk2-czu dl dd.dd1{
    color: #662922;
    font-size: 18px;
    font-weight: bold;
    padding-top:10px;
  }
  .yx-pk2 .yx-pk2-czu dl dd.dd2{
    font-size: 14px;
  }
  .yx-pk2 .yx-pk2-czu ul li{
    background: url("../images/yx-pk2-cname.png");
    width: 80px;
    height: 33px;
    text-align: center;
    float: left;
    line-height: 32px;
    margin: 5px;
    background-size: 100% 100%;
  }

  /*pk界面*/
.yx-pk3 #yx-pk3-c .yx-pk3-c-t dl{
  text-align: center;
  margin: 0px auto;
  width: 160px;
  padding-left: 30px;
}
.yx-pk3 #yx-pk3-c .yx-pk3-c-t dl dt{
  float: left;
  position: relative;
}
.yx-pk3 #yx-pk3-c .yx-pk3-c-t dl dt.active:after{
    width:21px;
    height: 21px;
    background: #000;
    position: absolute;
    content: "";
    left: -10px;
    top: -5px;
    background: url("../images/pk-huangguan.png") no-repeat;
    background-size: 100% 100%;
}
.yx-pk3 #yx-pk3-c .yx-pk3-c-t dl dt img{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.yx-pk3 #yx-pk3-c .yx-pk3-c-t dl dd{
  font-size:14px;
  text-align: left;
  color: #470609;
}
.yx-pk3 #yx-pk3-c .yx-pk3-c-t dl dd.dd1{
  font-weight: bold;
  font-size: 16px;
}
.yx-pk3 #yx-pk3-c .yx-pk3-c-t dl dd.dd2{
  font-weight: bold;
}
.yx-pk3 #yx-pk3-c .yx-pk3-c-t dl dd.dd2 span.yx-pk3-adddun{
  cursor: pointer;
}



.yx-pk3 #yx-pk3-c .yx-pk3-c-t dl dd.dd2 img{
  width: 26px;
  height: 26px;
  margin-right: 5px;
}

.yx-pk3 .yx-pk3-crow{
  margin-top: 40px;

}
.yx-pk3 .yx-pk3-c-c{
  text-align: center;
  position: relative;
}

.yx-pk3 .yx-pk3-c-zhuzi .yx-pk3-c-zhuzit img{
  width: 100px;
}

.yx-pk3 .yx-pk3-crow .yx-pk3-c-zhuzi{
  height:340px;
  overflow-y:hidden;
}
.yx-pk3 .yx-pk3-crow .yx-pk3-c-zhuzic{
   margin-top: 200px;

}

.yx-pk3 .yx-pk3-crow .yx-pk3-c-c{
   position:relative;
}

.yx-pk3  .yx-pk3-c-shitou{
  margin-top: -20px;
}

.yx-pk3  .yx-sadunbibox{
  position:absolute;
  top: 0px;
  width:100%;
} 
.yx-pk3  .yx-sadunbibox img{
  max-width: 100%;
}




/*4*/
.yx-pk4 .yx-pk4-c{


}

.yx-pk4 .yx-pk4-czu dl{
  height: 70px;
  margin-top: 15px;
}
.yx-pk4 .yx-pk4-czu dl dt{

  float: left;
}
  
  .yx-pk4 .yx-pk4-czu dl dt img{
    width: 60px;
    margin-right: 10px;
    border-radius: 50%;
    height:60px;
  }
  .yx-pk4 .yx-pk4-czu dl dd.dd1{
    color: #662922;
    font-size: 18px;
    font-weight: bold;
    padding-top:10px;
  }
  .yx-pk4 .yx-pk4-czu dl dd.dd2{
    font-size: 14px;
  }
  .yx-pk4 .yx-pk4-czu ul li{
    background: url("../images/yx-pk2-cname.png");
    width: 80px;
    height: 33px;
    text-align: center;
    float: left;
    line-height: 32px;
    margin: 5px;
    background-size: 100% 100%;
  }

.yx-pk5 #yx-pk5-c{
   text-align: center;
   position: relative;
}


.yx-pk5 #yx-pk5-c .yx-pk5-zu1{
  padding-top: 150px;
}
.yx-pk5 #yx-pk5-c .yx-pk5-zu1 img{
  width: 200px;
}
.yx-pk5 #yx-pk5-c .yx-pk5-guang{
  position: absolute;
  left: 200px;
  top: 0px;
  z-index: -1;
  opacity: 0;

}

.yx-pk5 #yx-pk5-c .yx-pk5-txt{
  color: #fff;
  font-size: 16px;
  margin: 10px auto;
}

.yx-pk5 #yx-pk5-c .yx-pk5-zuother{
  width: 50%;
  margin-left: 25%;
}
.yx-pk5 #yx-pk5-c .yx-pk5-zuother img{
    width:80px;
}

.yx-pk5 #yx-pk5-c .yx-pk5-guan{

      position: absolute;
    top: 120px;
    left: 60px;
    right: 0px;
    margin: -10px auto;
    margin-left: -225px;

}
.yx-pk5 #yx-pk5-c .yx-pk5-xing{
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
}


/*英雄消息列表*/
.yx-message{
  background: #fff;
  width: 900px;
  margin: 0px auto 15px;
}
.yx-message .yx-message-nav{
  padding: 20px 0px;
}
.yx-message .yx-message-nav ul.ul1{
    width: 350px;
    border: 1px solid #ddd;
    border-radius: 15px;
    display: inline-block;
    margin-left: 150px;
    margin-top: 15px;
    overflow: hidden;

}
.yx-message .yx-message-nav ul.ul1 li{
     float: left;
     width: 33.3%;
     text-align: center;
     line-height: 30px;
     border-radius: 20px;
     cursor: pointer;
}
.yx-message .yx-message-nav ul.ul1 li span{
  background: #4689e2;
  color: #fff;
  display: inline-block;
  border-radius: 6px;
  vertical-align: middle;
   min-width: 15px;
  height: 15px;
  line-height: 15px;
  margin-left: 3px;
  padding:0px 2px;
}
.yx-message .yx-message-nav ul.ul1 li.active{
  background: #4689e2;
  color: #fff;
}
.yx-message .yx-message-nav ul.ul1 li.active a{
  color: #fff
}
.yx-message .yx-message-nav ul.ul1 li.active a span{
  background: #fff;
  color: #4689e2;
  min-width: 15px;
  height: 15px;
  color:#4689e2;
  display: inline-block;
  border-radius: 6px;
  vertical-align: middle;
  line-height: 15px;
  margin-left: 3px;
  padding:0px 2px;
}
.yx-message .yx-message-nav ul.ul2{
  display: inline-block;
  margin-top: 15px;
  width: 200px;
  margin-left: 40px;
}
.yx-message .yx-message-nav ul.ul2 li{
  float: left;
  line-height: 30px;
  width: 50%;
  text-align: center;
  cursor: pointer;
}
.yx-message .yx-message-nav ul.ul2 li.active a{
  color: #4689e2;
}

.yx-message-con{
  padding:0px 30px 10px;
}

.yx-message-con .yx-message-con1 ul li{
  border-bottom: 1px solid #ddd;
  line-height: 35px;
}
.yx-message-con .yx-message-con1 ul li.hui9{
  color: #999;
}
.yx-message-con .yx-message-con1 ul li span.type{
  margin-right: 3px;
}
.yx-message-con .yx-message-con1 ul li span.time{
  float: right;
  color: #999;
}
.yx-message-con .yx-message-con1 ul li .txt{
  width: 74%;
  display: inline-block;
  line-height: 26px;
  vertical-align: top;
  margin-top: 5px;
  padding-bottom: 5px;
}
.yx-message-con .yx-message-con1 ul li .txt span.more{
  cursor: pointer;
  margin-left: 3px;
}
.yx-message-con .yx-message-con1 ul li .txt .blue{
  color: #4689e2;
}


.yx-message-con .yx-message-con2 .yx-message-con2-tit{
    font-size: 16px;
    margin-bottom: 15px;
}
.yx-message-con .yx-message-con2 .yx-message-con2-tit img{
  margin-right: 10px;
}
.yx-message-con .yx-message-con2 ul li span.tou img{
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.yx-message-con .yx-message-con2 ul li{
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  line-height: 30px;
  padding:8px 0px;
}
.yx-message-con .yx-message-con2 ul li .txt{
   display: inline-block;
   margin-left: 5px;
}
.yx-message-con .yx-message-con2 ul li span.name{
  margin: 0px 10px;
  color: #666;
}
.yx-message-con .yx-message-con2 ul li span.time{
  float: right;
  color: #666;
}



.yx-message-con .yx-message-con3 .yx-message-con3-tit{
    font-size: 16px;
    margin-bottom: 15px;
}
.yx-message-con .yx-message-con3 .yx-message-con3-tit img{
  margin-right: 10px;
}
.yx-message-con .yx-message-con3 .yx-message-con3row{
  padding:5px 0px;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-tou{
  float: left;
  margin-bottom: 15px;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-tou img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    float: left;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr{
  margin-left: 45px;
  border-bottom: 1px solid #ddd;
  word-wrap:break-word;
  overflow:hidden;
  word-break:break-all;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr p{
  margin-bottom: 10px;
  font-size: 12px;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr .xing img{
  margin: 0px 3px;
  vertical-align: middle;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr .xing span.timen{
  margin-left: 5px;
  color: #999;
  padding-top: 3px;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr p.txt{
  font-size: 14px;
  line-height: 26px;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr p.name{
  color: #999;
  margin-bottom: 5px;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr p.time{
  color: #999;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr p.time span{
  margin-left: 10px;
}

.yx-message-con .yx-message-con3 .yx-message-con3row-righr p.time a.huifu{
  color: #4689e2;
  float: right;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr .huifubox{
  background: #f5f5f5;
  padding:10px;
  margin-bottom: 10px;
  /*word-wrap:break-word;
  overflow:hidden;
  word-break:break-all;*/
   max-width: 100%;
}

.yx-message-con .yx-message-con3 .yx-message-con3row-righr p.txt span.niming{
  background: #4689e2;
  padding:0px 5px;
  border-radius: 3px;
  font-size: 12px;
  margin-right: 3px;
  color: #fff;
}


.yx-message-con .yx-message-con3 .yx-message-con3row-righr .huifubox .more{
  cursor: pointer;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr .huifubox .more i.fa{
  color: #4689e2;
}

.yx-message-con .yx-message-con3 .yx-message-con3row-righr .huifubox p{
  margin: 10px 0px 0px;
  color: #999;
}
.yx-message-con .yx-message-con3 .yx-message-con3row-righr .huifubox .txth{
  display: inline-block;
  max-width: 100%;
  word-wrap:break-word;
  overflow:hidden;
  word-break:break-all;
  

}

.yx-message-con .yx-message-con3 .yx-message-con3row-righr .huifubox .del{
  cursor: pointer;
  margin-left: 5px;
}


.yx-message-con .yx-message-con4 .yx-message-con2-tit{
    font-size: 16px;
    margin-bottom: 15px;
}
.yx-message-con .yx-message-con4 .yx-message-con2-tit img{
  margin-right: 10px;
}
.yx-message-con .yx-message-con4 ul li span.tou img{
  width: 30px;
}
.yx-message-con .yx-message-con4 ul li{
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  line-height: 30px;
  padding:8px 0px;
}
.yx-message-con .yx-message-con4 ul li .txt{
   display: inline-block;
   margin-left: 5px;
}
.yx-message-con .yx-message-con4 ul li span.name{
  margin: 0px 10px;
  color: #666;
}
.yx-message-con .yx-message-con4 ul li span.time{
  float: right;
  color: #666;
}







.yx-message-con .yx-message-con5 .yx-message-con5-tit{
    font-size: 16px;
    margin-bottom: 15px;
}
.yx-message-con .yx-message-con5 .yx-message-con5-tit img{
  margin-right: 10px;
}
.yx-message-con .yx-message-con5 .yx-message-con5row{
  padding:5px 0px;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-tou{
  float: left;
  margin-bottom: 15px;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-tou img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    float: left;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr{
  margin-left: 0px;
  border-bottom: 1px solid #ddd;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr p{
  margin-bottom: 10px;
  font-size: 12px;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr .xing img{
  margin: 0px 3px;
  vertical-align: middle;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr .xing span.timen{
  margin-left: 5px;
  color: #999;
  padding-top: 3px;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr p.txt{
  font-size: 14px;
  word-wrap:break-word;
word-break:break-all; 
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr p.txt span.niming{
  background: #4689e2;
  padding:0px 5px;
  border-radius: 3px;
  font-size: 12px;
  margin-right: 3px;
  color: #fff;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr p.name{
  color: #999;
  margin-bottom: 5px;

}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr p.time{
  color: #999;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr p.time span{
  margin-left: 10px;
}

.yx-message-con .yx-message-con5 .yx-message-con5row-righr p.time a.huifu{
  color: #4689e2;
  float: right;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr .huifubox{
  background: #f5f5f5;
  padding:10px;
  margin-bottom: 15px;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr .huifubox .more{
  cursor: pointer;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr .huifubox .more i.fa{
  color: #4689e2;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr .huifubox p{
  margin: 10px 0px 0px;
  color: #999;
}
.yx-message-con .yx-message-con5 .yx-message-con5row-righr .huifubox .txth{
  display: inline-block;
  line-height: 26px;
}

.yx-message-con .yx-message-con5 .yx-message-con5row-righr .huifubox .del{
  cursor: pointer;
}


.minishow{
  background: #ff8a8a;
  padding:1.6vw 10vw;
  color: #fff;
  font-size: 3.2vw;
  display: none;
  width: 100%;
 position: fixed;
 top: 0px;
 z-index: 100000000000;
 box-sizing: border-box;
}
.minishow .miniclosed{
  width:3.2vw;
  position: absolute;
  top: 1.8vw;
  right: 6vw;
}
.minishow .miniclosed img{
   width:3.2vw;
}




/*表情*/
.qqFace { margin-top: 4px; background: #fff; padding: 2px; border: 1px #dfe6f6 solid; }
.qqFace table td { padding: 0px; }
.qqFace table td img { cursor: pointer; border: 1px #fff solid; }
.qqFace table td img:hover { border: 1px #0066cc solid; }

/*选中框变为蓝色*/
.layui-form-checkbox[lay-skin=primary] i:hover{
  border-color: #1e89e0 !important;
}
.layui-form-checked[lay-skin=primary] i{
  border-color: #1e89e0;
  background-color: #1e89e0;
}









/*媒体查询设备小于等于1280执行的css*/
/*1280-150*/
@media screen and (max-width: 1130px) {
    .section-c .layui-table th{
      font-size: 12px;
      padding: 5px 8px;

    }
    .section-c .layui-table td{
      font-size: 12px;
      padding: 5px 7px;

    }
    .layui-table tr td .btn{
      padding: 2px 5px;
    }
    .t_index_t_qk .t_index_t_qk_c .t_index_t_qk_item dl dt{
      float: none;
      margin-top: 5px;
      margin-bottom: 10px;
    }
    .layui-table tr td.bg-green .btn-no{
      padding: 6px 2px !important;
    }
    .layui-table tr td.bg-green img{
       margin:6px 2px !important;
    }
    .ziliao-detailc-rt-box{
      max-height: 400px;
    }
    .yx-row .yx-col h2{
      font-size: 14px;
    }
}


/*媒体查询设备小于等于1440执行的css结束*/


@media screen and (min-width: 1130px) and (max-width: 1290px) {
    .section-c .layui-table th{
      font-size: 12px;
      padding: 5px 8px;

    }
    .section-c .layui-table td{
      font-size: 12px;
      padding: 5px 7px;

    }
    .layui-table tr td .btn{
      padding: 2px 5px;
    }
    .layui-table tr td.bg-green .btn-no{
      padding: 6px 4px !important;
    }
    .layui-table tr td.bg-green img{
       margin:6px 4px !important;
    }
    .layui-table tr td.bg-green .btn-no img{
       margin:0px !important;
    }
    .ziliao-index-con .layui-table td,.ziliao-index-con .layui-table th{
      padding: 6px 3px;
      max-width: 80px;
      font-size: 12px;
      color: #515151;
    }
    .ziliao-detailc-rt-box{
      max-height: 480px;
    }

}



