@charset "UTF-8";

.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.animated.infinite {
	animation-iteration-count: infinite;
}

.animated.hinge {
	animation-duration: 2s;
}

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

@keyframes bounce {
	from,20%,53%,80%,to {
		animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
		transform: translate3d(0,0,0);
	}

	40%,43% {
		animation-timing-function: cubic-bezier(0.755,0.050,0.855,0.060);
		transform: translate3d(0,-30px,0);
	}

	70% {
		animation-timing-function: cubic-bezier(0.755,0.050,0.855,0.060);
		transform: translate3d(0,-15px,0);
	}

	90% {
		transform: translate3d(0,-4px,0);
	}
}

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

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

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

.flash {
	animation-name: flash;
}

@keyframes pulse {
	from {
		transform: scale3d(1,1,1);
	}

	50% {
		transform: scale3d(1.05,1.05,1.05);
	}

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

.pulse {
	animation-name: pulse;
}

@keyframes rubberBand {
	from {
		transform: scale3d(1,1,1);
	}

	30% {
		transform: scale3d(1.25,0.75,1);
	}

	40% {
		transform: scale3d(0.75,1.25,1);
	}

	50% {
		transform: scale3d(1.15,0.85,1);
	}

	65% {
		transform: scale3d(.95,1.05,1);
	}

	75% {
		transform: scale3d(1.05,.95,1);
	}

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

.rubberBand {
	animation-name: rubberBand;
}

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

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

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

.shake {
	animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
	animation-name: tada;
}

@keyframes wobble {
	from {
		transform: none;
	}

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

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

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

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

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

	to {
		transform: none;
	}
}

.wobble {
	animation-name: wobble;
}

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

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

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

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

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

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

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

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

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

@keyframes bounceIn {
	from,20%,40%,60%,80%,to {
		animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
	}

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

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

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

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

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

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

.bounceIn {
	animation-name: bounceIn;
}

@keyframes bounceInDown {
	from,60%,75%,90%,to {
		animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
	}

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

	60% {
		opacity: 1;
		transform: translate3d(0,25px,0);
	}

	75% {
		transform: translate3d(0,-10px,0);
	}

	90% {
		transform: translate3d(0,5px,0);
	}

	to {
		transform: none;
	}
}

.bounceInDown {
	animation-name: bounceInDown;
}

@keyframes bounceInLeft {
	from,60%,75%,90%,to {
		animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
	}

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

	60% {
		opacity: 1;
		transform: translate3d(25px,0,0);
	}

	75% {
		transform: translate3d(-10px,0,0);
	}

	90% {
		transform: translate3d(5px,0,0);
	}

	to {
		transform: none;
	}
}

.bounceInLeft {
	animation-name: bounceInLeft;
}

@keyframes bounceInRight {
	from,60%,75%,90%,to {
		animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
	}

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

	60% {
		opacity: 1;
		transform: translate3d(-25px,0,0);
	}

	75% {
		transform: translate3d(10px,0,0);
	}

	90% {
		transform: translate3d(-5px,0,0);
	}

	to {
		transform: none;
	}
}

.bounceInRight {
	animation-name: bounceInRight;
}

@keyframes bounceInUp {
	from,60%,75%,90%,to {
		animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
	}

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

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

	75% {
		transform: translate3d(0,10px,0);
	}

	90% {
		transform: translate3d(0,-5px,0);
	}

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

.bounceInUp {
	animation-name: bounceInUp;
}

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

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

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

.bounceOut {
	animation-name: bounceOut;
}

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

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

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

.bounceOutDown {
	animation-name: bounceOutDown;
}

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

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

.bounceOutLeft {
	animation-name: bounceOutLeft;
}

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

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

.bounceOutRight {
	animation-name: bounceOutRight;
}

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

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

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

.bounceOutUp {
	animation-name: bounceOutUp;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	animation-duration: 1.76s;
	animation-name: fadeIn;
}

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

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

.fadeInDown {
	animation-name: fadeInDown;
}

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

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

.fadeInDownBig {
	animation-name: fadeInDownBig;
}

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

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

.fadeInLeft {
	animation-name: fadeInLeft;
}

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

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

.fadeInLeftBig {
	animation-name: fadeInLeftBig;
}

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

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

.fadeInRight {
	animation-name: fadeInRight;
}

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

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

.fadeInRightBig {
	animation-name: fadeInRightBig;
}

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

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

.fadeInUp {
	animation-duration: 1.76s;
	animation-name: fadeInUp;
}

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

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

.fadeInUpBig {
	animation-name: fadeInUpBig;
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fadeOut {
	animation-name: fadeOut;
}

@keyframes fadeOutDown {
	from {
		opacity: 1;
	}

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

.fadeOutDown {
	animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}

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

.fadeOutDownBig {
	animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
	from {
		opacity: 1;
	}

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

.fadeOutLeft {
	animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}

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

.fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
	from {
		opacity: 1;
	}

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

.fadeOutRight {
	animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}

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

.fadeOutRightBig {
	animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
	}

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

.fadeOutUp {
	animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}

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

.fadeOutUpBig {
	animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
	from {
		opacity: 1;
	}

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

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

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

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

.rotateIn {
	animation-name: rotateIn;
}

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

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

.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}

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

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

.rotateInDownRight {
	animation-name: rotateInDownRight;
}

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

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

.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}

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

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

.rotateInUpRight {
	animation-name: rotateInUpRight;
}

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

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

.rotateOut {
	animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}

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

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

.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}

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

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

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

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

.hinge {
	animation-name: hinge;
}

@keyframes jackInTheBox {
	from {
		opacity: 0;
		transform: scale(0.1) rotate(30deg);
		transform-origin: center bottom;
	}

	50% {
		transform: rotate(-10deg);
	}

	70% {
		transform: rotate(3deg);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.jackInTheBox {
	animation-name: jackInTheBox;
}

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

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

.rollIn {
	animation-name: rollIn;
}

@keyframes rollOut {
	from {
		opacity: 1;
	}

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

.rollOut {
	animation-name: rollOut;
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(.3,.3,.3);
	}

	50% {
		opacity: 1;
	}
}

.zoomIn {
	animation-name: zoomIn;
}

@keyframes zoomInDown {
	from {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
		animation-timing-function: cubic-bezier(0.550,0.055,0.675,0.190);
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		animation-timing-function: cubic-bezier(0.175,0.885,0.320,1);
	}
}

.zoomInDown {
	animation-name: zoomInDown;
}

@keyframes zoomInLeft {
	from {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
		animation-timing-function: cubic-bezier(0.550,0.055,0.675,0.190);
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
		animation-timing-function: cubic-bezier(0.175,0.885,0.320,1);
	}
}

.zoomInLeft {
	animation-name: zoomInLeft;
}

@keyframes zoomInRight {
	from {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
		animation-timing-function: cubic-bezier(0.550,0.055,0.675,0.190);
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
		animation-timing-function: cubic-bezier(0.175,0.885,0.320,1);
	}
}

.zoomInRight {
	animation-name: zoomInRight;
}

@keyframes zoomInUp {
	from {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
		animation-timing-function: cubic-bezier(0.550,0.055,0.675,0.190);
	}

	60% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		animation-timing-function: cubic-bezier(0.175,0.885,0.320,1);
	}
}

.zoomInUp {
	animation-name: zoomInUp;
}

@keyframes zoomOut {
	from {
		opacity: 1;
	}

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

	to {
		opacity: 0;
	}
}

.zoomOut {
	animation-name: zoomOut;
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
		animation-timing-function: cubic-bezier(0.550,0.055,0.675,0.190);
	}

	to {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175,0.885,0.320,1);
	}
}

.zoomOutDown {
	animation-name: zoomOutDown;
}

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

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

.zoomOutLeft {
	animation-name: zoomOutLeft;
}

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

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

.zoomOutRight {
	animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
		animation-timing-function: cubic-bezier(0.550,0.055,0.675,0.190);
	}

	to {
		opacity: 0;
		transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175,0.885,0.320,1);
	}
}

.zoomOutUp {
	animation-name: zoomOutUp;
}

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

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

.slideInDown {
	animation-name: slideInDown;
}

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

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

.slideInLeft {
	animation-name: slideInLeft;
}

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

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

.slideInRight {
	animation-name: slideInRight;
}

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

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

.slideInUp {
	animation-name: slideInUp;
}

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

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

.slideOutDown {
	animation-name: slideOutDown;
}

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

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

.slideOutLeft {
	animation-name: slideOutLeft;
}

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

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

.slideOutRight {
	animation-name: slideOutRight;
}

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

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

.slideOutUp {
	animation-name: slideOutUp;
}

body {
	margin: 0px;
	padding: 0px;
	background-color: #ffffff;
	font-family: 'Source Sans Pro',sans-serif;
}

#header {
	background-color: #3f8dbf;
	float: left;
	width: 100%;
	height: 50px;
	color: rgba(255,255,255,1);
	line-height: 50px;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1;
}

#header a {
	color: rgba(255,255,255,1);
	text-decoration: none;
	display: block;
	font-size: 15px;
}

#header-left {
	float: left;
	height: 50px;
}

#header-left:hover #header-left-icon {
	background-color: #3F8DBF;
}

#header-left:hover #header-left-text {
	background-color: #599BC8;
}

#header-left-icon {
	float: left;
	height: 50px;
	width: 50px;
	text-align: center;
	background-color: #35759F;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

#header-left-icon a {
	font-size: 25px;
}

#header-left-text {
	float: left;
	height: 50px;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

#header-left-text a {
	padding-left: 20px;
	padding-right: 20px;
}

#header-right {
	float: right;
	height: 50px;
}

#header-right:hover #header-right-icon {
	background-color: #3F8DBF;
}

#header-right:hover #header-right-text {
	background-color: #599BC8;
}

#header-right-icon {
	float: right;
	height: 50px;
	width: 50px;
	text-align: center;
	background-color: #35759F;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

#header-right-text {
	float: right;
	height: 50px;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

#header-right-text a {
	padding-right: 20px;
	padding-left: 20px;
}

.wrapper {
}

.wrapper-inner {
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.wrapper-inner-buttons {
	width: 100%;
	float: left;
	margin-top: 50px;
	text-align: center;
}

.wrapper-inner-buttons a {
	background-color: #3f8dbf;
	line-height: 35px;
	padding-right: 15px;
	padding-left: 15px;
	margin: 10px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
	border-radius: calc(35px / 2);
}

.wrapper-inner-buttons a.current {
	background-color: #f5d76e;
	color: #d35400;
}

.wrapper-inner-buttons a:hover {
	background-color: #35759F;
	color: #fff;
}

.mobile {
	width: 100%;
}

.mobile-inner {
	margin-right: auto;
	margin-left: auto;
	background-color: #000000;
	position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
	color: #676767;
	line-height: 25px;
	font-size: 16px;
	padding-bottom: 30px;
	padding-right: 30px;
	padding-left: 30px;
	margin: 0px;
}

.mobile-inner-header {
	background-color: rgb(255,255,255);
	width: 100%;
	height: 50px;
	position: relative;
	top: 0px;
	z-index: 33;
	left: 0px;
}

.mobile-inner-header-icon {
	color: #ffffff;
	height: 50px;
	font-size: 25px;
	text-align: center;
	float: right;
	width: 50px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
	background-color: rgba(255,255,255,0.2);
	cursor: pointer;
}

.mobile-inner-header-icon span {
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 2);
	width: 25px;
	height: 1px;
	background-color: rgb(199,34,27);
}

.mobile-inner-header-icon span:nth-child(1) {
	transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
	transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}

@keyframes clickfirst {
	0% {
		transform: translateY(4px) rotate(0deg);
	}

	100% {
		transform: translateY(0) rotate(45deg);
	}
}

@keyframes clicksecond {
	0% {
		transform: translateY(-4px) rotate(0deg);
	}

	100% {
		transform: translateY(0) rotate(-45deg);
	}
}

.mobile-inner-header-icon-out span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}

@keyframes outfirst {
	0% {
		transform: translateY(0) rotate(-45deg);
	}

	100% {
		transform: translateY(-4px) rotate(0deg);
	}
}

@keyframes outsecond {
	0% {
		transform: translateY(0) rotate(45deg);
	}

	100% {
		transform: translateY(4px) rotate(0deg);
	}
}

.mobile-inner-nav {
	background-color: hsla(224,27%,35%,.6);
	width: 100%;
	position: absolute;
	top: 50px;
	padding-bottom: 0%;
	display: none;
	z-index: 444;
}

.mobile-inner-nav  a {
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	color: #fff;
	transition: all 0.5s;
}

.mobile-inner-nav  dl {
}

.mobile-inner-nav  dl dd {
	line-height: 33px;
	text-decoration: none;
	text-indent: 3em;
	font-size: 16px;
	color: #FFFFFF;
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight: 300;
	font-size: 14px;
	display: none;
}

.mobile-inner-nav  li {
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	line-height: 53px;
	text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
	line-height: 50px;
	text-decoration: none;
	text-indent: 2em;
	font-size: 16px;
	color: #FFFFFF;
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
	color: #FFFFFF;
}

.mobile-inner-nav a {
	border-bottom: none;
}

.mobile-inner-nav li {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: returnToNormal;
	animation-name: returnToNormal;
}

@-webkit-keyframes resize {
	from,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
		animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: scale(5,5);
		transform: scale(5,5);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
	}
}

@keyframes resize {
	from,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
		animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: scale(5,5);
		transform: scale(5,5);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1,1);
		transform: scale(1,1);
	}
}

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

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

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

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

.mobile-inner-nav li:last-child h2.h2tit {
	border-bottom: none;
}

.mobile-inner-nav li .h3tit {
	height: 50px;
	position: relative;
	background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
	background-size: 17px;
}

.mobile-inner-nav li  .words {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
	background: none;
	text-indent: 60px;
	font-size: 15px;
	color: #fff;
	background: url(../images/search2.png) no-repeat 30px center;
	background-size: 20px;
}

.mobile-inner-nav li:last-child {
	border-bottom: none;
}

.mobile-inner-nav li  form {
	display: block;
	width: 100%;
	height: 100%;
}

.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px,0px,0px);
}

.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
	float: left;
}

.owl-controls .owl-page,.owl-controls .owl-buttons div {
	cursor: pointer;
}

.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.grabbing {
	cursor: url(../images/grabbing.png) 8 8,move;
}

.owl-carousel  .owl-wrapper,.owl-carousel  .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
}

.owl-theme .owl-controls {
	margin-top: 10px;
	text-align: center;
}

.owl-theme .owl-controls .owl-buttons div {
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);
	opacity: 0.5;
}

.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	filter: Alpha(Opacity=100);
	opacity: 1;
	text-decoration: none;
}

.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 12px;
	height: 12px;
	margin: 5px 7px;
	filter: Alpha(Opacity=50);
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #869791;
	overflow: hidden;
}

.owl-theme .owl-controls .owl-page.active span,.owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100);
	opacity: 1;
}

.owl-theme .owl-controls .owl-page span.owl-numbers {
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.owl-item.loading {
	min-height: 150px;
	background: url(../images/AjaxLoader.gif) no-repeat center center
}

@charset "utf-8";

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
}

body {
	font-size: 1.4rem;
}

body {
	font-family: "Microsoft YaHei" ! important;
	color: #000000;
	background: #fff;
	margin: 0 auto;
	padding: 0px;
}

a {
	text-decoration: none;
	color: #333333;
	outline: none;
}

a:active {
	star: expression(this.onFocus=this.blur());
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

* {
	outline: none
}

img {
	max-width: 100%;
	border: 0px;
	vertical-align: middle;
}

li {
	list-style: none;
}

.pc {
	display: block;
}

.wap {
	display: none;
}

.rigt_onlineserver {
	text-align: left;
	color: #444;
	font-size: 14px;
	font-family: "microsoft yahei";
}

.rigt_onlineserver img {
	border: 0
}

.rigt_onlineserver .header_l img {
	height: 65px;
	margin-top: 10px
}

.rigt_onlineserver select,.rigt_onlineserver input,.rigt_onlineserver img {
	vertical-align: middle
}

.rigt_onlineserver a {
	text-decoration: none;
	cursor: pointer;
	color: #000;
	font-weight: normal;
}

.rigt_onlineserver a:hover {
	color: #0f91ed
}

.rigt_onlineserver .box_os {
	font-size: 12px;
	background: #29a7e2;
	position: fixed;
	top: 120px;
	right: 0px;
	_position: absolute;
	z-index: 1500;
	border-radius: 6px 0px 0 6px;
}

.rigt_onlineserver .box_os a {
	color: #00A0E9;
}

.rigt_onlineserver .box_os a:hover {
	color: #ff8100;
	text-decoration: none;
}

.rigt_onlineserver .box_os .floatL {
	width: 36px;
	float: left;
	position: relative;
	z-index: 1;
	height: 181px;
}

.rigt_onlineserver .box_os .floatL a {
	font-size: 0;
	text-indent: -999em;
	display: block;
}

.rigt_onlineserver .box_os .floatR {
	width: 130px;
	float: left;
	padding: 5px;
	overflow: hidden;
}

.rigt_onlineserver .box_os .floatR .cn {
	background: #F7F7F7;
	border-radius: 6px;
	margin-top: 4px;
}

.rigt_onlineserver .box_os .cn .titZx {
	font-size: 15px;
	color: #333;
	font-weight: 600;
	line-height: 24px;
	padding: 10px 5px 0;
	text-align: center;
}

.rigt_onlineserver .box_os .cn ul {
	padding: 0px;
}

.rigt_onlineserver .box_os .cn ul li {
	line-height: 30px;
	padding-bottom: 10px;
	border-bottom: solid 1px #E6E4E4;
	overflow: hidden;
	text-align: center;
}

.rigt_onlineserver .box_os .cn ul li span {
	color: #777;
}

.rigt_onlineserver .box_os .cn ul li a {
	color: #777;
}

.rigt_onlineserver .box_os .cn ul li img {
	vertical-align: middle;
}

.rigt_onlineserver .box_os .btnOpen,.rigt_onlineserver .box_os .btnCtn {
	position: relative;
	z-index: 9;
	top: 25px;
	left: 0;
	background-image: url("../images/shopnc.png");
	background-repeat: no-repeat;
	display: block;
	height: 146px;
	padding: 8px;
}

.rigt_onlineserver .box_os .btnOpen {
	background-position: 9px 2px;
}

.rigt_onlineserver .box_os .btnCtn {
	background-position: -32px 0;
}

.rigt_onlineserver .box_os ul li.top {
	border-bottom: solid #ACE5F9 1px;
}

.rigt_onlineserver .box_os ul li.bot {
	border-bottom: none;
}

.rigt_onlineserver .cn .kfapp {
	background: #f7f7f7;
	text-align: center;
}

.rigt_onlineserver .cn .kfapp img {
	width: 110px;
	height: 110px;
}

.rigt_onlineserver .cn .kf_tel {
	border: none;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
}

.rigt_onlineserver .acbox {
	font-weight: bold;
	text-align: center;
	line-height: 30px;
	margin-top: 5px;
	background: url("../images/shopnc.png") no-repeat;
	background-position: 106px -154px;
}

.rigt_onlineserver .acbox a {
	color: #fff;
	font-size: 15px;
	font-weight: bold;
}

.rigt_onlineserver .acbox a:hover {
	color: #fff;
}

.rigt_onlineserver .xc_layer {
	background-color: #666666;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 0;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	opacity: 0.5;
}

.rigt_onlineserver .onlineService {
	background: rgba(0,0,0,0) none repeat scroll 0 0;
	height: 178px;
	position: fixed;
	right: 0;
	top: 44px;
	width: 39px;
	z-index: 9999;
}

.rigt_onlineserver .onlineService .ico_os {
	background-position: 0 0;
	border: 1px solid #c7c7c7;
	cursor: pointer;
	float: right;
	height: 143px;
	width: 40px;
}

.rigt_onlineserver .onlineService .ico_gt {
	background-position: right 0;
	border: 1px solid #299ec0;
	clear: both;
	cursor: pointer;
	float: right;
	height: 37px;
	width: 39px;
}

.rigt_onlineserver .onlineService .ico_pp {
	background-position: right -60px;
	border: 1px solid #81b140;
	clear: both;
	cursor: pointer;
	float: right;
	height: 37px;
	margin: 0 0 1px;
	width: 39px;
}

.rigt_onlineserver #pop_ly_id_div {
	display: none;
	left: 50%;
	margin: -15% 0 0 -16%;
	overflow: hidden;
	position: fixed;
	top: 50%;
	z-index: 9999;
	background-color: rgb(255 230 220 0.5);
	width: 500px;
	height: 360px;
}

.rigt_onlineserver #pop_ly_id_div form {
	z-index: 1;
	background: #fff;
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 3px;
}

.rigt_onlineserver #pop_ly_id_div dl {
	margin: 0 auto;
	text-align: left;
}

.rigt_onlineserver #pop_ly_id_div dl dt {
	height: 30px;
	line-height: 30px;
	padding: 5px;
	text-indent: 10px;
	background: #29a7e2;
	color: #fff;
	font-size: 14px;
}

.rigt_onlineserver #pop_ly_id_div dl dt span {
	cursor: pointer;
	float: right;
	font-size: 18px;
	margin-right: 5px;
}

.rigt_onlineserver #pop_ly_id_div dl dd {
	padding: 15px 5px 0;
	text-align: left;
	text-indent: 30px;
}

.rigt_onlineserver #pop_ly_id_div input,.rigt_onlineserver #pop_ly_id_div textarea {
	background: rgba(0,0,0,0) none repeat scroll 0 0;
	border: 1px solid #dddddd;
	color: #999;
	height: 28px;
	line-height: 28px;
	text-align: left;
	text-indent: 5px;
	vertical-align: middle;
	width: 340px;
	font-size: 14px;
}

.rigt_onlineserver #pop_ly_id_div textarea {
	height: 87px;
	line-height: 22px;
	resize: none;
	font-size: 14px;
}

.rigt_onlineserver #pop_ly_id_div #msg_vcode {
	width: 80px;
}

.rigt_onlineserver #pop_ly_id_div dd img {
	height: 22px;
	margin-left: 5px;
	vertical-align: middle;
	width: 80px;
}

.rigt_onlineserver .msg_button {
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	line-height: 30px;
	margin: 5px 20px 20px 0;
	overflow: hidden;
	text-align: center;
	text-indent: 0;
	width: 120px;
	background: #29a7e2;
}

.rigt_onlineserver .box_os .osqq .wxClassText {
	margin-bottom: 6px;
	margin-top: 5px;
}

.banner {
	position: relative;
}

.banner .owl-theme .owl-pagination {
	position: absolute;
	left: 0px;
	bottom: 22px;
	width: 100%;
	margin: 0px;
}

.banner .owl-theme .owl-pagination .owl-page span {
	width: 14px;
	height: 14px;
	background: rgba(245,245,245,1);
	border-radius: 50%;
	opacity: 1;
	width: 12px;
	height: 12px;
	background: rgb(255,255,255);
	border-radius: 50%;
	margin: 0px 6px;
	width: 10px;
	height: 10px;
	background: rgba(255,255,255,1);
	opacity: 0.5;
	border-radius: 50%;
	width: 17px;
	height: 17px;
	background: rgba(255,255,255,1);
	border-radius: 50%;
}

.banner .owl-theme .owl-pagination .owl-page.active span {
/* background: #C8000A; */
	opacity: 1;
/* height: 17px; */
	background: rgba(255,0,0,1);
}

.banner img {
	display: block;
	width: 100%;
}

.bottom_bar {
	position: fixed;
	left: 0px;
	bottom: 0px;
	width: 100%;
	background: #006158;
	background: -webkit-linear-gradient(top,#282828,#000000);
	background: linear-gradient(top,#89e639,#6db92b);
	z-index: 88888;
}

.bottom_bar ul {
}

.bottom_bar ul li {
	float: left;
	width: 33%;
	height: 50px;
	text-align: center;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bottom_bar ul li a {
	color: #fff;
	font-size: 12px;
}

.bottom_bar ul li a img {
	display: block;
	height: 20px;
	margin: 0px auto;
	font-size: 2rem
}

.sharebox {
	position: absolute;
	left: 0px;
	bottom: 50px;
	width: 100%;
	background: rgba(0,0,0,0.8);
	padding: 10px;
	display: none;
}

.head {
}

.head .logo {
	float: left;
	padding-top: 25px;
	padding-bottom: 27px;
}

.head .logo img {
}

.head .words .title {
	font-size: 24px;
	font-family: MicrosoftYaHeiLight;
	font-weight: 300;
	color: rgba(0,0,0,1);
	line-height: 30px;
	margin-bottom: 21px;
}

.head .words .dec {
	font-size: 18px;
	font-family: MicrosoftYaHeiLight;
	font-weight: 300;
	color: rgba(255,255,255,1);
	text-align: center;
	background: url(../images/xz.png) no-repeat center center;
	background-size: 100%;
	width: 420px;
}

.head .tel {
}

.head .tel p {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: rgba(255,0,0,1);
	line-height: 24px;
}

.head .tel p strong {
	font-weight: normal;
	color: #333333
}

.navlist_all ul:after {
	clear: both;
	content: "";
	display: table;
}

.navlist_all ul {
  /* float: left; */
  /* width: calc(100% - 159px); */
  /* padding-bottom: 8px; */
  /* border-bottom: 1px solid #ccc; */
}

.search {
  /* float: right; */
  /* margin-top: 13px; */
  /* display: inline-block; */
}

.search form {
	width: 100%;
	height: 100%;
	position: relative;
    /* border: 1px solid #fff; */
}

.search form .words {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: none;
	padding-right: 38px;
	border: none;
	padding-left: 15px;
	color: #000;
	border: 2px solid #ccc;
	border-right: none;
}

.search form .send {
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 100%;
	border: none;
	cursor: pointer;
	background: none;
	background: url(../images/search.png) no-repeat center center #bf1b02;
	width: 64px;
	height: 36px;
}

.search .left {
	float: left;
	font-size: 18px;
	font-family: FZLTHK--GBK1-0;
	font-weight: bold;
	color: rgba(190,25,0,1);
	padding-bottom: 23px;
	padding-top: 30px;
	width: 60%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.search .right {
	float: right;
	width: 390px;
	height: 36px;
	margin-top: 21px;
	margin-bottom: 14px;
}

.search .left a {
	color: #333;
	font-weight: normal;
	margin-right: 7px;
}

.navlist_all {
	background: #DA251D;
	padding-top: 6px;
}

.navlist_all li {
	float: left;
	position: relative;
   width: 13.2%; 
	text-align: center;
  /* margin-left: 10px; */
}

.navlist_all li .h2tit {
}

.navlist_all li .h2tit a {
	display: block;
	line-height: 40px;
	padding: 0px 20px;
	height: 48px;
	font-size: 18px;
	font-family: Microsoft YaHei;
/* font-weight:bold; */
	color: #DA251D;
	color: rgb(255, 255, 255);
}

.navlist_all li dl {
	position: absolute;
	left: 0px;
	top: 51px;
	width: 150%;
	text-align: left;
	z-index: 66;
	top: 77px;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
}

.navlist_all li dl dd {
}

.navlist_all li dl dd a {
	display: block;
	line-height: 40px;
	font-size: 15px;
	color: #000;
	padding-left: 10px;
	background: #f1f1f1
}

.navlist_all * {
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}

.navlist_all li:hover dl {
	top: 48px;
	visibility: visible;
	opacity: 1;
	z-index: 444;
}

.navlist_all li:hover .h2tit a {
}

.owl-theme .owl-controls {
	margin: 0px;
}

.top {
	height: 45px;
	background: rgba(245,245,245,1);
}

.top .h1tit {
	float: left;
	line-height: 45px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
}

.top .ri {
	float: right;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
	line-height: 45px;
  /* opacity: 0.6; */
}

.top .ri a {
	padding: 0 5px;
}

.head .ri {
	float: right;
}

.head .ri .imgbox2 {
	float: left;
	text-align: center;
	padding-top: 25px;
}

.head .ri .imgbox2 img {
}

.head .ri .imgbox2 .tile {
	font-size: 14px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: rgba(51,51,51,1);
	padding-top: 12px;
}

.head .ri .tel p:last-child {
	padding-left: 38px;
	background: url(../images/tel.png) no-repeat left center;
}

.head .ri .tel {
	text-align: right;
	font-size: 17px;
}

.head .ri .tel .tit {
	font-size: 18px;
	font-family: MicrosoftYaHei;
	font-weight: 400;
	color: rgba(255,102,0,1);
	background: url(../images/tel.png) no-repeat left center;
	padding-left: 27px;
}

.head .ri .tel .val {
	font-size: 30px;
	font-family: Impact;
	font-weight: 400;
	color: rgba(255,102,0,1);
}

.topbg {
	background: url(../images/topbg.jpg) no-repeat center center;
	background-size: cover;
}

.navlist_all li .h2tit a:hover {
/* border-top: 3px solid #1975A1; */
}

.navlist_all li:last-child .h2tit a {
	border: none;
}

.navlist_all li:hover .h2tit a {
	background: #fff;
	color: #DA251D
}

.navlist_all li.current .h2tit a {
	background: #fff;
	color: #DA251D
}

.navlist_all li .h2tit a {
	position: relative;
   font-weight: bold;
}

.navlist_all li .h2tit a:after {
	position: absolute;
	top: 50%;
	-o-transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	right: 0px;
	width: 1px;
	height: 100%;
	opacity: 0.6;
	background: #fff;
}

.navlist_all li:last-child .h2tit a:after {
	display: none;
}

body {
	overflow-x: hidden;
}

.owl-theme .owl-controls .owl-buttons div {
	margin: 0px;
	padding: 0px;
	opacity: 1;
	border-radius: none;
	background: none;
	position: absolute;
	top: 50%;
	-o-transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.banner .owl-theme .owl-controls .owl-buttons div.owl-prev {
	left: calc((100% - 1200px)/2.5);
}

.banner .owl-theme .owl-controls .owl-buttons div.owl-next {
	right: calc((100% - 1200px)/2.5);
}

.head .right {
	float: right;
  /* padding-bottom: 27px; */
}

.head .right img {
	float: left;
	padding-top: 30px;
}

.head .right .tel {
	float: left;
	margin-left: 16px;
	margin-top: 50px;
	padding-left: 47px;
	background: url(../images/tel.png) no-repeat left center;
}

.keysowrds {
}

.keysowrds .keys {
	float: left;
	line-height: 91px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #838383;
	padding-left: 60px;
	background: url(../images/hot.png) no-repeat 30px center;
}

.keysowrds .keys strong {
	color: rgba(40,40,40,1);
}

.keysowrds .keys a {
	padding-right: 10px;
}

.keysowrds .searchbnox {
	float: right;
	position: relative;
	top: 20px;
	height: 40px;
	background: #DA251D;
	border-radius: 20px;
	overflow: hidden;
 /* width: 315px; */
}

.keysowrds .searchbnox .words {
/*width: 259px;*/
	height: 40px;
	background: rgba(255,255,255,1);
	border: 1px solid rgba(40, 40, 40, 1);
	border-radius: 20px;
	float: left;
	font-size: 16px;
	padding-left: 25px;
}

.keysowrds .searchbnox .send {
	float: left;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255,255,255,1);
	border: none;
	background: none;
	height: 40px;
	padding-left: 33px;
	background: url(../images/search.png) no-repeat 10px center;
	cursor: pointer;
	width: 50px;
}

.block_1 {
	background: rgba(245,245,245,1);
	padding-top: 57px;
	margin-bottom: 95px;
}

.block_1 .left {
	float: left;
	width: 314px;
/* height:308px; */
/* background:#DA251D; */
	border-radius: 10px 10px 0px 0px;
	background: rgba(40,40,40,1);
/* overflow: hidden; */
}

.block_1 .left .title {
	background: #DA251D;
	zoom: 1;
	overflow: hidden;
}

.block_1 .left .title strong {
	float: left;
	font-size: 89px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-style: italic;
	color: rgba(255,255,255,1);
	padding-left: 31px;
}

.block_1 .left .title .ri {
	float: left;
	padding-left: 20px;
	padding-top: 17px;
}

.block_1 .left .title .ri .en {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255,255,255,1);
}

.block_1 .left .title .ri .cn {
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: rgba(255,255,255,1);
}

.block_1 .left .bgf {
	padding-top: 37px;
	padding-left: 30px;
	padding-right: 30px;
}

.block_1 .left .bgf .hd {
}

.block_1 .left .bgf .hd ul {
}

.block_1 .left .bgf .hd ul li {
}

.block_1 .left .bgf .hd ul li a.current {
	background: url(../images/de.png) no-repeat 11px center #DA251D;
}

.block_1 .left .bgf .hd ul li a:hover {
	background: url(../images/de.png) no-repeat 11px center #fff;
	color: #DA251D
}

.block_1 .left .bgf {
	padding-bottom: 64px;
}

.block_1 .left .bgf .hd ul li a {
	display: block;
	line-height: 60px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	background: url(../images/de.png) no-repeat 11px center;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255,255,255,1);
	padding-left: 48px;
}

.block_1 .left .bgf .more {
	margin: auto;
	width: 165px;
	height: 43px;
	background: rgba(255,255,255,0);
	border: 1px solid rgba(255, 255, 255, 1);
	border-radius: 22px;
	text-align: center;
	line-height: 41px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(238,238,238,1);
	margin-top: 58px;
	display: block;
}

.block_1 .right {
	float: right;
	width: calc(100% - 345px);
}

.block_1 .right ul {
}

.block_1 .right ul li:nth-child(3n) {
	margin-right: 0px;
}

.block_1 .right ul li {
	float: left;
	width: 32%;
	margin-right: 2%;
}

.block_1 .right ul li .imgbox {
}

.block_1 .right ul li .imgbox img {
	width: 100%;
}

.block_1 .right ul li .title {
	display: block;
	text-align: center;
	padding-top: 14px;
	margin-bottom: 41px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
}

.block_1 .left {
	position: relative;
}

.block_1 .left .bgf {
	position: relative;
}

.block_1 .left:after {
	content: "";
	position: absolute;
	left: -20px;
	bottom: -31px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 20px 20px 0;
	border-color: transparent rgba(135, 135, 135, 0.4) transparent transparent;
}

.block_1 .left:before {
	content: "";
	position: absolute;
	right: -20px;
	bottom: -31px;
	width: 0;
	height: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 0;
	border-color: rgba(135, 135, 135, 0.4) transparent transparent transparent;
}

.block_1 .left .bgf:after {
	position: absolute;
	left: 0px;
	bottom: -31px;
	width: 100%;
	height: 31px;
	background: #282828;
	content: "";
}

.titlemodel {
	text-align: center;
}

.titlemodel .cn {
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #DA251D;
}

.titlemodel .dec {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
}

.block_2 {
	padding-top: 45px;
	background-color: #f5f5f5;
	margin-bottom: 52px;
}

.block_2 .content {
	margin-top: 60px;
	position: relative;
	z-index: 5;
	zoom: 1;
	overflow: hidden;
	margin-bottom: 60px;
}

.block_2 .content .imgbox {
	float: left;
	width: 40%;
}

.block_2 .content .imgbox img {
	width: 100%;
}

.block_2 .content .wortds {
	float: left;
	width: 50%;
	padding-top: 32px;
	padding-left: 54px;
	width: 60%;
}

.block_2 .content .desc {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
	line-height: 24px;
/* width: 517px; */
	max-width: 100%;
}

.block_2 .content .more {
	display: block;
	margin: auto;
	margin-top: 27px;
	background: rgba(255,255,255,0);
	border: 1px solid rgba(40, 40, 40, 1);
	border-radius: 22px;
	text-align: center;
	width: 165px;
	line-height: 43px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
}

.block_2 .listall {
	text-align: center;
}

.block_2 .listall .title {
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #DA251D;
}

.block_2 .listall ul {
	padding: 28px;
	zoom: 1;
	overflow: hidden;
	padding-bottom: 49px;
}

.block_2 .listall ul li {
	float: left;
	width: 20%;
	padding: 0px 12px;
}

.block_2 .listall ul li .imgbox {
}

.block_2 .listall ul li img {
	height: 160px;
}

.block_3 {
	background: #DA251D;
	text-align: center;
	padding: 28px 0px;
}

.block_3 .tit {
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: rgba(255,255,255,1);
}

.block_3 .tit2 {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255,255,255,1);
}

.block_4 {
}

.block_4 .tab {
	background: rgba(245,245,245,1);
	padding-top: 48px;
	padding-bottom: 40px;
}

.block_4 .hd {
	float: left;
	width: 310px;
	text-align: center;
}

.block_4 .hd a {
	height: 56px;
	background: rgba(123,123,123,1);
	line-height: 56px;
	margin-bottom: 21px;
	display: block;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255,255,255,1);
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
	position: relative;
}

.block_4 .bd {
	float: right;
	width: calc(100% - 360px);
}

.block_4 .bd .model {
}

.block_4 .bd .content {
	float: left;
	width: 56%;
/* text-align: center; */
}

.block_4 .bd .h2tit {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
	text-align: center;
	padding-top: 20px;
}

.block_4 .bd .nums:after {
	content: "";
	position: absolute;
	left: 0px;
	width: 100%;
	background: #000;
	opacity: .2;
	top: 11px;
	height: 1px;
}

.block_4 .bd .dec {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
	line-height: 30px;
	padding-top: 28px;
	margin-bottom: 50px;
}

.block_4 .bd .nums {
	zoom: 1;
	overflow: hidden;
	position: relative;
	line-height: 22px;
}

.block_4 .bd .le {
	float: left;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #878787;
	background: #f5f5f5;
	position: relative;
	z-index: 3;
	padding-right: 10px;
}

.block_4 .bd .le span {
	color: #DA251D;
}

.block_4 .bd .more {
	float: right;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(135,135,135,1);
	text-transform: uppercase;
	background: #f5f5f5;
	position: relative;
	z-index: 3;
	padding-left: 9px;
}

.block_4 .bd .imgbox {
	float: right;
	width: 40%;
}

.block_4 .bd .imgbox img {
}

.block_4 .hd a:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 15px 20px;
	border-color: transparent transparent transparent #DA251D;
	position: absolute;
	right: -19px;
	top: 11px;
	opacity: 0;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}

.block_4 .hd a:hover {
	font-size: 24px;
	background: #DA251D;
}

.block_4 .hd a.current {
	font-size: 24px;
	background: #DA251D;
}

.block_4 .hd a:hover:after {
	opacity: 1;
}

.block_4 .hd a.current:after {
	opacity: 1;
}

.block_5 {
	padding-top: 57px;
}

.block_5 .tab {
	padding-top: 18px;
	padding-bottom: 49px;
}

.block_5 .tab .hd {
	text-align: center;
}

.block_5 .tab .hd a {
	display: inline-block;
	width: 134px;
	height: 35px;
	background: rgba(255,255,255,0);
	border: 1px solid rgba(40, 40, 40, 1);
	border-radius: 18px;
	line-height: 33px;
	margin: 0px 10px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}

.block_5 .tab .bd {
	padding-top: 42px;
}

.block_5 .tab .bd .model {
}

.block_5 .tab .bd .model .left {
	float: left;
	width: 50%;
/* height:640px; */
	background: rgba(245,245,245,1);
	padding: 20px;
}

.block_5 .tab .bd .model .left .imgbox {
}

.block_5 .tab .bd .model .left .imgbox img {
	width: 100%;
}

.block_5 .tab .bd .model .left .title {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
	padding-top: 24px;
	padding-bottom: 22px;
	display: block;
	text-align: center;
}

.block_5 .tab .bd .model .left .dec {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(123,123,123,1);
	line-height: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #ccc;
}

.block_5 .tab .bd .model .left ul {
	padding-top: 24px;
}

.block_5 .tab .bd .model .left li {
}

.block_5 .tab .bd .model .left li a {
	display: block;
	padding-left: 38px;
	zoom: 1;
	overflow: hidden;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
	line-height: 36px;
	background: url(../images/le.png) no-repeat 10px center;
}

.block_5 .tab .bd .model .left .s1 {
	float: left;
}

.block_5 .tab .bd .model .left .s2 {
	float: right;
	font-size: 16px;
	color: #8F8F8F;
}

.block_5 .tab .bd .model .left .imgbox {
}

.block_5 .tab .bd .model .right {
	float: right;
	width: 48%;
}

.block_5 .tab .bd .model .right li {
	zoom: 1;
	overflow: hidden;
	margin-bottom: 16px;
}

.block_5 .tab .bd .model .right li .imgbox {
	float: left;
	width: 172px;
	height: 125px;
}

.block_5 .tab .bd .model .right li .imgbox img {
	display: block;
	width: 100%;
	height: 100%;
}

.block_5 .tab .bd .model .right li .content {
	float: right;
	width: calc(100% - 196px);
	padding-top: 10px;
}

.block_5 .tab .bd .model .right li .content .title {
	display: block;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
	margin-bottom: 15px;
}

.block_5 .tab .bd .model .right li .content .dec {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(123,123,123,1);
	line-height: 24px;
}

.block_5 .tab .bd .more {
	display: block;
	line-height: 61px;
	background: rgba(245,245,245,1);
	text-align: center;
	margin-top: 37px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(40,40,40,1);
}

.footer {
	background: rgba(40,40,40,1);
	padding-top: 45px;
	padding-bottom: 100px;
}

.footer .item {
	float: left;
	width: 33.333%;
}

.footer .h2tit {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: rgba(255,255,255,1);
	border-left: 3px solid #DA251D;
	padding-left: 12px;
	line-height: 23px;
}

.footer .dec {
	padding-top: 35px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255,255,255,1);
	line-height: 36px;
}

.footer .dec p img {
	margin-right: 10px;
}

.footer .dec a {
	float: left;
	width: 45%;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255,255,255,1);
	line-height: 36px;
}

.footer .dec p {
}

.footer .ewms {
	float: right;
	width: 26.333%;
}

.footer .imgboxs {
	padding-top: 27px;
	text-align: center;
}

.footer .imgbxo {
/* display: inline-block; */
/* width: 50%; */
	float: left;
	margin-right: 22px;
}

.footer .imgbxo img {
	width: 120px;
}

.footer .tit {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255,255,255,1);
	line-height: 36px;
	padding-top: 14px;
}

.block_5 .tab .hd a {
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}

.block_5 .tab .hd a:hover {
	border-color: #DA251D;
	color: #DA251D
}

.block_5 .tab .hd a.current {
	border-color: #DA251D;
	color: #DA251D
}