/*!******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/20220531_cnrRevision/scss/animate.css ***!
  \******************************************************************************************************************************************************************************/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.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;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rubberBand {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    transform: scale(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -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 {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) 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 {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@keyframes slideOutDown {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    transform-origin: center bottom;
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(2000px);
    transform-origin: center bottom;
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(-2000px);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateX(2000px);
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    transform-origin: center top;
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    transform: scale(0.1) translateY(-2000px);
    transform-origin: center top;
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
/*!********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/20220531_cnrRevision/scss/unleash.2.css ***!
  \********************************************************************************************************************************************************************************/
@charset "UTF-8";
/* CSS Document */
body {
  margin: 0;
}

.unleash_slider {
  overflow: hidden;
  display: block;
  position: relative;
  box-shadow: 0px 0px 10px #010101;
}

.unleash_slide {
  overflow: hidden;
  display: block;
  box-shadow: -5px 0px 5px rgba(1, 1, 1, 0.3);
  position: absolute;
  float: left;
  display: inline-block;
  zoom: 1;
  background: #000;
}

.unleash_caption {
  position: absolute;
}

.unleash_caption h6 {
  color: #fff;
}

.unleash_caption p {
  color: #fff;
}

.unleash_content {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.unleash_drag {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
}

.unleash_slide_mouseDown {
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
}

.example_1 {
  box-shadow: 5px 0px 5px rgba(1, 1, 1, 0.3);
}

.unleash_slide img,
.unleash_slide video {
  position: relative;
  width: 100%;
  opacity: 0.7;
  transition: opacity 700ms;
}

.unleash_slide img:hover,
.unleash_slide video:hover {
  opacity: 1;
}

.unleash_slide.active img,
.unleash_slide.active video {
  opacity: 1;
}

.upper_text {
  position: absolute;
  width: 100%;
  margin: none;
}

.upper_text h4 {
  text-align: center;
  margin: 0;
}

.upper_text h4 a {
  color: white;
  margin: 0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 55px;
  text-decoration: none;
}

.lower_text {
  position: absolute;
  width: 100%;
  margin: none;
  text-align: center;
  padding: 0 5%;
}

.lower_text p {
  color: white;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 800px) {
  .upper_text h4 a {
    font-size: 20px;
  }

  .lower_text p {
    display: none;
  }
}
.main_nav {
  background: #111;
  padding: 5px 0;
  box-shadow: 0px 2px 10px rgba(1, 1, 1, 0.81);
}

.color {
  padding: 40px 0;
  /*border-top: 1px solid rgba(255,255,255,0.1);*/
}

.unleash_container {
  position: relative;
}

.unleash_controls {
  width: 120px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  overflow: hidden;
}

.unleash_loader {
  height: 2px;
  background: #00f0ff;
  /*left: -101%;*/
  position: absolute;
  position: relative;
  z-index: 1000;
  box-shadow: 0px 0px 3px 1px #00f0ff;
  -webkit-box-shadow: 0px 0px 3px 1px #00f0ff;
  -moz-box-shadow: 0px 0px 3px 1px #00f0ff;
  top: 10px;
}

.unleash_loader_bg {
  height: 20px;
  overflow: hidden;
  background: #000000;
  z-index: 999;
  width: 100%;
  top: -12px;
  position: absolute;
}

.unleash_pause {
  background: #fff;
  height: 30px;
  width: 40px;
  float: left;
  cursor: pointer;
}

.unleash_buttons {
  overflow: hidden;
  width: 100%;
  margin: 20px auto 0px auto;
  text-align: center;
}

.unleash_buttons i {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.emboss {
  background: rgba(255, 255, 255, 0.25);
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
}

.main_slider {
  background: #040d1c;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzA0MGQxYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxYzM5NDkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #040d1c 0%, #437591 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#040d1c", endColorstr="#1c3949",GradientType=0 );
  /* IE6-8 */
}

@font-face {
  font-family: "fontello";
  src: url(//www.cnr.cn/2022-0727/images/design/fontello.5f97a0.eot);
  src: url(//www.cnr.cn/2022-0727/images/design/fontello.5f97a0.eot#iefix) format("embedded-opentype"), url(//www.cnr.cn/2022-0727/images/design/fontello.1cc2f8.woff) format("woff"), url(//www.cnr.cn/2022-0727/images/design/fontello.94ffdd.ttf) format("truetype"), url(//www.cnr.cn/2022-0727/images/design/fontello.669b3c.svg#fontello) format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?63503719#fontello') format('svg');
  }
}
*/
[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-left-open:before {
  content: "\e806";
}

/* '' */
.icon-right-open-5:before {
  content: "\e819";
}

/* '' */
.icon-play-1:before {
  content: "\e808";
}

/* '' */
.icon-pause-1:before {
  content: "\e801";
}

/* '' */
.icon-to-end-1:before {
  content: "\e802";
}

/* '' */
.icon-to-start-1:before {
  content: "\e805";
}

/* '' */
.icon-left-open-1:before {
  content: "\e80a";
}

/* '' */
.icon-right-open-1:before {
  content: "\e80b";
}

/* '' */
.icon-left-open-mini:before {
  content: "\e80c";
}

/* '' */
.icon-right-open-mini:before {
  content: "\e80d";
}

/* '' */
.icon-left-open-big:before {
  content: "\e80e";
}

/* '' */
.icon-right-open-big:before {
  content: "\e80f";
}

/* '' */
.icon-play:before {
  content: "\e800";
}

/* '' */
.icon-right-open:before {
  content: "\e809";
}

/* '' */
.icon-to-end:before {
  content: "\e803";
}

/* '' */
.icon-to-start:before {
  content: "\e804";
}

/* '' */
.icon-left-open-outline:before {
  content: "\e810";
}

/* '' */
.icon-left-open-2:before {
  content: "\e811";
}

/* '' */
.icon-right-open-outline:before {
  content: "\e812";
}

/* '' */
.icon-right-open-2:before {
  content: "\e813";
}

/* '' */
.icon-left-open-3:before {
  content: "\e814";
}

/* '' */
.icon-right-open-3:before {
  content: "\e815";
}

/* '' */
.icon-left-open-4:before {
  content: "\e816";
}

/* '' */
.icon-right-open-4:before {
  content: "\e817";
}

/* '' */
.icon-left-open-5:before {
  content: "\e818";
}

/* '' */
.icon-pause:before {
  content: "\e807";
}

/* '' */
/*!***************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/20220531_cnrRevision/scss/app.scss ***!
  \***************************************************************************************************************************************************************************/
@charset "UTF-8";
.wrapper {
  background: url(../images/design/background.08bcb1.png) no-repeat center 2770px;
  padding-bottom: 56px;
  overflow: hidden;
}

.AD {
  position: relative;
}

img.lazy {
  background: #dddddd url(../images/design/lazy_efefef.9978b5.png) no-repeat center;
}

.towCode {
  position: absolute;
  z-index: 999999;
  bottom: -204px;
  left: 50%;
  background: url(../images/design/towCode.354345.png) no-repeat 0 0;
  width: 204px;
  margin-left: -102px;
  height: 204px;
}

.wrapper .goback {
  position: fixed;
  display: none;
  z-index: 9999;
  right: 10px;
  bottom: 150px;
  background: url(../images/design/goback.d332db.png) no-repeat 0 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.guochao_dianji {
  position: absolute;
  right: 144px;
  top: 26px;
  background: url(../images/design/guochao_dianji.a42424.png) no-repeat 0 0;
  width: 125px;
  height: 37px;
}

.wrapper a {
  color: #000000;
}

.wrapper a:hover {
  color: #AA182C;
  text-decoration: none;
}

.wrapper i.sound {
  background: url(../images/design/icon_sound_s.9ef3b6.png) no-repeat left top;
  display: inline-block;
  width: 10px;
  height: 13px;
  cursor: pointer;
  margin-left: 0.3em;
}

.wrapper i.sound.current {
  background: url(../images/design/icon_sound_s.409363.gif) no-repeat 0 0;
}

.wrapper .w1200 {
  width: 1200px;
  margin: 0 auto;
}

.wrapper .banner {
  width: 100%;
  height: 200px;
  background: #BA0002 url(../images/design/banner.b9aa07.png) no-repeat center top;
}

.wrapper .menu-main {
  box-shadow: 0 7px 14px #F4F4F4;
  margin-bottom: 0px;
}

.wrapper .menu-main .line1 {
  position: relative;
  height: 90px;
}

.wrapper .menu-main .line1 .w1200 {
  position: relative;
}

.wrapper .menu-main .line1 .form {
  position: absolute;
  left: 144px;
  top: 24px;
}

.wrapper .menu-main .line1 .form .input_wrapper {
  position: relative;
  background: url(../images/design/search-main.da06e9.png) no-repeat left top;
  width: 126px;
  height: 20px;
  padding: 7px 14px;
  font-size: 0;
}

.wrapper .menu-main .line1 .form .input_wrapper input[type=text] {
  border: none;
  font-size: 14px;
  font-style: normal;
  width: 106px;
  height: 20px;
  line-height: 20px;
  padding: 0;
  margin: 0;
  outline: none;
  background: none;
}

.wrapper .menu-main .line1 .form .input_wrapper button[type=submit] {
  position: absolute;
  right: 10px;
  top: 7px;
  background: transparent url(../images/design/icon_search.2379f1.png) no-repeat center;
  height: 20px;
  width: 20px;
  border: none;
  outline: none;
  cursor: pointer;
}

.wrapper .menu-main .line1 .radio-live {
  position: absolute;
  left: 327px;
  top: 30px;
  background: url(http://www.cnr.cn/2021/images/RadioLive0623.png) no-repeat left top;
  width: 93px;
  height: 24px;
  cursor: pointer;
  background-size: 100% 100%;
}

.wrapper .menu-main .line1 .logo {
  position: absolute;
  width: 109px;
  height: 34px;
  left: 14px;
  top: 24px;
}

.wrapper .menu-main .line1 .logo img {
  display: block;
  width: 106px;
  height: 33px;
}

.wrapper .menu-main .line1 .mzgbw0304 {
  position: absolute;
  left: 697px;
  top: 30px;
  background: url(http://www.cnr.cn/2021/images/mzgbw0304.png?v=1) no-repeat left top;
  background-size: 100% 100%;
  width: 75px;
  height: 22px;
}

.wrapper .menu-main .line1 .mzgbw0304 a {
  display: block;
  height: 100%;
  width: 100%;
}

.bor0304 {
  border-right: 1px solid #ececec;
  position: absolute;
  left: 779px;
  height: 17px;
  top: 33px;
}

.bor0305 {
  border-right: 1px solid #ececec;
  position: absolute;
  left: 896px;
  height: 17px;
  top: 33px;
}

.wrapper .menu-main .line1 .gjyjgbw0304 {
  position: absolute;
  left: 787px;
  top: 30px;
  background: url(http://www.cnr.cn/2021/images/gjyjgbw0304.png?v=1) no-repeat left top;
  background-size: 100% 100%;
  width: 102px;
  height: 22px;
}

.wrapper .menu-main .line1 .gjyjgbw0304 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .menu-main .line1 .nhtww0304 {
  position: absolute;
  left: 904px;
  top: 30px;
  background: url(http://www.cnr.cn/2021/images/nhtww0304.png?v=1) no-repeat left top;
  background-size: 100% 100%;
  width: 75px;
  height: 22px;
}

.wrapper .menu-main .line1 .nhtww0304 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .menu-main .line1 .download_app {
  position: absolute;
  left: 1006px;
  top: 26px;
  background: url(../images/design/btn_downloadAPP.ac60b8.png) no-repeat left top;
  width: 94px;
  height: 30px;
}

.wrapper .menu-main .line1 .download_app a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .menu-main .line1 .email {
  position: absolute;
  left: 1114px;
  top: 26px;
  background: url(http://www.cnr.cn/2021/images/btn_Email0623.png) no-repeat left top;
  width: 80px;
  height: 30px;
  background-size: 100% 100%;
}

.wrapper .menu-main .line1 .email a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .menu-main .line2 {
  height: 40px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.wrapper .menu-main .line2 .temp {
  float: left;
  padding-top: 1px;
}

.wrapper .menu-main .line2 .temp img {
  display: block;
}

.wrapper .menu-main .line2 .nav-main {
  height: 40px;
}

.wrapper .menu-main .line2 .nav-main li {
  position: relative;
  float: left;
  height: 40px;
  line-height: 40px;
  margin-left: 47px;
}

.wrapper .menu-main .line2 .nav-main li:first-child {
  margin-left: 13px;
}

.wrapper .menu-main .line2 .nav-main li:hover .sub {
  visibility: visible;
  opacity: 1;
}

.wrapper .menu-main .line2 .nav-main li a {
  font-size: 16px;
  font-weight: 700;
}

.wrapper .menu-main .line2 .nav-main li a:hover {
  color: #AA182C;
  text-decoration: none;
}

.wrapper .menu-main .line2 .nav-main li .sub {
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.4s;
  position: absolute;
  z-index: 9;
  top: 37px;
  left: -2px;
  padding: 10px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 124px;
}

.wrapper .menu-main .line2 .nav-main li .sub:before {
  content: "";
  position: absolute;
  left: 10px;
  top: -7px;
  background: url(../images/design/menu-sub-up.6ed12f.png) no-repeat center;
  width: 14px;
  height: 8px;
}

.wrapper .menu-main .line2 .nav-main li .sub a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
  font-weight: normal;
  margin: 0 3px;
  white-space: nowrap;
}

.wrapper .menu-main .line3 {
  height: 39px;
  border-bottom: 1px solid #dfdfdf;
}

.wrapper .menu-main .line3 .nav-local li {
  float: left;
  height: 24px;
  line-height: 24px;
  padding-top: 6px;
  margin-left: 23px;
}

.wrapper .menu-main .line3 .nav-local li:first-child {
  margin-left: 16px;
}

.wrapper .menu-main .line3 .nav-local li a {
  font-size: 12px;
  line-height: 24px;
  height: 24px;
}

.wrapper .row {
  padding-top: 38px;
}

.wrapper .row1 {
  margin-bottom: 16px;
}

.wrapper .row1 .header {
  padding-top: 27px;
}

.wrapper .row1 .header .swiper-container {
  width: 1200px;
  height: 48px;
  text-align: center;
}

.wrapper .row1 .header h1 {
  width: 1200px;
  height: 48px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wrapper .row1 .header h1 a {
  font-size: 36px;
  font-weight: bold;
  color: #AA182C;
}

.wrapper .row1 .header h1 a:hover {
  text-decoration: none;
}

.wrapper .row1 .header h1 i.sound {
  background: url(../images/design/icon_sound_m.2b1374.png) no-repeat left top;
  width: 15px;
  height: 19px;
  margin-left: 0;
}

.wrapper .row1 .header h1 i.sound.current {
  background: url(../images/design/icon_sound_m.138397.gif) no-repeat 0 0;
}

.wrapper .row1 .header .subhead {
  text-align: center;
  margin-top: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wrapper .row1 .header .subhead strong {
  font-weight: normal;
  font-size: 16px;
}

.wrapper .row1 .main {
  padding-top: 34px;
}

.wrapper .row1 .main .w650 {
  width: 650px;
  float: left;
}

.wrapper .row1 .main .w650 .swiper-container {
  position: relative;
  width: 650px;
  height: 365px;
}

.wrapper .row1 .main .w650 .swiper-container .swiper-slide {
  position: relative;
}

.wrapper .row1 .main .w650 .swiper-container .swiper-slide a {
  display: block;
}

.wrapper .row1 .main .w650 .swiper-container .swiper-slide a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/design/fouce_mask.8b8b73.png) no-repeat 0 0;
  height: 70px;
  width: 650px;
}

.wrapper .row1 .main .w650 .swiper-container .swiper-slide a img {
  display: block;
  width: 650px;
  height: 365px;
}

.wrapper .row1 .main .w650 .swiper-container .swiper-slide a span {
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #ffffff;
  text-indent: 2em;
  line-height: 46px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wrapper .row1 .main .w650 .swiper-container .pagination {
  position: absolute;
  z-index: 99;
  right: 15px;
  left: auto;
  bottom: 14px;
  width: auto;
}

.wrapper .row1 .main .w650 .swiper-container .pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background: #5a5a5a;
}

.wrapper .row1 .main .w650 .swiper-container .pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

.wrapper .row1 .main .w650 .swiper-container .prev {
  position: absolute;
  z-index: 9;
  left: 0;
  top: 50%;
  margin-top: -27px;
  background: url("http://www.cnr.cn/2021/images/fouces_prev.png") no-repeat 0 0;
  width: 36px;
  height: 55px;
  cursor: pointer;
  opacity: 0;
  transition: opacity ease-in-out 0.6s;
}

.wrapper .row1 .main .w650 .swiper-container .next {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 50%;
  margin-top: -27px;
  background: url("http://www.cnr.cn/2021/images/fouces_next.png") no-repeat 0 0;
  width: 36px;
  height: 55px;
  cursor: pointer;
  opacity: 0;
  transition: opacity ease-in-out 0.6s;
}

.wrapper .row1 .main .w650 .swiper-container:hover .prev {
  opacity: 1;
}

.wrapper .row1 .main .w650 .swiper-container:hover .next {
  opacity: 1;
}

.wrapper .row1 .main .w512 {
  width: 510px;
  float: left;
  margin-left: 30px;
}

.wrapper .row1 .main .w512 ul {
  margin-top: -32px;
}

.wrapper .row1 .main .w512 ul li {
  font-size: 18px;
  line-height: 2.5;
  border-top: 1px solid #e5e5e5;
  padding-left: 10px;
  white-space: nowrap;
}
.wrapper .row1 .main .w512 ul li:first-child {
  border-top: none;
}
.wrapper .row1 .main .w512 ul li:nth-child(5) {
  border-top: none;
}

.wrapper .row1 .main .w512 ul li h2 {
  margin-top: 20px;
  line-height: 2.2;
  font-size: 21px;
}

.wrapper .row1 .main .w512 ul li h2 a {
  font-size: 21px;
  font-weight: bold;
}

.wrapper .row1 .main .w512 ul li a {
  font-size: 18px;
}

.wrapper .row1-1 .w1200 {
  position: relative;
}

.wrapper .row1-1 .w520 {
  float: left;
  width: 520px;
}

.wrapper .row1-1 .w520 .dujia {
  position: relative;
}

.wrapper .row1-1 .w520 .dujia .title .left {
  position: relative;
  margin-left: 2px;
  float: left;
  font-size: 27px;
  line-height: 1.2;
}

.wrapper .row1-1 .w520 .dujia .title .left:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 100%;
  background: #AA182C;
}

.wrapper .row1-1 .w520 .dujia .title .left a {
  font-size: 27px;
  line-height: 1.2;
  font-weight: bold;
}

.wrapper .row1-1 .w520 .dujia .title .right {
  float: right;
}
.wrapper .row1-1 .w520 .dujia .title .right a.more {
  font-size: 14px;
  color: #8d8d8d;
}

.wrapper .row1-1 .w520 .dujia ul {
  padding-top: 10px;
}

.wrapper .row1-1 .w520 .dujia ul li {
  font-size: 18px;
  line-height: 2.5;
  border-top: 1px solid #e5e5e5;
  padding-left: 10px;
  white-space: nowrap;
}
.wrapper .row1-1 .w520 .dujia ul li:first-child {
  border-top: none;
}

.wrapper .row1-1 .w520 .early-warning {
  position: absolute;
  left: -8px;
  top: 175px;
  background: url(../images/design/early_warning.9fbb78.png) no-repeat 0 0;
  width: 541px;
  height: 103px;
}
.wrapper .row1-1 .w520 .early-warning ul {
  position: absolute;
  left: 178px;
  top: 31px;
  height: 44px;
  width: 320px;
  overflow: hidden;
}
.wrapper .row1-1 .w520 .early-warning ul li {
  height: 22px;
  line-height: 22px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.wrapper .row1-1 .w520 .early-warning ul li:first-child a {
  color: #e15805;
  font-weight: bolder;
}

.wrapper .row1-1 {
  position: relative;
  height: 293px;
}

.wrapper .row1-1 .w674 {
  position: relative;
  float: right;
}
.wrapper .row1-1 .w674 .erwen {
  position: absolute;
  right: -13px;
  top: 0;
  background: url(../images/design/erwen_beijing.bb1a61.png) no-repeat 0 0;
  width: 674px;
  height: 293px;
}
.wrapper .row1-1 .w674 .erwen .erwen-title {
  position: absolute;
  left: 46px;
  top: 10px;
  width: 148px;
  height: 64px;
}
.wrapper .row1-1 .w674 .erwen .erwen-title a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -9999px;
}
.wrapper .row1-1 .w674 .erwen .change {
  position: absolute;
  background: url(../images/design/icon_change.50dd9f.png) no-repeat 0 0;
  width: 58px;
  height: 58px;
  top: 16px;
  right: 32px;
  cursor: pointer;
}
.wrapper .row1-1 .w674 .erwen .box {
  position: absolute;
  left: 15px;
  top: 86px;
  width: 594px;
  height: 184px;
}
.wrapper .row1-1 .w674 .erwen .box ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.wrapper .row1-1 .w674 .erwen .box ul li {
  position: relative;
  float: left;
  width: 272px;
  height: 56px;
}
.wrapper .row1-1 .w674 .erwen .box ul li a {
  position: relative;
  display: block;
  height: 100%;
  padding-left: 38px;
  line-height: 22px;
  font-size: 14px;
  color: #8d8d8d;
  display: flex;
  align-items: center;
  border-radius: 10px;
}
.wrapper .row1-1 .w674 .erwen .box ul li a:hover {
  background-color: #eef6fc;
  color: #000000;
}
.wrapper .row1-1 .w674 .erwen .box ul li a .sound {
  position: absolute;
  top: 50%;
  left: 0;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAdCAYAAAC5UQwxAAAGyklEQVRIx42XW6xdVRWGvzHGXGtfz9nnnN4QEHqoRURKuSgCBgUC1UDLCzFFiKSVJsYYfTC++GR8Iz6KQQiJkQg+IMFINBKUhFtTUaJFvFSSthJaoD1tz2Xf15prTh/23ufs3RJkJTMz2VmZ3/z/Of6x5pYLLz+ACKAgCmpgiVKpG405x+z6lMaso1o3kpImZrJBjIoIBUY3xHjqx9/cXPARH/n4pw+swRyUysb0uoT1m1Jm1yVU67YpSfV6NbahXAgIBshwcyYe5WhUDhYh/vmhfZtXPhR40bYB0JxQqRmzG1PWb0qZari5UkXvRrg2y4N0u55eP5AVgUhEDJJUKVWUat1RqxtpSXOEl/Mi/van++Y7HwzcfgBzQrVuzJ2XMrc+pVq3a9SxJ8tCqdn0rDRzuv2CzAeiRDBQEzQBlyrlqjI1ndBoJExPO9KSLUXiww/vnX/7HODmaw9QqTnmNqbMzCWUq7oTY2en42VpMaPZ9vgQB7YbiBvAJmYnWCqUyspMI2VuLqVSsTwKP390z/zr40BNSkZ9xlGpKWi8M/Nh19JiJidO9FhaycmL/w8TNyg6HyPLnZyFpT7Nnk+KGB/Y9/jR7RPAcm1wDiHGK3MfdjVXck6fyeh0CwJDkA0K6mzI+KxOEBMC0MkCSy1PNw9axPjA3sePbFoDVpUQYzkv4n29XiHLKzm9fkGUMVUOrvrUFFd+sjZceARZg42PKNDzgXa/wIdY8sSv3f/EEQFwEcjzcCsqM5kP9LKzYENVP/rOFqaqxk9+fZxnXlkAm1SnTgbv2lCtQlYEshBwTrcC24C/a+6D5UW4NS8C/RHMTcLEYF3DUa8o37/vIh78xhbmLyifA1Mn2HCMlOYxggoF8XYAl/lwmROZwkeKCIzObAQbgrM88PRzB8mynL1338C2S2o89vx7/P7g4ipsdR6NRAkiBCJRZetXnzo6Y7PzX79ZnVyCCkHi6vmcrfKNo21ee6vDH15/hzf//RZfuuET3H71Os5fV+LwQp+OD2MgwRJdVayJgopE5Zit27J3h6a2QUbtarUohuEentPJlZxOMKIJx1aEZ1/6BxetL3HbNedz46XTnOl63lnOBjA3hCWCOsWlipiAhgWbu3TPHWJWV5NBIQxhMqxCGe76e1+5kOOnFmmFFIkZPm3w4psnOHz0CDs+ezG3XD7LbC3hr8c7EzBLBOcULBIlLCoSEtFAVCZhtgZTB7u/uJFt52eYM1y1jiUOrU6z/2SDex58nndPN7lr++zQzoFKG1orQ9cglJxY4dGAmA7PbqjMZCJrIUTqpQixj0tSNBFcuQy+xZa5CrO1EjGyChqoVMwp4iAWESTkLkqxHNVvFDPE6QfC1AkRiIAmhpVSLDU+1ojs3j7Lzus/x8lmzqMvvT9hpTlFE0E0UoSCqGHJIcVx8Fux0pidk0BxAkAg4koVzMH2DR1+eO811EvGK4ebPPm3Myz0/Bos0dUKjXhiXiAS33VoOBTF3yzqEbOxIE/2yAj084K0OMO3d8yz87qLWeoWPPTyCV440hwEfhSFMZhYpPAFIXrEOORE+Wck74WYl7F00sqxVuV94JbPbOXeL9e55LwGr/23xS9eP8Wxlj8XNmZrpMAXGT7kbz9z19ULThPNQui96kP3toR0qFKHgV+zV0T4/BUX0M4Cj7x6kuf/s0wwWYONV6ZTNFHUAlmWk/V7RMILAM6lCVneey4U/Ru971RTcaimq1aOusW/3utSSpTH9p/k8FL/rMUnYzD4Dbz3dLsdcp8dSyvpXwbASpmg/ab3nafzrHV/nhmuZIjqahNWpzzyyklE4d22PwcyUShDa4uY0263aLdbXk2eePrOqwKAS8olxKrEbra/8P35Xmf5JksVl04hlg7sdcLxZjZYeNQrR7ChotWQG/iQ0W6u0FxeJsTw1O9233R09AF2LjEsrYIr6LWLX+Z5t9ReCddhBbVkBiuXh7s+N9Dj6tQJSCDL+jSXl2muLBNj+M0f99z60vgVww1KN8WSadQRuu3Fn+V5Z6G5lN9RhJ7UYgOmpiilKWrJJCxR1CBSkGU5vW6b5soK3U67LyZPvrhvx2tn39rc4KugiJVw5Rlc2WKntfRs1mu92W4u3tPrtzZXOjWq03XK9QppOR1WpSISCbEg9316nQ69fjei8Q2XuF+9uG/HqQ+8l37hB29MBBwpyLMOndYSvW6TIvjL1OmNYnKFmNTMBEsdYhBllFddFCcH1cmr+79157EPu3k7HavEQQSMtJpQbVTJ+h263dahXrd1yBe5qMlGMdkUJZQRDeqkq07f/9N3d53+qP8t/gclU8l0pbUDMAAAAABJRU5ErkJggg==) no-repeat left top;
  width: 28px;
  height: 29px;
  margin-top: -14px;
  cursor: pointer;
}
.wrapper .row1-1 .w674 .erwen .box ul li a .sound.current {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAdCAYAAAC5UQwxAAAGDklEQVRIiY2WXagdVxXHf2vtPXM+771JGpNA2tBCP8SPpi+KL/rQ2oJcK4IFsdhqIChRxNKAIGohb4JPWrBVizTQgFofqlLwwZYilhjsi1qUPjQRm4TG2OTc8zVzZvaHDzNzzpxrLA5s9mEdzv6d/1r/tfbIze87iwigIApqwCRKb2jY2mfZuz9la6+lPzQkHe0aI7eLYVMEh2EUYrzwgxO3lvyfj9zy/rMrmIVO17B5U8L+gyl7b0roD82dSaqPqGEb5SigGEDqP2ekQDkXlRd8iGeePH7rlXcFHvlgBTRW6A0Mew+k7D+YsrFlj3R6+j2Eh4oyaJY58kWg8IFIRAwkqdLpKf2hZTA0pB3NEH5U+njqqeO3jW4MPHoWY4X+0LDvUMq+/Sn9ofmMWk4XRRhMJo7xpCRbeAoXiBLBgBpBE7Cp0u0rG5sJW1sJm5uWtGMuReKnf3jsttd2A1UtdAeGPe9J2dxKsIk8Ubjw/LVrxeDiW3MuXppzbVSQLTyBFUwsiAqBSF4Ero0LLl/NePvfC6aZOxzg919+9sJn/wuYdAzDPZbeQEHjdwoXTo2uF3LlSs5oXFL6WNXYgNgVbLnbakfBxcjOvOTqaMEkdz0f45njpy98ag3YHVR1CDF+snTh1GRc8s61gnnmCdQgUxlqN6S9qxXECAGYF4HR1JGVwfgYzxw7ff6uFbCvhBg3Sh+fznMvO+OSfOGJ0lJlQdoQ00BWsPaKArkLzBYeF+LQEX/y6HPnBUAjUJbh696Hw/Pckxe7YEYqmLmBot0wU6lUK4hC4QNFCAThox62AbR0ISl9+FrpA4sGZtfrJQZ6PcPRu4bYRJZgmwj33D6k29XKtVYw9WqUljGCCp54EkALF+7zIR4oXcBHoKlZA6sVfeORWzj9zffy8McPLmNfuP8QT5+4g8cevHmpcE1xogSpnBxVPva5X1w4rM77+wMRHyFqXEtdW+XBvSkARw51lgce2FPFDmwlu0CCSXRZ76ACKhqEey3i745qKlikVS/qelQxpJ4UUh2oRqoZTD3mWkBjK5hJBLFa/V6FKP5uG004EoioVAVfwqyghqUxRBtfs0xdE5MWsA1Tq9VuhKiRSDyiSOiKBqLyP2Fq61MbhY0jdSm7NovW6aw+mzq1TdYgDFSML9CAmLiC2XWY2lX6pK2wHWsAVqv61TDTpJQIEjKN4i9HdYiJK5hZh2m7htqK6Ur1WgpraKNYDUTxRA2XFfF/BVcN5TVlqyVtNdL6bglkF6xW16TURCIekfi6ouHlKA5RtxpZya6xZQSR1eHGVgfRMtJuiKn7UEwkRE+IDjS+rKL8NlKOQyzBxFUqm4lSp7cIEYDMR7TusbKOucCy7xqo1rtowPkCF8rXfr79gTetJjoPIX/GhezxhBQxBrW6nKGNQZ79w7/45/UFL74+Wo6wX/99hxJ49a1ZZZKWcTRR1ASKoqRY5ETC9wHUpgkYvhv8YuTcHMShjTFa8/HSuODMn95hUoZl2nZKz/N/G/F27tbaoFrggyPL5pSu+ItJzM8qYK+L7aRXo7iTZTGlLGZE8Uj9nlMNYq3MUNdl2W9rrbCCaSL46JjNpsxm0yISvvTL7XtcdeN3O3T6fUxif+rd4sf5fIdiMQUaE7Umx9IMK4guFWntSHChYDreYbIzwnv32G8e+si55gK2NjGYtA/Wk8/8V8oyG87G4WGMZ5DswXS7tSEa268aer33BCRQFAsmOztMxjvEGL79uy/e+1T7FcNW1k0xySZq8dns+ufLcv7mZFR+y4dcB3ELNjbopClqknVYolVT4ymKkjybMRmPyeazqRg58crxB55j12OrdxVFTAfb3YPtmjifjp4o8umLs8n1J/PF9EO9+YD+5pDusEfaTes6KSJVj5VuQT6fky+yiMZf2cSefOX4A+d3wypg69IU0yXpJ3SHXebT0bk8m3zYB3dfnk2PLYrZJ+S67DNGMKlFDMTmljB6Uay8oFaeefWr23++EailsAHW5rCGtJ/Q3+pTLOZk2fSlPJu+5HypauQOMXJnlLCBqFcrI7X6xh8ff/Af7wZpP/8BHJ1+TM1NI4cAAAAASUVORK5CYII=) no-repeat 0 0;
}

.wrapper .AD img {
  display: block;
}

.wrapper .row2 {
  margin-top: 26px;
  background: #ffffff;
}

.wrapper .row2 .w360 {
  width: 360px;
  float: left;
}
.wrapper .row2 .w360.ml30 {
  margin-left: 30px;
}

.wrapper .row2 .w360 .jiaodian {
  position: relative;
  width: 360px;
  margin-bottom: 25px;
}

.wrapper .row2 .w360 .jiaodian .title {
  position: relative;
}

.wrapper .row2 .w360 .jiaodian .title .left {
  position: relative;
  float: left;
  font-size: 27px;
  line-height: 1.2;
  margin-left: 4px;
}

.wrapper .row2 .w360 .jiaodian .title .left:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 100%;
  background: #AA182C;
}

.wrapper .row2 .w360 .jiaodian .title .left a {
  font-size: 27px;
  line-height: 1.2;
  font-weight: bold;
}

.wrapper .row2 .w360 .jiaodian .pic {
  margin-top: 12px;
}

.wrapper .row2 .w360 .jiaodian .pic a {
  position: relative;
  display: block;
}

.wrapper .row2 .w360 .jiaodian .pic a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/design/fouce_mask.8b8b73.png) no-repeat 0 0;
  width: 360px;
  height: 70px;
}

.wrapper .row2 .w360 .jiaodian .pic a img {
  display: block;
  width: 360px;
  height: 203px;
}

.wrapper .row2 .w360 .jiaodian .pic a span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 16px;
  line-height: 60px;
  text-indent: 1em;
  color: #ffffff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wrapper .row2 .w360 .hottop {
  position: relative;
}

.wrapper .row2 .w360 .hottop .title {
  position: relative;
}

.wrapper .row2 .w360 .hottop .title .left {
  position: relative;
  float: left;
  font-size: 27px;
  line-height: 1.2;
  margin-left: 4px;
}

.wrapper .row2 .w360 .hottop .title .left:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 100%;
  background: #AA182C;
}

.wrapper .row2 .w360 .hottop .title .left a {
  font-size: 27px;
  line-height: 1.2;
  font-weight: bold;
}

.wrapper .row2 .w360 .hottop .title .right {
  position: absolute;
  right: 0;
  top: 8px;
  padding-left: 76px;
  background: url(../images/design/icon_hot_search.6216cf.png) no-repeat left center;
}

.wrapper .row2 .w360 .hottop .title .right .form .input_wrapper {
  position: relative;
  background: url(../images/design/search-main-s.772537.png) no-repeat left top;
  width: 93px;
  height: 14px;
  padding: 5px 12px;
  font-size: 0;
}

.wrapper .row2 .w360 .hottop .title .right .form .input_wrapper input[type=text] {
  border: none;
  font-size: 12px;
  font-style: italic;
  width: 71px;
  height: 14px;
  line-height: 14px;
  padding: 0;
  margin: 0;
  outline: none;
  background: none;
  color: #a4a4a4;
}

.wrapper .row2 .w360 .hottop .title .right .form .input_wrapper button[type=submit] {
  position: absolute;
  right: 10px;
  top: 6px;
  background: transparent url(../images/design/icon_search-s.7cfb7d.png) no-repeat center;
  height: 13px;
  width: 12px;
  border: none;
  outline: none;
  cursor: pointer;
}

.wrapper .row2 .w360 .hottop .box {
  position: relative;
  width: 318px;
  height: 298px;
  padding: 5px 20px 0 22px;
  margin-top: 13px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 30px 10px rgba(244, 244, 244, 0.8);
}

.wrapper .row2 .w360 .hottop .box ul li {
  height: 40px;
  padding: 9px 0 9px 29px;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.wrapper .row2 .w360 .hottop .box ul li:last-child {
  border-bottom: none;
}
.wrapper .row2 .w360 .hottop .box ul li:nth-child(1) {
  background: url(../images/design/1st.6432d8.png) no-repeat 0 11px;
}
.wrapper .row2 .w360 .hottop .box ul li:nth-child(2) {
  background: url(../images/design/2nd.f44847.png) no-repeat 0 11px;
}
.wrapper .row2 .w360 .hottop .box ul li:nth-child(3) {
  background: url(../images/design/3rd.06ffc5.png) no-repeat 0 11px;
}
.wrapper .row2 .w360 .hottop .box ul li:nth-child(4) {
  background: url(../images/design/4th.b1a739.png) no-repeat 0 11px;
}
.wrapper .row2 .w360 .hottop .box ul li:nth-child(5) {
  background: url(../images/design/5th.647690.png) no-repeat 0 11px;
}

.wrapper .row2 .w360 .hottop .box ul li em {
  font-weight: bold;
}

.wrapper .row2 .w360 .hottop .box ul li a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wrapper .row2 .w420 {
  float: left;
  width: 420px;
  margin-left: 30px;
}

.wrapper .row2 .w420 .title .left {
  position: relative;
  float: left;
  font-size: 27px;
  line-height: 1.2;
}

.wrapper .row2 .w420 .title .left:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 100%;
  background: #AA182C;
}

.wrapper .row2 .w420 .title .left a {
  font-size: 27px;
  line-height: 1.2;
  font-weight: bold;
}

.wrapper .row2 .w420 .title .right {
  float: right;
}

.wrapper .row2 .w420 .title .right a.more {
  font-size: 14px;
  color: #8d8d8d;
}

.wrapper .row2 .w420 .box {
  padding-top: 10px;
}

.wrapper .row2 .w420 .box .list li {
  position: relative;
  border-top: 1px solid #e5e5e5;
  height: 47px;
}

.wrapper .row2 .w420 .box .list li:first-child {
  border-top: none;
}

.wrapper .row2 .w420 .box .list li h3,
.wrapper .row2 .w420 .box .list li span {
  width: 100%;
  height: 100%;
  line-height: 47px;
  font-size: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wrapper .row2 .w420 .box .list li h3 a {
  font-weight: bold;
}

.wrapper .row2 .w300 {
  width: 300px;
  float: left;
  margin-left: 28px;
}

.wrapper .row2 .w360 .wangping {
  position: relative;
}

.wrapper .row2 .w360 .wangping .title .left {
  position: relative;
  margin-left: 2px;
  float: left;
  font-size: 27px;
  line-height: 1.2;
}

.wrapper .row2 .w360 .wangping .title .left:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 100%;
  background: #AA182C;
}

.wrapper .row2 .w360 .wangping .title .left a {
  font-size: 27px;
  line-height: 1.2;
  font-weight: bold;
}

.wrapper .row2 .w360 .wangping .title .right {
  float: right;
}
.wrapper .row2 .w360 .wangping .title .right a.more {
  font-size: 14px;
  color: #8d8d8d;
}

.wrapper .row2 .w360 .wangping .box {
  width: 100%;
  margin-top: 18px;
}

.wrapper .row2 .w360 .wangping .box .item {
  float: left;
  width: 170px;
  height: 200px;
  background-color: #ffffff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 15px 5px rgba(244, 244, 244, 0.8);
}
.wrapper .row2 .w360 .wangping .box .item:last-child {
  float: right;
}
.wrapper .row2 .w360 .wangping .box .item .pic a img {
  display: block;
  width: 170px;
  height: 96px;
}
.wrapper .row2 .w360 .wangping .box .item .info {
  position: relative;
  padding: 8px 10px;
  height: 88px;
}
.wrapper .row2 .w360 .wangping .box .item .info .titl {
  font-size: 14px;
  color: #000000;
  line-height: 20px;
}
.wrapper .row2 .w360 .wangping .box .item .info .time {
  position: absolute;
  left: 10px;
  bottom: 5px;
  font-size: 14px;
  color: #8d8d8d;
}

.wrapper .row2 .w360 .cehua {
  position: relative;
  margin-top: 30px;
}

.wrapper .row2 .w360 .cehua .title .left {
  position: relative;
  margin-left: 2px;
  float: left;
  font-size: 27px;
  line-height: 1.2;
}

.wrapper .row2 .w360 .cehua .title .left:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 100%;
  background: #AA182C;
}

.wrapper .row2 .w360 .cehua .title .left a {
  font-size: 27px;
  line-height: 1.2;
  font-weight: bold;
}

.wrapper .row2 .w360 .cehua .title .right {
  float: right;
}
.wrapper .row2 .w360 .cehua .title .right a.more {
  font-size: 14px;
  color: #8d8d8d;
}

.wrapper .row2 .w360 .cehua .box {
  width: 100%;
  margin-top: 18px;
}
.wrapper .row2 .w360 .cehua .box .item {
  float: left;
  position: relative;
  width: 170px;
  height: 295px;
}
.wrapper .row2 .w360 .cehua .box .item:last-child {
  float: right;
}
.wrapper .row2 .w360 .cehua .box .item .pic {
  position: relative;
  overflow: hidden;
}
.wrapper .row2 .w360 .cehua .box .item .pic:hover span {
  transform: translate(0, -100%);
}
.wrapper .row2 .w360 .cehua .box .item img {
  display: block;
}
.wrapper .row2 .w360 .cehua .box .item span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 80%;
  padding: 0 10%;
  height: 100%;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 14px;
  font-weight: bold;
}

.row2-1 {
  padding-top: 38px;
  padding-bottom: 30px;
}

.wrapper .zmn {
  float: right;
  position: relative;
  width: 521px;
  height: 99px;
  background: url(../images/design/zmn.baa4c6.png) no-repeat 0 0;
}
.wrapper .zmn .swiper-container {
  position: absolute;
  left: 150px;
  top: 42px;
  width: 250px;
  height: 48px;
}
.wrapper .zmn .swiper-container strong {
  display: block;
  height: 48px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.wrapper .zmn .zmnwyts {
  position: absolute;
  right: 24px;
  top: 37px;
  background: url(../images/design/zmn_btn.e3b9aa.png) no-repeat;
  width: 68px;
  height: 55px;
}
.wrapper .zmn .zmnwyts a {
  display: block;
  width: 100%;
  height: 100%;
}

.wrapper .row3 {
  padding-top: 40px;
}

.wrapper .row3 .eyes_look {
  background: url(../images/design/eyeslook_bg.a52132.png) repeat-x 0 0;
  height: 762px;
  padding: 22px 14px 22px;
}

.wrapper .row3 .eyes_look .title {
  background: url(../images/design/eyes_look-slogan.af69a9.png) no-repeat 84px 7px;
}

.wrapper .row3 .eyes_look .title .left {
  float: left;
}

.wrapper .row3 .eyes_look .title .left a {
  display: inline-block;
  background: url(../images/design/eyes_look_title.c31b7b.png) no-repeat left bottom;
  width: 66px;
  height: 35px;
}

.wrapper .row3 .eyes_look .title .right {
  float: right;
  position: relative;
}

.wrapper .row3 .eyes_look .title .right .btn_towcode {
  position: absolute;
  right: 87px;
  top: 2px;
  background: url(../images/design/btn_share.94d167.png) no-repeat 0 0;
  width: 36px;
  height: 36px;
}

.wrapper .row3 .eyes_look .title .right .btn_app_plus {
  position: absolute;
  right: 15px;
  top: 3px;
  background: url(../images/design/eyes_look_appPlus.18962e.png) no-repeat 0 0;
  width: 59px;
  height: 31px;
}

.wrapper .row3 .eyes_look .slider {
  position: relative;
  padding: 0 40px 0;
  height: 460px;
  background: url(../images/design/eyes_look_tip.9e7e07.png) no-repeat 855px 426px;
}

.wrapper .row3 .eyes_look .slider .arrow_left {
  position: absolute;
  z-index: 9;
  left: 13px;
  top: 207px;
  background: url(../images/design/eyes_look_arrowLeft.80a02e.png) no-repeat 0 0;
  width: 17px;
  height: 31px;
}

.wrapper .row3 .eyes_look .slider .arrow_right {
  position: absolute;
  z-index: 9;
  right: 7px;
  top: 207px;
  background: url(../images/design/eyes_look_arrowRight.0faea0.png) no-repeat 0 0;
  width: 18px;
  height: 31px;
}

.wrapper .row3 .eyes_look .slider .swiper-container {
  height: 438px;
}

.wrapper .row3 .eyes_look .slider .pagination {
  position: absolute;
  text-align: center;
  width: 1092px;
}

.wrapper .row3 .eyes_look .slider .pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background: #717171;
  margin: 0 7px;
}

.wrapper .row3 .eyes_look .slider .pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

.wrapper .row3 .eyes_look .slider .col {
  float: left;
  padding: 19px 26px 0;
}

.wrapper .row3 .eyes_look .slider .col .item {
  position: relative;
  width: 221px;
  height: 389px;
}

.wrapper .row3 .eyes_look .slider .col .item:hover:before {
  transform: translate(16px, -12px);
  opacity: 1;
}

.wrapper .row3 .eyes_look .slider .col .item:hover:after {
  opacity: 1;
}

.wrapper .row3 .eyes_look .slider .col .item:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  transform: translate(0, 0);
  opacity: 0;
  background: url(../images/design/eyes_look_hover_bg.588e7e.png) no-repeat center;
  width: 215px;
  height: 384px;
  transition: all ease-in-out 0.2s;
}

.wrapper .row3 .eyes_look .slider .col .item:after {
  content: "";
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  background: url(../images/design/eyes_look_hover_img.479314.png) no-repeat center;
  width: 221px;
  height: 389px;
  opacity: 0;
  transition: all ease-in-out 0.2s;
}

.wrapper .row3 .eyes_look .slider .col .item a {
  position: absolute;
  z-index: 9;
  display: block;
  padding: 2px;
}

.wrapper .row3 .eyes_look .slider .col .item a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../images/design/icon_play_l.5523fd.png) no-repeat center;
  width: 60px;
  margin-left: -30px;
  height: 60px;
  margin-top: -36px;
}

.wrapper .row3 .eyes_look .slider .col .item a:after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  background: url(../images/design/eyes_look_mask.009a85.png) no-repeat center;
  width: 217px;
  height: 160px;
}

.wrapper .row3 .eyes_look .slider .col .item a img {
  display: block;
  width: 217px;
  height: 385px;
  border-radius: 5px;
}

.wrapper .row3 .eyes_look .slider .col .item a span {
  position: absolute;
  z-index: 2;
  width: 191px;
  height: 78px;
  padding: 0 15px;
  top: 306px;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
}

.wrapper .row3 .eyes_look .timeline {
  width: 100%;
  height: 267px;
  background: url(../images/design/icon_live.6e95d5.png) no-repeat 94px 11px;
}

.wrapper .row3 .eyes_look .timeline ul {
  padding-top: 32px;
  padding-left: 52px;
}

.wrapper .row3 .eyes_look .timeline ul li {
  position: relative;
  float: left;
  width: 214px;
  padding-top: 18px;
  background: url(../images/design/icon_desc.cb97b5.png) no-repeat center 0;
  text-align: center;
}

.wrapper .row3 .eyes_look .timeline ul li:first-child:before {
  display: none;
}

.wrapper .row3 .eyes_look .timeline ul li:before {
  content: "";
  position: absolute;
  height: 1px;
  background: #575757;
  width: 106px;
  top: 8px;
  left: 0;
}

.wrapper .row3 .eyes_look .timeline ul li:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #575757;
  width: 106px;
  top: 8px;
  right: 0;
}

.wrapper .row3 .eyes_look .timeline ul li > div.live img {
  background: url(../images/design/icon_live-ing.483285.png) no-repeat 0 0;
  padding: 2px;
}

.wrapper .row3 .eyes_look .timeline ul li > div.live .pic {
  width: 184px;
  margin-top: -2px;
}

.wrapper .row3 .eyes_look .timeline ul li > div.live .pic:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 2px;
  top: -4px;
  background: url(../images/design/icon_live-ing-up.1960c6.png) no-repeat 0 0;
  width: 104px;
  height: 26px;
}

.wrapper .row3 .eyes_look .timeline ul li > div.live .pic:after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 2px;
  bottom: -4px;
  background: url(../images/design/icon_live-ing-down.a9613f.png) no-repeat 0 0;
  width: 51px;
  height: 26px;
}

.wrapper .row3 .eyes_look .timeline ul li > div.live .pic .poster:before {
  bottom: 2px;
}

.wrapper .row3 .eyes_look .timeline ul li > div.live .titl {
  margin-top: 12px;
}

.wrapper .row3 .eyes_look .timeline ul li > div.replay .pic {
  width: 180px;
}

.wrapper .row3 .eyes_look .timeline ul li > div.replay .pic:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 60px;
  height: 20px;
  background: url(../images/design/icon_live-replay.275516.png) no-repeat 0 0;
}

.wrapper .row3 .eyes_look .timeline ul li > div.prevue .pic {
  width: 180px;
}

.wrapper .row3 .eyes_look .timeline ul li > div.prevue .pic:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 60px;
  height: 20px;
  background: url(../images/design/icon_live-prevue.70f2bf.png) no-repeat 0 0;
}

.wrapper .row3 .eyes_look .timeline ul li > div .time {
  color: #b9b9b9;
  font-size: 12px;
  line-height: 22px;
  height: 22px;
  margin-bottom: 20px;
}

.wrapper .row3 .eyes_look .timeline ul li > div .pic {
  position: relative;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wrapper .row3 .eyes_look .timeline ul li > div .pic .poster {
  position: relative;
  font-size: 0;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.wrapper .row3 .eyes_look .timeline ul li > div .pic .poster img {
  width: 180px;
  height: 102px;
}

.wrapper .row3 .eyes_look .timeline ul li > div .pic .poster:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  background: url(../images/design/eyes_look_timeline_mask.90975a.png) no-repeat 0 0;
  width: 180px;
  margin-left: -90px;
  height: 83px;
}

.wrapper .row3 .eyes_look .timeline ul li > div .pic .poster:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../images/design/icon_play_m.74c9ee.png) no-repeat 0 0;
  width: 40px;
  margin-left: -20px;
  height: 40px;
  margin-top: -20px;
}

.wrapper .row3 .eyes_look .timeline ul li > div .titl {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  width: 180px;
  margin: 14px auto 0;
}

.wrapper .special li {
  float: left;
  margin-left: 30px;
}
.wrapper .special li:first-child {
  margin-left: 0;
}
.wrapper .special li a img {
  display: block;
}

.wrapper .row4 {
  padding-top: 31px;
  margin-bottom: 29px;
}
.wrapper .row4 .unleash_loader_bg {
  top: -20px;
}

.wrapper .row4 .w1200 {
  position: relative;
}

.wrapper .row4.xingzhen .w1200:before {
  content: "";
  position: absolute;
  left: -40px;
  top: -42px;
  background: url(../images/design/startMatrix-slogan.209f01.png) no-repeat 0 0;
  width: 298px;
  height: 121px;
}

.wrapper .row4.zhuanti .w1200:before {
  content: "";
  position: absolute;
  left: -40px;
  top: -42px;
  background: url(../images/design/zhuanti_shadow.b2ee8d.png) no-repeat 0 0;
  width: 152px;
  height: 121px;
}

.wrapper .row4 .w1200 .title {
  position: relative;
  width: 100%;
  height: 34px;
  z-index: 99;
  margin-bottom: 20px;
}

.wrapper .row4 .w1200 .title .left {
  float: left;
}

.wrapper .row4.xingzhen .title .left a {
  display: block;
  background: url(../images/design/startMatrix.133c92.png) no-repeat 0 0;
  width: 57px;
  height: 34px;
}

.wrapper .row4.zhuanti .title .left a {
  display: block;
  background: url(../images/design/zhuanti.2548bc.png) no-repeat 0 0;
  width: 57px;
  height: 34px;
}

.wrapper .row4 .w1200 .title .right {
  float: right;
  position: relative;
}

.wrapper .row4 .w1200 .title .right .btn_towcode {
  position: absolute;
  right: 80px;
  top: 2px;
  background: url(../images/design/startMatrix_share.fb9c78.png) no-repeat 0 0;
  width: 36px;
  height: 36px;
}

.wrapper .row4 .w1200 .title .right .btn_app_plus {
  position: absolute;
  right: 3px;
  top: 3px;
  background: url(../images/design/startMatrix_appPlus.bb788a.png) no-repeat 0 0;
  width: 59px;
  height: 31px;
}

.wrapper .row4.xingzhen .box {
  position: relative;
}
.wrapper .row4.xingzhen .box .arrow_left {
  position: absolute;
  z-index: 99;
  left: -21px;
  top: 50%;
  background: url(../images/design/startMatrix_arrowleft.9f87f6.png) no-repeat 0 0;
  width: 21px;
  height: 44px;
  margin-top: -22px;
  cursor: pointer;
}
.wrapper .row4.xingzhen .box .arrow_left.swiper-button-disabled {
  opacity: 0.6;
}
.wrapper .row4.xingzhen .box .arrow_right {
  position: absolute;
  z-index: 99;
  right: -21px;
  top: 50%;
  background: url(../images/design/startMatrix_arrowright.e21f73.png) no-repeat 0 0;
  width: 21px;
  height: 44px;
  margin-top: -22px;
  cursor: pointer;
}
.wrapper .row4.xingzhen .box .arrow_right.swiper-button-disabled {
  opacity: 0.6;
}
.wrapper .row4.xingzhen .swiper-container {
  position: relative;
  width: 1200px;
  height: 310px;
  background-color: #000000;
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide {
  font-size: 0;
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider {
  box-shadow: none;
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide {
  box-shadow: none;
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content {
  display: block;
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 66px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#80000000", endColorstr="#00000000",GradientType=0 );
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .tit {
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 44px;
  opacity: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#80000000",GradientType=0 );
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .tit a {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 44px;
  text-indent: 1em;
  white-space: nowrap;
  overflow: hidden;
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .slogen {
  position: absolute;
  left: 120px;
  top: 27px;
  color: #ffffff;
  font-size: 14px;
  opacity: 0;
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .localname {
  position: absolute;
  left: 43px;
  top: 28px;
  height: 22px;
  font-weight: bold;
  transform-origin: 0 0;
  transform: rotateZ(90deg);
}
.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .localname a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 22px;
  line-height: 22px;
  color: #ffffff;
}

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

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

@-webkit-keyframes rotateIn90 {
  0% {
    transform: rotateZ(90deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}

@keyframes rotateIn90 {
  0% {
    transform: rotateZ(90deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}
@-webkit-keyframes rotateOut90 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(90deg);
  }
}
@keyframes rotateOut90 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(90deg);
  }
}
.wrapper .row5 {
  padding-top: 86px;
}

.wrapper .row5 .title {
  position: relative;
  border-bottom: 4px solid #efefef;
}

.wrapper .row5 .title .middle {
  position: absolute;
  left: 50%;
  bottom: -5px;
  background: #ffffff url(../images/design/icon_title.fc1526.png) no-repeat center bottom;
  width: 162px;
  margin-left: -81px;
  height: 20px;
}

.wrapper .row5 .title .middle span {
  position: absolute;
  left: 50%;
  top: -16px;
  font-size: 26px;
  height: 26px;
  line-height: 1;
  width: 120px;
  margin-left: -60px;
  text-align: center;
  font-weight: bold;
  background: #ffffff;
}

.wrapper .row5 .content {
  position: relative;
  margin-top: 44px;
  height: 454px;
}

.wrapper .row5 .content .panel {
  position: relative;
  width: 100%;
  height: 100%;
}

.wrapper .row5 .content .panel .w720 {
  float: left;
  width: 720px;
}

.wrapper .row5 .content .panel .w720 .pic {
  position: relative;
  float: left;
  margin-left: 20px;
}

.wrapper .row5 .content .panel .w720 .pic:first-child {
  margin-left: 0;
}

.wrapper .row5 .content .panel .w720 .pic a {
  display: block;
}

.wrapper .row5 .content .panel .w720 .pic a:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  background: url(../images/design/classifyNews_mask.a3f30d.png) no-repeat center;
  width: 100%;
  height: 66px;
}

.wrapper .row5 .content .panel .w720 .pic a img {
  display: block;
  width: 350px;
  height: 194px;
}

.wrapper .row5 .content .panel .w720 .pic a span {
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 1px;
  font-size: 16px;
  line-height: 1.6;
  padding: 0 20px;
  color: #ffffff;
}

.wrapper .row5 .content .panel .w720 .article {
  clear: both;
  padding-top: 37px;
  width: 720px;
}

.wrapper .row5 .content .panel .w720 .article dl {
  background: #efefef;
  height: 195px;
  padding: 0 30px;
}

.wrapper .row5 .content .panel .w720 .article dl dt {
  padding-top: 11px;
  padding-bottom: 6px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wrapper .row5 .content .panel .w720 .article dl dt a {
  font-size: 18px;
  font-weight: bold;
}

.wrapper .row5 .content .panel .w720 .article dl .des {
  font-size: 14px;
  height: 75px;
}

.wrapper .row5 .content .panel .w720 .article dl .des .more {
  color: #AA182C;
}

.wrapper .row5 .content .panel .w720 .article dl .other {
  padding-top: 20px;
}

.wrapper .row5 .content .panel .w720 .article dl .other .left {
  float: left;
}

.wrapper .row5 .content .panel .w720 .article dl .other .left .column {
  color: #AA182C;
  font-size: 14px;
  line-height: 1.3;
  background: #ffffff;
  display: inline-block;
  border: 1px solid #AA182C;
  padding: 0 6px;
  border-radius: 5px;
  margin-right: 3px;
}

.wrapper .row5 .content .panel .w720 .article dl .other .left .keys {
  font-size: 14px;
  color: #919191;
}

.wrapper .row5 .content .panel .w720 .article dl .other .right {
  float: right;
  position: relative;
}

.wrapper .row5 .content .panel .w720 .article dl .other .right a.hidden {
  position: absolute;
  visibility: hidden;
}

.wrapper .row5 .content .panel .w720 .article dl .other .right .sound {
  position: absolute;
  right: 44px;
  top: -3px;
  border-radius: 18px;
  width: 90px;
  height: 36px;
  background: url(../images/design/icon_sound_play.3ec7b4.png) no-repeat 0 0;
  margin-left: 0;
}

.wrapper .row5 .content .panel .w720 .article dl .other .right .sound.current {
  background: url(../images/design/icon_sound_pause.272c1d.png) no-repeat 0 0;
}

.wrapper .row5 .content .panel .w720 .article dl .other .right .btn_towcode {
  position: absolute;
  right: -2px;
  top: -3px;
  background: url(../images/design/btn_share.94d167.png) no-repeat 0 0;
  width: 36px;
  height: 36px;
}

.wrapper .row5 .content .panel .w436 {
  float: left;
  width: 436px;
  margin-left: 44px;
}

.wrapper .row5 .content .panel .w436 .media {
  background-color: #efefef;
  height: 152px;
  padding: 21px 18px;
}

.wrapper .row5 .content .panel .w436 .media dt {
  height: 100px;
}

.wrapper .row5 .content .panel .w436 .media dt a {
  display: block;
}

.wrapper .row5 .content .panel .w436 .media dt .img {
  float: left;
  margin-right: 16px;
}

.wrapper .row5 .content .panel .w436 .media dt .text {
  padding-top: 8px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  text-align: justify;
}

.wrapper .row5 .content .panel .w436 .media .other {
  padding-top: 22px;
}

.wrapper .row5 .content .panel .w436 .media .other .left {
  float: left;
  padding-top: 3px;
  padding-left: 10px;
}

.wrapper .row5 .content .panel .w436 .media .other .left .column {
  color: #AA182C;
  font-size: 14px;
  line-height: 1.3;
  background: #ffffff;
  display: inline-block;
  border: 1px solid #AA182C;
  padding: 0 6px;
  border-radius: 5px;
  margin-right: 10px;
}

.wrapper .row5 .content .panel .w436 .media .other .left .keys {
  font-size: 14px;
  color: #919191;
}

.wrapper .row5 .content .panel .w436 .media .other .right {
  float: right;
  position: relative;
}

.wrapper .row5 .content .panel .w436 .media .other .right a.hidden {
  position: absolute;
  visibility: hidden;
}

.wrapper .row5 .content .panel .w436 .media .other .right .sound {
  position: absolute;
  right: 44px;
  top: -3px;
  border-radius: 18px;
  width: 90px;
  height: 36px;
  background: url(../images/design/icon_sound_play.3ec7b4.png) no-repeat 0 0;
  margin-left: 0;
}

.wrapper .row5 .content .panel .w436 .media .other .right .sound.current {
  background: url(../images/design/icon_sound_pause.272c1d.png) no-repeat 0 0;
}

.wrapper .row5 .content .panel .w436 .media .other .right .btn_towcode {
  position: absolute;
  right: -3px;
  top: -3px;
  background: url(../images/design/btn_share.94d167.png) no-repeat 0 0;
  width: 36px;
  height: 36px;
}

.wrapper .row5 .content .panel .w436 .list {
  padding-top: 0px;
}

.wrapper .row5 .content .panel .w436 .list li {
  border-top: 1px solid #e5e5e5;
  height: 43px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.wrapper .row5 .content .panel .w436 .list li:first-child {
  border-top: none;
  height: 28px;
  line-height: 28px;
  padding-bottom: 10px;
}

.wrapper .row5 .content .panel .w436 .list li a {
  font-size: 18px;
  line-height: 43px;
}

.wrapper .row5 .content .panel .w436 .list li:first-child a {
  line-height: 28px;
}

.wrapper .row6 .w580 {
  float: left;
  padding-top: 35px;
  width: 580px;
}
.wrapper .row6 .w580:nth-child(even) {
  margin-left: 40px;
}
.wrapper .row6 .w580 .title {
  position: relative;
  margin-bottom: 8px;
}
.wrapper .row6 .w580 .title .left {
  position: relative;
  float: left;
  font-size: 27px;
  line-height: 1.2;
  margin-left: 4px;
}
.wrapper .row6 .w580 .title .left:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  width: 100%;
  background: #AA182C;
}
.wrapper .row6 .w580 .title .left a {
  font-size: 27px;
  line-height: 1.2;
  font-weight: bold;
}
.wrapper .row6 .w580 .title .right {
  position: absolute;
  right: 0;
  bottom: -4px;
}
.wrapper .row6 .w580 .title .right a {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
}
.wrapper .row6 .w580 .title .right a.more {
  font-size: 14px;
  color: #8d8d8d;
  font-weight: normal;
  padding-left: 10px;
}
.wrapper .row6 .w580 .title .right a:hover {
  color: #aa182c;
}
.wrapper .row6 .box {
  padding-top: 16px;
}
.wrapper .row6 .box .box-row1 .pic {
  position: relative;
  float: left;
  width: 380px;
  height: 214px;
}
.wrapper .row6 .box .box-row1 .pic a {
  display: block;
}
.wrapper .row6 .box .box-row1 .pic a:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  background: url(../images/design/chuizhi_mask.0bcd03.png) no-repeat center;
  width: 100%;
  height: 66px;
}
.wrapper .row6 .box .box-row1 .pic a img {
  display: block;
  width: 380px;
  height: 214px;
}
.wrapper .row6 .box .box-row1 .pic a span {
  position: absolute;
  left: 0;
  bottom: 1px;
  font-size: 16px;
  line-height: 1.6;
  padding: 0 20px;
  color: #ffffff;
  z-index: 2;
}
.wrapper .row6 .box .box-row1 .specials {
  float: right;
  width: 180px;
}
.wrapper .row6 .box .box-row1 .specials a {
  display: block;
}
.wrapper .row6 .box .box-row1 .specials a:first-child {
  margin-bottom: 10px;
}
.wrapper .row6 .box .box-row1 .specials a img {
  display: block;
  width: 180px;
  height: 102px;
}
.wrapper .row6 .box .box-row2 {
  padding-top: 20px;
}
.wrapper .row6 .box .box-row2 .item {
  float: left;
  width: 180px;
  height: 194px;
  background-color: #ffffff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 15px 5px rgba(244, 244, 244, 0.8);
  margin-left: 20px;
}
.wrapper .row6 .box .box-row2 .item:first-child {
  margin-left: 0;
}
.wrapper .row6 .box .box-row2 .item .pic a img {
  display: block;
  width: 180px;
  height: 102px;
}
.wrapper .row6 .box .box-row2 .item .info {
  position: relative;
  padding: 8px 10px;
  height: 76px;
}
.wrapper .row6 .box .box-row2 .item .info .titl {
  font-size: 14px;
  color: #000000;
  line-height: 20px;
}

.wrapper .row7 {
  position: relative;
  margin-top: 85px;
  margin-bottom: -34px;
  background-color: #efefef;
}
.wrapper .row7:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 6px;
  background-color: #dddddd;
}
.wrapper .row7 .w1200 {
  position: relative;
}
.wrapper .row7 .w1200:before {
  position: absolute;
  content: "*品牌排名不分先后";
  right: 0;
  top: 10px;
  color: #939393;
  font-size: 12px;
}
.wrapper .row7 .w1200 .title {
  position: absolute;
  left: 0;
  top: -56px;
  background: url(../images/design/guochaominxin.01d7af.png) no-repeat center;
  width: 217px;
  height: 87px;
}
.wrapper .row7 .w1200 .btn_towcode {
  position: absolute;
  right: 72px;
  top: -40px;
  background: url(../images/design/btn_share_gray.95cf6c.png) no-repeat center;
  width: 36px;
  height: 36px;
}
.wrapper .row7 .w1200 .btn_app_plus {
  position: absolute;
  right: 0;
  top: -40px;
  background: url(../images/design/appPlus_gray.04042b.png) no-repeat center;
  width: 59px;
  height: 31px;
}
.wrapper .row7 .w1200 ul {
  padding-top: 42px;
  padding-bottom: 24px;
}
.wrapper .row7 .w1200 ul li {
  float: left;
  margin-right: 12px;
  margin-bottom: 12px;
  background-color: #ffffff;
}
.wrapper .row7 .w1200 ul li:nth-child(6n) {
  margin-right: 0;
}
.wrapper .row7 .w1200 ul li span {
  position: relative;
  display: block;
  border: 10px solid #ffffff;
}
/*.wrapper .row7 .w1200 ul li span:before {
  content: "广告";
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 5px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 12px;
}*/
.wrapper .row7 .w1200 ul li span img {
  display: block;
  width: 170px;
  height: 90px;
}

.wrapper .live_list {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 9999999;
  left: 0;
  bottom: 56px;
  height: 80px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  background: #efefef;
  width: 100%;
  transition: all ease-in-out 0.2s;
}

.wrapper .live_list .arrow-left {
  position: absolute;
  cursor: pointer;
  right: 50%;
  top: 50%;
  background: url(../images/design/channelListArrow.ad3517.png) no-repeat 0 0;
  width: 10px;
  height: 20px;
  margin-top: -10px;
  margin-right: 590px;
}

.wrapper .live_list .arrow-right {
  position: absolute;
  cursor: pointer;
  left: 50%;
  top: 50%;
  background: url(../images/design/channelListArrow.ad3517.png) no-repeat right 0;
  width: 10px;
  height: 20px;
  margin-top: -10px;
  margin-left: 590px;
}

.wrapper .live_list .LiveChannel-close {
  position: absolute;
  z-index: 9;
  cursor: pointer;
  left: 50%;
  top: 0;
  background: url(../images/design/channelListClose.066abd.png) no-repeat right 0;
  width: 16px;
  height: 16px;
  margin-left: 584px;
}

.wrapper .live_list .swiper-container {
  position: absolute;
  left: 50%;
  height: 100%;
  width: 1170px;
  margin-left: -585px;
}

.wrapper .live_list .swiper-container .swiper-slide.current .item .channelLogo:before,
.wrapper .live_list .swiper-container .swiper-slide.current .item .channelLogo:after {
  opacity: 1;
  visibility: visible;
}

.wrapper .live_list .swiper-container .item {
  position: relative;
  cursor: pointer;
  padding: 0 9px;
  margin-top: -5px;
}

.wrapper .live_list .swiper-container .item .channelLogo {
  position: relative;
  background: url(../images/design/ChannelLogoShadow.52da74.png) no-repeat 0 0;
  width: 72px;
  height: 72px;
}

.wrapper .live_list .swiper-container .item .channelLogo:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../images/design/ChannelLogoShadow-hover.65929b.png) no-repeat 0 0;
  width: 54px;
  margin-left: -27px;
  height: 54px;
  margin-top: -27px;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.2s;
}

.wrapper .live_list .swiper-container .item .channelLogo:after {
  content: "";
  position: absolute;
  top: 13px;
  right: 4px;
  background: url(../images/design/current.e858d9.png) no-repeat 0 0;
  width: 16px;
  height: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.2s;
}

.wrapper .live_list .swiper-container .item .channelLogo img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  margin-left: -25px;
  height: 50px;
  margin-top: -25px;
  border-radius: 100%;
}

.wrapper .live_list .swiper-container .item .channelName {
  position: absolute;
  left: 0;
  bottom: -5px;
  font-size: 12px;
  line-height: 1;
  width: 100%;
  color: #737373;
  text-align: center;
}

.wrapper .floatNav-wrapper {
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 52px;
  visibility: hidden;
}

.wrapper .floatNav-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: url(../images/design/floatNav_shadow.da26da.png) repeat-x 0 0;
  width: 100%;
  height: 45px;
}

.wrapper .floatNav-wrapper .floatNav {
  position: absolute;
  width: 100%;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  background: #ffffff;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main {
  margin: 0 auto;
  width: 1200px;
  height: 50px;
  background: url(../images/design/logo-main-s.27f712.png) no-repeat 0 center;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default {
  position: absolute;
  z-index: 9;
  padding-left: 100px;
  height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 1100px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .openFloatNav-hidden {
  float: left;
  cursor: pointer;
  height: 38px;
  line-height: 38px;
  background: url(../images/design/icon_menu.8210e3.png) no-repeat 0 center;
  padding-left: 24px;
  padding-right: 17px;
  border-right: 1px solid #e5e5e5;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .search {
  float: left;
  height: 38px;
  padding: 0 15px;
  border-right: 1px solid #e5e5e5;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .search a {
  display: block;
  background: url(../images/design/icon_search.2379f1.png) no-repeat 0 0;
  width: 18px;
  height: 18px;
  margin-top: 10px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .quick {
  display: none;
  float: left;
  height: 38px;
  width: 730px;
  padding-left: 82px;
  background: url(../images/design/icon_quick.f5302a.png) no-repeat 27px center;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .quick .marquee {
  display: block;
  line-height: 38px;
  position: relative;
  overflow: hidden;
  width: 500px;
  height: 38px;
  font-size: 16px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right {
  float: right;
  border-left: 1px solid #e5e5e5;
  height: 38px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .download_app {
  float: left;
  cursor: pointer;
  margin-left: 7px;
  margin-top: 4px;
  background: url("http://www.cnr.cn/2021/images/btn_downloadAPP.png") no-repeat left top;
  width: 94px;
  height: 30px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .download_app a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .email {
  float: left;
  margin-left: 12px;
  background: url("http://www.cnr.cn/2021/images/btn_Email2.png?v=1") no-repeat 0 0;
  width: 51px;
  height: 30px;
  margin-top: 4px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .email a {
  display: block;
  width: 100%;
  height: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .radio-live {
  float: left;
  cursor: pointer;
  margin-left: 7px;
  margin-top: 4px;
  background: url(../images/design/RadioLive2.683c8e.png) no-repeat 0 0;
  width: 84px;
  height: 30px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 {
  float: right;
  height: 38px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .mzgbw0304_2 {
  float: left;
  cursor: pointer;
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 8px;
  background: url("http://www.cnr.cn/2021/images/mzgbw0304.png?v=1") no-repeat left top;
  background-size: 100% 100%;
  width: 75px;
  height: 22px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .mzgbw0304_2 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .gjyjgbw0304_2 {
  float: left;
  cursor: pointer;
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 8px;
  background: url("http://www.cnr.cn/2021/images/gjyjgbw0304.png?v=1") no-repeat left top;
  background-size: 100% 100%;
  width: 102px;
  height: 22px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .gjyjgbw0304_2 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .nhtww0304_2 {
  float: left;
  cursor: pointer;
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 8px;
  background: url("http://www.cnr.cn/2021/images/nhtww0304.png?v=1") no-repeat left top;
  background-size: 100% 100%;
  width: 75px;
  height: 22px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .nhtww0304_2 a {
  display: block;
  height: 100%;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden {
  display: none;
  padding-left: 100px;
  width: 1100px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 {
  height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul {
  float: left;
  padding-left: 15px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li {
  position: relative;
  float: left;
  height: 38px;
  line-height: 38px;
  margin-left: 33px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li:hover .sub {
  visibility: visible;
  opacity: 1;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li:first-child {
  margin-left: 0;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li a {
  font-size: 16px;
  font-weight: bold;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li .sub {
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.4s;
  position: absolute;
  z-index: 99;
  top: 37px;
  left: -2px;
  padding: 10px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 124px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li .sub:before {
  content: "";
  position: absolute;
  left: 10px;
  top: -7px;
  background: url(../images/design/menu-sub-up.6ed12f.png) no-repeat center;
  width: 14px;
  height: 8px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li .sub a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  height: 24px;
  font-weight: normal;
  margin: 0 3px;
  white-space: nowrap;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 .closeFloatNav-hidden {
  float: right;
  cursor: pointer;
  background: url(../images/design/closeFloatNav_hidden.d1e2f1.png) no-repeat right center;
  width: 81px;
  height: 38px;
  border-left: 1px solid #e5e5e5;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  border-top: 1px solid #dfdfdf;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: url(../images/design/floatNav_shadow.da26da.png) repeat-x 0 0;
  width: 100%;
  height: 45px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local {
  position: absolute;
  background: #efefef;
  z-index: 9;
  height: 50px;
  width: 100%;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local ul {
  padding-left: 124px;
  width: 1076px;
  margin: 0 auto;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local ul li {
  float: left;
  height: 50px;
  line-height: 50px;
  margin-left: 15px;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local ul li:first-child {
  margin-left: 0;
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local ul li a {
  font-size: 14px;
  color: #616161;
}
