/*!
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%,
	to {
		transform: translateY(0)
	}

	40% {
		transform: translateY(-30px)
	}

	60% {
		transform: translateY(-15px)
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	to {
		transform: translateY(0)
	}

	40% {
		transform: translateY(-30px)
	}

	60% {
		transform: translateY(-15px)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce
}

@-webkit-keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

@keyframes pulse {
	0% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.1)
	}

	to {
		transform: scale(1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		transform: scale(1)
	}

	30% {
		transform: scaleX(1.25) scaleY(.75)
	}

	40% {
		transform: scaleX(.75) scaleY(1.25)
	}

	60% {
		transform: scaleX(1.15) scaleY(.85)
	}

	to {
		transform: scale(1)
	}
}

@keyframes rubberBand {
	0% {
		transform: scale(1)
	}

	30% {
		transform: scaleX(1.25) scaleY(.75)
	}

	40% {
		transform: scaleX(.75) scaleY(1.25)
	}

	60% {
		transform: scaleX(1.15) scaleY(.85)
	}

	to {
		transform: scale(1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {

	0%,
	to {
		transform: translateX(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-10px)
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(10px)
	}
}

@keyframes shake {

	0%,
	to {
		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)
	}

	to {
		transform: rotate(0deg)
	}
}

@keyframes swing {
	20% {
		transform: rotate(15deg)
	}

	40% {
		transform: rotate(-10deg)
	}

	60% {
		transform: rotate(5deg)
	}

	80% {
		transform: rotate(-5deg)
	}

	to {
		transform: rotate(0deg)
	}
}

.swing {
	-webkit-animation-name: swing;
	animation-name: swing;
	transform-origin: top center
}

@-webkit-keyframes tada {
	0% {
		transform: scale(1)
	}

	10%,
	20% {
		transform: scale(.9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale(1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		transform: scale(1.1) rotate(-3deg)
	}

	to {
		transform: scale(1) rotate(0)
	}
}

@keyframes tada {
	0% {
		transform: scale(1)
	}

	10%,
	20% {
		transform: scale(.9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale(1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		transform: scale(1.1) rotate(-3deg)
	}

	to {
		transform: scale(1) rotate(0)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-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)
	}

	to {
		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)
	}

	to {
		transform: translateX(0)
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3)
	}

	50% {
		opacity: 1;
		transform: scale(1.05)
	}

	70% {
		transform: scale(.9)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3)
	}

	50% {
		opacity: 1;
		transform: scale(1.05)
	}

	70% {
		transform: scale(.9)
	}

	to {
		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)
	}

	to {
		transform: translateY(0)
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	60% {
		opacity: 1;
		transform: translateY(30px)
	}

	80% {
		transform: translateY(-10px)
	}

	to {
		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)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	60% {
		opacity: 1;
		transform: translateX(30px)
	}

	80% {
		transform: translateX(-10px)
	}

	to {
		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)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	60% {
		opacity: 1;
		transform: translateX(-30px)
	}

	80% {
		transform: translateX(10px)
	}

	to {
		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)
	}

	to {
		transform: translateY(0)
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	60% {
		opacity: 1;
		transform: translateY(-30px)
	}

	80% {
		transform: translateY(10px)
	}

	to {
		transform: translateY(0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	0% {
		transform: scale(1)
	}

	25% {
		transform: scale(.95)
	}

	50% {
		opacity: 1;
		transform: scale(1.1)
	}

	to {
		opacity: 0;
		transform: scale(.3)
	}
}

@keyframes bounceOut {
	0% {
		transform: scale(1)
	}

	25% {
		transform: scale(.95)
	}

	50% {
		opacity: 1;
		transform: scale(1.1)
	}

	to {
		opacity: 0;
		transform: scale(.3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	0% {
		transform: translateY(0)
	}

	20% {
		opacity: 1;
		transform: translateY(-20px)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

@keyframes bounceOutDown {
	0% {
		transform: translateY(0)
	}

	20% {
		opacity: 1;
		transform: translateY(-20px)
	}

	to {
		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)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

@keyframes bounceOutLeft {
	0% {
		transform: translateX(0)
	}

	20% {
		opacity: 1;
		transform: translateX(20px)
	}

	to {
		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)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

@keyframes bounceOutRight {
	0% {
		transform: translateX(0)
	}

	20% {
		opacity: 1;
		transform: translateX(-20px)
	}

	to {
		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)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

@keyframes bounceOutUp {
	0% {
		transform: translateY(0)
	}

	20% {
		opacity: 1;
		transform: translateY(20px)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	to {
		opacity: 1;
		transform: translateX(0)
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(20px)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(20px)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-20px)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-20px)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(20px)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(20px)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-20px)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-20px)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1)
	}

	40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1)
	}

	50% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1)
	}

	80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(0) rotateY(1turn) scale(.95)
	}

	to {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(0) rotateY(1turn) scale(1)
	}
}

@keyframes flip {
	0% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1)
	}

	40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1)
	}

	50% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1)
	}

	80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(0) rotateY(1turn) scale(.95)
	}

	to {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		transform: perspective(400px) translateZ(0) rotateY(1turn) scale(1)
	}
}

.animated.flip {
	-webkit-animation-name: flip;
	animation-name: flip;
	-webkit-backface-visibility: visible;
	backface-visibility: visible
}

@-webkit-keyframes flipInX {
	0% {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}

	40% {
		transform: perspective(400px) rotateX(-10deg)
	}

	70% {
		transform: perspective(400px) rotateX(10deg)
	}

	to {
		opacity: 1;
		transform: perspective(400px) rotateX(0deg)
	}
}

@keyframes flipInX {
	0% {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}

	40% {
		transform: perspective(400px) rotateX(-10deg)
	}

	70% {
		transform: perspective(400px) rotateX(10deg)
	}

	to {
		opacity: 1;
		transform: perspective(400px) rotateX(0deg)
	}
}

.flipInX {
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipInY {
	0% {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}

	40% {
		transform: perspective(400px) rotateY(-10deg)
	}

	70% {
		transform: perspective(400px) rotateY(10deg)
	}

	to {
		opacity: 1;
		transform: perspective(400px) rotateY(0deg)
	}
}

@keyframes flipInY {
	0% {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}

	40% {
		transform: perspective(400px) rotateY(-10deg)
	}

	70% {
		transform: perspective(400px) rotateY(10deg)
	}

	to {
		opacity: 1;
		transform: perspective(400px) rotateY(0deg)
	}
}

.flipInY {
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipOutX {
	0% {
		opacity: 1;
		transform: perspective(400px) rotateX(0deg)
	}

	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
}

@keyframes flipOutX {
	0% {
		opacity: 1;
		transform: perspective(400px) rotateX(0deg)
	}

	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
	0% {
		opacity: 1;
		transform: perspective(400px) rotateY(0deg)
	}

	to {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
}

@keyframes flipOutY {
	0% {
		opacity: 1;
		transform: perspective(400px) rotateY(0deg)
	}

	to {
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
}

.flipOutY {
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes lightSpeedIn {
	0% {
		opacity: 0;
		transform: translateX(100%) skewX(-30deg)
	}

	60% {
		opacity: 1;
		transform: translateX(-20%) skewX(30deg)
	}

	80% {
		opacity: 1;
		transform: translateX(0) skewX(-15deg)
	}

	to {
		opacity: 1;
		transform: translateX(0) skewX(0deg)
	}
}

@keyframes lightSpeedIn {
	0% {
		opacity: 0;
		transform: translateX(100%) skewX(-30deg)
	}

	60% {
		opacity: 1;
		transform: translateX(-20%) skewX(30deg)
	}

	80% {
		opacity: 1;
		transform: translateX(0) skewX(-15deg)
	}

	to {
		opacity: 1;
		transform: translateX(0) skewX(0deg)
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1;
		transform: translateX(0) skewX(0deg)
	}

	to {
		opacity: 0;
		transform: translateX(100%) skewX(-30deg)
	}
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1;
		transform: translateX(0) skewX(0deg)
	}

	to {
		opacity: 0;
		transform: translateX(100%) skewX(-30deg)
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		opacity: 0;
		transform: rotate(-200deg);
		transform-origin: center center
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: center center
	}
}

@keyframes rotateIn {
	0% {
		opacity: 0;
		transform: rotate(-200deg);
		transform-origin: center center
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: center center
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: left bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}
}

@keyframes rotateInDownLeft {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: left bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}
}

@keyframes rotateInDownRight {
	0% {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: left bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}
}

@keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: left bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}
}

@keyframes rotateInUpRight {
	0% {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}

	to {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: center center
	}

	to {
		opacity: 0;
		transform: rotate(200deg);
		transform-origin: center center
	}
}

@keyframes rotateOut {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: center center
	}

	to {
		opacity: 0;
		transform: rotate(200deg);
		transform-origin: center center
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}

	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: left bottom
	}
}

@keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}

	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: left bottom
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}

	to {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}
}

@keyframes rotateOutDownRight {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}

	to {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}

	to {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: left bottom
	}
}

@keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: left bottom
	}

	to {
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: left bottom
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}

	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}
}

@keyframes rotateOutUpRight {
	0% {
		opacity: 1;
		transform: rotate(0);
		transform-origin: right bottom
	}

	to {
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes slideInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	to {
		transform: translateY(0)
	}
}

@keyframes slideInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px)
	}

	to {
		transform: translateY(0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px)
	}

	to {
		transform: translateX(0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	to {
		transform: translateX(0)
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px)
	}

	to {
		transform: translateX(0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideOutLeft {
	0% {
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

@keyframes slideOutLeft {
	0% {
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(-2000px)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

@keyframes slideOutRight {
	0% {
		transform: translateX(0)
	}

	to {
		opacity: 0;
		transform: translateX(2000px)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

@keyframes slideOutUp {
	0% {
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(-2000px)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

@-webkit-keyframes slideInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes slideInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

@keyframes slideOutDown {
	0% {
		transform: translateY(0)
	}

	to {
		opacity: 0;
		transform: translateY(2000px)
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(0);
		transform-origin: top left
	}

	20%,
	60% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(80deg);
		transform-origin: top left
	}

	40% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(60deg);
		transform-origin: top left
	}

	80% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg) translateY(0);
		transform-origin: top left
	}

	to {
		opacity: 0;
		transform: translateY(700px)
	}
}

@keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(0);
		transform-origin: top left
	}

	20%,
	60% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(80deg);
		transform-origin: top left
	}

	40% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		transform: rotate(60deg);
		transform-origin: top left
	}

	80% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg) translateY(0);
		transform-origin: top left
	}

	to {
		opacity: 0;
		transform: translateY(700px)
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		transform: translateX(-100%) rotate(-120deg)
	}

	to {
		opacity: 1;
		transform: translateX(0) rotate(0deg)
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translateX(-100%) rotate(-120deg)
	}

	to {
		opacity: 1;
		transform: translateX(0) rotate(0deg)
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
		transform: translateX(0) rotate(0deg)
	}

	to {
		opacity: 0;
		transform: translateX(100%) rotate(120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
		transform: translateX(0) rotate(0deg)
	}

	to {
		opacity: 0;
		transform: translateX(100%) rotate(120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale(.3)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale(.3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateY(-2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateY(60px)
	}
}

@keyframes zoomInDown {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateY(-2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateY(60px)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateX(-2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateX(48px)
	}
}

@keyframes zoomInLeft {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateX(-2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateX(48px)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateX(2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateX(-48px)
	}
}

@keyframes zoomInRight {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateX(2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateX(-48px)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateY(2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateY(-60px)
	}
}

@keyframes zoomInUp {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 0;
		transform: scale(.1) translateY(2000px)
	}

	60% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		opacity: 1;
		transform: scale(.475) translateY(-60px)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: 0;
		transform: scale(.3)
	}

	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: 0;
		transform: scale(.3)
	}

	to {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateY(-60px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateY(2000px);
		transform-origin: center bottom
	}
}

@keyframes zoomOutDown {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateY(-60px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateY(2000px);
		transform-origin: center bottom
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateX(42px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateX(-2000px);
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateX(42px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateX(-2000px);
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateX(-42px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateX(2000px);
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateX(-42px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateX(2000px);
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateY(60px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateY(-2000px);
		transform-origin: center top
	}
}

@keyframes zoomOutUp {
	40% {
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
		opacity: 1;
		transform: scale(.475) translateY(60px)
	}

	to {
		opacity: 0;
		transform: scale(.1) translateY(-2000px);
		transform-origin: center top
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

body {
	margin: 0
}

.unleash_slider {
	box-shadow: 0 0 10px #010101;
	display: block;
	overflow: hidden;
	position: relative
}

.unleash_slide {
	zoom: 1;
	background: #000;
	box-shadow: -5px 0 5px rgba(1, 1, 1, .3);
	display: block;
	display: inline-block;
	float: left;
	overflow: hidden
}

.unleash_caption,
.unleash_slide {
	position: absolute
}

.unleash_caption h6,
.unleash_caption p {
	color: #fff
}

.unleash_content {
	display: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 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 0 5px rgba(1, 1, 1, .3)
}

.unleash_slide img,
.unleash_slide video {
	opacity: .7;
	position: relative;
	transition: opacity .7s;
	width: 100%
}

.unleash_slide.active img,
.unleash_slide.active video,
.unleash_slide img:hover,
.unleash_slide video:hover {
	opacity: 1
}

.upper_text {
	margin: none;
	position: absolute;
	width: 100%
}

.upper_text h4,
.upper_text h4 a {
	margin: 0;
	text-align: center
}

.upper_text h4 a {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 55px;
	text-decoration: none
}

.lower_text {
	margin: none;
	padding: 0 5%;
	position: absolute;
	text-align: center;
	width: 100%
}

.lower_text p {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	margin: 0;
	text-align: center
}

@media screen and (max-width:800px) {
	.upper_text h4 a {
		font-size: 20px
	}

	.lower_text p {
		display: none
	}
}

.main_nav {
	background: #111;
	box-shadow: 0 2px 10px rgba(1, 1, 1, .81);
	padding: 5px 0
}

.color {
	padding: 40px 0
}

.unleash_container {
	position: relative
}

.unleash_controls {
	height: 40px;
	overflow: hidden;
	position: absolute;
	right: 20px;
	top: 20px;
	width: 120px
}

.unleash_loader {
	background: #00f0ff;
	box-shadow: 0 0 3px 1px #00f0ff;
	-webkit-box-shadow: 0 0 3px 1px #00f0ff;
	-moz-box-shadow: 0 0 3px 1px #00f0ff;
	height: 2px;
	position: absolute;
	position: relative;
	top: 10px;
	z-index: 1000
}

.unleash_loader_bg {
	background: #000;
	height: 20px;
	overflow: hidden;
	position: absolute;
	top: -12px;
	width: 100%;
	z-index: 999
}

.unleash_pause {
	background: #fff;
	cursor: pointer;
	float: left;
	height: 30px;
	width: 40px
}

.unleash_buttons {
	margin: 20px auto 0;
	overflow: hidden;
	text-align: center;
	width: 100%
}

.unleash_buttons i {
	color: #fff;
	cursor: pointer;
	font-size: 18px
}

.emboss {
	background: hsla(0, 0%, 100%, .25);
	height: 1px;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10
}

.main_slider {
	background: #040d1c;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDQwZDFjIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMWMzOTQ5Ii8+PC9saW5lYXJHcmFkaWVudD48cGF0aCBmaWxsPSJ1cmwoI2EpIiBkPSJNMCAwaDF2MUgweiIvPjwvc3ZnPg==);
	background: linear-gradient(180deg, #040d1c 0, #437591);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#040d1c", endColorstr="#1c3949", GradientType=0)
}

@font-face {
	font-family: fontello;
	font-style: normal;
	font-weight: 400;
	src: url(../images/design/fontello.5f97a0.eot);
	src: url(../images/design/fontello.5f97a0.eot#iefix) format("embedded-opentype"), url(../images/design/fontello.1cc2f8.woff) format("woff"), url(../images/design/fontello.94ffdd.ttf) format("truetype"), url(../images/design/fontello.669b3c.svg#fontello) format("svg")
}

[class*=" icon-"]:before,
[class^=icon-]:before {
	speak: none;
	display: inline-block;
	font-family: fontello;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1em;
	margin-left: .2em;
	margin-right: .2em;
	text-align: center;
	text-decoration: inherit;
	text-transform: none;
	width: 1em
}

.icon-left-open:before {
	content: ""
}

.icon-right-open-5:before {
	content: ""
}

.icon-play-1:before {
	content: ""
}

.icon-pause-1:before {
	content: ""
}

.icon-to-end-1:before {
	content: ""
}

.icon-to-start-1:before {
	content: ""
}

.icon-left-open-1:before {
	content: ""
}

.icon-right-open-1:before {
	content: ""
}

.icon-left-open-mini:before {
	content: ""
}

.icon-right-open-mini:before {
	content: ""
}

.icon-left-open-big:before {
	content: ""
}

.icon-right-open-big:before {
	content: ""
}

.icon-play:before {
	content: ""
}

.icon-right-open:before {
	content: ""
}

.icon-to-end:before {
	content: ""
}

.icon-to-start:before {
	content: ""
}

.icon-left-open-outline:before {
	content: ""
}

.icon-left-open-2:before {
	content: ""
}

.icon-right-open-outline:before {
	content: ""
}

.icon-right-open-2:before {
	content: ""
}

.icon-left-open-3:before {
	content: ""
}

.icon-right-open-3:before {
	content: ""
}

.icon-left-open-4:before {
	content: ""
}

.icon-right-open-4:before {
	content: ""
}

.icon-left-open-5:before {
	content: ""
}

.icon-pause:before {
	content: ""
}

#warn-wrapper {
	background-color: #fffbe5;
	color: #000;
	position: relative;
	width: 100%;
	z-index: 9999
}

#warn-wrapper .warn-inner {
	margin: 0 auto;
	padding: 10px 30px 20px;
	width: 1140px
}

#warn-wrapper .warn-textOuter {
	background-image: url(../images/design/warn.a924d0.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	padding-left: 62px
}

#warn-wrapper .warn-big {
	font-size: 24px;
	height: 48px;
	line-height: 48px
}

#warn-wrapper .download {
	padding-left: 50px
}

#warn-wrapper .warn-group {
	float: left;
	padding: 0 50px
}

#warn-wrapper .warn-title {
	font-size: 16px;
	padding-bottom: 5px;
	text-align: center
}

#warn-wrapper .warn-title span {
	color: #aa182c;
	font-size: 14px;
	font-weight: bolder
}

#warn-wrapper ul li {
	float: left;
	height: 64px;
	margin-left: 20px;
	margin-right: 20px;
	width: 64px
}

#warn-wrapper ul li.chrome {
	background: url(../images/design/browser_Chrome.a1d569.jpg) no-repeat 50%
}

#warn-wrapper ul li.edge {
	background: url(../images/design/browser_Edge.c94b3b.jpg) no-repeat 50%
}

#warn-wrapper ul li.qq {
	background: url(../images/design/browser_QQ.45063c.jpg) no-repeat 50%
}

#warn-wrapper ul li.se360 {
	background: url(../images/design/browser_360se.a9047c.jpg) no-repeat 50%
}

#warn-wrapper ul li.safari {
	margin-left: 25px
}

#warn-wrapper ul li a {
	display: block;
	height: 100%;
	width: 100%
}

#warn-wrapper .warn-close {
	border: 1px solid #000;
	cursor: pointer;
	font-size: 30px;
	height: 30px;
	line-height: 26px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 30px
}

.wrapper {
	background: url(../images/design/background.08bcb1.png) no-repeat center 2770px;
	overflow: hidden;
	padding-bottom: 56px
}

.AD,
.wrapper {
	position: relative
}

img.lazy {
	background: #ddd url(../images/design/lazy_efefef.9978b5.png) no-repeat 50%
}

.towCode {
	background: url(../images/design/towCode.354345.png) no-repeat 0 0;
	bottom: -204px;
	height: 204px;
	left: 50%;
	margin-left: -102px;
	position: absolute;
	width: 204px;
	z-index: 999999
}

.wrapper .goback {
	background: url(../images/design/goback.d332db.png) no-repeat 0 0;
	bottom: 150px;
	cursor: pointer;
	display: none;
	height: 48px;
	position: fixed;
	right: 10px;
	width: 48px;
	z-index: 9999
}

.guochao_dianji {
	background: url(../images/design/guochao_dianji.a42424.png) no-repeat 0 0;
	height: 37px;
	position: absolute;
	right: 144px;
	top: 26px;
	width: 125px
}

.wrapper a {
	color: #000
}

.wrapper a:hover {
	color: #aa182c;
	text-decoration: none
}

.wrapper i.sound {
	background: url(../images/design/icon_sound_s.9ef3b6.png) no-repeat 0 0;
	cursor: pointer;
	display: inline-block;
	height: 13px;
	margin-left: .3em;
	width: 10px
}

.wrapper i.sound.current {
	background: url(../images/design/icon_sound_s.409363.gif) no-repeat 0 0
}

.wrapper .w1200 {
	margin: 0 auto;
	width: 1200px
}

.wrapper .banner {
	background: #ba0002 url(../images/design/banner.b9aa07.png) no-repeat top;
	height: 200px;
	width: 100%
}

.wrapper .menu-main {
	box-shadow: 0 7px 14px #f4f4f4;
	margin-bottom: 0
}

.wrapper .menu-main .line1 {
	height: 90px;
	position: relative
}

.wrapper .menu-main .line1 .w1200 {
	position: relative
}

.wrapper .menu-main .line1 .form {
	left: 144px;
	position: absolute;
	top: 24px
}

.wrapper .menu-main .line1 .form .input_wrapper {
	background: url(../images/design/search-main.da06e9.png) no-repeat 0 0;
	font-size: 0;
	height: 20px;
	padding: 7px 14px;
	position: relative;
	width: 126px
}

.wrapper .menu-main .line1 .form .input_wrapper input[type=text] {
	background: none;
	border: none;
	font-size: 14px;
	font-style: normal;
	height: 20px;
	line-height: 20px;
	margin: 0;
	outline: none;
	padding: 0;
	width: 106px
}

.wrapper .menu-main .line1 .form .input_wrapper button[type=submit] {
	background: transparent url(../images/design/icon_search.2379f1.png) no-repeat 50%;
	border: none;
	cursor: pointer;
	height: 20px;
	outline: none;
	position: absolute;
	right: 10px;
	top: 7px;
	width: 20px
}

.wrapper .menu-main .line1 .patch20221114-radio-live {
	left: 310px;
	position: absolute;
	top: 0
}

.wrapper .menu-main .line1 .patch20221114-radio-live .radio-live-mask {
	background: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2
}

.wrapper .menu-main .line1 .patch20221114-radio-live .swiper-container {
	height: 90px;
	width: 280px
}

.wrapper .menu-main .line1 .patch20221114-radio-live .swiper-container .swiper-slide .item {
	background: url(../images/design/patch20221114-top-radio-bg.1808da.png) no-repeat 40px;
	height: 50px;
	line-height: 50px;
	padding: 20px 20px 20px 84px;
	position: relative;
	white-space: nowrap
}

.wrapper .menu-main .line1 .patch20221114-radio-live .swiper-container .swiper-slide .item img {
	border-radius: 8px;
	display: block;
	filter: drop-shadow(2px 2px 5px rgba(154, 18, 37, .3));
	height: 54px;
	left: 20px;
	margin-right: 10px;
	margin-top: -27px;
	position: absolute;
	top: 50%;
	width: 54px
}

.wrapper .menu-main .line1 .logo {
	height: 34px;
	left: 14px;
	position: absolute;
	top: 24px;
	width: 109px
}

.wrapper .menu-main .line1 .logo img {
	display: block;
	height: 33px;
	width: 106px
}

.wrapper .menu-main .line1 .mzgbw0304 {
	background: url(https://www.cnr.cn/2021/images/mzgbw0304.png?v=1) no-repeat 0 0;
	background-size: 100% 100%;
	height: 22px;
	left: 697px;
	position: absolute;
	top: 30px;
	width: 75px
}

.wrapper .menu-main .line1 .mzgbw0304 a {
	display: block;
	height: 100%;
	width: 100%
}

.bor0304 {
	left: 779px
}

.bor0304,
.bor0305 {
	border-right: 1px solid #ececec;
	height: 17px;
	position: absolute;
	top: 33px
}

.bor0305 {
	left: 896px
}

.wrapper .menu-main .line1 .gjyjgbw0304 {
	background: url(https://www.cnr.cn/2021/images/gjyjgbw0304.png?v=1) no-repeat 0 0;
	background-size: 100% 100%;
	height: 22px;
	left: 787px;
	position: absolute;
	top: 30px;
	width: 102px
}

.wrapper .menu-main .line1 .gjyjgbw0304 a {
	display: block;
	height: 100%;
	width: 100%
}

.wrapper .menu-main .line1 .nhtww0304 {
	background: url(https://www.cnr.cn/2021/images/nhtww0304.png?v=1) no-repeat 0 0;
	background-size: 100% 100%;
	height: 22px;
	left: 904px;
	position: absolute;
	top: 30px;
	width: 75px
}

.wrapper .menu-main .line1 .nhtww0304 a {
	display: block;
	height: 100%;
	width: 100%
}

.wrapper .menu-main .line1 .download_app {
	background: url(../images/design/btn_downloadAPP.ac60b8.png) no-repeat 0 0;
	height: 30px;
	left: 1006px;
	position: absolute;
	top: 26px;
	width: 94px
}

.wrapper .menu-main .line1 .download_app a {
	display: block;
	height: 100%;
	width: 100%
}

.wrapper .menu-main .line1 .email {
	background: url(https://www.cnr.cn/2021/images/btn_Email0623.png) no-repeat 0 0;
	background-size: 100% 100%;
	height: 30px;
	left: 1114px;
	position: absolute;
	top: 26px;
	width: 80px
}

.wrapper .menu-main .line1 .email a {
	display: block;
	height: 100%;
	width: 100%
}

.wrapper .menu-main .line2 {
	border-bottom: 1px solid #dfdfdf;
	border-top: 1px solid #dfdfdf;
	height: 40px
}

.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 {
	float: left;
	height: 40px;
	line-height: 40px;
	margin-left: 47px;
	position: relative
}

.wrapper .menu-main .line2 .nav-main li:first-child {
	margin-left: 13px
}

.wrapper .menu-main .line2 .nav-main li:hover .sub {
	opacity: 1;
	visibility: visible
}

.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 {
	background: #fff;
	border: 1px solid #dfdfdf;
	border-radius: 5px;
	left: -2px;
	max-width: 124px;
	opacity: 0;
	padding: 10px;
	position: absolute;
	top: 37px;
	transition: all .4s ease-in-out;
	visibility: hidden;
	z-index: 9
}

.wrapper .menu-main .line2 .nav-main li .sub:before {
	background: url(../images/design/menu-sub-up.6ed12f.png) no-repeat 50%;
	content: "";
	height: 8px;
	left: 10px;
	position: absolute;
	top: -7px;
	width: 14px
}

.wrapper .menu-main .line2 .nav-main li .sub a {
	display: block;
	font-size: 14px;
	font-weight: 400;
	height: 24px;
	line-height: 24px;
	margin: 0 3px;
	white-space: nowrap
}

.wrapper .menu-main .line3 {
	border-bottom: 1px solid #dfdfdf;
	height: 39px
}

.wrapper .menu-main .line3 .nav-local li {
	float: left;
	height: 24px;
	line-height: 24px;
	margin-left: 23px;
	padding-top: 6px
}

.wrapper .menu-main .line3 .nav-local li:first-child {
	margin-left: 16px
}

.wrapper .menu-main .line3 .nav-local li a {
	font-size: 12px;
	height: 24px;
	line-height: 24px
}

.wrapper .row {
	padding-top: 38px
}

.wrapper .row1 {
	margin-bottom: 16px
}

.wrapper .row1 .header {
	padding-top: 27px
}

.wrapper .row1 .header .swiper-container {
	height: 48px;
	text-align: center;
	width: 1200px
}

.wrapper .row1 .header h1 {
	height: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 1200px
}

.wrapper .row1 .header h1 a {
	color: #aa182c;
	font-size: 36px;
	font-weight: 700
}

.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 0 0;
	height: 19px;
	margin-left: 0;
	width: 15px
}

.wrapper .row1 .header h1 i.sound.current {
	background: url(../images/design/icon_sound_m.138397.gif) no-repeat 0 0
}

.wrapper .row1 .header .subhead {
	margin-top: 18px;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap
}

.wrapper .row1 .header .subhead strong {
	font-size: 16px;
	font-weight: 400
}

.wrapper .row1 .main {
	padding-top: 34px
}

.wrapper .row1 .main .w650 {
	float: left;
	width: 650px
}

.wrapper .row1 .main .w650 .swiper-container {
	height: 365px;
	position: relative;
	width: 650px
}

.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 {
	background: url(../images/design/fouce_mask.8b8b73.png) no-repeat 0 0;
	bottom: 0;
	content: "";
	height: 70px;
	left: 0;
	position: absolute;
	width: 650px
}

.wrapper .row1 .main .w650 .swiper-container .swiper-slide a img {
	display: block;
	height: 365px;
	width: 650px
}

.wrapper .row1 .main .w650 .swiper-container .swiper-slide a span {
	bottom: 0;
	color: #fff;
	left: 0;
	line-height: 46px;
	overflow: hidden;
	position: absolute;
	text-indent: 2em;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	z-index: 9
}

.wrapper .row1 .main .w650 .swiper-container .pagination {
	bottom: 14px;
	left: auto;
	position: absolute;
	right: 15px;
	width: auto;
	z-index: 99
}

.wrapper .row1 .main .w650 .swiper-container .pagination .swiper-pagination-switch {
	background: #5a5a5a;
	border-radius: 10px;
	display: inline-block;
	height: 10px;
	margin: 0 3px;
	width: 10px
}

.wrapper .row1 .main .w650 .swiper-container .pagination .swiper-active-switch {
	background: #fff
}

.wrapper .row1 .main .w650 .swiper-container .prev {
	background: url(https://www.cnr.cn/2021/images/fouces_prev.png) no-repeat 0 0;
	left: 0
}

.wrapper .row1 .main .w650 .swiper-container .next,
.wrapper .row1 .main .w650 .swiper-container .prev {
	cursor: pointer;
	height: 55px;
	margin-top: -27px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transition: opacity .6s ease-in-out;
	width: 36px;
	z-index: 9
}

.wrapper .row1 .main .w650 .swiper-container .next {
	background: url(https://www.cnr.cn/2021/images/fouces_next.png) no-repeat 0 0;
	right: 0
}

.wrapper .row1 .main .w650 .swiper-container:hover .next,
.wrapper .row1 .main .w650 .swiper-container:hover .prev {
	opacity: 1
}

.wrapper .row1 .main .w512 {
	float: left;
	margin-left: 30px;
	width: 510px
}

.wrapper .row1 .main .w512 ul {
	margin-top: -32px
}

.wrapper .row1 .main .w512 ul li {
	border-top: 1px solid #e5e5e5;
	font-size: 18px;
	line-height: 2.5;
	padding-left: 10px;
	white-space: nowrap
}

.wrapper .row1 .main .w512 ul li:first-child,
.wrapper .row1 .main .w512 ul li:nth-child(5) {
	border-top: none
}

.wrapper .row1 .main .w512 ul li h2 {
	font-size: 21px;
	line-height: 2.2;
	margin-top: 20px
}

.wrapper .row1 .main .w512 ul li h2 a {
	font-size: 21px;
	font-weight: 700
}

.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 {
	float: left;
	font-size: 27px;
	line-height: 1.2;
	margin-left: 2px;
	position: relative
}

.wrapper .row1-1 .w520 .dujia .title .left:before {
	background: #aa182c;
	bottom: -8px;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%
}

.wrapper .row1-1 .w520 .dujia .title .left a {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2
}

.wrapper .row1-1 .w520 .dujia .title .right {
	float: right
}

.wrapper .row1-1 .w520 .dujia .title .right a.more {
	color: #8d8d8d;
	font-size: 14px
}

.wrapper .row1-1 .w520 .dujia ul {
	padding-top: 10px
}

.wrapper .row1-1 .w520 .dujia ul li {
	border-top: 1px solid #e5e5e5;
	font-size: 18px;
	line-height: 2.5;
	padding-left: 10px;
	white-space: nowrap
}

.wrapper .row1-1 .w520 .dujia ul li:first-child {
	border-top: none
}

.wrapper .row1-1 .w520 .early-warning {
	background: url(../images/design/early_warning.9fbb78.png) no-repeat 0 0;
	height: 103px;
	left: -8px;
	position: absolute;
	top: 175px;
	width: 541px
}

.wrapper .row1-1 .w520 .early-warning .yingji-swiper-container {
	height: 44px;
	left: 178px;
	overflow: hidden;
	position: absolute;
	top: 31px;
	width: 320px
}

.wrapper .row1-1 .w520 .early-warning .yingji-swiper-container a {
	color: #e15805;
	display: block;
	font-size: 16px;
	font-weight: bolder;
	height: 22px;
	line-height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%
}

.wrapper .row1-1 .w520 .early-warning ul {
	height: 44px;
	left: 178px;
	overflow: hidden;
	position: absolute;
	top: 31px;
	width: 320px
}

.wrapper .row1-1 .w520 .early-warning ul li {
	font-size: 14px;
	height: 22px;
	line-height: 22px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.wrapper .row1-1 .w520 .early-warning ul li:first-child a {
	color: #e15805;
	font-weight: bolder
}

.wrapper .row1-1 {
	height: 293px;
	position: relative
}

.wrapper .row1-1 .w674 {
	float: right;
	position: relative
}

.wrapper .row1-1 .w674 .erwen {
	background: url(../images/design/erwen_beijing.bb1a61.png) no-repeat 0 0;
	height: 293px;
	position: absolute;
	right: -13px;
	top: 0;
	width: 674px
}

.wrapper .row1-1 .w674 .erwen .erwen-title {
	height: 64px;
	left: 46px;
	position: absolute;
	top: 10px;
	width: 148px
}

.wrapper .row1-1 .w674 .erwen .erwen-title a {
	display: block;
	height: 100%;
	overflow: hidden;
	text-indent: -9999px;
	width: 100%
}

.wrapper .row1-1 .w674 .erwen .change {
	background: url(../images/design/icon_change.50dd9f.png) no-repeat 0 0;
	cursor: pointer;
	height: 58px;
	position: absolute;
	right: 32px;
	top: 16px;
	width: 58px
}

.wrapper .row1-1 .w674 .erwen .box {
	height: 184px;
	left: 15px;
	position: absolute;
	top: 86px;
	width: 594px
}

.wrapper .row1-1 .w674 .erwen .box ul {
	padding-top: 10px;
	width: 100%
}

.wrapper .row1-1 .w674 .erwen .box ul li {
	float: left;
	height: 56px;
	margin: 0 12px;
	position: relative;
	width: 272px
}

.wrapper .row1-1 .w674 .erwen .box ul li a {
	border-radius: 10px;
	color: #8d8d8d;
	display: table-cell;
	font-size: 14px;
	height: 56px;
	line-height: 22px;
	padding-left: 38px;
	position: relative;
	vertical-align: middle;
	width: 272px
}

.wrapper .row1-1 .w674 .erwen .box ul li a:hover {
	background-color: #eef6fc;
	color: #000
}

.wrapper .row1-1 .w674 .erwen .box ul li a .sound {
	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 0 0;
	cursor: pointer;
	height: 29px;
	left: 0;
	margin-top: -14px;
	position: absolute;
	top: 50%;
	width: 28px
}

.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 {
	background: #fff;
	margin-top: 26px
}

.wrapper .row2 .w360 {
	float: left;
	width: 360px
}

.wrapper .row2 .w360.ml30 {
	margin-left: 30px
}

.wrapper .row2 .w360 .jiaodian {
	margin-bottom: 25px;
	position: relative;
	width: 360px
}

.wrapper .row2 .w360 .jiaodian .title {
	position: relative
}

.wrapper .row2 .w360 .jiaodian .title .left {
	float: left;
	font-size: 27px;
	line-height: 1.2;
	margin-left: 4px;
	position: relative
}

.wrapper .row2 .w360 .jiaodian .title .left:before {
	background: #aa182c;
	bottom: -8px;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%
}

.wrapper .row2 .w360 .jiaodian .title .left a {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2
}

.wrapper .row2 .w360 .jiaodian .pic {
	margin-top: 12px
}

.wrapper .row2 .w360 .jiaodian .pic a {
	display: block;
	overflow: hidden;
	position: relative
}

.wrapper .row2 .w360 .jiaodian .pic a:hover img {
	transform: scale(1.1)
}

.wrapper .row2 .w360 .jiaodian .pic a:before {
	background: url(../images/design/fouce_mask.8b8b73.png) no-repeat 0 0;
	bottom: 0;
	content: "";
	height: 70px;
	left: 0;
	position: absolute;
	width: 360px;
	z-index: 2
}

.wrapper .row2 .w360 .jiaodian .pic a img {
	display: block;
	height: 203px;
	transition: all .2s ease-in-out;
	width: 360px
}

.wrapper .row2 .w360 .jiaodian .pic a span {
	bottom: 0;
	color: #fff;
	font-size: 16px;
	left: 0;
	line-height: 60px;
	overflow: hidden;
	position: absolute;
	text-indent: 1em;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
	z-index: 3
}

.wrapper .row2 .w360 .hottop,
.wrapper .row2 .w360 .hottop .title {
	position: relative
}

.wrapper .row2 .w360 .hottop .title .left {
	float: left;
	font-size: 27px;
	line-height: 1.2;
	margin-left: 4px;
	position: relative
}

.wrapper .row2 .w360 .hottop .title .left:before {
	background: #aa182c;
	bottom: -8px;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%
}

.wrapper .row2 .w360 .hottop .title .left a {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2
}

.wrapper .row2 .w360 .hottop .title .right {
	background: url(../images/design/icon_hot_search.6216cf.png) no-repeat 0;
	padding-left: 76px;
	position: absolute;
	right: 0;
	top: 8px
}

.wrapper .row2 .w360 .hottop .title .right .form .input_wrapper {
	background: url(../images/design/search-main-s.772537.png) no-repeat 0 0;
	font-size: 0;
	height: 14px;
	padding: 5px 12px;
	position: relative;
	width: 93px
}

.wrapper .row2 .w360 .hottop .title .right .form .input_wrapper input[type=text] {
	background: none;
	border: none;
	color: #a4a4a4;
	font-size: 12px;
	font-style: italic;
	height: 14px;
	line-height: 14px;
	margin: 0;
	outline: none;
	padding: 0;
	width: 71px
}

.wrapper .row2 .w360 .hottop .title .right .form .input_wrapper button[type=submit] {
	background: transparent url(../images/design/icon_search-s.7cfb7d.png) no-repeat 50%;
	border: none;
	cursor: pointer;
	height: 13px;
	outline: none;
	position: absolute;
	right: 10px;
	top: 6px;
	width: 12px
}

.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 1px rgba(244, 244, 244, 0.6);
}

.wrapper .row2 .w360 .hottop .box ul li {
	border-bottom: 1px solid #e5e5e5;
	font-size: 14px;
	height: 40px;
	line-height: 20px;
	padding: 9px 0 9px 29px
}

.wrapper .row2 .w360 .hottop .box ul li:last-child {
	border-bottom: none
}

.wrapper .row2 .w360 .hottop .box ul li:first-child {
	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: 700
}

.wrapper .row2 .w360 .hottop .box ul li a {
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis
}

.wrapper .row2 .w420 {
	float: left;
	margin-left: 30px;
	width: 420px
}

.wrapper .row2 .w420 .title .left {
	float: left;
	font-size: 27px;
	line-height: 1.2;
	position: relative
}

.wrapper .row2 .w420 .title .left:before {
	background: #aa182c;
	bottom: -8px;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%
}

.wrapper .row2 .w420 .title .left a {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2
}

.wrapper .row2 .w420 .title .right {
	float: right
}

.wrapper .row2 .w420 .title .right a.more {
	color: #8d8d8d;
	font-size: 14px
}

.wrapper .row2 .w420 .box {
	padding-top: 10px
}

.wrapper .row2 .w420 .box .list li {
	border-top: 1px solid #e5e5e5;
	height: 47px;
	position: relative
}

.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 {
	font-size: 18px;
	height: 100%;
	line-height: 47px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%
}

.wrapper .row2 .w420 .box .list li h3 a {
	font-weight: 700
}

.wrapper .row2 .w300 {
	float: left;
	margin-left: 28px;
	width: 300px
}

.wrapper .row2 .w360 .wangping {
	position: relative
}

.wrapper .row2 .w360 .wangping .title .left {
	float: left;
	font-size: 27px;
	line-height: 1.2;
	margin-left: 2px;
	position: relative
}

.wrapper .row2 .w360 .wangping .title .left:before {
	background: #aa182c;
	bottom: -8px;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%
}

.wrapper .row2 .w360 .wangping .title .left a {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2
}

.wrapper .row2 .w360 .wangping .title .right {
	float: right
}

.wrapper .row2 .w360 .wangping .title .right a.more {
	color: #8d8d8d;
	font-size: 14px
}

.wrapper .row2 .w360 .wangping .box {
	margin-top: 18px;
	width: 100%
}

.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);
	  margin-bottom: 22px;
}

.wrapper .row2 .w360 .wangping .box .item:nth-child(2n){
    margin-left: 20px;
  }

.wrapper .row2 .w360 .wangping .box .item .pic a {
	display: block;
	overflow: hidden
}

.wrapper .row2 .w360 .wangping .box .item .pic a:hover img {
	transform: scale(1.1)
}

.wrapper .row2 .w360 .wangping .box .item .pic a img {
	display: block;
	height: 96px;
	transition: all .2s ease-in-out;
	width: 170px
}

.wrapper .row2 .w360 .wangping .box .item .info {
	height: 88px;
	padding: 8px 10px;
	position: relative
}

.wrapper .row2 .w360 .wangping .box .item .info .titl {
	color: #000;
	font-size: 14px;
	line-height: 20px
}

.wrapper .row2 .w360 .wangping .box .item .info .time {
	bottom: 5px;
	color: #8d8d8d;
	font-size: 14px;
	left: 10px;
	position: absolute
}

.wrapper .row2 .w360 .cehua {
	position: relative;
}

.wrapper .row2 .w360 .cehua .title .left {
	float: left;
	font-size: 27px;
	line-height: 1.2;
	margin-left: 2px;
	position: relative
}

.wrapper .row2 .w360 .cehua .title .left:before {
	background: #aa182c;
	bottom: -8px;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%
}

.wrapper .row2 .w360 .cehua .title .left a {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2
}

.wrapper .row2 .w360 .cehua .title .right {
	float: right
}

.wrapper .row2 .w360 .cehua .title .right a.more {
	color: #8d8d8d;
	font-size: 14px
}

.wrapper .row2 .w360 .cehua .box {
	margin-top: 18px;
	width: 100%
}

.wrapper .row2 .w360 .cehua .box .item {
	float: left;
	height: 295px;
	position: relative;
	width: 170px
}

.wrapper .row2 .w360 .cehua .box .item:last-child {
	float: right
}

.wrapper .row2 .w360 .cehua .box .item .pic {
	overflow: hidden;
	position: relative
}

.wrapper .row2 .w360 .cehua .box .item .pic:hover span {
	transform: translateY(-100%)
}

.wrapper .row2 .w360 .cehua .box .item img {
	display: block
}

.wrapper .row2 .w360 .cehua .box .item span {
	align-items: center;
	background-color: rgba(0, 0, 0, .8);
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	height: 100%;
	justify-content: center;
	padding: 0 10%;
	position: absolute;
	transition: transform 1s cubic-bezier(.165, .84, .44, 1);
	width: 80%;
	z-index: 2
}

.row2-1 {
	padding-bottom: 30px;
	padding-top: 38px
}

.wrapper .zmn {
	background: url(../images/design/zmn.baa4c6.png) no-repeat 0 0;
	float: right;
	height: 99px;
	position: relative;
	width: 521px
}

.wrapper .zmn .swiper-container {
	height: 48px;
	left: 150px;
	position: absolute;
	top: 42px;
	width: 250px
}

.wrapper .zmn .swiper-container strong {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: block;
	display: -webkit-box;
	font-size: 14px;
	height: 48px;
	overflow: hidden;
	text-overflow: ellipsis
}

.wrapper .zmn .zmnwyts {
	background: url(../images/design/zmn_btn.e3b9aa.png) no-repeat;
	height: 55px;
	position: absolute;
	right: 24px;
	top: 37px;
	width: 68px
}

.wrapper .zmn .zmnwyts a {
	display: block;
	height: 100%;
	width: 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
}

.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 {
	background: url(../images/design/eyes_look_title.c31b7b.png) no-repeat 0 100%;
	display: inline-block;
	height: 35px;
	width: 66px
}

.wrapper .row3 .eyes_look .title .right {
	float: right;
	position: relative
}

.wrapper .row3 .eyes_look .title .right .btn_towcode {
	background: url(../images/design/btn_share.94d167.png) no-repeat 0 0;
	height: 36px;
	position: absolute;
	right: 87px;
	top: 2px;
	width: 36px
}

.wrapper .row3 .eyes_look .title .right .btn_app_plus {
	background: url(../images/design/eyes_look_appPlus.18962e.png) no-repeat 0 0;
	height: 31px;
	position: absolute;
	right: 15px;
	top: 3px;
	width: 59px
}

.wrapper .row3 .eyes_look .slider {
	background: url(../images/design/eyes_look_tip.9e7e07.png) no-repeat 855px 426px;
	height: 460px;
	padding: 0 40px;
	position: relative
}

.wrapper .row3 .eyes_look .slider .arrow_left {
	background: url(../images/design/eyes_look_arrowLeft.80a02e.png) no-repeat 0 0;
	height: 31px;
	left: 13px;
	position: absolute;
	top: 207px;
	width: 17px;
	z-index: 9
}

.wrapper .row3 .eyes_look .slider .arrow_right {
	background: url(../images/design/eyes_look_arrowRight.0faea0.png) no-repeat 0 0;
	height: 31px;
	position: absolute;
	right: 7px;
	top: 207px;
	width: 18px;
	z-index: 9
}

.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-switch {
	background: #717171;
	border-radius: 12px;
	display: inline-block;
	height: 12px;
	margin: 0 7px;
	width: 12px
}

.wrapper .row3 .eyes_look .slider .pagination .swiper-active-switch {
	background: #fff
}

.wrapper .row3 .eyes_look .slider .col {
	float: left;
	padding: 19px 26px 0
}

.wrapper .row3 .eyes_look .slider .col .item {
	height: 389px;
	position: relative;
	width: 221px
}

.wrapper .row3 .eyes_look .slider .col .item:hover:before {
	opacity: 1;
	transform: translate(16px, -12px)
}

.wrapper .row3 .eyes_look .slider .col .item:hover:after {
	opacity: 1
}

.wrapper .row3 .eyes_look .slider .col .item:before {
	background: url(../images/design/eyes_look_hover_bg.588e7e.png) no-repeat 50%;
	content: "";
	height: 384px;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: translate(0);
	transition: all .2s ease-in-out;
	width: 215px;
	z-index: 1
}

.wrapper .row3 .eyes_look .slider .col .item:after {
	background: url(../images/design/eyes_look_hover_img.479314.png) no-repeat 50%;
	content: "";
	height: 389px;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: all .2s ease-in-out;
	width: 221px;
	z-index: 5
}

.wrapper .row3 .eyes_look .slider .col .item a {
	display: block;
	padding: 2px;
	position: absolute;
	z-index: 9
}

.wrapper .row3 .eyes_look .slider .col .item a:before {
	background: url(../images/design/icon_play_l.5523fd.png) no-repeat 50%;
	content: "";
	height: 60px;
	left: 50%;
	margin-left: -30px;
	margin-top: -36px;
	position: absolute;
	top: 50%;
	width: 60px
}

.wrapper .row3 .eyes_look .slider .col .item a:after {
	background: url(../images/design/eyes_look_mask.009a85.png) no-repeat 50%;
	bottom: 2px;
	content: "";
	height: 160px;
	left: 2px;
	position: absolute;
	width: 217px
}

.wrapper .row3 .eyes_look .slider .col .item a img {
	border-radius: 5px;
	display: block;
	height: 385px;
	width: 217px
}

.wrapper .row3 .eyes_look .slider .col .item a span {
	color: #fff;
	font-size: 16px;
	height: 78px;
	left: 0;
	line-height: 26px;
	padding: 0 15px;
	position: absolute;
	right: 0;
	top: 306px;
	width: 191px;
	z-index: 2
}

.wrapper .row3 .eyes_look .timeline {
	background: url(../images/design/icon_live.6e95d5.png) no-repeat 94px 11px;
	height: 267px;
	width: 100%
}

.wrapper .row3 .eyes_look .timeline ul {
	padding-left: 52px;
	padding-top: 32px
}

.wrapper .row3 .eyes_look .timeline ul li {
	background: url(../images/design/icon_desc.cb97b5.png) no-repeat center 0;
	float: left;
	padding-top: 18px;
	position: relative;
	text-align: center;
	width: 214px
}

.wrapper .row3 .eyes_look .timeline ul li:first-child:before {
	display: none
}

.wrapper .row3 .eyes_look .timeline ul li:before {
	background: #575757;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 8px;
	width: 106px
}

.wrapper .row3 .eyes_look .timeline ul li:after {
	background: #575757;
	content: "";
	height: 1px;
	position: absolute;
	right: 0;
	top: 8px;
	width: 106px
}

.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 {
	margin-top: -2px;
	width: 184px
}

.wrapper .row3 .eyes_look .timeline ul li>div.live .pic:before {
	background: url(../images/design/icon_live-ing-up.1960c6.png) no-repeat 0 0;
	content: "";
	height: 26px;
	left: 2px;
	position: absolute;
	top: -4px;
	width: 104px;
	z-index: 1
}

.wrapper .row3 .eyes_look .timeline ul li>div.live .pic:after {
	background: url(../images/design/icon_live-ing-down.a9613f.png) no-repeat 0 0;
	bottom: -4px;
	content: "";
	height: 26px;
	position: absolute;
	right: 2px;
	width: 51px;
	z-index: 1
}

.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 {
	background: url(../images/design/icon_live-replay.275516.png) no-repeat 0 0;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 0;
	width: 60px;
	z-index: 1
}

.wrapper .row3 .eyes_look .timeline ul li>div.prevue .pic {
	width: 180px
}

.wrapper .row3 .eyes_look .timeline ul li>div.prevue .pic:before {
	background: url(../images/design/icon_live-prevue.70f2bf.png) no-repeat 0 0;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 0;
	width: 60px;
	z-index: 1
}

.wrapper .row3 .eyes_look .timeline ul li>div .time {
	color: #b9b9b9;
	font-size: 12px;
	height: 22px;
	line-height: 22px;
	margin-bottom: 20px
}

.wrapper .row3 .eyes_look .timeline ul li>div .pic {
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 180px
}

.wrapper .row3 .eyes_look .timeline ul li>div .pic .poster {
	border-radius: 5px;
	display: block;
	font-size: 0;
	overflow: hidden;
	position: relative
}

.wrapper .row3 .eyes_look .timeline ul li>div .pic .poster img {
	height: 102px;
	width: 180px
}

.wrapper .row3 .eyes_look .timeline ul li>div .pic .poster:before {
	background: url(../images/design/eyes_look_timeline_mask.90975a.png) no-repeat 0 0;
	bottom: 0;
	content: "";
	height: 83px;
	left: 50%;
	margin-left: -90px;
	position: absolute;
	width: 180px
}

.wrapper .row3 .eyes_look .timeline ul li>div .pic .poster:after {
	background: url(../images/design/icon_play_m.74c9ee.png) no-repeat 0 0;
	content: "";
	height: 40px;
	left: 50%;
	margin-left: -20px;
	margin-top: -20px;
	position: absolute;
	top: 50%;
	width: 40px
}

.wrapper .row3 .eyes_look .timeline ul li>div .titl {
	color: #fff;
	font-size: 14px;
	line-height: 24px;
	margin: 14px auto 0;
	text-align: justify;
	width: 180px
}

.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 {
	margin-bottom: 29px;
	padding-top: 31px
}

.wrapper .row4 .unleash_loader_bg {
	background-color: transparent;
	top: -20px
}

.wrapper .row4 .w1200 {
	position: relative
}

.wrapper .row4.xingzhen .w1200:before {
	background: url(../images/design/startMatrix-slogan.209f01.png) no-repeat 0 0;
	content: "";
	height: 121px;
	left: -40px;
	position: absolute;
	top: -42px;
	width: 298px
}

.wrapper .row4.zhuanti .w1200:before {
	background: url(../images/design/zhuanti_shadow.b2ee8d.png) no-repeat 0 0;
	content: "";
	height: 121px;
	left: -40px;
	position: absolute;
	top: -42px;
	width: 152px
}

.wrapper .row4 .w1200 .title {
	height: 34px;
	margin-bottom: 20px;
	position: relative;
	width: 100%;
	z-index: 99
}

.wrapper .row4 .w1200 .title .left {
	float: left
}

.wrapper .row4.xingzhen .title .left a {
	background: url(../images/design/startMatrix.133c92.png) no-repeat 0 0;
	display: block;
	height: 34px;
	width: 57px
}

.wrapper .row4.zhuanti .title .left a {
	background: url(../images/design/zhuanti.2548bc.png) no-repeat 0 0;
	display: block;
	height: 34px;
	width: 57px
}

.wrapper .row4 .w1200 .title .right {
	float: right;
	position: relative
}

.wrapper .row4 .w1200 .title .right .btn_towcode {
	background: url(../images/design/startMatrix_share.fb9c78.png) no-repeat 0 0;
	height: 36px;
	position: absolute;
	right: 80px;
	top: 2px;
	width: 36px
}

.wrapper .row4 .w1200 .title .right .btn_app_plus {
	background: url(../images/design/startMatrix_appPlus.bb788a.png) no-repeat 0 0;
	height: 31px;
	position: absolute;
	right: 3px;
	top: 3px;
	width: 59px
}

.wrapper .row4.xingzhen .box {
	position: relative
}

.wrapper .row4.xingzhen .box .arrow_left {
	background: url(../images/design/startMatrix_arrowleft_s.74d364.png) no-repeat right 0;
	cursor: pointer;
	height: 55px;
	left: -22px;
	margin-top: -27.5px;
	position: absolute;
	top: 50%;
	transition: transform 0s ease-in-out .2s;
	width: 22px;
	z-index: 99
}

.wrapper .row4.xingzhen .box .arrow_left.swiper-button-disabled {
	opacity: .6
}

.wrapper .row4.xingzhen .box .arrow_left.large {
	background: url(../images/design/startMatrix_arrowleft_l.073488.png) no-repeat right 0;
	transform: translate(22px);
	width: 36px
}

.wrapper .row4.xingzhen .box .arrow_right {
	background: url(../images/design/startMatrix_arrowright_s.075952.png) no-repeat left 0;
	cursor: pointer;
	height: 55px;
	margin-top: -27.5px;
	position: absolute;
	right: -22px;
	top: 50%;
	transition: transform 0s ease-in-out .2s;
	width: 22px;
	z-index: 99
}

.wrapper .row4.xingzhen .box .arrow_right.swiper-button-disabled {
	opacity: .6
}

.wrapper .row4.xingzhen .box .arrow_right.large {
	background: url(../images/design/startMatrix_arrowright_l.f6e5ef.png) no-repeat left 0;
	transform: translate(-22px);
	width: 36px
}

.wrapper .row4.xingzhen .swiper-container {
	background-color: #000;
	height: 310px;
	position: relative;
	width: 1200px
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide {
	font-size: 0
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider,
.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 {
	background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0, transparent);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=0);
	height: 66px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .tit {
	background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .5));
	bottom: 0;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=0);
	height: 44px;
	left: 0;
	opacity: 0;
	position: absolute;
	top: auto;
	width: 100%
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .tit a {
	color: #fff;
	display: block;
	font-size: 18px;
	line-height: 44px;
	overflow: hidden;
	text-indent: 1em;
	white-space: nowrap
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .slogen {
	color: #fff;
	font-size: 14px;
	left: 120px;
	opacity: 0;
	position: absolute;
	top: 27px
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .localname {
	font-weight: 700;
	height: 22px;
	left: 43px;
	position: absolute;
	top: 28px;
	transform: rotate(90deg);
	transform-origin: 0 0
}

.wrapper .row4.xingzhen .swiper-container .swiper-slide .unleash_slider .unleash_slide .unleash_content .localname a {
	color: #fff;
	display: block;
	font-size: 22px;
	height: 100%;
	line-height: 22px;
	width: 100%
}

.rotateIn90 {
	-webkit-animation-name: rotateIn90;
	animation-name: rotateIn90
}

.rotateOut90 {
	-webkit-animation-name: rotateOut90;
	animation-name: rotateOut90
}

@-webkit-keyframes rotateIn90 {
	0% {
		transform: rotate(90deg)
	}

	to {
		transform: rotate(0deg)
	}
}

@keyframes rotateIn90 {
	0% {
		transform: rotate(90deg)
	}

	to {
		transform: rotate(0deg)
	}
}

@-webkit-keyframes rotateOut90 {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(90deg)
	}
}

@keyframes rotateOut90 {
	0% {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(90deg)
	}
}

.wrapper .row6 .w580 {
	float: left;
	padding-top: 35px;
	width: 580px
}

.wrapper .row6 .w580:nth-child(2n) {
	margin-left: 40px
}

.wrapper .row6 .w580 .title {
	margin-bottom: 8px;
	position: relative
}

.wrapper .row6 .w580 .title .left {
	float: left;
	font-size: 27px;
	line-height: 1.2;
	margin-left: 4px;
	position: relative
}

.wrapper .row6 .w580 .title .left:before {
	background: #aa182c;
	bottom: -8px;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%
}

.wrapper .row6 .w580 .title .left a {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2
}

.wrapper .row6 .w580 .title .right {
	bottom: -4px;
	position: absolute;
	right: 0
}

.wrapper .row6 .w580 .title .right a {
	color: #000;
	font-size: 14px;
	font-weight: 400
}

.wrapper .row6 .w580 .title .right a.more {
	color: #8d8d8d;
	font-size: 14px;
	font-weight: 400;
	padding-left: 10px
}

.wrapper .row6 .w580 .title .right a:hover {
	color: #aa182c
}

.wrapper .row6 .box {
	padding-top: 16px
}

.wrapper .row6 .box .box-row1 .pic {
	float: left;
	height: 214px;
	position: relative;
	width: 380px
}

.wrapper .row6 .box .box-row1 .pic a {
	display: block;
	overflow: hidden
}

.wrapper .row6 .box .box-row1 .pic a:hover img {
	transform: scale(1.1)
}

.wrapper .row6 .box .box-row1 .pic a:before {
	background: url(../images/design/chuizhi_mask.0bcd03.png) no-repeat 50%;
	bottom: 0;
	content: "";
	height: 66px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 1
}

.wrapper .row6 .box .box-row1 .pic a img {
	display: block;
	height: 214px;
	transition: all .2s ease-in-out;
	width: 380px
}

.wrapper .row6 .box .box-row1 .pic a span {
	bottom: 1px;
	color: #fff;
	font-size: 16px;
	left: 0;
	line-height: 1.6;
	padding: 0 20px;
	position: absolute;
	z-index: 2
}

.wrapper .row6 .box .box-row1 .specials {
	float: right;
	width: 180px
}

.wrapper .row6 .box .box-row1 .specials a {
	display: block;
	overflow: hidden
}

.wrapper .row6 .box .box-row1 .specials a:first-child {
	margin-bottom: 10px
}

.wrapper .row6 .box .box-row1 .specials a:hover img {
	transform: scale(1.1)
}

.wrapper .row6 .box .box-row1 .specials a img {
	display: block;
	height: 102px;
	transition: all .2s ease-in-out;
	width: 180px
}

.wrapper .row6 .box .box-row2 {
	padding-top: 20px
}

.wrapper .row6 .box .box-row2 .item {
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 0 15px 5px hsla(0, 0%, 96%, .8);
	float: left;
	height: 194px;
	margin-left: 20px;
	width: 180px
}

.wrapper .row6 .box .box-row2 .item:first-child {
	margin-left: 0
}

.wrapper .row6 .box .box-row2 .item .pic a {
	display: block;
	overflow: hidden
}

.wrapper .row6 .box .box-row2 .item .pic a:hover img {
	transform: scale(1.1)
}

.wrapper .row6 .box .box-row2 .item .pic a img {
	display: block;
	height: 102px;
	transition: all .2s ease-in-out;
	width: 180px
}

.wrapper .row6 .box .box-row2 .item .info {
	height: 76px;
	padding: 8px 10px;
	position: relative
}

.wrapper .row6 .box .box-row2 .item .info .titl {
	color: #000;
	font-size: 14px;
	line-height: 20px
}

.wrapper .row7 {
	background-color: #efefef;
	margin-bottom: -34px;
	margin-top: 85px;
	position: relative
}

.wrapper .row7:before {
	background-color: #ddd;
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%
}

.wrapper .row7 .w1200 {
	position: relative
}

.wrapper .row7 .w1200:before {
	color: #939393;
	content: "*品牌排名不分先后";
	font-size: 12px;
	position: absolute;
	right: 0;
	top: 10px
}

.wrapper .row7 .w1200 .title {
	background: url(../images/design/guochaominxin.01d7af.png) no-repeat 50%;
	height: 87px;
	left: 0;
	position: absolute;
	top: -56px;
	width: 217px
}

.wrapper .row7 .w1200 .btn_towcode {
	background: url(../images/design/btn_share_gray.95cf6c.png) no-repeat 50%;
	height: 36px;
	position: absolute;
	right: 72px;
	top: -40px;
	width: 36px
}

.wrapper .row7 .w1200 .btn_app_plus {
	background: url(../images/design/appPlus_gray.04042b.png) no-repeat 50%;
	height: 31px;
	position: absolute;
	right: 0;
	top: -40px;
	width: 59px
}

.wrapper .row7 .w1200 ul {
	padding-bottom: 24px;
	padding-top: 42px
}

.wrapper .row7 .w1200 ul li {
	background-color: #fff;
	float: left;
	margin-bottom: 12px;
	margin-right: 12px
}

.wrapper .row7 .w1200 ul li:nth-child(6n) {
	margin-right: 0
}

.wrapper .row7 .w1200 ul li span {
	border: 10px solid #fff;
	display: block;
	position: relative
}

.wrapper .row7 .w1200 ul li span:before {
	background: rgba(0, 0, 0, .4);
	bottom: 0;
	color: #fff;
	content: "广告";
	font-size: 12px;
	left: 0;
	padding: 0 5px;
	position: absolute
}

.wrapper .row7 .w1200 ul li span img {
	display: block;
	height: 90px;
	width: 170px
}

.wrapper .live_list {
	background: #efefef;
	border-bottom: 1px solid #dfdfdf;
	border-top: 1px solid #dfdfdf;
	bottom: 56px;
	height: 80px;
	left: 0;
	opacity: 0;
	position: fixed;
	transition: all .2s ease-in-out;
	visibility: hidden;
	width: 100%;
	z-index: 9999999
}

.wrapper .live_list .arrow-left {
	background: url(../images/design/channelListArrow.ad3517.png) no-repeat 0 0;
	margin-right: 590px;
	right: 50%
}

.wrapper .live_list .arrow-left,
.wrapper .live_list .arrow-right {
	cursor: pointer;
	height: 20px;
	margin-top: -10px;
	position: absolute;
	top: 50%;
	width: 10px
}

.wrapper .live_list .arrow-right {
	background: url(../images/design/channelListArrow.ad3517.png) no-repeat right 0;
	left: 50%;
	margin-left: 590px
}

.wrapper .live_list .LiveChannel-close {
	background: url(../images/design/channelListClose.066abd.png) no-repeat right 0;
	cursor: pointer;
	height: 16px;
	left: 50%;
	margin-left: 584px;
	position: absolute;
	top: 0;
	width: 16px;
	z-index: 9
}

.wrapper .live_list .swiper-container {
	height: 100%;
	left: 50%;
	margin-left: -585px;
	position: absolute;
	width: 1170px
}

.wrapper .live_list .swiper-container .swiper-slide.current .item .channelLogo:after,
.wrapper .live_list .swiper-container .swiper-slide.current .item .channelLogo:before {
	opacity: 1;
	visibility: visible
}

.wrapper .live_list .swiper-container .item {
	cursor: pointer;
	margin-top: -5px;
	padding: 0 9px;
	position: relative
}

.wrapper .live_list .swiper-container .item .channelLogo {
	background: url(../images/design/ChannelLogoShadow.52da74.png) no-repeat 0 0;
	height: 72px;
	position: relative;
	width: 72px
}

.wrapper .live_list .swiper-container .item .channelLogo:before {
	background: url(../images/design/ChannelLogoShadow-hover.65929b.png) no-repeat 0 0;
	content: "";
	height: 54px;
	left: 50%;
	margin-left: -27px;
	margin-top: -27px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transition: all .2s ease-in-out;
	visibility: hidden;
	width: 54px
}

.wrapper .live_list .swiper-container .item .channelLogo:after {
	background: url(../images/design/current.e858d9.png) no-repeat 0 0;
	content: "";
	height: 16px;
	opacity: 0;
	position: absolute;
	right: 4px;
	top: 13px;
	transition: all .2s ease-in-out;
	visibility: hidden;
	width: 16px
}

.wrapper .live_list .swiper-container .item .channelLogo img {
	border-radius: 100%;
	height: 50px;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	position: absolute;
	top: 50%;
	width: 50px
}

.wrapper .live_list .swiper-container .item .channelName {
	bottom: -5px;
	color: #737373;
	font-size: 12px;
	left: 0;
	line-height: 1;
	position: absolute;
	text-align: center;
	width: 100%
}

.wrapper .floatNav-wrapper {
	height: 52px;
	left: 0;
	position: fixed;
	top: 0;
	visibility: hidden;
	width: 100%;
	z-index: 9999999
}

.wrapper .floatNav-wrapper:before {
	background: url(../images/design/floatNav_shadow.da26da.png) repeat-x 0 0;
	content: "";
	height: 45px;
	left: 0;
	position: absolute;
	top: 50%;
	width: 100%
}

.wrapper .floatNav-wrapper .floatNav {
	background: #fff;
	border-bottom: 1px solid #dfdfdf;
	border-top: 1px solid #dfdfdf;
	position: absolute;
	width: 100%
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main {
	background: url(../images/design/logo-main-s.27f712.png) no-repeat 0;
	height: 50px;
	margin: 0 auto;
	width: 1200px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default {
	height: 38px;
	padding-bottom: 6px;
	padding-left: 100px;
	padding-top: 6px;
	position: absolute;
	width: 1100px;
	z-index: 9
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .openFloatNav-hidden {
	background: url(../images/design/icon_menu.8210e3.png) no-repeat 0;
	border-right: 1px solid #e5e5e5;
	cursor: pointer;
	float: left;
	height: 38px;
	line-height: 38px;
	padding-left: 24px;
	padding-right: 17px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .search {
	border-right: 1px solid #e5e5e5;
	float: left;
	height: 38px;
	padding: 0 15px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .search a {
	background: url(../images/design/icon_search.2379f1.png) no-repeat 0 0;
	display: block;
	height: 18px;
	margin-top: 10px;
	width: 18px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .patch20221114-radio-live {
	float: left;
	margin-left: 20px;
	position: relative
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .patch20221114-radio-live .swiper-container {
	height: 38px;
	width: 240px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .patch20221114-radio-live .swiper-container .swiper-slide .item {
	align-items: center;
	font-weight: bolder;
	height: 100%;
	line-height: 38px;
	vertical-align: middle
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .patch20221114-radio-live .radio-live-mask {
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .quick {
	background: url(../images/design/icon_quick.f5302a.png) no-repeat 27px;
	display: none;
	float: left;
	height: 38px;
	padding-left: 82px;
	width: 730px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .quick .marquee {
	display: block;
	font-size: 16px;
	height: 38px;
	line-height: 38px;
	overflow: hidden;
	position: relative;
	width: 500px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right {
	border-left: 1px solid #e5e5e5;
	float: right;
	height: 38px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .download_app {
	background: url(https://www.cnr.cn/2021/images/btn_downloadAPP.png) no-repeat 0 0;
	cursor: pointer;
	float: left;
	height: 30px;
	margin-left: 7px;
	margin-top: 4px;
	width: 94px
}

.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 {
	background: url(https://www.cnr.cn/2021/images/btn_Email2.png?v=1) no-repeat 0 0;
	float: left;
	height: 30px;
	margin-left: 12px;
	margin-top: 4px;
	width: 51px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .email a {
	display: block;
	height: 100%;
	width: 100%
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right .patch20221114-radio-live {
	background: url(../images/design/RadioLive2.683c8e.png) no-repeat 0 0;
	cursor: pointer;
	display: block;
	float: left;
	height: 30px;
	margin-left: 7px;
	margin-top: 4px;
	width: 84px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 {
	float: right;
	height: 38px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-default .right02 .mzgbw0304_2 {
	background: url(https://www.cnr.cn/2021/images/mzgbw0304.png?v=1) no-repeat 0 0;
	background-size: 100% 100%;
	cursor: pointer;
	float: left;
	height: 22px;
	margin-left: 7px;
	margin-right: 7px;
	margin-top: 8px;
	width: 75px
}

.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 {
	background: url(https://www.cnr.cn/2021/images/gjyjgbw0304.png?v=1) no-repeat 0 0;
	background-size: 100% 100%;
	cursor: pointer;
	float: left;
	height: 22px;
	margin-left: 7px;
	margin-right: 7px;
	margin-top: 8px;
	width: 102px
}

.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 {
	background: url(https://www.cnr.cn/2021/images/nhtww0304.png?v=1) no-repeat 0 0;
	background-size: 100% 100%;
	cursor: pointer;
	float: left;
	height: 22px;
	margin-left: 7px;
	margin-right: 7px;
	margin-top: 8px;
	width: 75px
}

.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-bottom: 6px;
	padding-top: 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 {
	float: left;
	height: 38px;
	line-height: 38px;
	margin-left: 33px;
	position: relative
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li:hover .sub {
	opacity: 1;
	visibility: visible
}

.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: 700
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li .sub {
	background: #fff;
	border: 1px solid #dfdfdf;
	border-radius: 5px;
	left: -2px;
	max-width: 124px;
	opacity: 0;
	padding: 10px;
	position: absolute;
	top: 37px;
	transition: all .4s ease-in-out;
	visibility: hidden;
	z-index: 99
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li .sub:before {
	background: url(../images/design/menu-sub-up.6ed12f.png) no-repeat 50%;
	content: "";
	height: 8px;
	left: 10px;
	position: absolute;
	top: -7px;
	width: 14px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 ul li .sub a {
	display: block;
	font-size: 14px;
	font-weight: 400;
	height: 24px;
	line-height: 24px;
	margin: 0 3px;
	white-space: nowrap
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line1 .closeFloatNav-hidden {
	background: url(../images/design/closeFloatNav_hidden.d1e2f1.png) no-repeat 100%;
	border-left: 1px solid #e5e5e5;
	cursor: pointer;
	float: right;
	height: 38px;
	width: 81px
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 {
	border-top: 1px solid #dfdfdf;
	height: 50px;
	left: 0;
	position: absolute;
	width: 100%
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2:before {
	background: url(../images/design/floatNav_shadow.da26da.png) repeat-x 0 0;
	content: "";
	height: 45px;
	left: 0;
	position: absolute;
	top: 50%;
	width: 100%
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local {
	background: #efefef;
	height: 50px;
	position: absolute;
	width: 100%;
	z-index: 9
}

.wrapper .floatNav-wrapper .floatNav .floatNav-main .floatNav-hidden .floatNav-line2 .floatNav-local ul {
	margin: 0 auto;
	padding-left: 124px;
	width: 1076px
}

.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 {
	color: #616161;
	font-size: 14px
}

.patch20221114 {
	margin-bottom: 30px
}

.patch20221114 .country-radio-bg {
	background: url(../images/design/patch20221114-bg.bb4e69.png) no-repeat 50%;
	height: 400px;
	margin: 0 auto;
	position: relative;
	width: 1200px
}

.patch20221114 .country-radio-bg .more {
	background: url(../images/design/patch20221114-more.5c7ecc.png) no-repeat 50%;
	height: 39px;
	left: 1103px;
	position: absolute;
	top: 11px;
	width: 78px
}

.patch20221114 .country-radio-bg .title {
	left: 15px;
	position: absolute;
	top: 11px
}

.patch20221114 .country-radio-bg .title .left {
	float: left;
	font-size: 27px;
	line-height: 1.2;
	position: relative
}

.patch20221114 .country-radio-bg .title .left:before {
	background: #aa182c;
	bottom: -8px;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%
}

.patch20221114 .country-radio-bg .title .left a {
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2
}

.patch20221114 .country-radio-controller {
	left: 0;
	position: absolute;
	top: 0
}

.patch20221114 .country-radio-controller .country-radio-controller-prev {
	background: url(../images/design/patch20221114-btn-prev.99c1e1.png) no-repeat 0 0;
	height: 43px;
	left: 34px;
	position: absolute;
	top: 162px;
	width: 41px;
	z-index: 2
}

.patch20221114 .country-radio-controller .country-radio-controller-prev.disable {
	opacity: .5
}

.patch20221114 .country-radio-controller .country-radio-controller-next {
	background: url(../images/design/patch20221114-btn-next.2a9896.png) no-repeat 0 0;
	height: 43px;
	left: 325px;
	position: absolute;
	top: 162px;
	width: 41px;
	z-index: 2
}

.patch20221114 .country-radio-controller .country-radio-controller-next.disable {
	opacity: .5
}

.patch20221114 .country-radio-controller .country-radio-controller-state {
	background: url(../images/design/patch20221114-playing.5cc66f.png) no-repeat 0 0;
	display: none;
	height: 25px;
	left: 90px;
	position: absolute;
	top: 66px;
	width: 83px;
	z-index: 2
}

.patch20221114 .country-radio-controller .country-radio-controller-state:before {
	background: url(../images/design/patch20221114-icon-llll.e696d4.gif) no-repeat 0 0;
	content: "";
	height: 19px;
	left: 16px;
	position: absolute;
	top: 2px;
	width: 15px
}

.patch20221114 .country-radio-controller .country-radio-controller-play {
	background: url(../images/design/patch20221114-icon-play.6eee2b.png) no-repeat 0 0;
	height: 64px;
	left: 259px;
	position: absolute;
	top: 234px;
	width: 64px;
	z-index: 2
}

.patch20221114 .country-radio-controller .country-radio-controller-play.pause {
	background: url(../images/design/patch20221114-icon-pause.d6f546.png) no-repeat 0 0
}

.patch20221114 .country-radio-controller .country-radio-controller-current {
	filter: drop-shadow(2px 2px 10px rgba(154, 18, 37, .3));
	height: 220px;
	left: 90px;
	position: absolute;
	top: 66px;
	width: 220px;
	z-index: 1
}

.patch20221114 .country-radio-controller .country-radio-controller-current img {
	background: #ddd url(../images/design/lazy_efefef.9978b5.png) no-repeat 50%;
	border-radius: 16px;
	display: block;
	height: 220px;
	width: 220px
}

.patch20221114 .country-radio-controller .country-radio-controller-current-name {
	background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .8) 30%, hsla(0, 0%, 100%, .8) 70%, hsla(0, 0%, 100%, 0));
	color: #000;
	font-size: 18px;
	font-weight: bolder;
	height: 58px;
	left: 196px;
	line-height: 58px;
	padding: 0 30px;
	position: absolute;
	top: 302px;
	transform: translate(-50%);
	white-space: nowrap
}

.patch20221114 .country-radio-list {
	height: 350px;
	overflow: hidden;
	position: absolute;
	right: 10px;
	top: 35px;
	width: 800px;
	z-index: 1
}

.patch20221114 .country-radio-list ul {
	left: 0;
	padding: 20px 0 20px 14px;
	position: absolute;
	top: 0;
	width: 770px
}

.patch20221114 .country-radio-list ul li {
	float: left;
	height: 100px;
	margin-bottom: 10px;
	margin-left: 10px;
	position: relative;
	width: 100px
}

.patch20221114 .country-radio-list ul li:hover {
	cursor: pointer
}

.patch20221114 .country-radio-list ul li:hover img {
	transform: scale(1.2)
}

.patch20221114 .country-radio-list img {
	border-radius: 8px;
	display: block;
	height: 100px;
	left: 50%;
	margin-left: -50px;
	margin-top: -50px;
	position: absolute;
	top: 50%;
	transform: translateZ(0);
	transition: all .2s ease-in-out 0s;
	width: 100px
}

.happyNewYear {
	background: url(../images/design/20221231_bg.2d6ab0.jpg) no-repeat top;
	height: 844px;
	padding-top: 44px;
	width: 100%
}

.happyNewYear-banner {
	background: url(../images/design/banner.480883.png) no-repeat top;
	height: 240px;
	margin: 0 auto 19px;
	width: 857px
}

.happyNewYear-main {
	background: #890303;
	height: 506px;
	margin: 0 auto;
	width: 1200px
}

.happyNewYear-swiper {
	float: left;
	height: 506px;
	width: 900px
}

.happyNewYear-swiper .swiper-slide img {
	display: block
}

.happyNewYear-right {
	float: left;
	height: 506px;
	position: relative;
	width: 300px
}

.happyNewYear-content {
	padding: 43px 15px
}

.happyNewYear-content-title {
	color: #fff7ba;
	font-size: 28px;
	font-weight: 700;
	height: 177px;
	line-height: 50px;
	overflow: hidden
}

.happyNewYear-content-desc {
	border-top: 1px solid #b80b0b;
	color: #fff7ba;
	font-size: 16px;
	line-height: 28px;
	padding-top: 30px
}

.happyNewYear-controller {
	bottom: 42px;
	font-weight: bolder;
	height: 40px;
	position: absolute;
	right: 40px;
	width: 224px
}

.happyNewYear-controller .swiper-pagination {
	bottom: 0;
	font-size: 18px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	top: 0
}

.happyNewYear-controller .swiper-pagination .swiper-pagination-current {
	color: #fff7ba;
	font-size: 24px;
	font-weight: bolder
}

.happyNewYear-controller .swiper-button-next,
.happyNewYear-controller .swiper-button-prev {
	background-size: cover;
	height: 21px;
	margin-top: -10px;
	width: 13px;
	z-index: 20
}

.happyNewYear-controller .swiper-button-prev {
	background-image: url(../images/design/20221231_prev.6e0959.png)
}

.happyNewYear-controller .swiper-button-prev:hover {
	background-image: url(../images/design/20221231_prev_hover.ba565e.png)
}

.happyNewYear-controller .swiper-button-next {
	background-image: url(../images/design/20221231_next.3b2a02.png)
}

.happyNewYear-controller .swiper-button-next:hover {
	background-image: url(../images/design/20221231_next_hover.5e5e6d.png)
}
