@charset "UTF-8";/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}
.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}
.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}
@-webkit-keyframes bounce {
0%, 100%, 20%, 53%, 80% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
40%, 43% {
-webkit-transition-timing-function:cubic-bezier(0.755, .050, .855, .060);
transition-timing-function:cubic-bezier(0.755, .050, .855, .060);
-webkit-transform:translate3d(0, -30px, 0);
transform:translate3d(0, -30px, 0)
}
70% {
-webkit-transition-timing-function:cubic-bezier(0.755, .050, .855, .060);
transition-timing-function:cubic-bezier(0.755, .050, .855, .060);
-webkit-transform:translate3d(0, -15px, 0);
transform:translate3d(0, -15px, 0)
}
90% {
-webkit-transform:translate3d(0, -4px, 0);
transform:translate3d(0, -4px, 0)
}
}
@keyframes bounce {
0%, 100%, 20%, 53%, 80% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
40%, 43% {
-webkit-transition-timing-function:cubic-bezier(0.755, .050, .855, .060);
transition-timing-function:cubic-bezier(0.755, .050, .855, .060);
-webkit-transform:translate3d(0, -30px, 0);
transform:translate3d(0, -30px, 0)
}
70% {
-webkit-transition-timing-function:cubic-bezier(0.755, .050, .855, .060);
transition-timing-function:cubic-bezier(0.755, .050, .855, .060);
-webkit-transform:translate3d(0, -15px, 0);
transform:translate3d(0, -15px, 0)
}
90% {
-webkit-transform:translate3d(0, -4px, 0);
transform:translate3d(0, -4px, 0)
}
}
.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom
}
@-webkit-keyframes flash {
0%, 100%, 50% {
opacity:1
}
25%, 75% {
opacity:0
}
}
@keyframes flash {
0%, 100%, 50% {
opacity:1
}
25%, 75% {
opacity:0
}
}
.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}
@-webkit-keyframes pulse {
0% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
50% {
-webkit-transform:scale3d(1.05, 1.05, 1.05);
transform:scale3d(1.05, 1.05, 1.05)
}
100% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
}
@keyframes pulse {
0% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
50% {
-webkit-transform:scale3d(1.05, 1.05, 1.05);
transform:scale3d(1.05, 1.05, 1.05)
}
100% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
}
.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}
@-webkit-keyframes rubberBand {
0% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
30% {
-webkit-transform:scale3d(1.25, .75, 1);
transform:scale3d(1.25, .75, 1)
}
40% {
-webkit-transform:scale3d(0.75, 1.25, 1);
transform:scale3d(0.75, 1.25, 1)
}
50% {
-webkit-transform:scale3d(1.15, .85, 1);
transform:scale3d(1.15, .85, 1)
}
65% {
-webkit-transform:scale3d(.95, 1.05, 1);
transform:scale3d(.95, 1.05, 1)
}
75% {
-webkit-transform:scale3d(1.05, .95, 1);
transform:scale3d(1.05, .95, 1)
}
100% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
}
@keyframes rubberBand {
0% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
30% {
-webkit-transform:scale3d(1.25, .75, 1);
transform:scale3d(1.25, .75, 1)
}
40% {
-webkit-transform:scale3d(0.75, 1.25, 1);
transform:scale3d(0.75, 1.25, 1)
}
50% {
-webkit-transform:scale3d(1.15, .85, 1);
transform:scale3d(1.15, .85, 1)
}
65% {
-webkit-transform:scale3d(.95, 1.05, 1);
transform:scale3d(.95, 1.05, 1)
}
75% {
-webkit-transform:scale3d(1.05, .95, 1);
transform:scale3d(1.05, .95, 1)
}
100% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
}
.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform:translate3d(-10px, 0, 0);
transform:translate3d(-10px, 0, 0)
}
20%, 40%, 60%, 80% {
-webkit-transform:translate3d(10px, 0, 0);
transform:translate3d(10px, 0, 0)
}
}
@keyframes shake {
0%, 100% {
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform:translate3d(-10px, 0, 0);
transform:translate3d(-10px, 0, 0)
}
20%, 40%, 60%, 80% {
-webkit-transform:translate3d(10px, 0, 0);
transform:translate3d(10px, 0, 0)
}
}
.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}
@-webkit-keyframes swing {
20% {
-webkit-transform:rotate3d(0, 0, 1, 15deg);
transform:rotate3d(0, 0, 1, 15deg)
}
40% {
-webkit-transform:rotate3d(0, 0, 1, -10deg);
transform:rotate3d(0, 0, 1, -10deg)
}
60% {
-webkit-transform:rotate3d(0, 0, 1, 5deg);
transform:rotate3d(0, 0, 1, 5deg)
}
80% {
-webkit-transform:rotate3d(0, 0, 1, -5deg);
transform:rotate3d(0, 0, 1, -5deg)
}
100% {
-webkit-transform:rotate3d(0, 0, 1, 0deg);
transform:rotate3d(0, 0, 1, 0deg)
}
}
@keyframes swing {
20% {
-webkit-transform:rotate3d(0, 0, 1, 15deg);
transform:rotate3d(0, 0, 1, 15deg)
}
40% {
-webkit-transform:rotate3d(0, 0, 1, -10deg);
transform:rotate3d(0, 0, 1, -10deg)
}
60% {
-webkit-transform:rotate3d(0, 0, 1, 5deg);
transform:rotate3d(0, 0, 1, 5deg)
}
80% {
-webkit-transform:rotate3d(0, 0, 1, -5deg);
transform:rotate3d(0, 0, 1, -5deg)
}
100% {
-webkit-transform:rotate3d(0, 0, 1, 0deg);
transform:rotate3d(0, 0, 1, 0deg)
}
}
.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}
@-webkit-keyframes tada {
0% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
10%, 20% {
-webkit-transform:scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform:scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
}
30%, 50%, 70%, 90% {
-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
}
40%, 60%, 80% {
-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
}
100% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
}
@keyframes tada {
0% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
10%, 20% {
-webkit-transform:scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform:scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
}
30%, 50%, 70%, 90% {
-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
}
40%, 60%, 80% {
-webkit-transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform:scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
}
100% {
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
}
.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}
@-webkit-keyframes wobble {
0% {
-webkit-transform:none;
transform:none
}
15% {
-webkit-transform:translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform:translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
}
30% {
-webkit-transform:translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform:translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
}
45% {
-webkit-transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
}
60% {
-webkit-transform:translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform:translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
}
75% {
-webkit-transform:translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform:translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
}
100% {
-webkit-transform:none;
transform:none
}
}
@keyframes wobble {
0% {
-webkit-transform:none;
transform:none
}
15% {
-webkit-transform:translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform:translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
}
30% {
-webkit-transform:translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform:translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
}
45% {
-webkit-transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform:translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
}
60% {
-webkit-transform:translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform:translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
}
75% {
-webkit-transform:translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform:translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
}
100% {
-webkit-transform:none;
transform:none
}
}
.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}
@-webkit-keyframes bounceIn {
0%, 100%, 20%, 40%, 60%, 80% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
20% {
-webkit-transform:scale3d(1.1, 1.1, 1.1);
transform:scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform:scale3d(.9, .9, .9);
transform:scale3d(.9, .9, .9)
}
60% {
opacity:1;
-webkit-transform:scale3d(1.03, 1.03, 1.03);
transform:scale3d(1.03, 1.03, 1.03)
}
80% {
-webkit-transform:scale3d(.97, .97, .97);
transform:scale3d(.97, .97, .97)
}
100% {
opacity:1;
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
}
@keyframes bounceIn {
0%, 100%, 20%, 40%, 60%, 80% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
20% {
-webkit-transform:scale3d(1.1, 1.1, 1.1);
transform:scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform:scale3d(.9, .9, .9);
transform:scale3d(.9, .9, .9)
}
60% {
opacity:1;
-webkit-transform:scale3d(1.03, 1.03, 1.03);
transform:scale3d(1.03, 1.03, 1.03)
}
80% {
-webkit-transform:scale3d(.97, .97, .97);
transform:scale3d(.97, .97, .97)
}
100% {
opacity:1;
-webkit-transform:scale3d(1, 1, 1);
transform:scale3d(1, 1, 1)
}
}
.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}
@-webkit-keyframes bounceInDown {
0%, 100%, 60%, 75%, 90% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:translate3d(0, -3000px, 0);
transform:translate3d(0, -3000px, 0)
}
60% {
opacity:1;
-webkit-transform:translate3d(0, 25px, 0);
transform:translate3d(0, 25px, 0)
}
75% {
-webkit-transform:translate3d(0, -10px, 0);
transform:translate3d(0, -10px, 0)
}
90% {
-webkit-transform:translate3d(0, 5px, 0);
transform:translate3d(0, 5px, 0)
}
100% {
-webkit-transform:none;
transform:none
}
}
@keyframes bounceInDown {
0%, 100%, 60%, 75%, 90% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:translate3d(0, -3000px, 0);
transform:translate3d(0, -3000px, 0)
}
60% {
opacity:1;
-webkit-transform:translate3d(0, 25px, 0);
transform:translate3d(0, 25px, 0)
}
75% {
-webkit-transform:translate3d(0, -10px, 0);
transform:translate3d(0, -10px, 0)
}
90% {
-webkit-transform:translate3d(0, 5px, 0);
transform:translate3d(0, 5px, 0)
}
100% {
-webkit-transform:none;
transform:none
}
}
.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
0%, 100%, 60%, 75%, 90% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:translate3d(-3000px, 0, 0);
transform:translate3d(-3000px, 0, 0)
}
60% {
opacity:1;
-webkit-transform:translate3d(25px, 0, 0);
transform:translate3d(25px, 0, 0)
}
75% {
-webkit-transform:translate3d(-10px, 0, 0);
transform:translate3d(-10px, 0, 0)
}
90% {
-webkit-transform:translate3d(5px, 0, 0);
transform:translate3d(5px, 0, 0)
}
100% {
-webkit-transform:none;
transform:none
}
}
@keyframes bounceInLeft {
0%, 100%, 60%, 75%, 90% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:translate3d(-3000px, 0, 0);
transform:translate3d(-3000px, 0, 0)
}
60% {
opacity:1;
-webkit-transform:translate3d(25px, 0, 0);
transform:translate3d(25px, 0, 0)
}
75% {
-webkit-transform:translate3d(-10px, 0, 0);
transform:translate3d(-10px, 0, 0)
}
90% {
-webkit-transform:translate3d(5px, 0, 0);
transform:translate3d(5px, 0, 0)
}
100% {
-webkit-transform:none;
transform:none
}
}
.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
0%, 100%, 60%, 75%, 90% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:translate3d(3000px, 0, 0);
transform:translate3d(3000px, 0, 0)
}
60% {
opacity:1;
-webkit-transform:translate3d(-25px, 0, 0);
transform:translate3d(-25px, 0, 0)
}
75% {
-webkit-transform:translate3d(10px, 0, 0);
transform:translate3d(10px, 0, 0)
}
90% {
-webkit-transform:translate3d(-5px, 0, 0);
transform:translate3d(-5px, 0, 0)
}
100% {
-webkit-transform:none;
transform:none
}
}
@keyframes bounceInRight {
0%, 100%, 60%, 75%, 90% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:translate3d(3000px, 0, 0);
transform:translate3d(3000px, 0, 0)
}
60% {
opacity:1;
-webkit-transform:translate3d(-25px, 0, 0);
transform:translate3d(-25px, 0, 0)
}
75% {
-webkit-transform:translate3d(10px, 0, 0);
transform:translate3d(10px, 0, 0)
}
90% {
-webkit-transform:translate3d(-5px, 0, 0);
transform:translate3d(-5px, 0, 0)
}
100% {
-webkit-transform:none;
transform:none
}
}
.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
0%, 100%, 60%, 75%, 90% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:translate3d(0, 3000px, 0);
transform:translate3d(0, 3000px, 0)
}
60% {
opacity:1;
-webkit-transform:translate3d(0, -20px, 0);
transform:translate3d(0, -20px, 0)
}
75% {
-webkit-transform:translate3d(0, 10px, 0);
transform:translate3d(0, 10px, 0)
}
90% {
-webkit-transform:translate3d(0, -5px, 0);
transform:translate3d(0, -5px, 0)
}
100% {
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
}
@keyframes bounceInUp {
0%, 100%, 60%, 75%, 90% {
-webkit-transition-timing-function:cubic-bezier(0.215, .61, .355, 1);
transition-timing-function:cubic-bezier(0.215, .61, .355, 1)
}
0% {
opacity:0;
-webkit-transform:translate3d(0, 3000px, 0);
transform:translate3d(0, 3000px, 0)
}
60% {
opacity:1;
-webkit-transform:translate3d(0, -20px, 0);
transform:translate3d(0, -20px, 0)
}
75% {
-webkit-transform:translate3d(0, 10px, 0);
transform:translate3d(0, 10px, 0)
}
90% {
-webkit-transform:translate3d(0, -5px, 0);
transform:translate3d(0, -5px, 0)
}
100% {
-webkit-transform:translate3d(0, 0, 0);
transform:translate3d(0, 0, 0)
}
}
.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform:scale3d(.9, .9, .9);
transform:scale3d(.9, .9, .9)
}
50%, 55% {
opacity:1;
-webkit-transform:scale3d(1.1, 1.1, 1.1);
transform:scale3d(1.1, 1.1, 1.1)
}
100% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
}
@keyframes bounceOut {
20% {
-webkit-transform:scale3d(.9, .9, .9);
transform:scale3d(.9, .9, .9)
}
50%, 55% {
opacity:1;
-webkit-transform:scale3d(1.1, 1.1, 1.1);
transform:scale3d(1.1, 1.1, 1.1)
}
100% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
}
.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform:translate3d(0, 10px, 0);
transform:translate3d(0, 10px, 0)
}
40%, 45% {
opacity:1;
-webkit-transform:translate3d(0, -20px, 0);
transform:translate3d(0, -20px, 0)
}
100% {
opacity:0;
-webkit-transform:translate3d(0, 2000px, 0);
transform:translate3d(0, 2000px, 0)
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform:translate3d(0, 10px, 0);
transform:translate3d(0, 10px, 0)
}
40%, 45% {
opacity:1;
-webkit-transform:translate3d(0, -20px, 0);
transform:translate3d(0, -20px, 0)
}
100% {
opacity:0;
-webkit-transform:translate3d(0, 2000px, 0);
transform:translate3d(0, 2000px, 0)
}
}
.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity:1;
-webkit-transform:translate3d(20px, 0, 0);
transform:translate3d(20px, 0, 0)
}
100% {
opacity:0;
-webkit-transform:translate3d(-2000px, 0, 0);
transform:translate3d(-2000px, 0, 0)
}
}
@keyframes bounceOutLeft {
20% {
opacity:1;
-webkit-transform:translate3d(20px, 0, 0);
transform:translate3d(20px, 0, 0)
}
100% {
opacity:0;
-webkit-transform:translate3d(-2000px, 0, 0);
transform:translate3d(-2000px, 0, 0)
}
}
.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}
@-webkit-keyframes bounceOutRight {
20% {
opacity:1;
-webkit-transform:translate3d(-20px, 0, 0);
transform:translate3d(-20px, 0, 0)
}
100% {
opacity:0;
-webkit-transform:translate3d(2000px, 0, 0);
transform:translate3d(2000px, 0, 0)
}
}
@keyframes bounceOutRight {
20% {
opacity:1;
-webkit-transform:translate3d(-20px, 0, 0);
transform:translate3d(-20px, 0, 0)
}
100% {
opacity:0;
-webkit-transform:translate3d(2000px, 0, 0);
transform:translate3d(2000px, 0, 0)
}
}
.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform:translate3d(0, -10px, 0);
transform:translate3d(0, -10px, 0)
}
40%, 45% {
opacity:1;
-webkit-transform:translate3d(0, 20px, 0);
transform:translate3d(0, 20px, 0)
}
100% {
opacity:0;
-webkit-transform:translate3d(0, -2000px, 0);
transform:translate3d(0, -2000px, 0)
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform:translate3d(0, -10px, 0);
transform:translate3d(0, -10px, 0)
}
40%, 45% {
opacity:1;
-webkit-transform:translate3d(0, 20px, 0);
transform:translate3d(0, 20px, 0)
}
100% {
opacity:0;
-webkit-transform:translate3d(0, -2000px, 0);
transform:translate3d(0, -2000px, 0)
}
}
.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}
@-webkit-keyframes fadeIn {
0% {
opacity:0
}
100% {
opacity:1
}
}
@keyframes fadeIn {
0% {
opacity:0
}
100% {
opacity:1
}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}
@-webkit-keyframes fadeInDown {
0% {
opacity:0;
-webkit-transform:translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInDown {
0% {
opacity:0;
-webkit-transform:translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity:0;
-webkit-transform:translate3d(0, -2000px, 0);
transform:translate3d(0, -2000px, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInDownBig {
0% {
opacity:0;
-webkit-transform:translate3d(0, -2000px, 0);
transform:translate3d(0, -2000px, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}
@-webkit-keyframes fadeInLeft {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0);
transform:translate3d(-100%, 0, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInLeft {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0);
transform:translate3d(-100%, 0, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity:0;
-webkit-transform:translate3d(-2000px, 0, 0);
transform:translate3d(-2000px, 0, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInLeftBig {
0% {
opacity:0;
-webkit-transform:translate3d(-2000px, 0, 0);
transform:translate3d(-2000px, 0, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}
@-webkit-keyframes fadeInRight {
0% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0);
transform:translate3d(100%, 0, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInRight {
0% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0);
transform:translate3d(100%, 0, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity:0;
-webkit-transform:translate3d(2000px, 0, 0);
transform:translate3d(2000px, 0, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInRightBig {
0% {
opacity:0;
-webkit-transform:translate3d(2000px, 0, 0);
transform:translate3d(2000px, 0, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}
@-webkit-keyframes fadeInUp {
0% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInUp {
0% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity:0;
-webkit-transform:translate3d(0, 2000px, 0);
transform:translate3d(0, 2000px, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInUpBig {
0% {
opacity:0;
-webkit-transform:translate3d(0, 2000px, 0);
transform:translate3d(0, 2000px, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}
@-webkit-keyframes fadeOut {
0% {
opacity:1
}
100% {
opacity:0
}
}
@keyframes fadeOut {
0% {
opacity:1
}
100% {
opacity:0
}
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}
@-webkit-keyframes fadeOutDown {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
}
@keyframes fadeOutDown {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
}
.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(0, 2000px, 0);
transform:translate3d(0, 2000px, 0)
}
}
@keyframes fadeOutDownBig {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(0, 2000px, 0);
transform:translate3d(0, 2000px, 0)
}
}
.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0);
transform:translate3d(-100%, 0, 0)
}
}
@keyframes fadeOutLeft {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0);
transform:translate3d(-100%, 0, 0)
}
}
.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(-2000px, 0, 0);
transform:translate3d(-2000px, 0, 0)
}
}
@keyframes fadeOutLeftBig {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(-2000px, 0, 0);
transform:translate3d(-2000px, 0, 0)
}
}
.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}
@-webkit-keyframes fadeOutRight {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0);
transform:translate3d(100%, 0, 0)
}
}
@keyframes fadeOutRight {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0);
transform:translate3d(100%, 0, 0)
}
}
.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(2000px, 0, 0);
transform:translate3d(2000px, 0, 0)
}
}
@keyframes fadeOutRightBig {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(2000px, 0, 0);
transform:translate3d(2000px, 0, 0)
}
}
.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}
@-webkit-keyframes fadeOutUp {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
}
@keyframes fadeOutUp {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
}
.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(0, -2000px, 0);
transform:translate3d(0, -2000px, 0)
}
}
@keyframes fadeOutUpBig {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(0, -2000px, 0);
transform:translate3d(0, -2000px, 0)
}
}
.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}
@-webkit-keyframes flip {
0% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, -360deg);
transform:perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function:ease-out;
animation-timing-function:ease-out
}
40% {
-webkit-transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function:ease-out;
animation-timing-function:ease-out
}
50% {
-webkit-transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function:ease-in;
animation-timing-function:ease-in
}
80% {
-webkit-transform:perspective(400px) scale3d(.95, .95, .95);
transform:perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function:ease-in;
animation-timing-function:ease-in
}
100% {
-webkit-transform:perspective(400px);
transform:perspective(400px);
-webkit-animation-timing-function:ease-in;
animation-timing-function:ease-in
}
}
@keyframes flip {
0% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, -360deg);
transform:perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function:ease-out;
animation-timing-function:ease-out
}
40% {
-webkit-transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function:ease-out;
animation-timing-function:ease-out
}
50% {
-webkit-transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform:perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function:ease-in;
animation-timing-function:ease-in
}
80% {
-webkit-transform:perspective(400px) scale3d(.95, .95, .95);
transform:perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function:ease-in;
animation-timing-function:ease-in
}
100% {
-webkit-transform:perspective(400px);
transform:perspective(400px);
-webkit-animation-timing-function:ease-in;
animation-timing-function:ease-in
}
}
.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, 90deg);
transform:perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in;
opacity:0
}
40% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, -20deg);
transform:perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in
}
60% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, 10deg);
transform:perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity:1
}
80% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, -5deg);
transform:perspective(400px) rotate3d(1, 0, 0, -5deg)
}
100% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
}
@keyframes flipInX {
0% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, 90deg);
transform:perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in;
opacity:0
}
40% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, -20deg);
transform:perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in
}
60% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, 10deg);
transform:perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity:1
}
80% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, -5deg);
transform:perspective(400px) rotate3d(1, 0, 0, -5deg)
}
100% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
}
.flipInX {
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, 90deg);
transform:perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in;
opacity:0
}
40% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, -20deg);
transform:perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in
}
60% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, 10deg);
transform:perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity:1
}
80% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, -5deg);
transform:perspective(400px) rotate3d(0, 1, 0, -5deg)
}
100% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
}
@keyframes flipInY {
0% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, 90deg);
transform:perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in;
opacity:0
}
40% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, -20deg);
transform:perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-transition-timing-function:ease-in;
transition-timing-function:ease-in
}
60% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, 10deg);
transform:perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity:1
}
80% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, -5deg);
transform:perspective(400px) rotate3d(0, 1, 0, -5deg)
}
100% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
}
.flipInY {
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
30% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, -20deg);
transform:perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity:1
}
100% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, 90deg);
transform:perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity:0
}
}
@keyframes flipOutX {
0% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
30% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, -20deg);
transform:perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity:1
}
100% {
-webkit-transform:perspective(400px) rotate3d(1, 0, 0, 90deg);
transform:perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity:0
}
}
.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
30% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, -15deg);
transform:perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity:1
}
100% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, 90deg);
transform:perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity:0
}
}
@keyframes flipOutY {
0% {
-webkit-transform:perspective(400px);
transform:perspective(400px)
}
30% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, -15deg);
transform:perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity:1
}
100% {
-webkit-transform:perspective(400px) rotate3d(0, 1, 0, 90deg);
transform:perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity:0
}
}
.flipOutY {
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform:translate3d(100%, 0, 0) skewX(-30deg);
transform:translate3d(100%, 0, 0) skewX(-30deg);
opacity:0
}
60% {
-webkit-transform:skewX(20deg);
transform:skewX(20deg);
opacity:1
}
80% {
-webkit-transform:skewX(-5deg);
transform:skewX(-5deg);
opacity:1
}
100% {
-webkit-transform:none;
transform:none;
opacity:1
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform:translate3d(100%, 0, 0) skewX(-30deg);
transform:translate3d(100%, 0, 0) skewX(-30deg);
opacity:0
}
60% {
-webkit-transform:skewX(20deg);
transform:skewX(20deg);
opacity:1
}
80% {
-webkit-transform:skewX(-5deg);
transform:skewX(-5deg);
opacity:1
}
100% {
-webkit-transform:none;
transform:none;
opacity:1
}
}
.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}
@-webkit-keyframes lightSpeedOut {
0% {
opacity:1
}
100% {
-webkit-transform:translate3d(100%, 0, 0) skewX(30deg);
transform:translate3d(100%, 0, 0) skewX(30deg);
opacity:0
}
}
@keyframes lightSpeedOut {
0% {
opacity:1
}
100% {
-webkit-transform:translate3d(100%, 0, 0) skewX(30deg);
transform:translate3d(100%, 0, 0) skewX(30deg);
opacity:0
}
}
.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin:center;
transform-origin:center;
-webkit-transform:rotate3d(0, 0, 1, -200deg);
transform:rotate3d(0, 0, 1, -200deg);
opacity:0
}
100% {
-webkit-transform-origin:center;
transform-origin:center;
-webkit-transform:none;
transform:none;
opacity:1
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin:center;
transform-origin:center;
-webkit-transform:rotate3d(0, 0, 1, -200deg);
transform:rotate3d(0, 0, 1, -200deg);
opacity:0
}
100% {
-webkit-transform-origin:center;
transform-origin:center;
-webkit-transform:none;
transform:none;
opacity:1
}
}
.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:rotate3d(0, 0, 1, -45deg);
transform:rotate3d(0, 0, 1, -45deg);
opacity:0
}
100% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:none;
transform:none;
opacity:1
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:rotate3d(0, 0, 1, -45deg);
transform:rotate3d(0, 0, 1, -45deg);
opacity:0
}
100% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:none;
transform:none;
opacity:1
}
}
.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:rotate3d(0, 0, 1, 45deg);
transform:rotate3d(0, 0, 1, 45deg);
opacity:0
}
100% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:none;
transform:none;
opacity:1
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:rotate3d(0, 0, 1, 45deg);
transform:rotate3d(0, 0, 1, 45deg);
opacity:0
}
100% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:none;
transform:none;
opacity:1
}
}
.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:rotate3d(0, 0, 1, 45deg);
transform:rotate3d(0, 0, 1, 45deg);
opacity:0
}
100% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:none;
transform:none;
opacity:1
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:rotate3d(0, 0, 1, 45deg);
transform:rotate3d(0, 0, 1, 45deg);
opacity:0
}
100% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:none;
transform:none;
opacity:1
}
}
.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:rotate3d(0, 0, 1, -90deg);
transform:rotate3d(0, 0, 1, -90deg);
opacity:0
}
100% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:none;
transform:none;
opacity:1
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:rotate3d(0, 0, 1, -90deg);
transform:rotate3d(0, 0, 1, -90deg);
opacity:0
}
100% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:none;
transform:none;
opacity:1
}
}
.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin:center;
transform-origin:center;
opacity:1
}
100% {
-webkit-transform-origin:center;
transform-origin:center;
-webkit-transform:rotate3d(0, 0, 1, 200deg);
transform:rotate3d(0, 0, 1, 200deg);
opacity:0
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin:center;
transform-origin:center;
opacity:1
}
100% {
-webkit-transform-origin:center;
transform-origin:center;
-webkit-transform:rotate3d(0, 0, 1, 200deg);
transform:rotate3d(0, 0, 1, 200deg);
opacity:0
}
}
.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
opacity:1
}
100% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:rotate3d(0, 0, 1, 45deg);
transform:rotate3d(0, 0, 1, 45deg);
opacity:0
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
opacity:1
}
100% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:rotate3d(0, 0, 1, 45deg);
transform:rotate3d(0, 0, 1, 45deg);
opacity:0
}
}
.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
opacity:1
}
100% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:rotate3d(0, 0, 1, -45deg);
transform:rotate3d(0, 0, 1, -45deg);
opacity:0
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
opacity:1
}
100% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:rotate3d(0, 0, 1, -45deg);
transform:rotate3d(0, 0, 1, -45deg);
opacity:0
}
}
.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
opacity:1
}
100% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:rotate3d(0, 0, 1, -45deg);
transform:rotate3d(0, 0, 1, -45deg);
opacity:0
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
opacity:1
}
100% {
-webkit-transform-origin:left bottom;
transform-origin:left bottom;
-webkit-transform:rotate3d(0, 0, 1, -45deg);
transform:rotate3d(0, 0, 1, -45deg);
opacity:0
}
}
.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
opacity:1
}
100% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:rotate3d(0, 0, 1, 90deg);
transform:rotate3d(0, 0, 1, 90deg);
opacity:0
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
opacity:1
}
100% {
-webkit-transform-origin:right bottom;
transform-origin:right bottom;
-webkit-transform:rotate3d(0, 0, 1, 90deg);
transform:rotate3d(0, 0, 1, 90deg);
opacity:0
}
}
.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin:top left;
transform-origin:top left;
-webkit-animation-timing-function:ease-in-out;
animation-timing-function:ease-in-out
}
20%, 60% {
-webkit-transform:rotate3d(0, 0, 1, 80deg);
transform:rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin:top left;
transform-origin:top left;
-webkit-animation-timing-function:ease-in-out;
animation-timing-function:ease-in-out
}
40%, 80% {
-webkit-transform:rotate3d(0, 0, 1, 60deg);
transform:rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin:top left;
transform-origin:top left;
-webkit-animation-timing-function:ease-in-out;
animation-timing-function:ease-in-out;
opacity:1
}
100% {
-webkit-transform:translate3d(0, 700px, 0);
transform:translate3d(0, 700px, 0);
opacity:0
}
}
@keyframes hinge {
0% {
-webkit-transform-origin:top left;
transform-origin:top left;
-webkit-animation-timing-function:ease-in-out;
animation-timing-function:ease-in-out
}
20%, 60% {
-webkit-transform:rotate3d(0, 0, 1, 80deg);
transform:rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin:top left;
transform-origin:top left;
-webkit-animation-timing-function:ease-in-out;
animation-timing-function:ease-in-out
}
40%, 80% {
-webkit-transform:rotate3d(0, 0, 1, 60deg);
transform:rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin:top left;
transform-origin:top left;
-webkit-animation-timing-function:ease-in-out;
animation-timing-function:ease-in-out;
opacity:1
}
100% {
-webkit-transform:translate3d(0, 700px, 0);
transform:translate3d(0, 700px, 0);
opacity:0
}
}
.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge
}
@-webkit-keyframes rollIn {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes rollIn {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform:translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}
@-webkit-keyframes rollOut {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform:translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
}
}
@keyframes rollOut {
0% {
opacity:1
}
100% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform:translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
}
}
.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}
@-webkit-keyframes zoomIn {
0% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
50% {
opacity:1
}
}
@keyframes zoomIn {
0% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
50% {
opacity:1
}
}
.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}
@-webkit-keyframes zoomInDown {
0% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform:scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
60% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
@keyframes zoomInDown {
0% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform:scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
60% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}
@-webkit-keyframes zoomInLeft {
0% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform:scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
60% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform:scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
@keyframes zoomInLeft {
0% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform:scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
60% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform:scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}
@-webkit-keyframes zoomInRight {
0% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform:scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
60% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform:scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
@keyframes zoomInRight {
0% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform:scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
60% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform:scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}
@-webkit-keyframes zoomInUp {
0% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform:scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
60% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
@keyframes zoomInUp {
0% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform:scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
60% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}
@-webkit-keyframes zoomOut {
0% {
opacity:1
}
50% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
100% {
opacity:0
}
}
@keyframes zoomOut {
0% {
opacity:1
}
50% {
opacity:0;
-webkit-transform:scale3d(.3, .3, .3);
transform:scale3d(.3, .3, .3)
}
100% {
opacity:0
}
}
.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}
@-webkit-keyframes zoomOutDown {
40% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
100% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform:scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin:center bottom;
transform-origin:center bottom;
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
@keyframes zoomOutDown {
40% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform:scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
100% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform:scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin:center bottom;
transform-origin:center bottom;
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform:scale3d(.475, .475, .475) translate3d(42px, 0, 0)
}
100% {
opacity:0;
-webkit-transform:scale(.1) translate3d(-2000px, 0, 0);
transform:scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin:left center;
transform-origin:left center
}
}
@keyframes zoomOutLeft {
40% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform:scale3d(.475, .475, .475) translate3d(42px, 0, 0)
}
100% {
opacity:0;
-webkit-transform:scale(.1) translate3d(-2000px, 0, 0);
transform:scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin:left center;
transform-origin:left center
}
}
.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}
@-webkit-keyframes zoomOutRight {
40% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform:scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
}
100% {
opacity:0;
-webkit-transform:scale(.1) translate3d(2000px, 0, 0);
transform:scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin:right center;
transform-origin:right center
}
}
@keyframes zoomOutRight {
40% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform:scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
}
100% {
opacity:0;
-webkit-transform:scale(.1) translate3d(2000px, 0, 0);
transform:scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin:right center;
transform-origin:right center
}
}
.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}
@-webkit-keyframes zoomOutUp {
40% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
100% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform:scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin:center bottom;
transform-origin:center bottom;
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
@keyframes zoomOutUp {
40% {
opacity:1;
-webkit-transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform:scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function:cubic-bezier(0.55, .055, .675, .19);
animation-timing-function:cubic-bezier(0.55, .055, .675, .19)
}
100% {
opacity:0;
-webkit-transform:scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform:scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin:center bottom;
transform-origin:center bottom;
-webkit-animation-timing-function:cubic-bezier(0.175, .885, .32, 1);
animation-timing-function:cubic-bezier(0.175, .885, .32, 1)
}
}
.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}
@-webkit-keyframes slideInDown {
0% {
-webkit-transform:translateY(-100%);
transform:translateY(-100%);
visibility:visible
}
100% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
}
@keyframes slideInDown {
0% {
-webkit-transform:translateY(-100%);
transform:translateY(-100%);
visibility:visible
}
100% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
}
.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform:translateX(-100%);
transform:translateX(-100%);
visibility:visible
}
100% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
}
@keyframes slideInLeft {
0% {
-webkit-transform:translateX(-100%);
transform:translateX(-100%);
visibility:visible
}
100% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
}
.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform:translateX(100%);
transform:translateX(100%);
visibility:visible
}
100% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
}
@keyframes slideInRight {
0% {
-webkit-transform:translateX(100%);
transform:translateX(100%);
visibility:visible
}
100% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
}
.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform:translateY(100%);
transform:translateY(100%);
visibility:visible
}
100% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
}
@keyframes slideInUp {
0% {
-webkit-transform:translateY(100%);
transform:translateY(100%);
visibility:visible
}
100% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
}
.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
100% {
visibility:hidden;
-webkit-transform:translateY(100%);
transform:translateY(100%)
}
}
@keyframes slideOutDown {
0% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
100% {
visibility:hidden;
-webkit-transform:translateY(100%);
transform:translateY(100%)
}
}
.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
100% {
visibility:hidden;
-webkit-transform:translateX(-100%);
transform:translateX(-100%)
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
100% {
visibility:hidden;
-webkit-transform:translateX(-100%);
transform:translateX(-100%)
}
}
.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
100% {
visibility:hidden;
-webkit-transform:translateX(100%);
transform:translateX(100%)
}
}
@keyframes slideOutRight {
0% {
-webkit-transform:translateX(0);
transform:translateX(0)
}
100% {
visibility:hidden;
-webkit-transform:translateX(100%);
transform:translateX(100%)
}
}
.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
100% {
visibility:hidden;
-webkit-transform:translateY(-100%);
transform:translateY(-100%)
}
}
@keyframes slideOutUp {
0% {
-webkit-transform:translateY(0);
transform:translateY(0)
}
100% {
visibility:hidden;
-webkit-transform:translateY(-100%);
transform:translateY(-100%)
}
}
.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}
/*# sourceMappingURL=fonts.css.map */

@font-face {font-family: "iconfont";
  src: url('../fonts/iconfont.eot'); /* IE9 */
  src: url('../fonts/iconfont.eot') format('embedded-opentype'), /* IE6-IE8 */
  url('../fonts/6002404e7eb645dbbb0b600aa78473df.woff') format('woff2'),
  url('../fonts/iconfont.woff') format('woff'),
  url('../fonts/iconfont.ttf') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  url('../fonts/iconfont.svg') format('svg'); /* iOS 4.1- */
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-lifangtilitiduomiantifangkuai:before {
  content: "\e7fa";
}

.icon-facebook:before {
  content: "\e620";
}

.icon-linkedin:before {
  content: "\e648";
}

.icon-shopcart2:before {
  content: "\e637";
}

.icon-top15:before {
  content: "\e65b";
}

.icon-up7:before {
  content: "\e722";
}

.icon-bottom7:before {
  content: "\e723";
}

.icon-right7:before {
  content: "\e725";
}

.icon-bottom13:before {
  content: "\e73b";
}

.icon-right13:before {
  content: "\e73d";
}

.icon-left25:before {
  content: "\e787";
}

.icon-right25:before {
  content: "\e788";
}

.icon-left27:before {
  content: "\e78f";
}

.icon-right27:before {
  content: "\e790";
}

.icon-left30:before {
  content: "\e79b";
}

.icon-right30:before {
  content: "\e79c";
}

.icon-download2:before {
  content: "\e7a1";
}

.icon-search4:before {
  content: "\e7b2";
}

.icon-search5:before {
  content: "\e7b3";
}

.icon-whatsapp:before {
  content: "\e7bf";
}

.icon-address:before {
  content: "\e7c2";
}

.icon-email:before {
  content: "\e7c4";
}

.icon-email1:before {
  content: "\e7c5";
}

.icon-fax1:before {
  content: "\e7ca";
}

.icon-tel:before {
  content: "\e7cc";
}

.icon-wechat:before {
  content: "\e7cd";
}


/* CSS Document */
* {
	margin: 0;
	padding: 0;
}
html {
	font-size: 62.5%;
	height: 100%;
}
body {
	margin: 0 auto;
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 14px;
	font-size: 1.4rem;
	height: 100%;
	overflow-x: hidden;
	max-width: 1920px;
}
img {
	border: none;
}
ul li {
	list-style-type: none;
}
ul, form, p, a, img, table, tr, td, li, dd, dt, dl, span {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #333;
}
a {
	text-decoration: none;
	color: #333;
	outline: none;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-webkit-transition: 0.3s;
}
h1 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	color: #333;
}
.clear {
	clear: both;
}
.maln {
	margin-left: auto !important;
}
input, textarea {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 14px;
	font-size: 1.4rem;
	color: #333;
	border: none;
	outline: none;
}
.l {
	float: left;
}
.r {
	float: right;
}
.fix {
*zoom: 1;
}
.fix:after, .fix:before {
	display: block;
	content: "clear";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}

::-webkit-input-placeholder { /* WebKit browsers */
color: #666666;
}

:-o-placeholder { /* Mozilla Firefox 4 to 18 */
color: #666666;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #666666;
opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
color: #666666;
}
 .div1 ::-webkit-input-placeholder { /* WebKit browsers */
color: #b7b7b7;
}
 .div1 :-o-placeholder { /* Mozilla Firefox 4 to 18 */
color: #b7b7b7;
}
 .div1 ::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #b7b7b7;
opacity: 1;
}
 .div1 :-ms-input-placeholder { /* Internet Explorer 10+ */
color: #b7b7b7;
}
 .search2 ::-webkit-input-placeholder { /* WebKit browsers */
color: #999999;
}
 .search2 :-o-placeholder { /* Mozilla Firefox 4 to 18 */
color: #999999;
}
 .search2 ::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #999999;
opacity: 1;
}
 .search2 :-ms-input-placeholder { /* Internet Explorer 10+ */
color: #999999;
}
.wp {
	width: 1200px;
	margin: auto;
}
 @media screen and (min-width: 1220px) {
.wp {
	width: 1200px;
	margin: auto;
}
}
 @media screen and (min-width: 1000px) and (max-width: 1219px) {
.wp {
	width: 980px;
	margin: auto;
}
}
 @media screen and (max-width: 999px) {
.wp {
	width: 95%;
	margin: auto;
}
}
.no_margin {
	margin-left: auto\0 !important;
}
 @media screen and (min-width: 1220px) {
.no_margin {
	margin-left: auto !important;
}
}
 @media screen and (min-width: 1000px) and (max-width: 1219px) {
.no_margin {
	margin-left: auto !important;
}
}
/*.container*/
.container {
	width: 5px;
	height: 100%;
	position: absolute;
	right: 0;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	z-index: 99;
	cursor: pointer;
	position: fixed;
	top: -5px;
	right: 0;
	display: block;
}
.container .nav {
	overflow: hidden;
	width: 300px;
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	height: auto;
	overflow: scroll;
}
.container .nav form {
	margin: 15px auto;
	width: 258px;
	height: 26px;
	border: 1px solid #fff;
	position: relative;
	background: #fff;
}
.container .nav form .iptc {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 15px;
	background-color: #fff;
	width: 80%;
	height: 26px;
	line-height: 26px;
	display: block;
	float: left;
}
.container .nav form .ipsc {
	width: 20%;
	height: 26px;
	line-height: 26px;
	display: block;
	float: right;
	background: transparent;
	position: relative;
	z-index: 99;
}
.container .nav form i {
	position: absolute;
	right: 10px;
	top: 5px;
}
.container .nav > ul {
	display: none;
	margin-top: 0px;
	margin-bottom: 0px;
	overflow: scroll;
	padding-top: 45px;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.container .nav > ul > li {
	line-height: 40px;
	font-size: 12px;
	font-size: 1.2rem;
	text-indent: 20px;
	position: relative;
}
.container .nav > ul > li .addition {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 15px;
	top: 10px;
	background: url("../images/shizi.png") no-repeat center center;
}
.container .nav > ul > li .addition.fa:before {
	margin-right: 5px;
	color: #fff;
	text-indent: 0;
}
.container .nav > ul > li > a {
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	display: block;
	margin-right: 40px;
}
.container .nav > ul > li > a span {
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
}
.container .nav > ul > li .c-show {
	display: none;
	width: 100%;
}
.container .nav > ul > li .c-show1 .c-s1 {
	position: relative;
	padding-left: 15px;
}
.container .nav > ul > li .c-show1 .c-s1 > a {
	position: relative;
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 30px;
	margin-right: 40px;
}
.container .nav > ul > li .c-show1 .c-s1 > a span {
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
}
.container .nav > ul > li .c-show1 .c-s1 > .c-show2 {
	position: relative;
}
.container .nav > ul > li .c-show1 .c-s1 > .c-show2 .c-s2 {
	position: relative;
}
.container .nav > ul > li .c-show1 .c-s1 > .c-show2 .c-s2 > a {
	text-indent: 35px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 30px;
	margin-right: 40px;
}
.container .nav > ul > li .c-show1 .c-s1 > .c-show2 .c-s2 > a span {
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
}
.container .nav > ul > li .c-show1 .c-s1 .c-s2 .c-show3 {
	position: relative;
}
.container .nav > ul > li .c-show1 .c-s1 .c-s2 .c-show3 .c-s3 a {
	text-indent: 50px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 30px;
}
.container .nav > ul > li .c-show1 .c-s1 .c-s2 .c-show3 .c-s3 a span {
	font-size: 12px;
	font-size: 1.2rem;
	color: #fff;
}
.container .nav > ul > dl {
	padding: 20px;
}
.container .nav > ul > dl dd {
	float: left;
	margin: 0 2px;
}
.container .menubtn {
	width: 23px;
	height: 18px;
	position: absolute;
	top: 15px;
	right: 12px;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	z-index: 99;
}
.container .menubtn span {
	display: block;
	width: 100%;
	height: 3px;
	margin-bottom: 3px;
	background-color: #e64110;
}
 @media screen and (min-width: 768px) {
.container, .nav {
	display: none !important;
}
}
/***********  lunbo  *************/
.banner img {
	max-width: 100%;
	border: 0px solid #ccc;
}
.banner {
	position: relative;
	z-index: 2;
	line-height: 0;
	font-size: 0;
}
.banner .slick-arrow {
	position: absolute;
	z-index: 99;
	display: block !important;
	top: 50%;
	margin-top: -24px;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	width: 48px;
	height: 48px;
	line-height: 48px;
}
.banner .slick-prev {
	left: 70px;
	cursor: pointer;
}
.banner .slick-prev i {
	font-size: 48px;
	font-size: 4.8rem;
	color: #fff;
}
.banner .slick-next {
	right: 70px;
	cursor: pointer;
}
.banner .slick-next i {
	font-size: 48px;
	font-size: 4.8rem;
	color: #fff;
}
.banner .slick-arrow:hover i {
	color: #e64110;
}
.banner .slick-dots {
	position: absolute;
	z-index: 99;
	left: 0;
	right: 0;
	bottom: 26px;
	text-align: center;
	font-size: 0;
	letter-spacing: 0;
	text-align: center;
	display: none !important;
}
.banner .slick-dots li {
	margin: 0 11px;
	display: inline-block;
*display: inline;
*zoom: 1;
}
.banner .slick-dots li.slick-active a {
	background: #e64110;
	cursor: pointer;
}
.banner .slick-dots a {
	display: block;
	width: 16px;
	height: 16px;
	background: #fff;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}
.banner.hide {
	display: none;
}
 @media screen and (max-width: 959px) {
.banner {
	display: block;
}
.banner.hide {
	display: block;
}
.banner .slick-arrow {
	display: none !important;
}
.banner .slick-dots {
	bottom: 10px;
	display: block !important;
}
.banner .slick-dots li {
	margin: 0 5px;
}
.banner .slick-dots a {
	width: 10px;
	height: 10px;
}
.banner2 {
	display: none;
}
.banner .slick-dots {
	display: block;
}
}
.slick-list, .slick-slider, .slick-track {
	position: relative;
	display: block;
}
.slick-loading .slick-slide, .slick-loading .slick-track {
	visibility: hidden;
}
.slick-slider {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: 0;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-list, .slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	top: 0;
	left: 0;
}
.slick-track:after, .slick-track:before {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir=rtl] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}
/***********  head  ************/

.head {
	background: #fff;
	border-top: 6px solid #e64110;
	position: relative;
}
.logo {
	padding-top: 21px;
}
.logo img {
	max-width: 100%;
}
.m-hdlang {
	position: relative;
	overflow: visible;
	float: right;
	margin-top: 29px;
	padding-bottom: 3px;
}
.m-hdlang .lang-list {
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #FFF;
	z-index: 99;
	width: 100%;
	display: none;
	text-align: center;
	font-size: 12px;
	font-size: 1.2rem;
	border: solid 1px #C5C5C5;
	margin-top: -2px;
	padding-top: 3px;
	padding-bottom: 1px;
}
.m-hdlang .lang-item {
	float: none;
	color: #333333;
	line-height: 24px;
}
.m-hdlang .lang-item a {
	color: #555;
}
.m-hdlang .lang-item a:hover {
	color: #e64110;
}
.m-hdlang > .lang-item {
	background: url(../images/web13.png) no-repeat right center;
	padding-right: 35px;
	padding-left: 15px;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 32px;
	padding-bottom: 4px;
	display: inline-block;
	border: 1px solid #ecf0f3;
}
.navlist {
	padding-top: 36px;
}
.navlist2 {
	display: none;
}
.navlist > li {
	float: left;
	margin-left: 47px;
	position: relative;
}
.navlist > li.special {
	position: static;
}
.navlist > li > a {
	font-size: 18px;
	font-size: 1.8rem;
	text-transform: uppercase;
	display: block;
	padding-bottom: 44px;
	font-family:"Microsoft YaHei","微软雅黑";
	border-bottom: 4px solid transparent;
}
.navlist > li:hover > a {
	color: #d83d0f;
	border-bottom: 4px solid #d83d0f;
}
.navlist > li.currentnav > a {
	color: #d83d0f;
	border-bottom: 4px solid #d83d0f;
}
.search {
	margin-top: 38px;
	position: relative;
	margin-right: 26px;
	margin-left: 29px;
}
.search form {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 99;
	display: none;
}
.search > i {
	cursor: pointer;
	font-size: 20px;
	font-size: 2rem;
}
.sou {
	width: 200px;
	height: 28px;
	line-height: 28px;
	padding-left: 10px;
	border: 1px solid #333;
}
.suo {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 18px;
	height: 18px;
	background: transparent;
	cursor: pointer;
}
.search form i {
	position: absolute;
	right: 5px;
	top: 6px;
	width: 18px;
	height: 18px;
}
 @media screen and (max-width: 1219px) {
.navlist > li {
	margin-left: 20px;
}
}
 @media screen and (max-width: 999px) {
.navlist > li > a {
	font-size: 16px;
	font-size: 1.6rem;
	padding-bottom: 35px;
}
.navlist > li {
	margin-left: 15px;
}
.search {
	margin-left: 20px;
}
}
 @media screen and (max-width: 900px) {
.navlist {
	width: 100%;
	padding-top: 25px;
}
.navlist > li {
	width: 20%;
	text-align: center;
	margin: 0;
}
.navlist > li > a {
	padding-bottom: 20px;
}
}
 @media screen and (max-width: 767px) {
.navlist2 {
	display: block;
}
.navlist1 {
	display: none;
}
.navlist > li {
	width: 25%;
	margin-left: 0;
	text-align: center;
}
.navlist > li > a {
	padding-bottom: 15px;
}
}
 @media screen and (max-width: 500px) {
.navlist > li > a {
	font-size: 14px;
	font-size: 1.4rem;
}
.search {
	display: none;
}
.logo {
	width: 220px;
}
}
 @media screen and (max-width: 400px) {
.navlist > li > a {
	font-size: 12px;
	font-size: 1.2rem;
}
.m-hdlang > .lang-item {
	font-size: 14px;
	font-size: 1.4rem;
}
.m-hdlang > .lang-item {
	padding-right: 30px;
	padding-left: 10px;
	padding-bottom: 0;
}
.logo {
	float: none;
	margin: 0 auto;
	display: block;
	padding-top: 52px;
}
.m-hdlang {
	position: absolute;
	top: 5px;
	right: 40px;
	margin-top: 0;
}
}
/************  shejiao  ************/
.shejiao {
	height: 435px;
	background: url(../images/sybg1.jpg) no-repeat center top;
	border-top: 1px solid transparent;
}
.baikuai {
	width: 639px;
	height: 232px;
	background: url(../images/sybg2.png);
	margin: 0 auto;
	text-align: center;
	margin-top: 119px;
}
.baikuai p {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 30px;
	font-size: 3rem;
	text-transform: uppercase;
	padding-top: 47px;
}
.bsjj a {
	margin: 0 24px;
	position: relative;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
	top: 0;
}
.bsjj {
	padding-top: 43px;
}
.bsjj a:hover {
	top: -10px;
}
 @media screen and (max-width: 999px) {
.bsjj {
	padding-top: 25px;
}
.baikuai p {
	padding-top: 35px;
}
.baikuai {
	height: 195px;
	width: 600px;
}
.shejiao {
	height: 370px;
}
.baikuai {
	margin-top: 90px;
}
}
 @media screen and (max-width: 767px) {
.baikuai p {
	font-size: 24px;
	font-size: 2.4rem;
}
.bsjj a {
	margin: 0 10px;
}
.baikuai {
	height: 170px;
	width: 470px;
	margin-top: 80px;
}
.shejiao {
	height: 320px;
}
}
 @media screen and (max-width: 600px) {
.bsjj a svg {
	width: 30px !important;
	height: 30px !important;
}
.bsjj {
	padding-top: 20px;
}
.baikuai p {
	padding-top: 25px;
}
.baikuai {
	height: 140px;
	width: 360px;
	margin-top: 50px;
}
.shejiao {
	height: 250px;
}
}
 @media screen and (max-width: 400px) {
.bsjj a {
	margin: 0 5px;
}
.baikuai p {
	font-size: 20px;
	font-size: 2rem;
}
.baikuai {
	width: 275px;
	height: 120px;
	margin-top: 35px;
}
.baikuai p {
	padding-top: 20px;
}
.shejiao {
	height: 180px;
}
}
/*******  syp  ******/
.syp {
	padding-top: 93px;
	padding-bottom: 63px;
}
.sypbox {
	width: 380px;
	float: left;
	margin-left: 30px;
	position: relative;
}
.sypcon {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}
.sypcon div {
	padding-left: 28px;
	padding-right: 20px;
	padding-bottom: 17px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.sypcon div a {
	display: block;
	color: #fff;
	text-indent: 28px;
}
.sypp1 {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 32px;
	text-transform: uppercase;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-family:"Microsoft YaHei","微软雅黑";
	margin-bottom: 4px;
}
.syptu img {
	display: block;
	width: 100%;
	max-width: 380px;
	max-height: 282px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
}
.syptu {
	display: block;
	overflow: hidden;
}
.sypbox:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.sypp2 {
	line-height: 24px;
	height: 48px;
	overflow: hidden;
}
.sypp1:hover {
	color: #d83d0f;
}
.sypp2:hover {
	color: #d83d0f;
}
 @media screen and (max-width: 1219px) {
.sypbox {
	margin-left: 20px;
	width: 313px;
}
.syp {
	padding-top: 70px;
}
}
 @media screen and (max-width: 999px) {
.sypbox {
	width: 31.333%;
	margin: 0 1%;
}
.syp {
	padding-top: 50px;
}
.sypcon div {
	padding-left: 15px;
	padding-right: 15px;
}
.sypp1 {
	font-size: 16px;
	font-size: 1.6rem;
}
}
 @media screen and (max-width: 767px) {
.sypbox {
	width: 48%;
	margin-bottom: 15px;
}
}
 @media screen and (max-width: 550px) {
.sypbox {
	width: auto;
	float: none;
	max-width: 380px;
	margin: 0 auto;
	margin-bottom: 15px;
}
.syp {
	padding-top: 35px;
}
}
/**********  syhang  ***********/
.syhang {
	background: #d7d6d6;
}
.syhangyou {
	width: 58.333%;
}
.syhangyou img {
	display: block;
	width: 100%;
	max-width: 1120px;
	max-height: 540px;
}
.syhang1 .syhangzuo {
	padding-right: 58.3333%;
}
.syhang2 .syhangzuo {
	padding-left: 58.3333%;
}
.syhang1 .wen {
	width: 48%;
	padding-top: 147px;
	padding-right: 6.625%;
}
.syhang2 .wen {
	width: 48%;
	padding-top: 147px;
	padding-left: 6.625%;
}
.hangp1 {
	font-size: 24px;
	font-size: 2.4rem;
	text-transform: uppercase;
	font-family:"Microsoft YaHei","微软雅黑";
	line-height: 32px;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.hangp2 {
	display: block;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
	/*height: 160px;*/
	overflow: hidden;
	margin-top: 22px;
	margin-bottom: 23px;
	text-indent: 32px;
}
.hangp3 {
	display: block;
	width: 148px;
	height: 44px;
	line-height: 44px;
	border-radius: 3px;
	text-align: center;
	font-size: 16px;
	font-size: 1.6rem;
	color: #333333;
	background: transparent;
	border: 1px solid #595959;
}
.hangp1:hover {
	color: #d83d0f;
}
.hangp2:hover {
	color: #d83d0f;
}
.hangp3:hover {
	background: #d83d0f;
	border: 1px solid #d83d0f;
	color: #fff;
}
 @media screen and (max-width: 1700px) {
.syhang .wen {
	padding-top: 90px;
}
}
 @media screen and (max-width: 1400px) {
.syhang .wen {
	padding-top: 70px;
	width: 60%;
}
}
 @media screen and (max-width: 1219px) {
.hangp1 {
	font-size: 20px;
	font-size: 2rem;
}
.hangp2 {
	font-size: 14px;
	font-size: 1.4rem;
	margin-top: 10px;
	margin-bottom: 15px;
}
.syhang .wen {
	padding-top: 45px;
	width: 70%;
}
}
 @media screen and (max-width: 999px) {
.syhangyou {
	float: none;
	width: 100%;
}
.syhang .syhangzuo {
	padding: 0;
}
.syhang .wen {
	float: none;
	width: auto;
	padding: 20px;
}
.hangp2 {
	height: auto;
}
}
 @media screen and (max-width: 767px) {
.syp {
	padding-bottom: 30px;
}
}
/***************  syn  *************/
.syn {
	padding-top: 74px;
	padding-bottom: 70px;
	background: #f0f0f0;
}
.sybt {
	text-align: center;
	text-transform: uppercase;
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 36px;
	font-size: 3.6rem;
}
.sybt a:hover {
	color: #d83d0f;
}
.syn .sybt {
	margin-bottom: 41px;
}
.synbox {
	width: 368px;
	float: left;
	margin-left: 48px;
}
.syntu {
	display: block;
	overflow: hidden;
}
.syntu img {
	display: block;
	width: 100%;
	max-width: 368px;
	max-height: 248px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
}
.syntu img:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.synp1 {
	display: block;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 22px;
	font-family:"Microsoft YaHei","微软雅黑";
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin-top: 21px;
	margin-bottom: 18px;
}
.synbox span {
	font-size: 14px;
	font-size: 1.4rem;
	color: #555555;
}
.synp2 {
	display: block;
	line-height: 30px;
	height: 60px;
	overflow: hidden;
	margin-top: 7px;
	margin-bottom: 15px;
	text-indent: 28px;
}
.synp3 {
	display: block;
	width: 148px;
	height: 44px;
	line-height: 44px;
	border-radius: 3px;
	font-size: 16px;
	font-size: 1.6rem;
	color: #666666;
	border: 1px solid #595959;
	text-align: center;
}
.synp1:hover {
	color: #d83d0f;
}
.synp2:hover {
	color: #d83d0f;
}
.synp3:hover {
	background: #d83d0f;
	border: 1px solid #d83d0f;
	color: #fff;
}
 @media screen and (max-width: 1219px) {
.synbox {
	margin-left: 25px;
	width: 310px;
}
}
 @media screen and (max-width: 999px) {
.synbox {
	width: 31.333%;
	margin: 0 1%;
}
.syn {
	padding-top: 40px;
	padding-bottom: 40px;
}
.syn .sybt {
	margin-bottom: 30px;
}
}
 @media screen and (max-width: 767px) {
.sybt {
	font-size: 30px;
	font-size: 3rem;
}
.synp1 {
	font-size: 16px;
	font-size: 1.6rem;
}
.syn {
	padding-bottom: 20px;
}
}
 @media screen and (max-width: 650px) {
.synbox {
	width: 48%;
	margin-bottom: 30px;
}
}
 @media screen and (max-width: 500px) {
.synp3 {
	font-size: 14px;
	font-size: 1.4rem;
	width: 118px;
	height: 36px;
	line-height: 36px;
}
}
 @media screen and (max-width: 400px) {
.synbox {
	float: none;
	width: auto;
	max-width: 368px;
	margin: 0 auto;
	margin-bottom: 20px;
}
}
/***********  sydesign  ***********/
.sydesign {
	padding-top: 59px;
	padding-bottom: 121px;
}
.desp1 {
	display: block;
	font-size: 16px;
	font-size: 1.6rem;
	color: #555555;
	text-align: center;
	line-height: 30px;
	max-width: 1080px;
	margin: 0 auto;
	text-align: center;
	margin-top: 32px;
	margin-bottom: 28px;
}
.desp2 {
	display: block;
	width: 148px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	border-radius: 3px;
	font-size: 16px;
	font-size: 1.6rem;
	color: #666666;
	border: 1px solid #595959;
	margin: 0 auto;
	margin-bottom: 45px;
}
.desp3 img {
	display: block;
	width: 100%;
	max-width: 1200px;
	max-height: 551px;
}
.desp1:hover {
	color: #d83d0f;
}
.desp2:hover {
	background: #d83d0f;
	border: 1px solid #d83d0f;
	color: #fff;
}
 @media screen and (max-width: 1219px) {
.sydesign {
	padding-bottom: 90px;
}
}
 @media screen and (max-width: 767px) {
.desp1 {
	font-size: 14px;
	font-size: 1.4rem;
}
.sydesign {
	padding-top: 40px;
	padding-bottom: 50px;
}
}
 @media screen and (max-width: 500px) {
.sybt {
	font-size: 24px;
	font-size: 2.4rem;
}
.desp2 {
	font-size: 14px;
	font-size: 1.4rem;
	width: 118px;
	height: 36px;
	line-height: 36px;
}
.desp1 {
	margin-top: 20px;
}
.sydesign {
	padding-bottom: 30px;
}
}
/*************  bottom  ************/
.bottom {
	background: #333333;
	padding-top: 64px;
	padding-bottom: 34px;
}
.bottom p, .bottom li, .bottom a, .bottom span {
	color: #dfdfdf;
}
.bottom a:hover {
	color: #e64110;
}
.div > a, .div > span {
	display: block;
	font-size: 22px;
	font-size: 2.2rem;
	color: #ffffff;
	margin-bottom: 23px;
	text-transform: uppercase;
}
.div1 {
	width: 308px;
	margin-right: 65px;
}
.div1 p {
	line-height: 32px;
	margin-bottom: 10px;
}
.intdiv1 input {
	width: 295px;
	height: 33px;
	line-height: 33px;
	padding-left: 11px;
	color: #b7b7b7;
	background: transparent;
	border: 1px solid #ffffff;
}
.intdiv1 {
	margin-bottom: 20px;
}
.intdiv2 .sycapt {
	width: 76px;
	height: 33px;
	line-height: 33px;
	padding-left: 11px;
	color: #b7b7b7;
	background: transparent;
	border: 1px solid #ffffff;
	float: left;
}
.intdiv2 img {
	display: block;
	float: left;
	cursor: pointer;
}
.intdiv2 .sygo {
	width: 104px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: #e64110;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	float: right;
	cursor: pointer;
}
.div2 {
	margin-right: 68px;
}
.div2 li {
	line-height: 36px;
	font-size: 16px;
	font-size: 1.6rem;
}
.div3 {
	margin-right: 86px;
}
.div3 li {
	line-height: 36px;
	font-size: 14px;
	font-size: 1.4rem;
}
.div4 li {
	line-height: 36px;
	font-size: 14px;
	font-size: 1.4rem;
}
.div5 li {
	line-height: 36px;
	font-size: 14px;
	font-size: 1.4rem;
}
.copyright, .support {
	line-height: 30px;
}
.cnzz {
	padding-left: 10px;
}
.dibu {
	border-top: 1px solid #979797;
	margin-top: 58px;
	padding-top: 29px;
}
.link {
	padding-top: 11px;
	line-height: 30px;
	min-height: 30px;
}
.link a {
	padding: 0 20px;
}
.link a, .link span {
	display: inline-block;
}
.link a:hover {
	color: #e64110;
}
 @media screen and (max-width: 1219px) {
.div1 {
	margin-right: 30px;
}
.div2 {
	margin-right: 30px;
}
.div3 {
	margin-right: 30px;
}
.div1 {
	width: 290px;
}
.intdiv1 input {
	width: 277px;
}
.intdiv2 .sygo {
	width: 90px;
}
}
 @media screen and (max-width: 999px) {
.div1 form {
	width: 290px;
}
.div1 {
	width: 40%;
	margin: 0;
}
.div2, .div3 {
	width: 30%;
	margin: 0;
	margin-bottom: 10px;
}
.div4 {
	width: 40%;
}
.div5 {
	width: 60%;
}
.div > a, .div > span {
	font-size: 20px;
	font-size: 2rem;
}
.bottom {
	padding-top: 40px;
}
.dibu {
	margin-top: 30px;
}
}
 @media screen and (max-width: 800px) {
.div1 {
	width: 44%;
}
.div2, .div3 {
	width: 28%;
}
.div4 {
	width: 44%;
}
.div5 {
	width: 56%;
}
}
 @media screen and (max-width: 767px) {
.div {
	display: none;
}
.bottom {
	padding-top: 20px;
	padding-bottom: 50px;
}
.link {
	display: none;
}
.dibu {
	padding-top: 0;
	margin-top: 0;
	border: none;
}
}
/************  bread  *************/
.mianbao {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 24px;
	color: #555555;
	padding-top: 18px;
	text-transform: uppercase;
	padding-bottom: 15px;
	border-bottom: 1px solid #bfbfbf;
	font-family:"Microsoft YaHei","微软雅黑";
}
.mianbao a {
	color: #555555;
}
.mianbao a:hover {
	color: #e64110;
}
.co00 {
	color: #e64110 !important;
}
.fymain {
	padding-top: 67px;
	padding-bottom: 100px;
}
/**********  news1  **********/
.news1 .synbox {
	margin-bottom: 54px;
}
.ms_ye {
	position: relative;
	margin-top: 39px;
	text-align: right;
}
.ms_ye a {
	display: inline-block;
	width: 33px;
	line-height: 28px;
	text-align: center;
	margin-left: 2px;
	margin-right: 3px;
	font-size: 12px;
	font-size: 1.2rem;
	background: #fff;
	color: #333333;
	border: 1px solid #e5e5e5;
}
.ms_sx {
	width: 59px !important;
	background: none !important;
	color: #333 !important;
}
.ms_sx:hover {
	color: #e64110 !important;
}
.ms_ye .ms_current_ye {
	color: #e64110;
	border: 1px solid #e64110;
}
.ms_ye a:hover {
	color: #e64110;
	border: 1px solid #e64110;
}
 @media screen and (max-width: 999px) {
.news1 .synbox {
	margin-bottom: 40px;
}
.ms_ye a {
	margin-bottom: 10px;
}
.fymain {
	padding-top: 30px;
	padding-bottom: 40px;
}
.ms_ye {
	text-align: center;
}
}
/**********  news2  **********/
.nyou {
	width: 276px;
}
.nzuo {
	width: 869px;
}
.nyou li {
	padding-top: 36px;
	border-top: 1px solid #bfbfbf;
	margin-bottom: 20px;
}
.nyou li:first-child {
	padding-top: 0;
	border-top: none;
}
.cenp {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	display: block;
	font-family:"Microsoft YaHei","微软雅黑";
	margin-top: 11px;
	margin-bottom: 11px;
}
.centu img {
	display: block;
	width: 100%;
	max-width: 368px;
	max-height: 248px;
}
.nyou li span {
	color: #555555;
}
.cenp:hover {
	color: #e64110;
}
.xwxbt {
	font-size: 24px;
	font-size: 2.4rem;
	color: #333333;
	line-height: 30px;
	font-family:"Microsoft YaHei","微软雅黑";
}
.xwsjsjj {
	line-height: 26px;
	padding-top: 20px;
}
.xwsjsjj p {
	display: inline-block;
	color: #555555;
	padding-right: 30px;
	display: inline-block;
}
.nshare {
	display: inline-block;
}
.nshare1 {
	color: #555555;
	display: inline-block;
	position: relative;
	padding-right: 5px;
}
.nshare2 {
	display: inline-block;
	vertical-align: middle;
}
.nex {
	color: #333333;
	line-height: 26px;
	padding-top: 20px;
	padding-bottom: 62px;
	border-bottom: 1px solid #d2d2d2;
	margin-bottom: 42px;
}
.nex p, .nex li, .nex div, .nex span, .nex b {
	color: #333333;
}
.nex a {
	color: #e64110;
}
.nex p{text-indent: 28px;}
.nex p img{display: inherit;max-width: 100%;}
.xwsx {
	color: #333333;
	line-height: 26px;
	margin-bottom: 13px;
}
.xwsx span {
	color: #888888;
	display: inline-block;
	margin-right: 10px;
	text-transform: uppercase;
	font-family:"Microsoft YaHei","微软雅黑";
}
.xwsx span i {
	color: #e64110;
	font-size: 26px;
	font-size: 2.6rem;
	vertical-align: middle;
	margin-right: 10px;
}
.xwsx a {
	color: #333;
}
.xwsx a:hover {
	color: #e64110;
}
 @media screen and (max-width: 1219px) {
.nzuo {
	width: 665px;
}
}
 @media screen and (max-width: 999px) {
.nzuo {
	width: 100%;
}
.nyou {
	width: 100%;
	margin-top: 30px;
}
.nyou li {
	padding-top: 0;
	border: none;
	float: left;
	width: 31.333%;
	margin: 0 1%;
}
}
 @media screen and (max-width: 767px) {
.xwxbt {
	font-size: 20px;
	font-size: 2rem;
}
.nex {
	padding-bottom: 40px;
}
.nyou li {
	width: 48%;
}
}
 @media screen and (max-width: 550px) {
.cenp {
	font-size: 16px;
	font-size: 1.6rem;
}
}
 @media screen and (max-width: 350px) {
.nyou li {
	width: 98%;
	margin-bottom: 20px;
}
}
/*************  contact  *************/
.contact {
	background: url(../images/contactbg.jpg) repeat-y center top;
	padding-bottom: 0;
}
.czuo {
	padding-top: 47px;
	width: 460px;
}
.czuo p {
	font-size: 30px;
	font-size: 3rem;
	margin-bottom: 73px;
}
.czuo p::after {
	content: "";
	display: block;
	width: 67px;
	height: 1px;
	background: #e64110;
	margin-top: 19px;
}
.lxfs li {
	line-height: 36px;
}
.lxfs li i {
	font-size: 17px;
	font-size: 1.7rem;
	color: #666666;
	margin-right: 8px;
}
.lxfs a:hover {
	color: #e64110;
}
.ditu img {
	width: 100%;
	max-width: 1920px;
	max-height: 504px;
	display: block;
}
.ditu {
	padding-top: 203px;
}
.cyou {
	width: 664px;
	padding-top: 47px;
}
.cyou span {
	display: block;
	text-align: center;
	font-size: 30px;
	font-size: 3rem;
	margin-bottom: 27px;
}
.whether {
	color: #666666;
	line-height: 30px;
	padding-bottom: 36px;
	padding-left: 10px;
	text-indent: 28px;
}
.coxinn {
	margin-top: -10px;
}
.coxin .xing {
	background: url(../images/xing.png) no-repeat left 24px;
	padding-left: 14px;
}
.coxin .tex.xing {
	background: url(../images/xing.png) no-repeat left 40px;
	padding-left: 14px;
}
.coxinn .int1 {
	padding-left: 14px;
	float: left;
	margin-top: 23px;
}
.coxinn .int2 {
	padding-left: 14px;
	float: right;
	margin-top: 23px;
}
.coxinn .int1 input, .coxinn .int2 input {
	width: 297px;
	height: 52px;
	padding-left: 14px;
	border: 1px solid #d2d2d2;
	color: #a6a6a6;
}
.coxinn textarea {
	width: 631px;
	height: 191px;
	padding-left: 15px;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 38px;
	border: 1px solid #d2d2d2;
	margin-top: 23px;
	color: #a6a6a6;
}
.coxinn .int5 {
	margin-top: 21px;
}
.coxinn .int3 {
	width: 163px;
	height: 52px;
	padding-left: 13px;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 42px;
	text-transform: uppercase;
	float: left;
	border: 1px solid #d2d2d2;
	color: #a6a6a6;
}
.coxin .coyanzheng {
	width: 178px;
	height: 54px;
	float: left;
	margin-left: 22px;
	cursor: pointer;
}
.coxinn .int4 {
	width: 250px;
	height: 54px;
	float: right;
	background: #e64110;
	color: #fff;
	cursor: pointer;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-webkit-transition: 0.5s;
}
.coxinn .int4:hover {
	background: #d23a0c;
}
 @media screen and (min-width: 1000px) and (max-width: 1219px) {
.czuo {
	width: 310px;
	padding-top: 0;
}
.cyou {
	width: 550px;
	padding-top: 0;
}
.coxinn .int1 input, .coxinn .int2 input {
	width: 240px;
}
.coxinn textarea {
	width: 519px;
}
.coxinn .int3 {
	width: 115px;
}
.coxinn .int4 {
	width: 170px;
}
.coxinn {
	padding-top: 0;
}
.ditu {
	padding-top: 110px;
}
}
 @media screen and (max-width: 999px) {
.contact {
	background: #fff;
}
.czuo {
	width: 100%;
	padding-top: 0;
}
.czuo p {
	margin-bottom: 25px;
}
.cyou {
	width: 100%;
	padding-top: 30px;
}
.colianxi {
	background: none;
}
.coxinfeng, .cochuanzhen, .codingwei {
	width: 30%;
	margin-left: 1.5%;
	margin-right: 1.5%;
	margin-top: 20px;
}
.coxin {
	height: auto;
	margin-top: auto;
}
.coxinn {
	width: auto;
}
.coxinn .int1, .coxinn .int2 {
	width: auto;
	float: none;
}
.coxinn .int1 input, .coxinn .int2 input {
	width: -webkit-calc(100% - 14px);
	width: -moz-calc(100% - 14px);
	width: calc(100% - 14px);
}
.coxinn textarea {
	width: -webkit-calc(100% - 15px);
	width: -moz-calc(100% - 15px);
	width: calc(100% - 15px);
}
.ditu {
	max-width: 100%;
	padding-top: 40px;
}
.coxinn .int4 {
	width: 100%;
	margin-top: 20px;
}
.coxinn .int3 {
	width: 30%;
}
.whether {
	padding-bottom: 15px;
}
}
 @media screen and (max-width: 500px) {
.coxinn .int3 {
	width: -webkit-calc(100% - 13px);
	width: -moz-calc(100% - 13px);
	width: calc(100% - 13px);
}
.coxin .coyanzheng {
	margin-left: 0;
	margin-top: 23px;
}
}
/*************  sate1  ************/
.s1tu1 img {
	display: block;
	width: 100%;
	max-width: 1200px;
	max-height: 534px;
}
.s1tu1 {
	margin-bottom: 27px;
}
.s1p1 {
	font-size: 30px;
	font-size: 3rem;
	font-family:"Microsoft YaHei","微软雅黑";
	margin-bottom: 31px;
	padding-top: 20px;
}
.s1p1::after {
	content: "";
	display: block;
	width: 114px;
	height: 3px;
	background: #e64110;
	margin-top: 17px;
}
.s1p2 {
	font-size: 16px;
	font-size: 1.6rem;
	color: #555555;
	line-height: 28px;
	margin-bottom: 28px;
	text-indent: 32px;
}
.zjplist .img-scroll {
	position: relative;
	padding-top: 15px;
}
.lbbtn {
	position: absolute;
	top: -90px;
	text-align: center;
	background: #fff;
	right: 0;
	width: 72px;
}
.zjplist .prev, .zjplist .next {
	display: block;
	color: #fff;
	text-align: center;
}
.zjplist .prev i, .zjplist .next i {
	font-size: 32px;
	font-size: 3.2rem;
	color: #666666;
}
.zjplist .prev:hover i, .zjplist .next:hover i {
	color: #2c2c2c;
}
.zjplist .prev {
	cursor: pointer;
	float: left;
}
.zjplist .next {
	cursor: pointer;
	float: right;
}
.zjplist .img-list {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
	padding-bottom: 10px;
}
.zjplist .img-list ul {
	width: 10000%;
}
.zjplist .img-list li {
	float: left;
	display: inline;
	width: 376px;
	margin-right: 35px;
	position: relative;
	position: relative;
	text-align: center;
}
.zjptu img {
	display: block;
	width: 100%;
	max-width: 376px;
	max-height: 278px;
}
.zjpbox p {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 28px;
	margin-top: 23px;
}
 @media screen and (max-width: 1219px) {
.zjplist .img-list li {
	margin-right: 25px;
	width: 310px;
}
}
 @media screen and (max-width: 999px) {
.zjplist .img-list li {
	width: 0.31333%;
	margin: 0 .01%;
}
.lbbtn {
	top: -70px;
}
}
 @media screen and (max-width: 650px) {
.zjplist .img-list li {
	width: 0.48%;
}
.s1p1 {
	font-size: 24px;
	font-size: 2.4rem;
}
.s1tu1 {
	margin-bottom: 5px;
}
}
 @media screen and (max-width: 400px) {
.s1p2 {
	font-size: 14px;
	font-size: 1.4rem;
	margin-bottom: 15px;
}
.zjplist .img-list li {
	width: 0.98%;
}
}
/*************  sate2  ************/
.sate2box {
	border: 1px solid #bfbfbf;
	padding: 14px;
	position: relative;
	padding-right: 50px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
	margin-bottom: 35px;
}
.sate2tu img {
	display: block;
	width: 100%;
	max-width: 386px;
	max-height: 259px;
}
.sate2nr1 {
	padding-left: 417px;
}
.sate2nr1 .title1 {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 30px;
	font-size: 3rem;
	padding-top: 106px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
	margin-bottom: 0;
}
.sate2nr1 div {
	display: none;
}
.sate2nr1 div p {
	display: block;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
	padding-top: 19px;
	text-indent: 32px;
}
.sate2nr1 div a {
	margin-right: 23px;
}
.sate2nr1 div p img {
	max-width: 100%;
}
.zhankai {
	position: absolute;
	right: 22px;
	top: 50%;
	margin-top: -14px;
	cursor: pointer;
}
.zhankai i {
	font-size: 28px;
	font-size: 2.8rem;
	color: #888888;
}
.shouqi i {
	font-size: 28px;
	font-size: 2.8rem;
	color: #888888;
}
.shouqi {
	display: block;
	width: 30px;
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
	display: none;
}
 @media screen and (max-width: 1219px) {
.sate2nr1 div p {
	padding-top: 10px;
	font-size: 14px;
	font-size: 1.4rem;
}
}
 @media screen and (max-width: 999px) {
.sate2nr1 div p {
	padding-top: 0;
	line-height: 26px;
}

.sate2nr1 div a img {
	width: 110px;
}
.sate2tu {
	width: 320px;
}
.sate2nr1 {
	padding-left: 335px;
}
.sate2nr1 div {
	display: block !important;
}
.zhankai, .shouqi {
	display: none !important;
}
.sate2nr1 .title1 {
	padding-top: 6px;
	font-size: 20px;
	font-size: 2rem;
	margin-bottom: 5px;
}
}
 @media screen and (max-width: 640px) {
.sate2nr1 div p {
	display: inline-flex;
}
}
 @media screen and (max-width: 767px) {
.sate2tu {
	float: none;
	width: auto;
	max-width: 386px;
	margin: 0 auto;
}
.sate2nr1 {
	padding-left: 0;
	margin-top: 10px;
}
.sate2box {
	padding-right: 14px;
}
}
/*************  sate3  ************/
.sate3 .wp > p {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 30px;
	margin-bottom: 41px;
}
.sate3box {
	position: relative;
	margin-bottom: 34px;
}
.sate3con1, .sate3con2 {
	-webkit-box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
.sate3con1 > div, .sate3con2 > div {
	padding-left: 37px;
	padding-top: 25px;
	padding-right: 95px;
	padding-bottom: 46px;
	position: relative;
	background: #fff;
}
.sate3con2 > div {
	padding-bottom: 16px;
}
.sate3con2 {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	display: none;
	z-index: 999;
}
.sate3con2 > div {
	border: 2px solid #e64110;
}
.biao {
	position: absolute;
	left: 37px;
	top: 37px;
}
.biaonr {
	padding-left: 127px;
}
.biaop1 {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 20px;
	font-size: 2rem;
	line-height: 40px;
}
.biaop2 p {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
	margin-top: 5px;
}
.biaop2 {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
	margin-top: 5px;
	text-indent: 32px;
}
.tuji {
	margin-top: 12px;
}
.img1 {
	width: 35%;
}
.img2 {
	width: 64%;
}
.zhankai2 {
	position: absolute;
	right: 22px;
	top: 50%;
	margin-top: -14px;
	cursor: pointer;
}
.zhankai2 i {
	font-size: 28px;
	font-size: 2.8rem;
	color: #888888;
}
.shouqi2 i {
	font-size: 28px;
	font-size: 2.8rem;
	color: #888888;
}
.shouqi2 {
	width: 30px;
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
	display: block;
	margin-top: 18px;
}
 @media screen and (max-width: 999px) {
.sate3con1 {
	display: none !important;
}
.sate3con2 {
	display: block !important;
	position: static;
}
.shouqi2 {
	display: none;
}
}
 @media screen and (max-width: 767px) {
.biaop2 p {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 26px;
}
.sate3con1 > div, .sate3con2 > div {
	padding-right: 20px;
	padding-left: 20px;
}
.biao img {
	width: 80px;
}
.biao {
	left: 20px;
}
.biaonr {
	padding-left: 88px;
}
}
 @media screen and (max-width: 450px) {
.biao {
	position: static;
}
.biaonr {
	padding-left: 0px;
}
}
/*************  sate4  ************/
.s4p1 {
	font-size: 20px;
	font-size: 2rem;
	font-family:"Microsoft YaHei","微软雅黑";
	line-height: 40px;
}
.s4p2 {
	font-size: 16px;
	font-size: 1.6rem;
	color: #555555;
	line-height: 28px;
	margin-top: 8px;
	text-indent: 32px;
}
.apart1 {
	padding-bottom: 48px;
}
.apart2 img {
	display: block;
	max-width: 100%;
}
.apart3 {
	padding-top: 66px;
	padding-bottom: 84px;
}
.s4zuo img {
	display: block;
	width: 100%;
	max-width: 554px;
	max-height: 317px;
}
.s4zuo {
	margin-right: 34px;
}
.s4you {
	padding-top: 85px;
}
.s4you span {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 20px;
	font-size: 2rem;
	text-transform: uppercase;
}
.s4you p {
	font-size: 16px;
	font-size: 1.6rem;
	color: #555555;
	line-height: 28px;
	margin-top: 17px;
	text-indent: 32px;
}
.s4zuo2 {
	margin-left: 34px;
	margin-top: 32px;
}
.s4zuo2 img {
	display: block;
	width: 100%;
	max-width: 554px;
	max-height: 317px;
}
.s4you2 {
	padding-top: 120px;
}
.s4you2 span {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 20px;
	font-size: 2rem;
	text-transform: uppercase;
}
.s4you2 p {
	font-size: 16px;
	font-size: 1.6rem;
	color: #555555;
	line-height: 28px;
	margin-top: 17px;
	text-indent: 32px;
}
.apart4 {
	background: #333333;
}
.s4zuo3 img {
	display: block;
	width: 100%;
	max-width: 934px;
	max-height: 498px;
}
.s4zuo3 {
	width: 48.64%;
}
.s4you3 {
	margin-left: 51.97%;
	padding-top: 147px;
	margin-right: 18.75%;
}
.s4you3 p, .s4you3 span {
	color: #fff;
}
.s4you3 span {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 20px;
	font-size: 2rem;
	display: block;
	text-transform: uppercase;
}
.s4you3 p {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 28px;
	margin-top: 46px;
	text-indent: 32px;
}
.apart5 {
	padding-top: 50px;
	background: #fff;
}
.s4you4 img {
	display: block;
	width: 100%;
	max-width: 937px;
	max-height: 498px;
}
.s4you4 {
	width: 48.8%;
}
.s4zuo4 {
	margin-right: 51.97%;
	padding-top: 153px;
	margin-left: 18.75%;
}
.s4zuo4 span {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 20px;
	font-size: 2rem;
	display: block;
	text-transform: uppercase;
}
.s4zuo4 p {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 28px;
	margin-top: 15px;
	color: #555555;
	text-indent: 32px;
}
.apart6 {
	padding-top: 44px;
}
.s4zuo5 img {
	display: block;
	width: 100%;
	max-width: 554px;
	max-height: 317px;
}
.s4zuo5 {
	margin-right: 33px;
}
.s4you5 {
	padding-top: 90px;
}
.s4you5 span {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 20px;
	font-size: 2rem;
	display: block;
	text-transform: uppercase;
}
.s4you5 p {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 28px;
	margin-top: 15px;
	color: #555555;
	text-indent: 32px;
}
.apart6 .s4p1 {
	margin-top: 83px;
}
 @media screen and (max-width: 1700px) {
.s4you3 {
	padding-top: 90px;
}
.s4zuo4 {
	padding-top: 90px;
}
}
 @media screen and (max-width: 1500px) {
.s4you3 {
	padding-top: 50px;
}
.s4zuo4 {
	padding-top: 50px;
}
}
 @media screen and (max-width: 1400px) {
.s4you3 {
	margin-right: 10%;
}
.s4zuo4 {
	margin-left: 10%;
}
}
 @media screen and (max-width: 1219px) {
.s4you3 p {
	margin-top: 20px;
}
.s4you5 {
	padding-top: 40px;
}
.s4zuo {
	width: 450px;
}
.s4you {
	padding-top: 40px;
}
.s4zuo2 {
	width: 450px;
}
.s4you2 {
	padding-top: 50px;
}
.s4zuo5 {
	width: 450px;
}
.s4zuo4 {
	padding-top: 0;
	margin-left: 2%;
}
.s4you3 {
	padding-top: 20px;
	margin-right: 2%;
}
}
 @media screen and (max-width: 999px) {
.s4zuo3 {
	width: auto;
	float: none;
	max-width: 934px;
	margin: 0 auto;
}
.s4you3 {
	margin: 0;
	padding: 20px;
}
.s4you4 {
	width: auto;
	float: none;
	max-width: 937px;
	margin: 0 auto;
}
.s4zuo4 {
	margin: 0;
	padding: 20px;
}
.s4you5 {
	padding-top: 15px;
}
.apart6 .s4p1 {
	margin-top: 30px;
}
.s4you {
	padding-top: 15px;
}
.apart3 {
	padding-bottom: 50px;
}
}
 @media screen and (max-width: 900px) {
.s4zuo {
	width: 370px;
}
.s4zuo2 {
	width: 370px;
	margin-left: 20px;
}
.apart6 {
	padding-top: 20px;
}
.s4zuo5 {
	width: 370px;
}
.s4you5 {
	padding-top: 0;
}
.s4you {
	padding-top: 0;
}
.s4you2 {
	padding-top: 33px;
}
}
 @media screen and (max-width: 767px) {
.s4zuo {
	float: none;
	width: auto;
	max-width: 554px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.apart3 {
	padding-top: 35px;
}
.s4zuo2 {
	float: none;
	width: auto;
	max-width: 554px;
	margin: 0 auto;
	margin-bottom: 20px;
	margin-top: 20px;
}
.s4you2 {
	padding-top: 0;
}
.apart3 {
	padding-bottom: 30px;
}
.apart5 {
	padding-top: 25px;
}
.s4zuo5 {
	float: none;
	width: auto;
	max-width: 554px;
	margin: 0 auto;
	margin-bottom: 20px;
}
}
/**********   product1   **********/
.product1 {
	padding-top: 5px;
}
.dingwei {
	position: relative;
	padding-top: 59px;
}
.fllist {
	width: 1142px;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	margin-left: -571px;
	background: #fff;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
	padding-top: 11px;
	padding-bottom: 10px;
	top: -37px;
	z-index: 99;
	border-radius: 5px;
}
.fllist li {
	float: left;
	padding: 0 53px;
	border-left: 1px solid #bfbfbf;
	line-height: 66px;
	font-size: 20px;
	font-size: 2rem;
	font-family:"Microsoft YaHei","微软雅黑";
	text-align: center;
}
.fllist li a {
	display: block;
}
.fllist li:first-child {
	border: none;
}
.fllist li.current a {
	color: #e64110;
}
.fllist li.current {
	background: url(../images/xiajt.png) no-repeat center 50px;
}
.fllist li:hover a {
	color: #e64110;
}
.fllist li:hover {
	background: url(../images/xiajt.png) no-repeat center 50px;
}
.p1hang {
	padding-bottom: 41px;
	border-bottom: 1px solid #7d7d7d;
	padding-top: 74px;
}
.p1hang.noborder {
	border-bottom: none;
	padding-bottom: 0;
}
.p1bt {
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 32px;
	font-family:"Microsoft YaHei","微软雅黑";
	text-align: center;
	margin-bottom: 20px;
	margin-bottom: 58px;
}
.pbox {
	width: 286px;
	float: left;
	margin-left: 18px;
	margin-bottom: 52px;
}
.ptu {
	display: block;
	border: 1px solid transparent;
}
.ptu:hover {
	border: 1px solid #e64110;
}
.ptu img {
	display: block;
	width: 100%;
	max-width: 673px;
	max-height: 498px;
}
.pp1 {
	display: block;
	font-size: 20px;
	font-size: 2rem;
	line-height: 24px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-top: 20px;
	font-family:"Microsoft YaHei","微软雅黑";
}
.pp2 {
	display: block;
	color: #333333;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	margin-top: 11px;
}
.pp1:hover {
	color: #e64110;
}
.pp2:hover {
	color: #e64110;
}
.pcon {
	position: relative;
	overflow: hidden;
}
.pcon .biao {
	width: 102px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	color: #fff;
	font-family:"Microsoft YaHei","微软雅黑";
	background: #1b1b1b;
	position: absolute;
	left: 0;
	top: 0;
}
 @media screen and (max-width: 1219px) {
.pbox {
	width: 231px;
}
.fllist {
	width: 980px;
	margin-left: -490px;
}
.fllist li {
	font-size: 16px;
	font-size: 1.6rem;
}
}
 @media screen and (max-width: 999px) {
.fllist {
	position: static;
	margin-left: 0;
	width: 100%;
	margin-top: 20px;
}
.fllist li {
	padding: 0;
	width: 33.3333%;
	border: none;
	font-size: 14px;
	font-size: 1.4rem;
}
.dingwei {
	padding-top: 0;
}
.p1hang {
	padding-top: 50px;
}
.pbox {
	width: 23%;
	margin: 0 1%;
	margin-bottom: 30px;
}
.pp1 {
	font-size: 14px;
	font-size: 1.4rem;
}
.product1 {
	padding-top: 20px;
}
}
 @media screen and (max-width: 767px) {
.pp1 {
	margin-top: 10px;
}
.pbox {
	width: 31.333%;
}
.fllist li.current {
	background: none;
}
.fllist li:hover {
	background: none;
}
.fllist li {
	line-height: 32px;
	width: 100%;
}
.p1bt {
	font-size: 20px;
	font-size: 2rem;
	margin-bottom: 30px;
}
.p1hang {
	padding-top: 35px;
}
}
 @media screen and (max-width: 550px) {
.pbox {
	width: 48%;
}
.ms_sx {
	margin: 0 6px !important;
}
.p1hang {
	padding-bottom: 20px;
}
}
/************  product2  *************/
.product2 {
	padding-bottom: 0;
}
.p2hang2 {
	padding-top: 42px;
	padding-bottom: 86px;
	background: #f8f8f8;
	margin-top: 73px;
}
.left-pro {
	width: 673px;
}
.datu img {
	display: block;
	width: 100%;
	max-width: 673px;
	max-height: 498px;
}
.datu {
	border: 1px solid #dcdcdc;
}
.xiaotu li {
	width: 123px;
	float: left;
	margin-top: 15px;
	margin-left: 14px;
	cursor: pointer;
}
.xiaotu li img {
	display: block;
	width: 100%;
	max-width: 673px;
	max-height: 498px;
	border: 1px solid #dcdcdc;
}
.title {
	padding-bottom: 27px;
	border-bottom: 1px solid #bfbfbf;
}
.title h1 {
	font-size: 32px;
	font-size: 3.2rem;
	padding-bottom: 18px;
	line-height: 36px;
	color: #333333;
	font-family:"Microsoft YaHei","微软雅黑";
}
.title h2 {
	font-size: 18px;
	font-size: 1.8rem;
	color: #666666;
	line-height: 30px;
	font-weight: normal;
}
.content {
	width: 480px;
}
.content b {
	font-weight: normal;
	font-size: 22px;
	font-size: 2.2rem;
	color: #333333;
	display: block;
	margin-top: 20px;
	font-family:"Microsoft YaHei","微软雅黑";
}
.cpxx {
	line-height: 26px;
	color: #555555;
	font-size: 16px;
	font-size: 1.6rem;
	padding-top: 12px;
	border-bottom: 1px solid #bfbfbf;
	padding-bottom: 26px;
}
.cpxx p, .cpxx li, .cpxx span, .cpxx b {
	color: #555555;
}
.cpxx a {
	color: #e64110;
}
.cpxx img, .cpxx iframe {
	max-width: 100%;
}
.cpxxtu {
	padding-bottom: 23px;
	border-bottom: 1px solid #bfbfbf;
	margin-top: 24px;
}
.cpxxtu img {
	margin: 0 8px;
}
.btn {
	padding-top: 24px;
}
.btn a {
	display: inline-block;
	width: 480px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	color: #555555;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
	font-size: 16px;
	font-size: 1.6rem;
	background: #fff;
	text-transform: uppercase;
	border: 1px solid #7d7d7d;
}
.btn a i {
	color: #555555;
	font-size: 20px;
	font-size: 2rem;
	margin-right: 5px;
}
.btn a:hover {
	background: #ed1c24;
	color: #fff;
	border: 1px solid #e64110;
}
.btn a:hover i {
	color: #fff;
}
.btn1 {
	margin-bottom: 22px;
}
.share {
	padding-top: 35px;
}
.share1 {
	display: inline-block;
	position: relative;
	top: 3px;
	padding-right: 4px;
	color: #555555;
	font-size: 16px;
	font-size: 1.6rem;
}
.share2 {
	display: inline-block;
}
.p2bt {
	text-align: center;
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 30px;
	font-size: 3rem;
	text-transform: uppercase;
	margin-bottom: 52px;
}
.p2bt2 {
	margin-top: 75px;
	margin-bottom: 20px;
}
.des {
	margin-top: 20px;
}
/*
font-family:"Microsoft YaHei","微软雅黑";
font-family:"Microsoft YaHei","微软雅黑";
*/
.chanpinx {
	line-height: 30px;
	padding-top: 3px;
	font-size: 16px;
	font-size: 1.6rem;
	color: #666666;
}
.chanpinx li, .chanpinx span, .chanpinx b, .chanpinx p {
	color: #666666;
}
.chanpinx a {
	color: #ed1c24;
}
.chanpinx img {
	max-width: 100%;
}
.chanpinx iframe {
	max-width: 100%;
}
.chanpinx table, .nex table, .cpxx table {
	width: 97%;
	border-collapse: collapse;
	line-height: 45px;
}
.chanpinx tr td, .nex tr td, .cpxx tr td {
	line-height: 45px;
	width: 25%;
}
/*border-collapse: collapse;*/
.table table {
	width: 100%;
	line-height: 45px;
}
.table table tr {
	border-bottom: 1px solid #cecece;
}
.table table tr td:first-child {
	font-family:"Microsoft YaHei","微软雅黑";
}
.table table tr td:nth-child(3) {
	font-family:"Microsoft YaHei","微软雅黑";
	min-width: 185px;
}
.table table tr:first-child {
	border-top: 1px solid #cecece;
}
.downlist {
	background: #fff;
	padding-left: 29px;
	padding-right: 29px;
	padding-top: 1px;
	padding-bottom: 41px;
}
.downlist li {
	padding-top: 25px;
	border-top: 1px solid #bfbfbf;
	margin-top: 29px;
}
.downlist li:first-child {
	padding-top: 0;
	border: none;
}
.downp1 {
	display: block;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 26px;
}
.downp2 {
	width: 131px;
	height: 33px;
	text-align: center;
	line-height: 33px;
	border: 1px solid #bfbfbf;
	font-size: 16px;
	font-size: 1.6rem;
	display: block;
	margin-top: 14px;
}
.downp2 i {
	font-size: 16px;
	font-size: 1.6rem;
	margin-right: 5px;
	color: #666666;
	margin-right: 10px;
}
.downp1:hover {
	color: #e64110;
}
.downp2:hover {
	color: #e64110;
	border: 1px solid #e64110;
}
.downp2:hover i {
	color: #e64110;
}
.slide {
	position: relative;
}
.slide .carouse {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.slide .carouse .slideItem {
	width: 100%;
	position: absolute;
	cursor: pointer;
}
.slide .carouse .slideItem .banner-img {
	width: 100%;
}
.slide .console {
	height: 57px;
	display: inline-block;
	width: 35px;
	position: absolute;
	top: 40%;
}
.slide .dotList {
	position: absolute;
	width: 100%;
	bottom: 20px;
	text-align: center;
}
.slide .dotList ul li {
	display: inline-block;
	width: 14px;
	height: 14px;
	background: #fff;
	margin: 0 8px;
	cursor: pointer;
}
.slide .dotList ul li.active {
	background: #ffc523;
	width: 16px;
}
.slide .carousel-control {
	position: absolute;
	top: 50%;
	width: 62px;
	height: 62px;
	z-index: 999;
	margin-top: -45px;
	display: none;
}
.slide .carousel-control.left {
	left: 55px;
	background-repeat: no-repeat;
	cursor: pointer;
}
.slide .carousel-control.right {
	right: 55px;
	background-repeat: no-repeat;
	cursor: pointer;
}
.slide .dotList ul li {
	cursor: pointer;
	background: url(../images/dot1.png) no-repeat center center;
	font-size: 0px;
	margin-left: 7px;
	margin-right: 7px;
	border: none;
	outline: none;
	width: 16px;
	height: 16px;
}
.slide .dotList ul li.active {
	background: url(../images/dot2.png) no-repeat center center;
}
.slide .slidedetail {
	display: none;
}
.p2hang4 {
	padding-top: 64px;
	padding-bottom: 45px;
}
.zjbt {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 24px;
	font-size: 2.4rem;
	padding-bottom: 21px;
	background: url(../images/zjbtbg.jpg) no-repeat left bottom;
	margin-bottom: 61px;
}
 @media screen and (max-width: 1000px) {
.table {
	width: 100%;
	overflow: scroll;
}
.table table {
	width: 885px;
}
}
.des {
	font-size: 20px;
	font-size: 2rem;
	color: #333333;
	margin-bottom: 1px;
	font-family:"Microsoft YaHei","微软雅黑";
	text-transform: uppercase;
}
.des span {
	line-height: 54px;
	background: #fff;
	padding: 0 34px;
	display: inline-block;
}
.img980 {
	position: relative;
	margin: 0 auto;
	width: 100%;
}
.img980 .prev, .img980 .next {
	position: absolute;
	display: block;
	top: 40%;
	text-align: center;
}
.img980 .prev i, .img980 .next i {
	font-size: 24px;
	font-size: 2.4rem;
	color: #333;
}
.img980 .prev {
	left: 0;
	cursor: pointer;
}
.img980 .next {
	right: 0;
	cursor: pointer;
}
.img980 .img-list {
	position: relative;
	width: 90%;
	overflow: hidden;
	margin: 0 auto;
}
.img980 .img-list ul {
	width: 10000%;
}
.img980 .img-list li {
	float: left;
	display: inline;
	width: 0.313333%;
	margin: 0 0.01%;
	position: relative;
	position: relative;
	text-align: center;
}
.img980 .img-list li span, .img980 .img-list li a {
	color: #fff;
	display: block;
	border: 1px solid #dadada;
}
.img980 .img-list li img {
	width: 100%;
	max-width: 673px;
	max-height: 498px;
}
.img980 {
	display: none;
}
 @media screen and (max-width: 1219px) {
.left-pro {
	float: none;
	margin: 0 auto;
}
.content {
	width: 100%;
	padding-top: 30px;
}
.share {
	padding-top: 40px;
}
.btn {
	padding-top: 50px;
}
}
 @media screen and (max-width: 999px) {
.img980 {
	display: block;
}
.left-pro {
	display: none;
}
.p2hang1 {
	padding-top: 35px;
}
.fllist {
	margin-top: 0;
}
.btn a {
	width: 47%;
}
.btn {
	text-align: center;
}
.title h1 {
	font-size: 24px;
	font-size: 2.4rem;
}
}
 @media screen and (max-width: 767px) {
.p2hang2 {
	margin-top: 45px;
	padding-bottom: 50px;
}
.p2bt2 {
	margin-top: 45px;
}
.p2hang4 {
	padding-top: 40px;
}
.title h1 {
	line-height: 30px;
}
}
 @media screen and (max-width: 500px) {
.img980 .img-list li {
	width: 0.48%;
}
.btn a {
	margin-bottom: 10px;
}
.title h1 {
	font-size: 20px;
	font-size: 2rem;
}
.p2bt {
	font-size: 24px;
	font-size: 2.4rem;
	margin-bottom: 25px;
}
}
 @media screen and (max-width: 480px) {
.img980 .img-list {
	width: 84%;
}
.img980 .img-list li {
	width: 0.98%;
}
.btn a {
	font-size: 14px;
	font-size: 1.4rem;
}
.downp1 {
	font-size: 14px;
	font-size: 1.4rem;
}
}
/****************  oem  ****************/
.oem {
	padding-bottom: 77px;
}
.oem1 .oemp1 {
	text-align: center;
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 30px;
	font-family:"Microsoft YaHei","微软雅黑";
	margin-bottom: 53px;
}
.oem1 .oemp2 img {
	display: block;
	width: 100%;
	max-width: 1200px;
	max-height: 217px;
}
.oem1 .oemp3 {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
	text-align: center;
	color: #888888;
	margin-top: 31px;
}
.oem1 {
	padding-bottom: 55px;
}
.oem2 {
	padding-top: 53px;
	padding-bottom: 40px;
	background: #000000;
}
.oem2 .oemp1 {
	text-align: center;
	font-size: 30px;
	font-size: 3rem;
	font-family:"Microsoft YaHei","微软雅黑";
	line-height: 30px;
	color: #ffffff;
	margin-bottom: 45px;
}
.oem2 .oemp2 img {
	display: block;
	width: 100%;
	max-width: 1248px;
	max-height: 461px;
}
.oem3 {
	padding-top: 65px;
	padding-bottom: 51px;
}
.oemzuo img {
	display: block;
	width: 100%;
	max-width: 528px;
	max-height: 526px;
}
.oemzuo {
	margin-right: 90px;
}
.oemyou {
	padding-top: 99px;
}
.oemyou p {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
	text-indent: 32px;
}
.oem4 img {
	display: block;
	width: 100%;
	max-width: 1920px;
	max-height: 632px;
}
.oem5 {
	padding-top: 25px;
	padding-bottom: 47px;
}
.oemzuo2 img {
	display: block;
	width: 100%;
	max-width: 642px;
	max-height: 617px;
}
.oemyou2 {
	padding-top: 305px;
}
.oemyou2 p {
	font-size: 22px;
	font-size: 2.2rem;
	line-height: 32px;
	font-family:"Microsoft YaHei","微软雅黑";
}
.oem6 img {
	display: block;
	width: 100%;
	max-width: 1920px;
	max-height: 634px;
}
.oem7 {
	padding-top: 66px;
}
.oem7 .oemp1 {
	text-align: center;
	font-size: 30px;
	font-size: 3rem;
	font-family:"Microsoft YaHei","微软雅黑";
	line-height: 30px;
	margin-bottom: 51px;
}
.yuanlist {
	text-align: center;
	position: relative;
}
.yuanlist > li {
	display: inline-block;
	margin: 0 70px;
	padding-bottom: 22px;
}
.yuanlist > li > a {
	width: 182px;
	height: 182px;
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	position: relative;
}
.yuan1 > a {
	background: #000 url(../images/yuan1.png) no-repeat center center;
	-webkit-background-size: 100% 100%;
	background-size: 100%;
}
.yuan2 > a {
	background: #000 url(../images/yuan2.png) no-repeat center center;
	-webkit-background-size: 100% 100%;
	background-size: 100%;
}
.yuan3 > a {
	background: #000 url(../images/yuan3.png) no-repeat center center;
	-webkit-background-size: 100% 100%;
	background-size: 100%;
}
.yuan1:hover > a {
	background: #e64110 url(../images/yuan1.png) no-repeat center center;
	-webkit-background-size: 100% 100%;
	background-size: 100%;
}
.yuan2:hover > a {
	background: #e64110 url(../images/yuan2.png) no-repeat center center;
	-webkit-background-size: 100% 100%;
	background-size: 100%;
}
.yuan3:hover > a {
	background: #e64110 url(../images/yuan3.png) no-repeat center center;
	-webkit-background-size: 100% 100%;
	background-size: 100%;
}
.oemxiala {
	position: absolute;
	top: -9999px;
	left: 0;
	width: 100%;
	padding-top: 28px;
	padding-bottom: 28px;
	background: #fff;
	-webkit-background-size: 100% 100%;
	background-size: 100%;
	-webkit-box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.3);
}
.oemxiala p {
	font-size: 18px;
	font-size: 1.8rem;
	font-family:"Microsoft YaHei","微软雅黑";
	font-weight: bold;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.oemxiala ul li {
	display: inline-block;
	margin: 0 20px;
}
.oemxiala ul {
	text-align: center;
}
.oemxiala ul li img {
	display: block;
	width: 100%;
	max-width: 338px;
	max-height: 338px;
}
.yuanlist > li:hover .oemxiala {
	top: 100%;
}
.yuanlist > li:hover a::after {
	content: "";
	display: block;
	width: 27px;
	height: 22px;
	background: url(../images/xialajiao.png) no-repeat center center;
	left: 50%;
	margin-left: -14px;
	bottom: -26px;
	z-index: 99;
	position: absolute;
}
.oem7 .oemp2 img {
	display: block;
	width: 100%;
	max-width: 1205px;
	max-height: 803px;
}
.oem7 .oemp2 {
	margin-top: 50px;
}
 @media screen and (max-width: 1219px) {
.oemyou {
	padding-top: 30px;
}
.oemxiala ul li {
	width: 30%;
	margin: 0 1%;
}
}
 @media screen and (max-width: 999px) {
.oemxiala {
	position: static;
}
.yuanlist > li:hover a::after {
	display: none;
}
.oemzuo {
	float: none;
	max-width: 528px;
	margin: 0 auto;
}
.oemzuo2 {
	float: none;
	max-width: 642px;
	margin: 0 auto;
}
.oemyou2 {
	padding-top: 20px;
}
.oem7 .oemp1 {
	font-size: 24px;
	font-size: 2.4rem;
}
.yuanlist > li {
	margin: 0;
}
}
 @media screen and (max-width: 767px) {
.oem1 .oemp1 {
	font-size: 20px;
	font-size: 2rem;
}
.oem2 .oemp1 {
	font-size: 20px;
	font-size: 2rem;
}
.oemyou2 p {
	font-size: 16px;
	font-size: 1.6rem;
}
.oem7 .oemp1 {
	font-size: 20px;
	font-size: 2rem;
}
.oem7 .oemp2 {
	margin-top: 25px;
}
.oem {
	padding-bottom: 40px;
}
}
 @media screen and (max-width: 550px) {
.oem7 {
	padding-top: 35px;
}
.yuanlist > li > a {
	width: 140px;
	height: 140px;
}
}
/**************  support1  *************/
.suppzuo {
	width: 200px;
}
.suppyou {
	width: 957px;
}
.suppzuo > p {
	line-height: 40px;
	padding-left: 18px;
	color: #fff;
	background: #1b1b1b;
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 9px;
}
.suppzuo ul li {
	border-top: 1px solid #bfbfbf;
	line-height: 40px;
	padding-left: 17px;
}
.suppzuo ul li:first-child {
	border: none;
}
.suppzuo ul li a {
	display: block;
	font-size: 16px;
	font-size: 1.6rem;
}
.suppzuo ul li a i {
	color: #7d7d7d;
	margin-right: 10px;
	font-size: 12px;
	font-size: 1.2rem;
}
.suppzuo ul li.current a {
	color: #e64110;
}
.suppzuo ul li:hover a {
	color: #e64110;
}
.suppzuo ul li.current a i::before {
	content: "\e73b";
	color: #e64110;
}
.suppzuo ul li:hover a i::before {
	content: "\e73b";
	color: #e64110;
}
.suppyou > p {
	text-align: center;
	font-size: 26px;
	font-size: 2.6rem;
	text-transform: uppercase;
	font-family:"Microsoft YaHei","微软雅黑";
	line-height: 40px;
	margin-bottom: 30px;
}
.search2 {
	margin-left: 45px;
	margin-right: 33px;
}
.sou2 {
	width: 609px;
	height: 38px;
	line-height: 38px;
	border-radius: 19px;
	border: 1px solid #999999;
	padding-left: 22px;
	font-size: 16px;
	font-size: 1.6rem;
	color: #999999;
}
.suo2 {
	width: 221px;
	height: 41px;
	line-height: 41px;
	border-radius: 21px;
	color: #fff;
	background: #e64110;
	font-size: 16px;
	font-size: 1.6rem;
	cursor: pointer;
}
.suo2:hover {
	background: #d43b0d;
}
.mantu img {
	display: block;
	width: 100%;
	max-width: 214px;
	max-height: 187px;
}
.mantu {
	display: block;
	border: 1px solid #dcdcdc;
}
.manlist {
	padding-top: 52px;
}
.manbox {
	width: 216px;
	float: left;
	margin-left: 31px;
	margin-bottom: 33px;
}
.manp1 {
	display: block;
	text-align: center;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-top: 5px;
	margin-bottom: 11px;
}
.manp2 {
	display: block;
	width: 117px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border-radius: 18px;
	font-size: 16px;
	font-size: 1.6rem;
	color: #555555;
	border: 1px solid #a0a0a0;
	margin: 0 auto;
}
.manp1:hover {
	color: #d43b0d;
}
.manp2:hover {
	background: #d43b0d;
	border: 1px solid #d43b0d;
	color: #fff;
}
.support1 .ms_ye {
	margin-top: 73px;
}
 @media screen and (max-width: 1219px) {
.suppyou {
	width: 760px;
}
.sou2 {
	width: 405px;
}
.manbox {
	margin-left: 15px;
	width: 178px;
}
}
 @media screen and (max-width: 999px) {
.suppyou {
	width: 100%;
}
.suppzuo {
	width: 100%;
	margin-top: 30px;
}
.manbox {
	width: 23%;
	margin: 0 1%;
	margin-bottom: 30px;
}
.sou2 {
	width: 70%;
}
.suo2 {
	width: 20%;
}
.support1 .ms_ye {
	margin-top: 30px;
}
}
 @media screen and (max-width: 767px) {
.search2 {
	margin: 0;
}
.manp1 {
	font-size: 14px;
	font-size: 1.4rem;
}
.manp2 {
	font-size: 14px;
	font-size: 1.4rem;
	height: 32px;
	line-height: 32px;
}
.manlist {
	padding-top: 30px;
}
}
 @media screen and (max-width: 600px) {
.manbox {
	width: 31.333%;
}
.suppyou > p {
	font-size: 20px;
	font-size: 2rem;
	margin-bottom: 15px;
}
}
 @media screen and (max-width: 450px) {
.sou2 {
	width: -webkit-calc(100% - 22px);
	width: -moz-calc(100% - 22px);
	width: calc(100% - 22px);
}
.suo2 {
	width: 100%;
	margin-top: 10px;
}
.manp2 {
	width: 100px;
}
}
 @media screen and (max-width: 400px) {
.manbox {
	width: 48%;
}
}
/**************  support2  *************/
.vitu {
	position: relative;
	padding-bottom: 61.03%;
	height: 0;
	overflow: hidden;
}
.vitu iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.vitu iframe body {
	margin: 0px !important;
}
.vbox {
	width: 462px;
	float: left;
	margin-left: 33px;
	margin-bottom: 45px;
}
.vp1 {
	font-family:"Microsoft YaHei","微软雅黑";
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 30px;
	margin-top: 16px;
	margin-bottom: 5px;
}
.vp2 {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 24px;
}
 @media screen and (max-width: 1219px) {
.vbox {
	width: 363px;
}
}
 @media screen and (max-width: 999px) {
.vbox {
	width: 46%;
	margin: 0 2%;
	margin-bottom: 30px;
}
}
 @media screen and (max-width: 767px) {
.vbox {
	width: 48%;
	margin: 0 1%;
	margin-bottom: 30px;
}
}
 @media screen and (max-width: 500px) {
.vbox {
	float: none;
	width: auto;
	max-width: 462px;
	margin: 0 auto;
	margin-bottom: 30px;
}
}
/**************  support3  *************/
.catbox {
	width: 176px;
	float: left;
	margin-left: 19px;
	margin-bottom: 66px;
}
.support3 .manlist {
	padding-top: 0;
}
.support3 .manp1 {
	margin-top: 13px;
	margin-bottom: 13px;
}
.cattu img {
	display: block;
	width: 100%;
	max-width: 176px;
	max-height: 179px;
}
 @media screen and (max-width: 1219px) {
.catbox {
	margin-left: 12px;
	width: 142px;
}
}
 @media screen and (max-width: 999px) {
.catbox {
	width: 14.666%;
	margin: 0 1%;
	margin-bottom: 30px;
}
}
 @media screen and (max-width: 900px) {
.catbox {
	width: 18%;
}
}
 @media screen and (max-width: 767px) {
.catbox {
	width: 23%;
}
}
 @media screen and (max-width: 580px) {
.catbox {
	width: 31.333%;
}
}
 @media screen and (max-width: 400px) {
.catbox {
	width: 48%;
}
}
/**************  support4  *************/
.warrbox {
	padding-bottom: 32px;
	background: url(../images/supp4xian.jpg) repeat-x center bottom;
	margin-bottom: 43px;
}
.warrp1 {
	font-size: 18px;
	font-size: 1.8rem;
	font-family:"Microsoft YaHei","微软雅黑";
	line-height: 30px;
	margin-bottom: 16px;
}
.warrp2 {
	font-size: 16px;
	font-size: 1.6rem;
	color: #555555;
	line-height: 26px;
}
.warrp3 {
	font-size: 16px;
	font-size: 1.6rem;
	color: #555555;
	line-height: 26px;
}
.warrp3.dian {
	padding-left: 20px;
	background: url(../images/huidian.png) no-repeat left 6px;
}
.support4 .ms_ye {
	margin-top: 105px;
}
 @media screen and (max-width: 767px) {
.warrp1 {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 26px;
}
.warrp2, .warrp3 {
	font-size: 14px;
	font-size: 1.4rem;
}
.warrbox {
	padding-bottom: 20px;
	margin-bottom: 25px;
}
.support4 .ms_ye {
	margin-top: 45px;
}
}
/*
font-family:"Microsoft YaHei","微软雅黑";
font-family:"Microsoft YaHei","微软雅黑";
*/
/***********  xiala  ***********/
.yiji {
	position: absolute;
	z-index: 99;
	width: 160px;
	background: #fff;
	top: -9999px;
	left: 0;
	padding-bottom: 2px;
	padding-top: 2px;
}
.yiji li {
	position: relative;
}
.yiji li a {
	display: block;
	color: #333333;
	line-height: 28px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 22px;
	padding-right: 10px;
	font-size: 16px;
	font-size: 1.6rem;
}
.yiji li:hover > a {
	background: #e64110;
	color: #fff;
}
.erji {
	position: absolute;
	left: 100%;
	top: -999px;
	width: 160px;
	background: #fff;
	padding-bottom: 2px;
	padding-top: 2px;
}
.navlist > li:hover .yiji {
	top: 100%;
}
.yiji > li:hover .erji {
	top: -2px;
}
.yiji2 {
	position: absolute;
	left: 0;
	top: -9999px;
	width: 100%;
	z-index: 99;
	background: #282828;
	padding-top: 41px;
	padding-bottom: 20px;
}
.yijiyou {
	width: 31.25%;
}
.yijiyou img {
	display: block;
	width: 100%;
	max-width: 673px;
	max-height: 498px;
}
.yijiyou p a {
	color: #fff;
	display: block;
	text-transform: uppercase;
	font-size: 18px;
	font-size: 1.8rem;
}
.yijiyou p {
	line-height: 30px;
	margin-top: 15px;
}
.yijizuo {
	width: 66.6666%;
}
.yijizuo > ul > li {
	width: 32.333%;
	margin-right: 1%;
	min-height: 210px;
	float: left;
}
.yijizuo > ul > li p {
	margin-bottom: 18px;
}
.yijizuo > ul > li p a {
	font-size: 20px;
	font-size: 2rem;
	color: #999999;
	text-transform: uppercase;
	line-height: 30px;
	font-family:"Microsoft YaHei","微软雅黑";
}
.yijizuo > ul > li ul li {
	font-size: 14px;
	font-size: 1.4rem;
	color: #999999;
	line-height: 26px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.yijizuo > ul > li ul li a {
	display: block;
	color: #999999;
}
.yiji2 a:hover {
	color: #fff;
}
.navlist > li:hover .yiji2 {
	top: 100%;
}
 @media screen and (min-width: 1000px) and (max-width: 1219px) {
.yijizuo > ul > li p a {
	font-size: 16px;
	font-size: 1.6rem;
}
.yijizuo > ul > li ul li {
	font-size: 14px;
	font-size: 1.4rem;
}
}
 @media screen and (max-width: 999px) {
.yiji, .yiji2 {
	display: none;
}
}
.ce {
	position: fixed;
	right: 0px;
	top: 30%;
	width: 47px;
	text-align: center;
	z-index: 99;
}
.ce li {
	height: 47px;
	line-height: 47px;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
}
.ce li a {
	display: block;
	height: 53px;
}
.ce li i {
	font-size: 20px;
	font-size: 2rem;
	color: #fff;
}
.ce1 {
	background: #157eee;
}
.ce2 {
	background: #29c5f6;
}
.ce3 {
	background: #35b30d;
}
.ce4 {
	background: #006dc0;
}
.ce5 {
	background: #3b5998;
}
 @media screen and (max-width: 767px) {
.ce {
	bottom: 0;
	top: auto;
	width: 100%;
}
.ce li {
	width: 50%;
	margin: 0;
	float: left;
	height: 40px;
	line-height: 40px;
	border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.link {
	padding-bottom: 10px;
}
}
.hdtop {
	position: fixed;
	right: 20px;
	bottom: -100px;
	-webkit-transition: 1s;
	-o-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
	cursor: pointer;
	z-index: 99;
}
.hdtop i {
	color: #dcdcdc;
	font-size: 58px;
	font-size: 5.8rem;
}
 @media screen and (max-width: 767px) {
.hdtop i {
	font-size: 40px;
	font-size: 4rem;
}
}
/*# sourceMappingURL=index.css.map */
.at-resp-share-element .at-icon {
	width: 24px!important;
	height: 24px!important;
}
.at-style-responsive .at-share-btn {
	padding: 0!important;
	border-radius: 2px!important;
}
.at-resp-share-element .at-share-btn .at-icon-wrapper {
	width: 24px!important;
	height: 24px!important;
}
.at-resp-share-element .at-share-btn {
	margin-bottom: 0!important;
	margin-right: 3px!important;
}
.listcart {
	width: 100%;
	margin-top: 40px;
	margin-bottom: 40px;
}
.listcart a {
	background: #fff;
	display: inline-block;
	height: 30px;
	width: 200px;
	line-height: 30px;
	cursor: pointer;
	border: none;
	overflow: hidden;
	color: #2059a6;
	cursor: pointer;
	border: 1px solid #2059a6;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	font-size: 14px;
	font-size: 1.4rem;
	margin-left: 10px;
}
.listcart a:hover {
	border: #2059a6 solid 1px;
	background: #2059a6;
	color: #fff!important;
}
@media screen and (max-width:999px) {
.listcart a {
	margin-left: 2.5%;
	margin-right: 2.5%;
	padding-left: 0px;
	padding-right: 0px
}
.listcart {
	width: 100%;
	margin-top: 2rem
}
}
@media screen and (max-width:420px) {
.listcart a {
	width: 95% !important;
	float: none;
	overflow: hidden;
	margin-bottom: 1rem;
	margin-top: 1rem
}
}
.btn a.no:hover {
	color: #555555!important;
	border: 1px solid #7d7d7d!important;
	background: #fff!important;
}
.ms_ye a.no:hover {
	color: #333 !important;
	border: 1px solid #e5e5e5 !important;
}
