#header {
	background-color: #3f8dbf;
	float: left;
	width: 100%;
	height: 50px;
	color: rgba(255, 255, 255, 1);
	line-height: 50px;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1;
}

#header a {
	color: rgba(255, 255, 255, 1);
	text-decoration: none;
	display: block;
	font-size: 15px;
}

#header-left {
	float: left;
	height: 50px;
}

#header-left:hover #header-left-icon {
	background-color: #3F8DBF;
}

#header-left:hover #header-left-text {
	background-color: #599BC8;
}

#header-left-icon {
	float: left;
	height: 50px;
	width: 50px;
	text-align: center;
	background-color: #35759F;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

#header-left-icon a {
	font-size: 25px;
}

#header-left-text {
	float: left;
	height: 50px;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

#header-left-text a {
	padding-left: 20px;
	padding-right: 20px;
}

#header-right {
	float: right;
	height: 50px;
}

#header-right:hover #header-right-icon {
	background-color: #3F8DBF;
}

#header-right:hover #header-right-text {
	background-color: #599BC8;
}

#header-right-icon {
	float: right;
	height: 50px;
	width: 50px;
	text-align: center;
	background-color: #35759F;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

#header-right-text {
	float: right;
	height: 50px;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

#header-right-text a {
	padding-right: 20px;
	padding-left: 20px;
}

.wrapper {}

.wrapper-inner {
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.wrapper-inner-buttons {
	width: 100%;
	float: left;
	margin-top: 50px;
	text-align: center;
}

.wrapper-inner-buttons a {
	background-color: #3f8dbf;
	line-height: 35px;
	padding-right: 15px;
	padding-left: 15px;
	margin: 10px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
	border-radius: calc(35px / 2);
}

.wrapper-inner-buttons a.current {
	background-color: #f5d76e;
	color: #d35400;
}

.wrapper-inner-buttons a:hover {
	background-color: #35759F;
	color: #fff;
}

.mobile {
	width: 100%;
}

.mobile-inner {
	margin-right: auto;
	margin-left: auto;
	background-color: #000000;
	position: relative;
}

.mobile-inner img {}

.mobile-inner p {
	color: #676767;
	line-height: 25px;
	font-size: 16px;
	padding-bottom: 30px;
	padding-right: 30px;
	padding-left: 30px;
	margin: 0px;
}

.mobile-inner-header {
	background-color: rgb(255, 255, 255);
	width: 100%;
	height: 50px;
	position: relative;
	top: 0px;
	z-index: 33;
	left: 0px;
}

.mobile-inner-header-icon {
	color: #ffffff;
	height: 50px;
	font-size: 25px;
	text-align: center;
	float: right;
	width: 50px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
	background-color: rgba(255, 255, 255, 0.2);
	cursor: pointer;
}

.mobile-inner-header-icon span {
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 2);
	width: 25px;
	height: 1px;
	background-color: rgb(199, 34, 27);
}

.mobile-inner-header-icon span:nth-child(1) {
	transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
	transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}

@keyframes clickfirst {
	0% {
		transform: translateY(4px) rotate(0deg);
	}

	100% {
		transform: translateY(0) rotate(45deg);
	}
}

@keyframes clicksecond {
	0% {
		transform: translateY(-4px) rotate(0deg);
	}

	100% {
		transform: translateY(0) rotate(-45deg);
	}
}

.mobile-inner-header-icon-out span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}

@keyframes outfirst {
	0% {
		transform: translateY(0) rotate(-45deg);
	}

	100% {
		transform: translateY(-4px) rotate(0deg);
	}
}

@keyframes outsecond {
	0% {
		transform: translateY(0) rotate(45deg);
	}

	100% {
		transform: translateY(4px) rotate(0deg);
	}
}

.mobile-inner-nav {
	background-color: #b91e22;
	width: 100%;
	position: absolute;
	top: 50px;
	padding-bottom: 0%;
	display: none;
	z-index: 444;
}

.mobile-inner-nav a {
	border-bottom: solid 1px rgba(255, 255, 255, 0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	color: #fff;
	transition: all 0.5s;
}

.mobile-inner-nav dl {
	display: none;
}

.mobile-inner-nav dl dd {
	line-height: 33px;
	text-decoration: none;
	text-indent: 3em;
	font-size: 16px;
	color: #FFFFFF;
	border-bottom: solid 1px rgba(255, 255, 255, 0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight: 300;
	font-size: 14px;
}

.mobile-inner-nav li {
	border-bottom: solid 1px rgba(255, 255, 255, 0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	line-height: 53px;
	text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
	line-height: 50px;
	text-decoration: none;
	text-indent: 2em;
	font-size: 16px;
	color: #FFFFFF;
	border-bottom: solid 1px rgba(255, 255, 255, 0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
	color: #FFFFFF;
}

.mobile-inner-nav a {
	border-bottom: none;
}

.mobile-inner-nav li {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: returnToNormal;
	animation-name: returnToNormal;
}

@-webkit-keyframes resize {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: scale(5, 5);
		transform: scale(5, 5);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

@keyframes resize {

	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: scale(5, 5);
		transform: scale(5, 5);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

@-webkit-keyframes returnToNormal {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes returnToNormal {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.mobile-inner-nav li:last-child h2.h2tit {
	border-bottom: none;
}

.mobile-inner-nav li .h3tit {
	height: 50px;
	position: relative;
	background: url("../images/51_icon_search@2x.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/51_icon_search@2x.png*/
		no-repeat 30px center;
	background-size: 17px;
}

.mobile-inner-nav li .words {
	display: block;
	width: 100%;
	height: 100%;
	border: none;
	background: none;
	text-indent: 60px;
	font-size: 15px;
	color: #fff;
	background: url("../images/search2.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/search2.png*/
		no-repeat 30px center;
	background-size: 20px;
}

.mobile-inner-nav li:last-child {
	border-bottom: none;
}

.mobile-inner-nav li form {
	display: block;
	width: 100%;
	height: 100%;
}

@charset "utf-8";
@charset "UTF-8";

.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.animated.infinite {
	animation-iteration-count: infinite;
}

.animated.hinge {
	animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
	animation-duration: .75s;
}

@keyframes bounce {

	from,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transform: translate3d(0, 0, 0);
	}

	40%,
	43% {
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		transform: translate3d(0, -4px, 0);
	}
}

.bounce {
	animation-name: bounce;
	transform-origin: center bottom;
}

@keyframes flash {

	from,
	50%,
	to {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}

.flash {
	animation-name: flash;
}




@keyframes rubberBand {
	from {
		transform: scale3d(1, 1, 1);
	}

	30% {
		transform: scale3d(1.25, 0.75, 1);
	}

	40% {
		transform: scale3d(0.75, 1.25, 1);
	}

	50% {
		transform: scale3d(1.15, 0.85, 1);
	}

	65% {
		transform: scale3d(.95, 1.05, 1);
	}

	75% {
		transform: scale3d(1.05, .95, 1);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

.rubberBand {
	animation-name: rubberBand;
}

@keyframes shake {

	from,
	to {
		transform: translate3d(0, 0, 0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}

	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}

.shake {
	animation-name: shake;
}

@keyframes headShake {
	0% {
		transform: translateX(0);
	}

	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}

	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}

	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}

	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}

	50% {
		transform: translateX(0);
	}
}

.headShake {
	animation-timing-function: ease-in-out;
	animation-name: headShake;
}

@keyframes swing {
	20% {
		transform: rotate3d(0, 0, 1, 15deg);
	}

	40% {
		transform: rotate3d(0, 0, 1, -10deg);
	}

	60% {
		transform: rotate3d(0, 0, 1, 5deg);
	}

	80% {
		transform: rotate3d(0, 0, 1, -5deg);
	}

	to {
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

.swing {
	transform-origin: top center;
	animation-name: swing;
}

@keyframes tada {
	from {
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	animation-name: tada;
}

@keyframes wobble {
	from {
		transform: none;
	}

	15% {
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}

	30% {
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}

	45% {
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}

	60% {
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}

	75% {
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}

	to {
		transform: none;
	}
}

.wobble {
	animation-name: wobble;
}

@keyframes jello {

	from,
	11.1%,
	to {
		transform: none;
	}

	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}

	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}

	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}

	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}

	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}

	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}

	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}

.jello {
	animation-name: jello;
	transform-origin: center;
}

@keyframes bounceIn {

	from,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}

	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}

	40% {
		transform: scale3d(.9, .9, .9);
	}

	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}

	80% {
		transform: scale3d(.97, .97, .97);
	}

	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

.bounceIn {
	animation-name: bounceIn;
}

@keyframes bounceInDown {

	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}

	75% {
		transform: translate3d(0, -10px, 0);
	}

	90% {
		transform: translate3d(0, 5px, 0);
	}

	to {
		transform: none;
	}
}

.bounceInDown {
	animation-name: bounceInDown;
}

@keyframes bounceInLeft {

	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}

	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}

	75% {
		transform: translate3d(-10px, 0, 0);
	}

	90% {
		transform: translate3d(5px, 0, 0);
	}

	to {
		transform: none;
	}
}

.bounceInLeft {
	animation-name: bounceInLeft;
}

@keyframes bounceInRight {

	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	from {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}

	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}

	75% {
		transform: translate3d(10px, 0, 0);
	}

	90% {
		transform: translate3d(-5px, 0, 0);
	}

	to {
		transform: none;
	}
}

.bounceInRight {
	animation-name: bounceInRight;
}

@keyframes bounceInUp {

	from,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	from {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}

	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}

	75% {
		transform: translate3d(0, 10px, 0);
	}

	90% {
		transform: translate3d(0, -5px, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.bounceInUp {
	animation-name: bounceInUp;
}

@keyframes bounceOut {
	20% {
		transform: scale3d(.9, .9, .9);
	}

	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}

	to {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
}

.bounceOut {
	animation-name: bounceOut;
}

@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}

	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}

	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}

.bounceOutDown {
	animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}

.bounceOutLeft {
	animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}

	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}

.bounceOutRight {
	animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}

	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}

.bounceOutUp {
	animation-name: bounceOutUp;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	animation-duration: 1.76s;
	animation-name: fadeIn;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInDown {
	animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
	from {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInDownBig {
	animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInLeft {
	animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInLeftBig {
	animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInRight {
	animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
	from {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInRightBig {
	animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 9%, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInUp {
	animation-duration: 1.76s;
	animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
	from {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInUpBig {
	animation-name: fadeInUpBig;
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fadeOut {
	animation-name: fadeOut;
}

@keyframes fadeOutDown {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}

.fadeOutDown {
	animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}

.fadeOutDownBig {
	animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
}

.fadeOutLeft {
	animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}

.fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
}

.fadeOutRight {
	animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}

.fadeOutRightBig {
	animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}

.fadeOutUp {
	animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}

.fadeOutUpBig {
	animation-name: fadeOutUpBig;
}

@keyframes flip {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		animation-timing-function: ease-out;
	}

	40% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		animation-timing-function: ease-out;
	}

	50% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		animation-timing-function: ease-in;
	}

	80% {
		transform: perspective(400px) scale3d(.95, .95, .95);
		animation-timing-function: ease-in;
	}

	to {
		transform: perspective(400px);
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flip;
}

@keyframes flipInX {
	from {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		animation-timing-function: ease-in;
	}

	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	to {
		transform: perspective(400px);
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInX;
}

@keyframes flipInY {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		animation-timing-function: ease-in;
	}

	60% {
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}

	80% {
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}

	to {
		transform: perspective(400px);
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInY;
}

@keyframes flipOutX {
	from {
		transform: perspective(400px);
	}

	30% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}

	to {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

.flipOutX {
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@keyframes flipOutY {
	from {
		transform: perspective(400px);
	}

	30% {
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}

	to {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipOutY;
}

@keyframes lightSpeedIn {
	from {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}

	60% {
		transform: skewX(20deg);
		opacity: 1;
	}

	80% {
		transform: skewX(-5deg);
		opacity: 1;
	}

	to {
		transform: none;
		opacity: 1;
	}
}

.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
	from {
		opacity: 1;
	}

	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}

.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in;
}

@keyframes rotateIn {
	from {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}

	to {
		transform-origin: center;
		transform: none;
		opacity: 1;
	}
}

.rotateIn {
	animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}

	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownRight {
	animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}

	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpRight {
	animation-name: rotateInUpRight;
}

@keyframes rotateOut {
	from {
		transform-origin: center;
		opacity: 1;
	}

	to {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}

.rotateOut {
	animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
	from {
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
	from {
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
	from {
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
	from {
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}

@keyframes hinge {
	0% {
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}

	20%,
	60% {
		transform: rotate3d(0, 0, 1, 80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}

	40%,
	80% {
		transform: rotate3d(0, 0, 1, 60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}

	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

.hinge {
	animation-name: hinge;
}

@keyframes jackInTheBox {
	from {
		opacity: 0;
		transform: scale(0.1) rotate(30deg);
		transform-origin: center bottom;
	}

	50% {
		transform: rotate(-10deg);
	}

	70% {
		transform: rotate(3deg);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.jackInTheBox {
	animation-name: jackInTheBox;
}

@keyframes rollIn {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.rollIn {
	animation-name: rollIn;
}

@keyframes rollOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

.rollOut {
	animation-name: rollOut;
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}

	50% {
		opacity: 1;
	}
}

.zoomIn {
	animation-name: zoomIn;
}

@keyframes zoomInDown {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomInDown {
	animation-name: zoomInDown;
}

@keyframes zoomInLeft {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomInLeft {
	animation-name: zoomInLeft;
}

@keyframes zoomInRight {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomInRight {
	animation-name: zoomInRight;
}

@keyframes zoomInUp {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomInUp {
	animation-name: zoomInUp;
}

@keyframes zoomOut {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}

	to {
		opacity: 0;
	}
}

.zoomOut {
	animation-name: zoomOut;
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	to {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomOutDown {
	animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}

	to {
		opacity: 0;
		transform: scale(.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}

.zoomOutLeft {
	animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}

	to {
		opacity: 0;
		transform: scale(.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}

.zoomOutRight {
	animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
	}

	to {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	}
}

.zoomOutUp {
	animation-name: zoomOutUp;
}

@keyframes slideInDown {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	animation-name: slideInDown;
}

@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	animation-name: slideInLeft;
}

@keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	animation-name: slideInRight;
}

@keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInUp {
	animation-name: slideInUp;
}

@keyframes slideOutDown {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	animation-name: slideOutDown;
}

@keyframes slideOutLeft {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0);
	}
}

.slideOutLeft {
	animation-name: slideOutLeft;
}

@keyframes slideOutRight {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0);
	}
}

.slideOutRight {
	animation-name: slideOutRight;
}

@keyframes slideOutUp {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0);
	}
}

.slideOutUp {
	animation-name: slideOutUp;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
th,
td,
p,
blockquote,
pre,
form,
fieldset,
legend,
input,
button,
textarea,
hr,
span {
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%;
}

body {
	font-size: 1.4rem;
}

html,
body {}

body {
	font-family: "Microsoft YaHei" ! important;
	color: #000000;
	background: #fff;
	margin: 0 auto;
	padding: 0px;
}

body {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
}

a {
	text-decoration: none;
	color: #333333;
	outline: none;
}

a:active {
	star: expression(this.onFocus=this.blur());
}

img {
	border: 0px;
	vertical-align: middle;
}

li {
	list-style: none;
}

* {
	outline: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}


.loading {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 99999;
}

.loadingfa {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 29px;
	color: #1f8adf;
	position: absolute;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	top: 50%;
}

.gaodu80 {
	padding-top: 60px;
}

@keyframes rotate {
	from {
		-webkit-transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(360deg)
	}
}

@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(360deg)
	}
}

@-moz-keyframes rotate {
	from {
		-moz-transform: rotate(0deg)
	}

	to {
		-moz-transform: rotate(360deg)
	}
}

@-ms-keyframes rotate {
	from {
		-ms-transform: rotate(0deg)
	}

	to {
		-ms-transform: rotate(360deg)
	}
}

@-o-keyframes rotate {
	from {
		-o-transform: rotate(0deg)
	}

	to {
		-o-transform: rotate(360deg)
	}
}

.xuanzhuan {
	animation: 2s linear 0s normal forwards infinite rotate;
	-webkit-animation: 2s linear 0s normal forwards infinite rotate;
	-moz-animation: 2s linear 0s normal forwards infinite rotate;
	-o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xuanzhuan img {
	display: block;
	width: 100%;
}

.pc {
	display: block;
}

.wap {
	display: none;
}

.clearflex:after,
.wrap:after {
	content: "";
	display: table;
	clear: both;
}

.wrap {
	width: 1230px;
	padding: 0px 15px;
	margin: auto;
	max-width: 100%;
}

.head {

	position: absolute;

	width: 100%;

	z-index: 6666;

	left: 0;

	top: 0px;

	background: #FFFFFF;
}

.head .logo {

	float: left;

	padding-top: 5px;
}

.head .logo img {}

.head .nav {

	float: right;
}

.head .nav li {

	float: left;
}

.head .nav li .h2tit {}

.head .nav li.current .h2tit a:after,
.head .nav li:hover .h2tit a:after {
	width: 100%;
}

.head .nav li .h2tit a:after {
	height: 3px;
	display: block;
	content: "";
	position: relative;
	z-index: 55;
	width: 0px;

	margin: auto;

}

.head .nav li .h2tit a {

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 400;

	color: rgba(51, 51, 51, 1);

	line-height: 60px;

	display: block;

	position: relative;
}

.agv_nava {
	padding: 0 15px;
}

.agv_nava1 {
	padding: 0 5px;
	float: left;
	line-height: 60px;
}

.agv_nava1:hover {
	color: #b91e22;
}

.head li:hover .slide {

	visibility: visible;
	opacity: 1;
	top: 60px;
	z-index: 5;

}

.head .slide {
	width: 100%;
	position: absolute;
	left: 0px;
	top: 103px;
	background: #fff;
	box-shadow: 0px 41px 92px 0px rgba(13, 4, 9, 0.31);
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-transition: opacity 0.4s, top 0.4s, visibility 0.4s;
	-o-transition: opacity 0.4s, top 0.4s, visibility 0.4s;
	-moz-transition: opacity 0.4s, top 0.4s, visibility 0.4s;
	-ms-transition: opacity 0.4s, top 0.4s, visibility 0.4s;
	transition: opacity 0.4s, top 0.4s, visibility 0.4s;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
	top: 113px;
}

.head .left {

	float: left;

	width: 20%;

	text-align: center;

	padding-top: 9px;

	padding-bottom: 40px;

	border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.head .left a {

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 400;

	color: rgba(51, 51, 51, 1);

	line-height: 36px;

	display: block;
}

.head .item:last-child {
	margin-right: 0px;
}

.head .right {

	width: 80%;

	text-align: center;

	padding-left: 38px;
	margin: 0 auto;
}

.head .item {

	float: left;

	width: 25%;

	width: calc((100% - 108px)/4);

	margin-right: 36px;
}

.head .item a {}

.head .item * {

	display: block;
}

.head .imgbox {}

.head .imgbox img {
	margin: auto;
	max-width: 100%;
	width: 100%;
	height: 140px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
}

.head .title {

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 100;

	color: rgba(51, 51, 51, 1);

	padding-top: 12px;
}

.head,
.head * {}

.head a:hover .imgbox img {


	-webkit-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

.head .imgbox {
	overflow: hidden;
}

.banner {
	padding-top: 60px;
}

.banner .content {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.banner .title {}

.banner .title img {}

.banner .dec {

	font-size: 50px;

	font-family: Source Han Sans CN;

	font-weight: 300;

	color: #fff;

	padding-top: 35px;

	line-height: 1;
}

.banner .video {}

.banner .video video {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.banner .imgbox {
	height: 100%;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	background-size: cover !important;
	text-align: center;
}

.banner .imgbox img {
	width: 100%;
}

.banner .words {
	width: 100%;
	height: 100%;
	text-align: center;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	left: 0px;
	top: 0px;
	background: rgba(0, 0, 0, 0.74);
	z-index: 4;
}

.banner .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 1);
	border-radius: 50%;
	margin: 0px 6px;
	opacity: 1;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #b91e22;
	opacity: 1;
}

.banner .swiper-pagination {
	font-size: 0px;
	bottom: 46px;
}


.banner .swiper-button-next {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
	width: 45px;
	height: 45px;
	opacity: 0;
	right: 10px;
	background: url("../images/right.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/right.png*/
		no-repeat center center;
	background-size: 100%;
}

.banner .swiper-button-prev {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
	opacity: 0;
	width: 45px;
	height: 45px;
	background: url("../images/left.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/left.png*/
		no-repeat center center;
	background-size: 100%;
	left: 10px;
}

.banner:hover .swiper-button-next,
.banner:hover .swiper-button-prev {
	opacity: 1;
}

.banner .imgbox a {
	display: block;
	height: 100%;
}

.index {

	background: #f6ffff;
}

.index .section_1 {
	padding-top: 42px;
	background: url("../images/sec01.jpg")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/sec01.jpg*/
		no-repeat center center;
	padding-bottom: 34px;
	background-size: cover;
}

.titlemodel {
	text-align: center;
}

.titlemodel .cn {
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
}

.titlemodel .en {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
	padding-top: 18px;
}

.index .section_1 .list {
	margin-top: 50px;
	position: relative;
}

.index .section_1 .list .content {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 840px;
	margin: auto;
	max-width: 100%;
}

.index .section_1 .list .left {
	width: 287px;
}

.index .section_1 .list .title * {
	display: block;
}

.index .section_1 .list .title {
	margin-bottom: 14px;
	font-size: 20px;
	font-weight: 400px;
	font-family: Microsoft YaHei;
}

.index .section_1 .list .dec {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgb(255, 255, 255);
	line-height: 26px;
}

.morebase i {
	position: absolute;
	width: 19px;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: url("../images/more.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/more.png*/
		no-repeat center center;
	right: 10px;
	top: 0px;

	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;



}

.morebase:hover {
	border-color: rgba(51, 51, 51, 0.3);
	text-indent: 38px;
}

.morebase:hover i {
	right: 90px;
}

.morebase {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;




	display: block;

	width: 118px;

	height: 34px;

	background: rgba(255, 211, 26, 0);

	border: 1px solid rgba(51, 51, 51, 0.3);

	border-radius: 17px;

	line-height: 34px;

	position: relative;

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 400;

	color: rgba(102, 102, 102, 1);

	text-indent: 10px;

	border-color: #fff;
}

.index .section_1 .list .morebase {}

.index .section_1 .list .imgbox {
	width: 364px;
	border-radius: 5px;
	overflow: hidden;
}

.index .section_1 .list .imgbox img {

	width: 100%;
}

.index .section_1 .list .swiper-button-next {
	width: 50px;
	height: 50px;
	opacity: 1;
	background: url("../images/right.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/right.png*/
		no-repeat center center;
	right: 0;
	top: 96px;
}

.index .section_1 .list .swiper-button-prev {
	width: 50px;
	height: 50px;
	opacity: 1;
	background: url("../images/left.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/left.png*/
		no-repeat center center;
	left: 0;
	top: 96px;
}

.index .section_1 .list .swiper-pagination {

	bottom: 0;
}

.index .section_1 .list .swiper-pagination-bullet.swiper-pagination-bullet-active {

	background: rgba(0, 209, 209, 1);
}

.index .section_1 .list .swiper-pagination-bullet {

	width: 12px;

	height: 12px;

	background: rgba(185, 185, 185, 1);

	border-radius: 50%;

	opacity: 1;
}

.index .section_1 .list .swiper-container {
	/* padding-bottom: 45px; */
}


.index .section_2:before {
	position: absolute;
	left: 0px;
	top: 0px;
	content: "";
	width: 200px;
	height: 100%;
	background: rgba(0, 209, 209, 1);
}

.index .section_2:after {
	width: 47%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	background: rgba(0, 209, 209, 1);
	content: "";
	transform: skewX(16deg);
}

.index .section_2 {
	position: relative;
	background: url("../images/sec2.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/sec2.png*/
		no-repeat right center;
	background-size: cover;
	padding-top: 70px;
	padding-bottom: 54px;
}

.index .section_2 .content {}

.index .section_2 .wrap {
	position: relative;
	z-index: 5;
}

.index .section_2 .left {

	float: left;
}

.index .section_2 .h2tit {

	font-size: 36px;

	font-family: Microsoft YaHei;

	font-weight: 400;

	color: rgba(255, 255, 255, 1);

	line-height: 1;
}

.index .section_2 .h2tit a {
	color: #fff;
}

.index .section_2 .right .dec {
	padding-bottom: 52px;
}

.index .section_2 .dec {

	padding-top: 22px;

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 100;

	color: rgba(255, 255, 255, 1);

	line-height: 30px;
}

.index .section_2 .dec p {}

.index .section_2 .imgbox {}

.index .section_2 .imgbox img {

	margin: 36px 0px;
}

.index .section_2 .content {}

.index .section_2 .right .more {
	float: right;
	background-color: #b91e22 !important;
	border-color: #b91e22;
	margin-top: 20px;
}

.index .section_2 .more {

	display: block;

	width: 137px;

	height: 38px;

	background: rgba(255, 211, 25, 0);

	border: 1px solid rgba(255, 255, 255, 1);

	border-radius: 20px;

	line-height: 34px;

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 100;

	color: rgba(255, 255, 255, 1);

	padding-left: 38px;

	background: url("../images/more2.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/more2.png*/
		no-repeat 11px center;

	text-align: left;
}

.index .section_2 .right {

	float: right;

	text-align: right;

	width: 41%;
}

.index .section_2 .title2 {

	position: relative;
}

.index .section_2 .title2 span {

	display: inline-block;

	width: 93px;

	height: 37px;

	background: rgba(255, 255, 255, 1);

	border-radius: 8px;

	text-align: center;

	line-height: 37px;

	position: relative;

	z-index: 4;
}

.index .section_2 .dec2 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(255, 255, 255, 1);
	zoom: 1;
	overflow: hidden;
	padding-top: 28px;
	padding-bottom: 5px;
}

.index .section_2 .title2 h2 {
	display: inline-block;
	width: 93px;
	height: 37px;
	background: rgba(255, 255, 255, 1);
	border-radius: 8px;
	text-align: center;
	line-height: 37px;
	position: relative;
	z-index: 4;
	font-size: 14px;
	font-weight: 100;
}

.index .section_2 .dec2 p {
	float: left;
	width: 50%;
	margin-bottom: 23px;
	padding-left: 20px;
	background: url("../images/cir.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/cir.png*/
		no-repeat left center;
	text-align: left;
}

.index .section_2 .dec2 p.w100 {}

.index .section_2 .title2 {
	background: url("../images/line.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/line.png*/
		no-repeat right center;

}

.index .section_3 {
	background: #f6ffff;
	padding-top: 50px;
	padding-bottom: 100px;
}

.index .section_3 .left {
	width: 600px;
	float: left;
}

.index .section_3 .right {
	float: right;
	width: 535px;
	margin-right: 12px;
	padding-top: 50px;
}

.index .section_3 .title {
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
	margin-left: 45px;
}

.index .section_3 .line {
	width: 38px;
	height: 2px;
	background: rgba(0, 209, 209, 1);
	margin-top: 26px;
	margin-bottom: 32px;
	margin-left: 45px;
}

.index .section_3 .dec {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(102, 102, 102, 1);
	margin-bottom: 54px;
	line-height: 34px;
	margin-left: 45px;
}

.index .section_3 .imgbox {
	margin-bottom: 52px;
}

.index .section_3 .imgbox img {
	max-width: 100%;
}

.index .section_3 .morebase {
	margin-left: 45px;
}

.fast-img {
	width: 500px;
	/* height:702px;*/
	position: relative;
	perspective: 1000px;
	perspective-origin: 50% 0;
	transform-style: preserve-3d !important;
	float: left;
}

.fast-img .animate-img {
	display: block;
	width: 339px;
	margin: auto;
}

.orbit {
	border-radius: 50%;
	position: absolute;
	transform-style: preserve-3d !important;
	/* transform:rotateX(87deg) rotateY(-32deg) rotateZ(0deg);*/
	animation: orbitrotate 18s linear 0s normal none infinite;
}

.solid-orbit {
	height: 580px;
	width: 580px;
	left: 50%;
	top: 50px;
	border: 2px solid #c2dada;
	margin-left: -290px;
	z-index: 10;
}

.dot-orbit {
	height: 540px;
	width: 540px;
	left: 50%;
	top: 95px;
	border: 2px dashed #c2dada;
	margin-left: -293px;
	z-index: 10;
}

.planet {
	width: 75px;
	height: 65px;
	position: absolute;
	left: 30px;
	top: 30px;
	transform-style: preserve-3d !important;
	transform: rotateX(-90deg) rotateY(0deg);
	-ms-transform: rotateX(0deg) rotateY(0deg);
}

.planet .ft12 {
	font-size: 12px;
	line-height: 16px;
	transform: scale(0.6);
	color: #b8cad8;
}

.planet .ft16 {
	font-size: 14px;
	line-height: 20px;
	font-weight: 100;
	color: #fff;
}

.planet .ball {
	width: 77px;
	height: 81px;
	border-radius: 50%;
	padding-top: 20px;
	background: linear-gradient(to bottom right, #0454a3, #1790f1);
	text-align: center;
	transform-origin: 50% 50% 0;
	position: absolute;
	transform: rotateX(-90deg) rotateY(0deg);
	animation: planetrotate 18s linear 0s normal none infinite;
}

.planet1 {
	left: -20px;
	top: 360px;
}

.planet2 {
	left: 410px;
	top: 500px;
}

.planet3 {
	left: 510px;
	top: 100px;
}

@keyframes orbitrotate {
	0% {
		transform: rotateX(87deg) rotateY(32deg) rotateZ(0deg);
	}

	100% {
		transform: rotateX(87deg) rotateY(32deg) rotateZ(-360deg);
	}
}

@keyframes planetrotate {
	0% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(-30deg);
	}

	100% {
		transform: rotateX(0deg) rotateY(-360deg) rotateZ(-30deg);
	}
}

.ball.bg1 {
	background: rgba(231, 201, 120, 1);
}

.ball.bg2 {
	background: rgba(0, 209, 209, 1);
}

.ball.bg3 {
	background: rgba(242, 182, 146, 1);
}

.index .section_4 {
	background: url("../images/section_4.jpg")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/section_4.jpg*/
		no-repeat center center;
	background-size: cover;
}

.index .section_4 .content {
	float: right;
	width: 476px;
	padding-top: 76px;
	padding-bottom: 60px;
	background: rgba(0, 197, 197, 1);
}

.index .section_4 .titlemodel * {

	color: #fff;
}

.index .section_4 .dec {

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 100;

	color: rgba(255, 255, 255, 1);

	line-height: 30px;


	margin: auto;
	padding: 30px 20px;
}

.index .section_4 .morebase {

	margin: auto;

	color: #fff;
}

.index .section_4 .morebase i {
	background: url("../images/more2.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/more2.png*/
		no-repeat center center;
}

.index .section_4 .morebase {
	border-color: #fff;

}

.index .section_5 {
	background: #f5f5f5;
	padding-bottom: 59px;
	padding-top: 56px;
}

.index .section_5 .content {
	background: rgba(255, 255, 255, 0);
}

.index .section_5 .left {
	float: left;
	width: 462px;
	height: 100%;
}

.index .section_5 .title {
	font-size: 28px;
	font-family: Source Han Sans CN;
	margin-bottom: 30px;
	font-weight: 500;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
	text-align: center;
	padding-left: 27px;
}

.index .section_5 .logo {}

.index .section_5 .logo img {
	display: block;
	margin: auto;
	margin-top: 33px;
	margin-bottom: 32px;
}

.index .section_5 .tel {
	font-size: 24px;
	font-family: Source Han Sans CN;
	color: rgba(51, 51, 51, 1);
	line-height: 30px;
	padding-left: 123px;
	background: url("../images/tel.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/tel.png*/
		78px center no-repeat;
	margin-bottom: 20px;
}

.index .section_5 .dec {}

.index .section_5 .right {
	background: rgba(255, 255, 255, 0);
	padding-left: 27px;
	zoom: 1;
	overflow: hidden;
	padding-top: 0px;
	padding-right: 27px;
}

.index .section_5 .dec {
	font-size: 16px;
	padding-right: 20px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(51, 51, 51, 1);
	line-height: 24px;
	padding-left: 123px;
	background: url("../images/add.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/add.png*/
		no-repeat 77px center;
}

.index .section_5 .model:nth-child(2) {}

.index .section_5 .formcontent {}

.index .section_5 .model {
	zoom: 1;
	margin-bottom: 14px;
	overflow: hidden;
	float: left;
	width: calc((100% - 54px)/3);
	margin-right: 27px;
}

.index .section_5 .s1 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(51, 51, 51, 1);
	float: left;
	line-height: 38px;
}

.index .section_5 .s2 {}

.index .section_5 .model:nth-child(3) {
	margin-right: 0px;
}

.index .section_5 .words {
	height: 46px;
	background: rgba(255, 255, 255, 0);
	border: 1px solid rgba(51, 51, 51, 0.3);
	border-radius: 10px;
	display: block;
	width: 100%;
	padding: 0px 15px;
	font-size: 16px;
}

.index .section_5 .model.model2 {
	clear: both;
	width: 100%;
}

.index .section_5 .send {
	display: block;
	margin: auto;
	width: 134px;
	height: 38px;
	background: rgba(0, 209, 209, 1);
	border-radius: 19px;
	cursor: pointer;
	border: none;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(255, 255, 255, 1);
	line-height: 36px;
	float: right;
	width: 309px;
	height: 51px;
	background: #b91e22;
	border-radius: 26px;
}

.index .section_5 .dec2 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(102, 102, 102, 1);
	line-height: 30px;
	margin-bottom: 33px;
}

.footer {
	background: #f6ffff;
	padding-top: 42px;
	padding-bottom: 8px;
}

.footer .sec1 {
	padding-bottom: 47px;
	border-bottom: 2px solid #E7F2F2;
	zoom: 1;
	overflow: hidden;
}

.footer .sec1 .left {
	padding-left: 0px;
	float: left;
}

.footer .sec1 .item {
	float: left;
	margin-right: 70px;
}

.footer .sec1 h2 {
	font-size: 16px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	margin-bottom: 14px;
	overflow: hidden;
}

.footer .sec1 a {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(102, 102, 102, 1);
	line-height: 25px;
	display: block;
	padding: 0;
}

.footer .sec1 .ewm {
	float: right;
	margin-right: 31px;
	text-align: center;
}

.footer .sec1 .model {
	float: left;
	margin-left: 50px;
}

.footer .sec1 .model img {}

.footer .sec1 .model .title {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(102, 102, 102, 1);
	padding-top: 11px;
	line-height: 1;
}

.footer .sec2 {
	padding: 27px 0px;
}

.footer .sec2 p {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(102, 102, 102, 1);
	line-height: 24px;
}


.head .left a:hover,
.head .title:hover,
.footer .sec1 a:hover {
	color: #b91e22;
}

@media screen and (max-width:1300px) {
	.index .section_1 .list .swiper-button-next {
		right: 0px;
	}

	.index .section_1 .list .swiper-button-prev {
		left: 0
	}
}

.banner .title img {
	max-width: 50%
}

.footer .sec1 .model:nth-child {
	margin-left: 0;
}

.channelbanner {
	padding-top: 60px;
}

.titlemodel2 {

	padding-top: 193px;

	text-align: center;

	width: 100%;
}

.titlemodel2 .cn {

	font-size: 72px;

	font-family: Source Han Sans CN;

	font-weight: bold;

	color: rgba(255, 255, 255, 1);

	line-height: 1;
}

.titlemodel2 .en {

	font-size: 30px;

	font-family: Microsoft YaHei;

	font-weight: 400;

	color: rgba(255, 255, 255, 1);

	line-height: 1;

	padding-top: 25px;
}

.channelbanner.lookfor .titlemodel2 {
	padding-top: 145px;
}

.contactmain {

	padding-bottom: 98px;
}

.contactmain .content {

	background: rgba(255, 255, 255, 1);

	box-shadow: 0px 0px 75px 0px rgba(13, 4, 9, 0.25);

	padding-top: 91px;

	padding-left: 230px;

	padding-right: 230px;

	padding-bottom: 98px;

	margin-top: -114px;

	position: relative;

	z-index: 4;
}

.contactmain .dec {

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 400;

	color: rgba(51, 51, 51, 1);

	text-align: center;

	padding-bottom: 79px;
}

.contactmain .formtable {}

.contactmain .item:nth-child(2n) {
	float: right;
}

.contactmain .model {

	zoom: 1;

	overflow: hidden;

	margin-bottom: 47px;
}

.contactmain .model2 {

	zoom: 1;

	margin-bottom: 45px;

	overflow: hidden;
}

.contactmain .item {

	float: left;

	width: 46%;
}

.contactmain .s1 {

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 400;

	color: rgba(51, 51, 51, 1);

	line-height: 38px;

	float: left;

	width: 54px;
}

.contactmain .s2 {

	width: calc(100% - 54px);

	float: left;
}

.contactmain .words {
	height: 38px;
	background: rgba(255, 255, 255, 0);
	border: 1px solid rgba(51, 51, 51, 0.3);
	border-radius: 8px;
	width: 100%;
	padding: 0px 12px;

	font-size: 15px;
}

.contactmain textarea {

	height: 95px;

	background: rgba(255, 255, 255, 0);

	border: 1px solid rgba(51, 51, 51, 0.3);

	border-radius: 18px;

	width: 100%;

	resize: none;

	padding: 12px;

	font-size: 15px;
}

.contactmain .send {

	cursor: pointer;

	margin-left: 54px;

	width: 134px;

	height: 38px;

	background: rgba(0, 209, 209, 1);

	border-radius: 18px;

	border: none;

	font-size: 15px;

	color: #fff;
}

body {
	/*background: #f6ffff*/
}

.channelbanner {
	position: relative;
}



.secmenu {
	border-bottom: 1px solid #E7F1F1;
	padding-top: 0px;
}

.secmenu .left {
	float: left;
}

.secmenu .left a {

	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
	padding: 0px 4px;
	height: 60px;
	float: left;
	position: relative;
	margin-right: 30px;
	line-height: 60px;
	font-size: 16px;
	color: #333333
}

.secmenu .left a:hover,
.secmenu .left a.current {
	color: #b91e22;
	border-bottom: 2px solid #b91e22
}

.secmenu .right {
	padding-left: 32px;
	float: right;
	background: url("../images/home.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/home.png*/
		no-repeat left center;
	line-height: 60px;
	font-size: 14px;
	color: #333333;
	font-weight: 100;
}

.secmenu .right a {
	color: #656565
}



.newslist {}

.newslist li {
	padding: 39px 0px;
}

.newslist li:nth-child(2n) {

	background: rgba(231, 241, 241, 1);
}

.newslist li .imgbox {
	float: left;
	width: 400px;
	overflow: hidden;
	height: 250px;
}

.newslist li .imgbox img {
	display: block;
	width: 100%;
}

.newslist li .content {
	width: calc(100% - 400px);
	padding-left: 52px;
	float: left;
}

.newslist li .h2tit {
	padding-top: 23px;
}

.newslist li .h2tit a {
	display: block;

	line-height: 1;
	font-size: 22px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
}

.newslist li .time {
	line-height: 1;
	padding-top: 26px;
	padding-bottom: 25px;
}

.newslist li .dec {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	padding-bottom: 25px;
}

.newslist li .morebase {}

.newslist li .h2tit a:hover {
	color: #b91e22
}

.newslist li .imgbox {
	overflow: hidden;
}

.newslist {
	padding-bottom: 42px;
}

.newslist li .imgbox img:hover {

	-webkit-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

.pagesize {
	font-size: 0px;
	text-align: center;
}

.pagesize a.current,
.pagesize a:hover {
	color: #fff;
	border-color: #b91e22;
	background: #b91e22;
}

.pagesize a {
	width: 42px;
	height: 42px;
	background: rgba(0, 117, 193, 0);
	border: 1px solid rgba(227, 227, 227, 1);
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	margin: 0px 12px;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(85, 85, 85, 1);
	text-align: center;
	line-height: 40px;
}

.height58 {
	height: 58px;
}

.contact_1 {

	padding-top: 87px;

	padding-bottom: 96px;
}

.contact_1 ul {
	text-align: center;
	font-size: 0px;
}

.contact_1 ul li:last-child {
	border: none;
}

.contact_1 ul li {
	border-right: 1px solid #eee;
	width: 25%;
	display: inline-block;
	vertical-align: top;
	min-height: 190px;
}

.contact_1 ul li .icon {}

.contact_1 ul li .icon img {}

.contact_1 ul li .title {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
	padding-top: 14px;
	/* min-height: 190px; */
}

.contact_1 ul li .dec {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 24px;
	padding-top: 33px;
}

.contact_1 ul li .dec p {}

.map {
	height: 568px;
	margin-bottom: 58px;
}

.culture_1 {}

.culture_1 .content {}

.culture_1 .items:after {
	content: "";
	display: table;
	clear: both;
}

.culture_1 .items {
	padding-top: 141px;
	margin-bottom: 74px;
}

.culture_1 .item:nth-child(2) {
	margin-right: 0px;
}

.culture_1 .item {
	display: inline-block;
	vertical-align: top;
	float: left;
	width: calc((100% - 88px)/2);
	margin-right: 88px;
	background: rgba(231, 242, 242, 1);
	padding-left: 41px;
	padding-right: 41px;
	text-align: center;
}

.culture_1 .imgbox {}

.culture_1 .imgbox img {
	display: block;
	width: 100%;
	margin-top: -61px;
}

.culture_1 .title {
	font-size: 30px;
	display: inline-block;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	padding-top: 39px;
	line-height: 1;
	padding-bottom: 11px;
	border-bottom: 3px solid #333333
}

.culture_1 .dec {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(51, 51, 51, 1);
	padding-top: 13px;
	padding-bottom: 52px;
}

.channelbanner {
	position: relative;
}

.channelbanner .imgbox img {
	max-width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-height: 88%;
}

.channelbanner .imgbox {}

.culture_1 .text {
	width: 785px;
	margin: auto;
	max-width: 100%;
}

.culture_1 .h2tit {
	font-size: 30px;
	font-family: Source Han Sans CN;
	font-weight: 500;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
	margin-bottom: 25px;
}

.culture_1 .h2tit strong {
	color: #ED2100;
	font-weight: 600;
}

.culture_1 .text p {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(51, 51, 51, 1);
	line-height: 36px;
}

.culture_1 .text {
	padding-bottom: 88px;
}

.culture_2 {
	padding-bottom: 69px;
	background: rgba(231, 242, 242, 1);
	padding-top: 62px;
}

.culture_2 .list {
	padding-top: 60px;
}

.culture_2 .list li {
	float: left;
	text-align: center;
	width: 16.66666%;
}

.culture_2 .list li .imgbox {
	height: 200px;
	background-position: center center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.culture_2 .list li .text {
	height: 200px;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 100;

	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;

	color: rgba(0, 0, 0, 1);
	background: #fff;
}

.height47 {
	height: 47px;
}

.secmenu .left2 {
	float: left;
	line-height: 60px;
}

.secmenu .left2 .cn {
	float: left;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
}

.secmenu .left2 .en {
	float: left;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(51, 51, 51, 1);
	margin-left: 17px;
	position: relative;
	top: 5px;
}

.solutionlist {
	zoom: 1;
	padding-top: 100px;

	overflow: hidden;
}

.solutionlist li:nth-child(3) {
	margin-right: 0;
}

.solutionlist li {
	width: calc((100% - 84px)/3);
	float: left;
	margin-right: 42px;
}

.solutionlist li .content {}

.solutionlist li .imgbox {

	overflow: hidden;
}

.solutionlist li .imgbox img {
	display: block;
	width: 100%;
	height: 220px;
}

.solutionlist li .text {
	height: 176px;
	background: rgba(231, 242, 242, 1);
}

.solutionlist li .title {
	text-align: center;
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	padding-top: 25px;
}

.solutionlist li .dec {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: #888888;
	line-height: 24px;
	padding: 10px;

}

.solutionlist li .imgbox:hover img {


	-webkit-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);

}

.aboutmain_1 {}

.aboutmain_1 .content {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	padding-top: 68px;
	padding-bottom: 90px;
}

.aboutmain_1 .imgbox {}

.aboutmain_1 .imgbox img {}

.aboutmain_1 .text {
	padding-left: 59px;
}

.aboutmain_1 .text h3 {
	line-height: 30px;
	font-size: 25px;
	margin-bottom: 30px;
}

.aboutmain_1 .text p {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(51, 51, 51, 1);
	line-height: 24px;
	padding-bottom: 10px;
}

.aboutmain_1 .text p:last-child {
	padding-bottom: 0;
}

.aboutmain_2 {
	background: url("../images/abm2.jpg")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/abm2.jpg*/
		no-repeat center center;
	background-size: cover;
	padding-bottom: 87px;
}

.aboutmain_2 .title2 {
	font-size: 36px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	text-align: center;
	padding-top: 81px;
	padding-bottom: 55px;
	line-height: 1;
}

.aboutmain_2 .list {
	text-align: center;
}

.aboutmain_2 .list li:nth-child(3) {}

.aboutmain_2 .list li {
	display: inline-block;
	vertical-align: middle;
	width: 286px;
	background: #fff;
	margin: 0px 3%;
	padding: 15px 13px;
	height: 361px;
}

.aboutmain_2 .imgbox {}

.aboutmain_2 .imgbox img {

	width: 100%;
}

.aboutmain_2 .title {

	font-size: 24px;

	font-family: Microsoft YaHei;

	font-weight: 400;

	color: rgba(51, 51, 51, 1);

	padding-top: 20px;

	padding-bottom: 22px;

	line-height: 1;
}

.aboutmain_2 .dec {

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 100;

	color: rgba(51, 51, 51, 1);

	line-height: 24px;
}

.aboutmain_3 {
	text-align: center;
	padding-top: 79px;
	padding-bottom: 72px;
}

.aboutmain_3 .list {
	padding-top: 39px;
}

.aboutmain_3 .list li:nth-child(5n) {}

.aboutmain_3 .list li {
	float: left;
	padding-bottom: 24px;
	width: calc((100% - 152px)/4);
	background: rgba(231, 242, 242, 0);
	border: 1px solid rgba(231, 242, 242, 1);
	margin-right: 30px;
	margin-bottom: 30px;
}

.aboutmain_3 .icon {
	position: relative;
	height: 90px;
}

.aboutmain_3 .icon img {
	position: absolute;
	top: 50%;
	left: 50%;
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 100%;
}

.aboutmain_3 .title {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(51, 51, 51, 1);
}



.Warehousing2 {}

.Warehousing2 .item {}

.Warehousing2 .content {

	padding: 73px 0px;

	display: -webkit-box;

	display: -moz-box;

	display: -webkit-flex;

	display: -moz-flex;

	display: -ms-flexbox;

	display: flex;

	align-items: center;
}

.Warehousing2 .left {

	width: 70%;

	padding-bottom: 3%;
}

.Warehousing2 .h2tit {

	font-size: 25px;

	font-family: Microsoft YaHei;

	font-weight: 400;

	color: rgba(51, 51, 51, 1);
}

.Warehousing2 .dec {

	font-size: 14px;

	font-family: Microsoft YaHei;

	font-weight: 100;

	color: rgba(51, 51, 51, 1);

	line-height: 24px;


	padding-top: 27px;

	padding-bottom: 30px;
}

.Warehousing2 .dec p {
	margin-bottom: 10px;
	padding-right: 30px;
	font-size: 16px;
}

.Warehousing2 .morebase {
	font-size: 14px;
	line-height: 30px;
	font-weight: 100;
	text-align: center;
	padding-right: 20px;
}

.Warehousing2 .imgbox {}

.Warehousing2 .item:nth-child(2n) .left {
	padding-left: 9%;
}

.Warehousing2 .item:nth-child(2n) {
	background: none
}

.Warehousing2 .item {
	background: rgba(192, 0, 0, 0.1);
}

.channelbanner .content {}

.channelbanner .text {
	background: rgba(0, 209, 209, 0.7);
	width: 384px;
	float: right;
	margin-top: 85px;
	padding: 40px 0px;
	position: relative;
	z-index: 4;
	max-width: 100%;
}

.channelbanner .text p {
	font-size: 36px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: rgba(255, 255, 255, 1);
	line-height: 72px;
	padding-left: 138px;
	background: url("../images/ic1.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/ic1.png*/
		no-repeat 90px center;
}

.prodetail_1 {
	padding-top: 42px;
}

.prodetail_1 .left {
	float: left;
	padding-top: 115px;
	width: 42%;
}

.prodetail_1 .h2tit {
	font-size: 50px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
}

.prodetail_1 .dec {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 24px;
	padding-top: 53px;
	padding-bottom: 77px;
}

.prodetail_1 .link a:nth-child(2) {
	margin-right: 0px;

	background: rgba(228, 11, 29, 1);
}

.agv_cp {
	overflow: hidden;
	padding-bottom: 0px;
	max-width: 1200px;
	margin: auto;
	padding-top: 20px;
}

.agv_cp img {
	max-width: 100%;
}

.agv_cp h3 {
	text-align: center;
	margin: 50px 0 58px 0;
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
}

.agv_cp2 {
	overflow: hidden;
	/*background: rgba(231,242,242,1);*/
	padding: 0px 0;
}

.agv_cp2 h3 {
	text-align: center;
	margin: 50px 0 58px 0;
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 1;
}

.agv_cp img {
	max-width: 100%;
}

.agv_cp .img {
	width: 30%;
	float: left;
}

.agv_cp .img img {
	max-width: 100%;
}

.agv_cp .list {
	width: 60%;
	float: left;
}

.agv_cp table {
	width: 100% !important;
	margin: auto;
	max-width: 400px;
	border-collapse: collapse;
	border: 0;
	float: left;
}

.agv_cp table td {
	border: 1px #ccc solid;
	padding: 5px;
}

.agv_cp table tr:nth-child(2n+1) {
	background: #eaeaea;
}

.agv_cp table tr:nth-child(2n) {
	background: #f9f9f9;
}

.agv_cp table td:nth-child(2n+1) {
	min-width: 40px;
	width: 30%;
}

.agv_cp table tr:hover {
	background: #fff;
}

.agv_cp .parameter {
	float: left;
}

.prodetail_1 .link {
	zoom: 1;
	overflow: hidden;
	text-align: center;
	margin: 20px 0 30px 0;
}

.prodetail_1 .link a {
	height: 50px;
	background: rgba(51, 51, 51, 1);
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
	text-align: center;
	line-height: 50px;
	margin-right: 36px;
	padding: 10px 20px;
}

.prodetail_1 .right {
	float: right;
	width: 44%;
}

.prodetail_1 .right img {

	width: 100%;
	max-height: 500px;
}

.prodetail_2 {
	padding-top: 79px;
}

.prodetail_2 .list {
	padding-top: 51px;
}

.prodetail_2 .list li:nth-child(3n) {
	margin-right: 0px;
}

.prodetail_2 .list li {
	float: left;
	margin-right: 27px;
	width: calc((100% - 54px)/3);
}

.prodetail_2 .imgbox {}

.prodetail_2 .imgbox img {
	width: 100%;
}

.prodetail_2 .dec {
	height: 131px;
	overflow: hidden;
	padding-top: 22px;
	padding-left: 17px;
	padding-right: 20px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 24px;
}

.prodetail_2 {
	padding-bottom: 60px;
}

.prodetail_3 {
	padding-top: 75px;
	padding-bottom: 59px;
}

.prodetail_3 .list {
	padding-top: 58px;
}

.prodetail_3 .list li:nth-child(3n) {
	margin-right: 0px;
}

.prodetail_3 .list li {
	float: left;
	margin-right: 27px;
	width: calc((100% - 54px)/3);
}

.prodetail_3 .imgbox {}

.prodetail_3 .imgbox img {
	width: 100%;
}

.prodetail_3 .dec {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 24px;
	padding-top: 22px;
	text-align: center;
}

.prodetail_3 .imgbox,
.prodetail_2 .imgbox {
	overflow: hidden;
}

.prodetail_3 .imgbox:hover img,
.prodetail_2 .imgbox:hover img {

	-webkit-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

.proser_list {}

.proser_list .item:nth-child(2n) {
	background: rgba(192, 0, 0, 0.1);
	;
}

.proser_list .item {
	padding-top: 10px;
	text-align: center;
	padding-bottom: 10px;
}

.proser_list .title0 {
	margin-top: 50px;
}

.proser_list .title0 span:after {
	content: "";
	position: absolute;
	left: 0px;
	width: 52px;
	height: 1px;
	background: #000;
	top: 18px;
}

.proser_list .title0 span:before {
	content: "";
	position: absolute;
	right: 0px;
	width: 52px;
	height: 1px;
	background: #000;
	top: 18px;
}

.proser_list .title0 span {
	font-size: 36px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	display: inline-block;
	position: relative;
	padding: 0px 73px;
	line-height: 1;
}

.proser_list .list {
	zoom: 1;
	overflow: hidden;
	padding-top: 58px;
}

.proser_list .list li:nth-child(3n) {
	margin-right: 0px;
}

.proser_list .list li {

	width: calc((100% - 96px)/3);

	float: left;

	margin-right: 48px;

	margin-bottom: 27px;
}

.proser_list .list li a {}

.proser_list .list li a * {

	display: block;
}

.proser_list .center {}

.proser_list .imgbox {

	background: rgba(255, 255, 255, 1);

	border: 1px solid rgba(218, 218, 218, 1);

	position: relative;

	overflow: hidden;
	text-align: center;
}

.proser_list .imgbox img {
	max-width: 100%;
	margin: 0 auto;
}

.proser_list .title {

	font-size: 18px;

	font-family: Microsoft YaHei;

	font-weight: 100;

	color: rgba(51, 51, 51, 1);

	padding-top: 25px;

	padding-bottom: 25px;

	overflow: hidden;

	text-overflow: ellipsis;

	white-space: nowrap;
}

.proser_list .imgbox img:hover {
	-webkit-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);

}

.proser_list .list {
	zoom: 1;
	overflow: hidden;
	padding-bottom: 34px;
}

.proser_list .more {

	display: block;

	margin: auto;

	width: 150px;

	background: url("../images/more4.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/more4.png*/
		no-repeat 18px center rgba(192, 0, 0, 1);
	;

	padding: 10px 10px 10px 30px;

	text-align: center;

	font-size: 16px;

	font-family: Microsoft YaHei;

	font-weight: 100;

	color: rgba(255, 255, 255, 1);

	border-radius: 8px;
	margin-bottom: 50px;
}

/*.head{box-shadow: 3px 3px 10px #ccc, -1em 0 0.4em olive;}*/
.head .slide .type2 .models:nth-child(4) {
	border: none;
}

.head .slide .type2 {}

.head .slide .type2 .h2tit {
	font-size: 18px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	line-height: 1
}

.head li:hover .slide .type2 .models,
.head li:hover .item {
	animation: d2 1s forwards;
}

.head li:hover .slide .type2 .models:nth-child(2),
.head li:hover .item:nth-child(2) {
	animation-delay: 0.1s;
}

.head li:hover .slide .type2 .models:nth-child(3),
.head li:hover .item:nth-child(3) {
	animation-delay: 0.2s;
}

.head li:hover .slide .type2 .models:nth-child(4),
.head li:hover .item:nth-child(4) {
	animation-delay: 0.3s;
}

@keyframes d2 {
	0% {
		left: 100px;
		opacity: 0
	}

	100% {
		left: 0;
		opacity: 1
	}
}

.head .item {
	position: relative;
	left: 100px;
	opacity: 0;
}

.head .slide .type2 .models {
	float: left;
	padding-left: 3%;
	width: 25%;
	min-height: 220px;
	border-right: 1px solid rgba(102, 102, 102, 0.2);
	padding-right: 3%;
	position: relative;
	left: 100px;
	opacity: 0;
}

.head .slide .type2 .link {

	padding-top: 23px;
}

.head .slide .type2 .link a {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(102, 102, 102, 1);
	line-height: 36px;
	display: block;
}

.head .slide .type2 .tit:after {
	content: "";
	width: 132px;
	height: 1px;
	position: absolute;
	left: 0px;
	top: 17px;
	background: rgba(0, 0, 0, .2);
}

.head .slide .type2 .tit {
	position: relative;
	line-height: 36px;
}

.head .slide .type2 .tit span {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	background: #E7F2F2;
	padding-right: 10px;
	font-size: 16px;
	z-index: 5;
	color: #333333;
	font-weight: bold;
}






.head .slide .type1 .models:nth-child(3) {
	border: none;
}

.head .slide .type1 {}

.head .slide .type1 .h2tit {
	font-size: 18px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	padding-top: 14px;
	line-height: 1
}

.head .slide .type1 .models {
	float: left;
	padding-left: 28px;
	width: 33.333%;
	min-height: 311px;
	border-right: 1px solid rgba(102, 102, 102, 0.2);
	padding-right: 0%;
}

.head .slide .type1 .content {
	float: left;
	width: 60%;
	padding-left: 8%;
}

.head .slide .type1 .imgbox {
	width: 40%;
	float: left;
	padding-top: 16%;
}

.head .slide .type1 .imgbox img {
	width: 100%;
}

.head .slide .type1 .link {

	padding-top: 16px;
}

.head .slide .type1 .link a {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(102, 102, 102, 1);
	line-height: 36px;
	display: block;
}

.head .slide .type1 .tit:after {
	content: "";
	width: 132px;
	height: 1px;
	position: absolute;
	left: 0px;
	top: 17px;
	background: rgba(0, 0, 0, .2);
}

.head .slide .type1 .tit {
	position: relative;
	line-height: 36px;
}

.head .slide .type1 .tit span {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	background: #E7F2F2;
	padding-right: 10px;
	font-size: 16px;
	z-index: 5;
	color: #333333;
	font-weight: bold;
}













.head .slide .type3 .title {
	text-align: center;
	font-size: 36px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	padding-top: 10px;
	line-height: 1;
	margin-bottom: 20px;
}

.head .slide .type3 .models:nth-child(4) {
	border: none;
}

.head .slide .type3 {}

.head .slide .type3 .h2tit {
	font-size: 18px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: rgba(51, 51, 51, 1);
	padding-top: 14px;
	line-height: 1
}

.head .slide .type3 .modelswrap {

	padding: 0px 16%;
}

.head .slide .type3 .models {
	float: left;
	width: 25%;
	min-height: 153px;
	border-right: 1px solid rgba(102, 102, 102, 0.2);
	padding-right: 0%;
	padding-left: 3%;
}

.head .slide .type3 .link {

	padding-top: 16px;

	float: left;

	width: 50%;
}

.head .slide .type3 .link a {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(102, 102, 102, 1);
	line-height: 36px;
	display: block;
}

.head .slide .type4 {
	text-align: center;
	padding-bottom: 20px;
	padding-top: 20px;
	zoom: 1;
	overflow: hidden;
}

.head .slide .type4 .models {
	float: left;
	width: 25%
}

.head .slide .type4 .models a:hover {
	background: #333333
}

.head .slide .type4 .models a {
	width: 162px;
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255, 255, 255, 1) !important;
	height: 162px;
	background: rgba(0, 209, 209, 1);
	border-radius: 50%;
	display: block;
	margin: auto;
	text-align: center;

	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.head .slide .link a:hover {
	color: #b91e22
}


.mobile-inner-nav h2.h2tit {
	background: url("../images/right4.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/right4.png*/
		no-repeat 96% center;
	background-size: 14px;

	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
}

.mobile-inner-nav li.current2 h2.h2tit {
	background: url("../images/bottom4.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/bottom4.png*/
		no-repeat 96% center;
	background-size: auto 14px;
}





.head.cur2.cur1 {
	position: fixed;
	-o-transform: translate(0%, 0%);
	-webkit-transform: translate(0%, 0%);
	-moz-transform: translate(0%, 0%);
	-ms-transform: translate(0%, 0%);
	transform: translate(0%, 0%);

}

.head.cur2 {
	position: fixed;
	-o-transform: translate(0%, 0%);
	-webkit-transform: translate(0%, 0%);
	-moz-transform: translate(0%, 0%);
	-ms-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
}

.head.cur1 {
	-o-transform: translate(0%, -150%);
	-webkit-transform: translate(0%, -150%);
	-moz-transform: translate(0%, -150%);
	-ms-transform: translate(0%, -150%);
	transform: translate(0%, -150%);
	/* height: 60px; */
}

.head,
.head .logo,
.head .logo img,
.head li,
.head .h2tit a {
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;
}

.head.cur2.cur1 img {}

.cur1.head .logo {
	padding-top: 5px;
}

.cur1.head .h2tit a {
	line-height: 60px;
}

.cur1.head .nav li:hover .slide {
	top: 60px;
}

.cur1.head .nav li .h2tit a {
	line-height: 60px;

}

.agv_nava1 {
	font-weight: 400 !important;
	font-size: 16px !important;
}

.index .section_2 .dec2 p {
	float: left;
	width: 50%;
	margin-bottom: 23px;
	padding-left: 20px;
	background: url("../images/cir.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/cir.png*/
		no-repeat left center;
	text-align: left;
	z-index: 10;
	position: relative;
}

.index .section_3 .dec p {}

.index .section_3 .dec p span {
	margin-bottom: 23px;
	padding-left: 30px;
	margin-right: 30px;
	background: url("../images/more0.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/more0.png*/
		no-repeat left center;
	text-align: left;
}


/*ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³*/
.pagelist ul {
	text-align: center;
	margin: 20px 0;
}

.pagelist li {
	display: inline-block;
	margin: 0 2px;
}

.pagelist li a {
	color: #666;
	display: inline-block;
	border: 1px solid #ddd;
	padding: 6px 15px;
}

.pagelist li a:hover {
	border-color: rgba(0, 209, 209, 1);
	background: rgba(0, 209, 209, 1);
	color: #fff;
}

.pagelist li.active a {
	border-color: rgba(0, 209, 209, 1);
	background: rgba(0, 209, 209, 1);
	color: #fff;
}

.agv_nbanner {
	padding-top: 60px
}

.agv_nbanner img {
	max-width: 100%;
}

.agv_hezuo {}

.agv_hezuo li {
	float: left;
	width: 18%;
	background: #FFFFFF;
	margin: 30px 1%;
	text-align: center;
}

.agv_news {
	overflow: hidden;
	margin-top: 30px;
}

.agv_news h1 {
	text-align: center;
}

.agv_news .info {
	text-align: center;
	width: 100%;
}

.agv_news .intro {}

.agv_news .intro p {
	line-height: 25px;
	margin-bottom: 10px;
}

.news_show {
	overflow: hidden;
	margin: 30px auto;
}

.news_show h1 {
	text-align: center;
	font-size: 30px;
	font-weight: 400;
	padding: 0;
}

.news_show .info {
	border-left: 3px solid #b91e22;
	background: #f3f3f3;
	margin: 15px 0;
	padding: 10px 15px;
	font-size: 14px;
	color: #666;
}

.news_show .intro a {
	color: #06C;
}

.news_show .intro a:hover {
	color: #f30;
}

.news_show .intro img {
	max-width: 100%;
	height: auto;
}

.news_show .prenext {
	margin-top: 30px;
	text-align: center;
	overflow: hidden;
}

.news_show .prenext p {
	font-weight: bold;
}

.news_show .prenext a {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #ddd;
	padding: 6px 20px;
	min-width: 100px;
}

.news_show .prenext a span {
	font-size: 18px;
	margin-right: 10px;
}

.news_show .prenext a em {
	font-style: normal;
	font-size: 18px;
}

.news_show .prenext a:hover {
	background: #b91e22;
	color: #fff;
}

.news_show .prenext a:hover span {
	color: #fff;
}

.news_show .prenext .pre {
	float: left;
}

.news_show .prenext .next {
	float: right;
}

.news_show .tags {
	font-weight: 500;
}

.news_show .tags a {
	margin-left: 15px;
	display: inline-block;
	border-radius: 4px;
	border: 1px solid #ddd;
	background: #fff;
	padding: 4px 10px;
	font-weight: normal;
	font-size: 14px;
}

.news_show .tags a:hover {
	background: rgba(0, 197, 197, 1);
	color: #fff;
	border-color: rgba(0, 197, 197, 1);
}

::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #999;
	font-size: 13px;
	font-weight: 100;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #999;
	font-size: 13px;
	font-weight: 100;
}


:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #999;
	font-size: 13px;
	font-weight: 100;
}


/*ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬*/

.Warehousing1 .imgbox .word i {
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	overflow: hidden;
	text-indent: 33333px;
	overflow: hidden;
	font-size: 0px;
}

.Warehousing1 .imgbox .word:before {
	content: '';
	display: none;
	background: #ffffff;
	border-radius: 50%;
	opacity: 1;
	-webkit-transform: scale(0);
	transform: scale(0);
	height: 100%;
	width: 100%;
	display: block;
	-webkit-animation: pulse 5s ease infinite;
	animation: pulse 5s ease infinite;
}

.Warehousing1 .imgbox .word:after {
	content: "";
	position: absolute;
	width: 28px;
	height: 28px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	transition: -webkit-transform 0.2s ease;
	transition: transform 0.2s ease;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.Warehousing1 .imgbox .word.word1 {

	left: 28%;

	top: 35%;
}

.Warehousing1 .imgbox .word.word2 {

	left: 54%;

	top: 29%;
}

.Warehousing1 .imgbox .word.word3 {

	right: 33%;

	top: 32%;
}

.Warehousing1 .imgbox .word.word4 {

	right: 24%;

	top: 17%;
}

.Warehousing1 .imgbox .word.word5 {

	left: 14%;

	bottom: 20%;
}

.Warehousing1 .imgbox .word.word6 {

	left: 33%;

	bottom: 26%;
}

.Warehousing1 .imgbox .word.word7 {

	left: 54%;

	bottom: 29%;
}

.Warehousing1 .imgbox .word.word8 {

	right: 32%;

	bottom: 34%;
}

.Warehousing1 .imgbox .word.word9 {

	right: 15%;

	bottom: 53%;
}




.Warehousing1 .imgbox .word {
	width: 15px;
	height: 15px;
	position: absolute;
	-webkit-transform: translate3d(-14px, 11px, 0);
	transform: translate3d(-14px, 11px, 0);
	cursor: pointer;
	opacity: 1;
}

.Warehousing1 {
	padding-top: 50px;
	padding-bottom: 25px;
}

.Warehousing1 .hd {
	text-align: center;
	margin-bottom: 30px;
	font-size: 0px;
	zoom: 1;
	overflow: hidden;
}

.Warehousing1 .hd a {
	background: rgba(51, 51, 51, 1);
	border-radius: 10px;
	margin: 0px 15px;
	display: inline-block;
	vertical-align: middle;
	padding: 10px 30px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(255, 255, 255, 1);
}

.Warehousing1 .hd a:hover,
.Warehousing1 .hd a.current {
	background: #b91e22;
}

.Warehousing1 .bd {}

.Warehousing1 .model {}

.Warehousing1 .imgbox {
	height: 508px;
	position: relative;
	background-position: center right !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.Warehousing1 .text {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
	line-height: 36px;
	padding: 58px 34px 69px 34px;
	position: absolute;
	top: 50%;
	-o-transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	right: 32px;
	width: 454px;
	background: rgba(0, 0, 0, 0.7);
}

.Warehousing1 .imgbox .word i b {
	position: relative;
	left: 2px;
	top: -3px;
	font-weight: bold;
	display: none;
	font-size: 0.875rem;
}


.Warehousing1 .imgbox .word:nth-child(1):before,
.Warehousing1 .imgbox .word:nth-child(3):before,
.Warehousing1 .imgbox .word:nth-child(5):before,
.Warehousing1 .imgbox .word:nth-child(7):before,
.Warehousing1 .imgbox .word:nth-child(9):before {
	-webkit-animation-delay: 1.75s;
	animation-delay: 1.75s;
}

.Warehousing1 .imgbox .word:nth-child(2):before,
.Warehousing1 .imgbox .word:nth-child(4):before,
.Warehousing1 .imgbox .word:nth-child(7):before {
	-webkit-animation-delay: 2.75s;
	animation-delay: 2.75s;
}


@-webkit-keyframes pulsehover {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(18);
		transform: scale(18)
	}
}

.Warehousing1 .imgbox .word:hover:before {
	display: inline-block;
	-webkit-animation: pulsehover 1s ease infinite !important;
	animation: pulsehover 1s ease infinite !important;
	-webkit-animation-delay: 0 !important;
	animation-delay: 0 !important;
}

.Warehousing1 .imgbox .word:hover:after {
	transform: translate(-50%, -50%) scale(0.5);
}


/*ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢*/
.fangan_bg1 .imgbox .word i {
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	overflow: hidden;
	text-indent: 33333px;
	overflow: hidden;
	font-size: 0px;
}

.fangan_bg1 .imgbox .word:before {
	content: '';
	display: none;
	background: #ffffff;
	border-radius: 50%;
	opacity: 1;
	-webkit-transform: scale(0);
	transform: scale(0);
	height: 100%;
	width: 100%;
	display: block;
	-webkit-animation: pulse 5s ease infinite;
	animation: pulse 5s ease infinite;
}

.fangan_bg1 .imgbox .word:after {
	content: "";
	position: absolute;
	width: 28px;
	height: 28px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	transition: -webkit-transform 0.2s ease;
	transition: transform 0.2s ease;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.fangan_bg1 .imgbox .word.word1 {
	left: 12%;
	top: 25%;
}

.fangan_bg1 .imgbox .word.word2 {
	left: 44%;
	top: 25%;
}

.fangan_bg1 .imgbox .word.word3 {

	right: 33%;

	top: 23%;
}

.fangan_bg1 .imgbox .word.word4 {

	right: 13%;

	top: 20%;
}

.fangan_bg1 .imgbox .word.word5 {

	left: 12%;

	bottom: 27%;
}

.fangan_bg1 .imgbox .word.word6 {

	left: 54%;

	bottom: 45%;
}

.fangan_bg1 .imgbox .word.word7 {

	left: 54%;

	bottom: 29%;
}

.fangan_bg1 .imgbox .word.word8 {

	right: 32%;

	bottom: 34%;
}

.fangan_bg1 .imgbox .word.word9 {

	right: 15%;

	bottom: 53%;
}





.fangan_bg1 .imgbox .word {
	width: 15px;
	height: 15px;
	position: absolute;
	-webkit-transform: translate3d(-14px, 11px, 0);
	transform: translate3d(-14px, 11px, 0);
	cursor: pointer;
	opacity: 1;
}

.fangan_bg1 {
	padding-top: 50px;
	padding-bottom: 25px;
}

.fangan_bg1 .hd {
	text-align: center;
	margin-bottom: 30px;
	font-size: 0px;
	zoom: 1;
	overflow: hidden;
}

.fangan_bg1 .hd a {
	background: rgba(51, 51, 51, 1);
	border-radius: 10px;
	margin: 0px 15px;
	display: inline-block;
	vertical-align: middle;
	padding: 10px 30px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(255, 255, 255, 1);
}

.fangan_bg1 .hd a:hover,
.fangan_bg1 .hd a.current {
	background: #b91e22;
}

.fangan_bg1 .bd {}

.fangan_bg1 .model {}

.fangan_bg1 .imgbox {
	height: 508px;
	position: relative;
	background-position: center right !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.fangan_bg1 .text {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
	line-height: 36px;
	padding: 58px 34px 69px 34px;
	position: absolute;
	top: 50%;
	-o-transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	right: 32px;
	width: 454px;
	background: rgba(0, 0, 0, 0.7);
}

.fangan_bg1 .imgbox .word i b {
	position: relative;
	left: 2px;
	top: -3px;
	font-weight: bold;
	display: none;
	font-size: 0.875rem;
}


.fangan_bg1 .imgbox .word:nth-child(1):before,
.fangan_bg1 .imgbox .word:nth-child(3):before,
.fangan_bg1 .imgbox .word:nth-child(5):before {
	-webkit-animation-delay: 1.75s;
	animation-delay: 1.75s;
}

.fangan_bg1 .imgbox .word:nth-child(2):before,
.fangan_bg1 .imgbox .word:nth-child(4):before,
.fangan_bg1 .imgbox .word:nth-child(6):before {
	-webkit-animation-delay: 2.75s;
	animation-delay: 2.75s;
}


@-webkit-keyframes pulsehover {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(18);
		transform: scale(18)
	}
}

.fangan_bg1 .imgbox .word:hover:before {
	display: inline-block;
	-webkit-animation: pulsehover 1s ease infinite !important;
	animation: pulsehover 1s ease infinite !important;
	-webkit-animation-delay: 0 !important;
	animation-delay: 0 !important;
}

.fangan_bg1 .imgbox .word:hover:after {
	transform: translate(-50%, -50%) scale(0.5);
}


/*ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¸*/



/*ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â§ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»*/
.fangan_bg2 .imgbox .word i {
	background-color: #ffffff;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	overflow: hidden;
	text-indent: 33333px;
	overflow: hidden;
	font-size: 0px;
}

.fangan_bg2 .imgbox .word:before {
	content: '';
	display: none;
	background: #ffffff;
	border-radius: 50%;
	opacity: 1;
	-webkit-transform: scale(0);
	transform: scale(0);
	height: 100%;
	width: 100%;
	display: block;
	-webkit-animation: pulse 5s ease infinite;
	animation: pulse 5s ease infinite;
}

.fangan_bg2 .imgbox .word:after {
	content: "";
	position: absolute;
	width: 28px;
	height: 28px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	transition: -webkit-transform 0.2s ease;
	transition: transform 0.2s ease;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.fangan_bg2 .imgbox .word.word1 {
	left: 15%;
	top: 38%;
}

.fangan_bg2 .imgbox .word.word2 {
	left: 44%;
	top: 45%;
}

.fangan_bg2 .imgbox .word.word3 {

	right: 23%;

	top: 33%;
}

.fangan_bg2 .imgbox .word.word4 {

	left: 23%;

	bottom: 30%;
}

.fangan_bg2 .imgbox .word.word5 {

	left: 58%;

	bottom: 20%;
}

.fangan_bg2 .imgbox .word.word6 {

	left: 78%;

	bottom: 25%;
}

.fangan_bg2 .imgbox .word.word7 {

	left: 54%;

	bottom: 29%;
}

.fangan_bg2 .imgbox .word.word8 {

	right: 32%;

	bottom: 34%;
}

.fangan_bg2 .imgbox .word.word9 {

	right: 15%;

	bottom: 53%;
}

@-webkit-keyframes pulse {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	20%,
	100% {
		opacity: 0;
		-webkit-transform: scale(18);
		transform: scale(18)
	}
}

@keyframes pulse {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	20%,
	100% {
		opacity: 0;
		-webkit-transform: scale(18);
		transform: scale(18)
	}
}




.fangan_bg2 .imgbox .word {
	width: 15px;
	height: 15px;
	position: absolute;
	-webkit-transform: translate3d(-14px, 11px, 0);
	transform: translate3d(-14px, 11px, 0);
	cursor: pointer;
	opacity: 1;
}

.fangan_bg2 {
	padding-top: 50px;
	padding-bottom: 25px;
}

.fangan_bg2 .hd {
	text-align: center;
	margin-bottom: 30px;
	font-size: 0px;
	zoom: 1;
	overflow: hidden;
}

.fangan_bg2 .hd a {
	background: rgba(51, 51, 51, 1);
	border-radius: 10px;
	margin: 0px 15px;
	display: inline-block;
	vertical-align: middle;
	padding: 10px 30px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(255, 255, 255, 1);
}

.fangan_bg2 .hd a:hover,
.fangan_bg2 .hd a.current {
	background: #b91e22;
}

.fangan_bg2 .bd {}

.fangan_bg2 .model {}

.fangan_bg2 .imgbox {
	height: 508px;
	position: relative;
	background-position: center right !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

.fangan_bg2 .text {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
	line-height: 36px;
	padding: 58px 34px 69px 34px;
	position: absolute;
	top: 50%;
	-o-transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	right: 32px;
	width: 454px;
	background: rgba(0, 0, 0, 0.7);
}

.fangan_bg2 .imgbox .word i b {
	position: relative;
	left: 2px;
	top: -3px;
	font-weight: bold;
	display: none;
	font-size: 0.875rem;
}


.fangan_bg2 .imgbox .word:nth-child(1):before,
.fangan_bg2 .imgbox .word:nth-child(3):before,
.fangan_bg2 .imgbox .word:nth-child(5):before {
	-webkit-animation-delay: 1.75s;
	animation-delay: 1.75s;
}

.fangan_bg2 .imgbox .word:nth-child(2):before,
.fangan_bg2 .imgbox .word:nth-child(4):before,
.fangan_bg2 .imgbox .word:nth-child(6):before {
	-webkit-animation-delay: 2.75s;
	animation-delay: 2.75s;
}


@-webkit-keyframes pulsehover {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(18);
		transform: scale(18)
	}
}

.fangan_bg2 .imgbox .word:hover:before {
	display: inline-block;
	-webkit-animation: pulsehover 1s ease infinite !important;
	animation: pulsehover 1s ease infinite !important;
	-webkit-animation-delay: 0 !important;
	animation-delay: 0 !important;
}

.fangan_bg2 .imgbox .word:hover:after {
	transform: translate(-50%, -50%) scale(0.5);
}




.fazhan {
	text-align: center;
	overflow: hidden;
}

.fazhan ul {}

.fazhan ul li {
	overflow: hidden;
}

.fazhan ul li h3 {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 10px;
}

.fazhan ul li h3 a {
	font-size: 25px;
}

.fazhan ul li h5 {
	width: 1200px;
	margin: 20px auto;
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	font-weight: 100;
	margin-bottom: 10px;
}

.fazhan ul li img {
	max-width: 100%;
}

.agv_fa {
	width: 1200px;
	margin: 50px auto;
	overflow: hidden;
}

.agv_fa_l {
	float: left;
	width: 600px;
}

.agv_fa_l img {
	max-width: 100%;
}

.agv_fa_r {
	float: left;
	width: 600px;
	padding-top: 200px;
}

.agv_fa_r1 {
	width: 80px;
	float: left;
	font-size: 68px;
	font-weight: bold;
	padding-right: 20px;
	margin-right: 10px;
}

.agv_fa_r2 {
	float: left;
	width: 400px;
}

.agv_fa_r2 h3 {
	margin-top: 15px;
	color: #b91e22;
	font-size: 30px;
}

.agv_fa_r2 h5 {
	color: #333;
	font-size: 18px;
}

.agv_fa_r3 {
	width: 100%;
	overflow: hidden;
	color: #333;
	font-size: 16px;
	line-height: 30px;
}

.agv_fa2 {
	width: 1200px;
	margin: 50px auto;
	overflow: hidden;
}

.agv_fa2_r1 {
	width: 80px;
	float: left;
	font-size: 68px;
	font-weight: bold;
	padding-right: 20px;
	margin-right: 10px;
}

.agv_fa2_r2 {
	float: left;
	width: 1000px;
}

.agv_fa2_r2 h3 {
	margin-top: 15px;
	color: #b91e22;
	font-size: 30px;
}

.agv_fa2_r2 p {
	color: #333;
	font-size: 18px;
}

.agv_fa2_r3 {
	width: 100%;
	text-align: center;
}

.agv_fa2_r3 img {
	max-width: 100%;
}

.agv_fa2_rx2 {
	clear: both;
	color: #333;
	font-size: 18px;
}

.agv_fa3 {
	width: 1200px;
	margin: 50px auto;
	overflow: hidden;
}

.agv_fa3_l {
	width: 660px;
	float: left;
}

.agv_fa3_l img {
	max-width: 100%;
}

.agv_fa3_r {
	float: left;
	width: 540px;
}

.agv_fa3_r1 {
	width: 80px;
	float: left;
	font-size: 68px;
	font-weight: bold;
	padding-right: 20px;
	margin-right: 10px;
}

.agv_fa3_r2 {
	float: left;
	width: 400px;
}

.agv_fa3_r2 h3 {
	margin-top: 15px;
	color: #b91e22;
	font-size: 30px;
}

.agv_fa3_r3 {
	width: 100%;
	overflow: hidden;
	padding-left: 0px;
	color: #333;
	font-size: 16px;
	line-height: 30px;
	text-align: justify;
}

.agv_fa3_r4 {
	width: 100%;
	overflow: hidden;
	padding-left: 20px;
	margin-top: 30px;
}

.agv_fa3_r4 ul {}

.agv_fa3_r4 ul li {
	width: 50%;
	float: left;
	font-size: 18px;
	color: #b91e22;
	line-height: 36px;
	list-style-type: disc;
}

.agv_fa4 {
	width: 1200px;
	margin: 50px auto;
	overflow: hidden;
}

.agv_fa4_r1 {
	width: 80px;
	float: left;
	font-size: 68px;
	font-weight: bold;
	padding-right: 20px;
	margin-right: 10px;
}

.agv_fa4_r2 {
	float: left;
	width: 400px;
}

.agv_fa4_r2 h3 {
	margin-top: 15px;
	color: #b91e22;
	font-size: 30px;
}

.agv_fa4_r3 {
	overflow: hidden;
	width: 100%;
	overflow: hidden;
}

.agv_fa4_r3 ul {}

.agv_fa4_r3 ul li {
	width: 25%;
	text-align: center;
	float: left;
}

.agv_fa_bg {
	background: url("../images/fa_bg.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/fa_bg.png*/
		no-repeat center bottom;
	padding-bottom: 550px;
}

.agv_sq {
	background: #FFFFFF;
	overflow: hidden;
	border-bottom: 1px solid #e9e9e9;
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.agv_sq1 {
	width: 1100px;
	margin: 50px auto;
	text-align: center;
}

.agv_sq1 h3 {
	margin-top: 50px;
	font-size: 30px;
	margin-bottom: 20px;
}

.agv_sq1 p {
	font-size: 18px;
	color: #333;
	line-height: 30px;
}

.agv_sq2 {
	overflow: hidden;
	width: 1200px;
	margin: 20px auto;
}

.agv_sq2 ul {}

.agv_sq2 ul li {
	float: left;
	width: 50%;
}

.agv_sq2_2 {
	padding-left: 30px;
}

.agv_sq2 ul li img {
	max-width: 100%;
}

.agv_sq02 {}

.agv_sq02_2 {
	background: url("../images/sq_bg.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/sq_bg.png*/
		center top;
	height: 500px;
}

.agv_sq02_2 ul {}

.agv_sq02_2 ul li {
	background: #FFFFFF;
	text-align: right;
	padding: 50px;
	border: 1px solid #e9e9e9;
	width: 1200px;
	margin: 50px auto;
	overflow: hidden;
}

.agv_sq02_2 ul li img {}

.agv_sq02_3 {
	background: #e9e9e9;
	height: 200px;
	width: 100%;
	margin-top: -100px;
}

.agv_sq03 {
	overflow: hidden;
	margin-bottom: 100px;
}

.agv_sq03_1 {
	width: 100%;
	margin: 50px auto;
	text-align: center;
}

.agv_sq03_1 h3 {
	margin-top: 50px;
	font-size: 30px;
	margin-bottom: 20px;
}

.agv_sq03_1 p {
	font-size: 18px;
	color: #333;
	line-height: 30px;
}

.agv_sq03_2 {}

.agv_sq03_2 ul {}

.agv_sq03_2 ul h4 {
	background: #b91e22;
	font-size: 20px;
	text-align: center;
	color: #FFFFFF;
	width: 800px;
	margin: 30px auto;
	line-height: 50px;
}

.agv_sq03_2 ul li {
	text-align: center;
	padding: 50px;
}



@media screen and (max-width: 1200px) {
	.fazhan ul li h3 a {
		font-size: 18px;
	}

	.fazhan ul li h5 {
		width: 100%;
		padding: 10px;
	}

	.agv_fa {
		width: 100%;
		margin: 50px auto;
		overflow: hidden;
	}

	.agv_fa_l {
		width: 100%;
		text-align: center;
	}

	.agv_fa_l img {
		max-width: 100%;
	}

	.agv_fa_r {
		width: 100%;
		padding-top: 30px;
	}

	.agv_fa_r1 {
		width: 50px;
		float: left;
		font-size: 40px;
		font-weight: bold;
		padding-right: 20px;
		margin-right: 10px;
	}

	.agv_fa_r2 {
		float: left;
		width: 82%;
	}

	.agv_fa_r2 h3 {
		margin-top: 10px;
		color: #b91e22;
		font-size: 20px;
	}

	.agv_fa_r2 h5 {
		color: #333;
		font-size: 14px;
	}

	.agv_fa_r3 {
		width: 100%;
		overflow: hidden;
		color: #333;
		font-size: 13px;
		line-height: 20px;
	}

	.agv_fa2 {
		width: 100%;
		margin: 50px auto;
		overflow: hidden;
	}

	.agv_fa2_r1 {
		width: 50px;
		float: left;
		font-size: 40px;
		font-weight: bold;
		padding-right: 20px;
		margin-right: 10px;
	}

	.agv_fa2_r2 {
		float: left;
		width: 82%;
	}

	.agv_fa2_r2 h3 {
		margin-top: 10px;
		color: #b91e22;
		font-size: 20px;
	}

	.agv_fa2_r2 p {
		color: #333;
		font-size: 14px;
		text-align: justify;
	}

	.agv_fa2_r3 {
		width: 100%;
		text-align: center;
	}

	.agv_fa2_r3 img {
		max-width: 100%;
	}


	.agv_fa3 {
		width: 100%;
		margin: 50px auto;
		overflow: hidden;
	}

	.agv_fa3_l {
		width: 100%;
		float: left;
	}

	.agv_fa3_l img {
		max-width: 100%;
	}

	.agv_fa3_r {
		float: left;
		width: 100%;
	}

	.agv_fa3_r1 {
		width: 50px;
		float: left;
		font-size: 40px;
		font-weight: bold;
		padding-right: 20px;
		margin-right: 10px;
	}

	.agv_fa3_r2 {
		float: left;
		width: 82%;
	}

	.agv_fa3_r2 h3 {
		margin-top: 15px;
		color: #b91e22;
		font-size: 20px;
	}

	.agv_fa3_r3 {
		width: 100%;
		overflow: hidden;
		padding-left: 0px;
		color: #333;
		font-size: 13px;
		line-height: 20px;
	}

	.agv_fa3_r4 {
		width: 100%;
		overflow: hidden;
		padding-left: 20px;
		margin-top: 30px;
	}

	.agv_fa3_r4 ul {}

	.agv_fa3_r4 ul li {
		width: 50%;
		float: left;
		font-size: 14px;
		color: #b91e22;
		line-height: 36px;
		list-style-type: disc;
	}

	.agv_fa4 {
		width: 100%;
		margin: 50px auto;
		overflow: hidden;
	}

	.agv_fa4_r1 {
		width: 50px;
		float: left;
		font-size: 40px;
		font-weight: bold;
		padding-right: 20px;
		margin-right: 10px;
	}

	.agv_fa4_r2 {
		float: left;
		width: 82%;
	}

	.agv_fa4_r2 h3 {
		margin-top: 15px;
		color: #b91e22;
		font-size: 20px;
	}

	.agv_fa4_r3 {
		overflow: hidden;
		width: 100%;
		overflow: hidden;
	}

	.agv_fa4_r3 ul {}

	.agv_fa4_r3 ul li {
		width: 50%;
		text-align: center;
		float: left;
		margin: 20px 0;
	}

	.agv_fa4_r3 ul li img {
		max-width: 100%;
	}

	.agv_fa_bg {
		background: url("../images/fa_bg_w.png")
			/*tpa=http://www.mw-robot.com/template/pc/skin/images/fa_bg_w.png*/
			no-repeat center bottom;
		padding: 0 10px 220px 10px;
	}

	.agv_sq {
		background: #FFFFFF;
		overflow: hidden;
		border-bottom: 1px solid #e9e9e9;
		margin-bottom: 50px;
		padding: 10px;
	}

	.agv_sq1 {
		width: 100%;
		margin: 20px auto;
		text-align: center;
	}

	.agv_sq1 h3 {
		margin-top: 10px;
		font-size: 25px;
		margin-bottom: 20px;
		width: 100%;
	}

	.agv_sq1 p {
		font-size: 14px;
		color: #333;
		line-height: 20px;
		width: 100%;
		font-weight: 100;
		text-align: justify;
		padding: 0 10px;
	}

	.agv_sq2 {
		overflow: hidden;
		width: 100%;
		margin: 20px auto;
	}

	.agv_sq2 ul {}

	.agv_sq2 ul li {
		float: left;
		width: 100%;
	}

	.agv_sq2_2 {
		padding-left: 30px;
	}

	.agv_sq2 ul li img {
		max-width: 100%;
	}

	.agv_sq02 {}

	.agv_sq02_2 {
		background: none;
		height: auto;
	}

	.agv_sq02_2 ul {}

	.agv_sq02_2 ul li {
		background: #FFFFFF;
		text-align: right;
		padding: 50px;
		border: 1px solid #e9e9e9;
		width: 98%;
		margin: 30px auto;
		overflow: hidden;
	}

	.agv_sq02_2 ul li img {
		max-width: 100%;
	}

	.agv_sq02_3 {
		background: #e9e9e9;
		height: 200px;
		width: 100%;
		margin-top: -100px;
	}

	.agv_sq03 {
		overflow: hidden;
		margin-bottom: 30px;
	}

	.agv_sq03_1 {
		width: 100%;
		margin: 20px auto;
		text-align: center;
	}

	.agv_sq03_1 h3 {
		margin-top: 10px;
		font-size: 25px;
		margin-bottom: 20px;
	}

	.agv_sq03_1 p {
		font-size: 14px;
		color: #333;
		line-height: 20px;
		font-weight: 100;
		text-align: justify;
		padding: 0 10px;
	}

	.agv_sq03_2 {}

	.agv_sq03_2 ul {}

	.agv_sq03_2 ul h4 {
		background: #b91e22;
		font-size: 20px;
		text-align: center;
		color: #FFFFFF;
		width: 90%;
		margin: 30px auto;
		line-height: 50px;
	}

	.agv_sq03_2 ul li {
		text-align: center;
		padding: 50px;
	}

	.agv_sq03_2 ul li img {
		max-width: 100%;
	}

}

.head .current a {}

.head .slide .type2 .models h2 a {
	color: #333 !important;
	border-bottom: 2px solid #b91e22;
	background: none;
}

.head .current h2 a,
.head li:hover h2 a {
	color: #b91e22 !important;
	/* border-bottom: 2px solid #b91e22; */
	/* background:#b91e22; */
}


.index .section_01 {
	background-size: cover;
	text-align: center;
}

.index .section_01 li {
	float: left;
	width: 25%;
	text-align: center;
}

.index .section_01 li .icon {
	padding-top: 190px;
}

.index .section_01 li .icon img {}

.index .section_01 li .title {
	font-size: 26px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #b91e22;
	padding-top: 50px;
	line-height: 1;
	padding-bottom: 21px;
}

.index .section_01 li .dec {

	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	padding-bottom: 130px;
}

.index .section_01 li .dec p {}

.index .section_02 {
	background: #f5f5f5
}

.index .section_02 .content {
	position: relative;
	padding-top: 126px;
}

.index .section_02 .text img {
	max-width: 100%;
	margin: auto;
	display: block;
}

.index .section_02 .text {
	text-align: center;
	position: absolute;
	left: 0px;
	top: 44px;
	width: 100%;
	display: none;
}

.index .section_02 .items {
	position: relative;
	z-index: 6;
}

.index .section_02 .item:nth-child(2n) {
	float: right;
}

.index .section_02 .item {
	float: left;
	width: calc((100% - 18px)/2);
}

.index .section_02 .h2tit {
	font-size: 37px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #333333;
	line-height: 1;
	margin-bottom: 24px;
	padding-top: 3px;
}

.index .section_02 .h2tit a {

	color: #333333;

}

.index .section_02 .dec {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 27px;
	margin-bottom: 52px;
}

.index .section_02 .model {
	height: 520px;
	background: #FFFFFF;
	position: relative;
	padding-top: 37px;
	padding-left: 31px;
	color: #333333;
}

.index .section_02 .h3tit {
	font-size: 26px;
	line-height: 1;
	margin-bottom: 15px;
}

.index .section_02 .dec2 {
	font-size: 18px;
	line-height: 25px;
	height: 0;
	opacity: 0;
	z-index: 10;
	position: relative;
}

.index .section_02 .more {
	display: block;
	margin-top: 23px;
	color: #333;
	font-size: 16px;
}

.index .section_02 .imgbox {
	position: absolute;
	right: 4%;
	bottom: 7%;
}

.index .section_02 .imgbox img {
	max-height: 500px;

}

.index .section_02 .h3tit a:hover,
.index .section_02 .dec2 a:hover {
	color: #b91e22
}

.index .section_02 .dec2 a.more:hover {
	color: #b91e22
}

.index .section_03,
.index .section_03 *,
.index .section_02,
.index .section_02 * {

	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	transition: all 0.4s;

}

.index .section_02 .item:nth-child(2) .model {
	height: 218px;
	margin-bottom: 18px;

}

.index .section_02 {
	padding-bottom: 9px;
}

.index .section_03 {
	background: #fff;
	padding-bottom: 84px;
	padding-top: 46px;
}

.titlem {
	text-align: center;
}

.titlem .titlesr {
	padding-bottom: 15px;
	font-size: 37px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #333333;
	line-height: 1;
}

.titlem .decr {
	text-align: center;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	letter-spacing: 0px;
}

.index .section_03 li:nth-child(2n) {
	float: right;
	clear: right;
}

.index .section_03 li {
	float: left;
	clear: left;
	margin-bottom: 33px;
}

.index .section_03 .content {
	position: relative;
	zoom: 1;
	overflow: hidden;
	background: url("../images/piy.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/piy.png*/
		no-repeat center center;
	width: 1193px;
	height: 431px;
	margin: auto;
	padding-top: 41px;
	max-width: 100%;
	margin-top: 50px;
}

.index .section_03 .titles {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	float: left;
	width: 302px;
	text-align: right;
	line-height: 90px;
}

.index .section_03 .icon {
	float: right;
	margin-left: 18px;
}

.index .section_03 .icon img {}

.index .section_03 li:nth-child(2n) .titles {
	float: right;
	text-align: left;
}

.index .section_03 li:nth-child(2n) .icon {
	float: left;
	margin-left: 0px;
	margin-right: 18px;
}

.index .section_03 .icon img:hover {
	-webkit-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}


.agv_fa2 .section_03 li:nth-child(2n) {
	float: right;
	clear: right;
}

.agv_fa2 .section_03 li {
	float: left;
	clear: left;
	margin-bottom: 33px;
}

.agv_fa2 .section_03 .content {
	position: relative;
	zoom: 1;
	overflow: hidden;
	background: url("../images/piy.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/piy.png*/
		no-repeat center center;
	width: 893px;
	height: 431px;
	margin: auto;
	padding-top: 41px;
	max-width: 100%;
	margin-top: 50px;
}

.agv_fa2 .section_03 .titles {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #b91e22;
	line-height: 90px;
	float: left;
	width: 102px;
	text-align: right;
}

.agv_fa2 .section_03 .icon {
	float: right;
	margin-left: 18px;
}

.agv_fa2 .section_03 .icon img {}

.agv_fa2 .section_03 li:nth-child(2n) .titles {
	float: right;
	text-align: left;
}

.agv_fa2 .section_03 li:nth-child(2n) .icon {
	float: left;
	margin-left: 0px;
	margin-right: 18px;
}

.agv_fa2 .section_03 {
	padding: 80px 0;
}

.agv_fa2 .section_03 .icon img:hover {
	-webkit-transform: scale(1.05, 1.05);
	-o-transform: scale(1.05, 1.05);
	-moz-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}





.index .section_04 {
	position: relative;
}

.index .section_04 .imgbox .titlem {
	position: relative;
	z-index: 6;
}

.index .section_04 .imgbox {}

.index .section_04 .pose .titlem .titlesr {

	color: #fff;
}

.index .section_04 .pose .titlem .decr {
	color: #fff
}

.index .section_04 .pose {
	width: 100%;
	position: absolute;
	left: 0px;
	top: 5%;
	z-index: 77;
}

.index .section_04 .imgbox img {
	display: block;
	width: 100%;
}

.index .section_04 .list {
	width: 1230px;

}

.index .section_04 .list li:hover {
	z-index: 6666;
}

.index .section_04 .list li {
	position: absolute;
	z-index: 10;
	cursor: pointer;
	z-index: 77;
}

.index .section_04 .list .light-top {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

@-webkit-keyframes rotate1-data-v-42f1ef8c {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(1turn)
	}
}

@keyframes rotate1-data-v-42f1ef8c {
	0% {
		transform: rotate(0)
	}

	to {
		transform: rotate(1turn)
	}
}

.index .section_04 .list .box-rotate:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	background: url("../images/cirr.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/cirr.png*/
		no-repeat center center;
	-webkit-animation: rotate1-data-v-42f1ef8c 12s linear 0s infinite normal;
	animation: rotate1-data-v-42f1ef8c 12s linear 0s infinite normal;
	background-size: 100%;
}

.index .section_04 .list .box-rotate {
	transition: all .5s;
	transform: scale(1);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	margin-right: 0;
}

.index .section_04 .list li:hover .box-rotate {
	margin-right: 35px;
	transform: scale(2.29);
}

.index .section_04 .list .box-rotate img {
	border-radius: 50%;
	width: 70%;
	height: 70%;
	transform: scale(1);
	position: relative;
	z-index: 777;
	max-height: 52%;
	width: auto;
}

.index .section_04 .list li:hover .box-rotate img {
	transform: scale(1.2);
}

.index .section_04 .list .light-bottom {
	width: 62px;
	height: 53px;
	background: url("../images/ling.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/ling.png*/
		no-repeat center center /contain;
}

.index .section_04 .list .box-rotate:after {}

.index .section_04 .list .light-right {
	width: 0;
	height: 0;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.index .section_04 .list li:hover .light-right {
	width: auto;
	height: auto;
}

.index .section_04 .list .right-content {
	min-width: 180px;
	min-height: 70px;
	padding: 10px 11px 10px 15px;
	justify-content: center;
	align-items: center;
	text-align: left;
	flex-direction: column;
	background: url("../images/wbg.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/wbg.png*/
		no-repeat 50%/cover;
}

.index .section_04 .list .right-content p a {
	font-size: 13px;
}

.index .section_04 .list .right-content p a {
	color: inherit;
}

.index .section_04 .list .right-content p {
	font-size: 16px;
	font-family: Microsoft YaHei-Normal, Microsoft YaHei;
	font-weight: 400;
	color: #fff;
	line-height: 22px;
}

.index .section_04 .list li.li1 {
	left: 29%;
	top: 48%;
}

.index .section_04 .list li.li2 {
	left: 56%;
	top: 39%;
}

.index .section_04 .list li.li3 {
	right: 28%;
	top: 42%;
}

.index .section_04 .list li.li4 {
	right: 20%;
	top: 27%;
}

.index .section_04 .list li.li5 {
	left: 14%;
	bottom: 15%;
}

.index .section_04 .list li.li6 {
	left: 33%;
	bottom: 12%;
}

.index .section_04 .list li.li7 {
	left: 55%;
	bottom: 6%;
}

.index .section_04 .list li.li8 {
	right: 29%;
	bottom: 22%;
}

.index .section_04 .list li.li9 {
	right: 10%;
	bottom: 33%;
}

.index .section_05 {
	background: #fff;
	padding-top: 76px;
	padding-bottom: 60px;
}

.index .section_05 .content {}

.index .section_05 .left {
	float: left;
	padding-top: 60px;
	width: 49.4%;
}

.index .section_05 .left li {}

.index .section_05 .left li a {
	display: block;
	padding-bottom: 20px;
	border-bottom: 1px solid #c3c3c3;
	margin-bottom: 24px;
}

.index .section_05 .left li a * {
	display: block;
}

.index .section_05 .title {
	font-size: 19px;
	font-weight: 600;
	color: #5A5A5A;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 22px;
	line-height: 1;
	display: block;
}

.index .section_05 .infor {
	zoom: 1;
	overflow: hidden;
}

.index .section_05 .time {
	float: left;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #5A5A5A;
}

.index .section_05 .more {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #b91e22;
	float: right;
}

.index .section_05 .right {
	float: right;
	width: 46.6%;
	padding-top: 51px;
}

.index .section_05 .imgbox {
	margin-bottom: 19px;
}

.index .section_05 .imgbox img {
	width: 100%;
	border-radius: 6px;
	margin-top: 10px;
}

.index .section_1 * {
	color: #fff
}

.index .section_1 .more {

	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin-top: 37px;
	display: inline-block;
}

.index .section_5 .title {}

.index .section_5 .btns {
	clear: both;
	padding-top: 36px;
	zoom: 1;
	overflow: hidden;
}

.index .section_5 .tel2 {
	float: left;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #676767;
	margin-top: 12px;
	display: inline-block;
	padding-left: 40px;
	background: url("../images/tel3.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/tel3.png*/
		no-repeat left center;
	background-size: auto 100%;
}

.index .section_5 .send {}

.index .section_1 .list .swiper-slide {
	opacity: 0 !important;
}

.index .section_1 .list .swiper-slide.swiper-slide-active {
	opacity: 1 !important;
}

.index .section_05 .title:hover {
	color: #b91e22
}

.index .section_05 .title {
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;

}

.head li.sli {
	position: relative;
}

.head .slide.slide2 {
	background: none;
	box-shadow: none;
	padding: 10px 0px;
	background: #fff;
	border-top: 3px #b91e22 solid;
}

.head .slide.slide2 .sec {
	background: #fff;
}

.head .slide.slide2 .sec a {
	display: block;
	text-align: left;
	line-height: 36px;
	font-size: 15px;
	border-bottom: 1px #ccc dashed;
	margin: 10px;
	text-align: center;
}

.head .slide.slide2 .sec a:last-child {
	border-bottom: none
}

.index .section_02 .dec0 {
	font-size: 21px;
	transition: none;
	transition: ease .5s;
	overflow: hidden;
	max-width: 50%;
}

.index .section_02 .model:hover .dec0 {
	height: 0;
	opacity: 0;
	margin-top: 5px;
}

.index .section_02 .model:hover .dec2 {
	height: auto;
	opacity: 1;
	margin-top: 19px;
}


.index .section_04 .list li.li3 .light-bottom,
.index .section_04 .list li.li4 .light-bottom,
.index .section_04 .list li.li8 .light-bottom,
.index .section_04 .list li.li9 .light-bottom {
	position: absolute;
	right: 0;
}

.index .section_04 .list li.li3:hover .light-bottom,
.index .section_04 .list li.li4:hover .light-bottom,
.index .section_04 .list li.li8:hover .light-bottom,
.index .section_04 .list li.li9:hover .light-bottom {}

.index .section_04 .list li.li3:hover .box-rotate,
.index .section_04 .list li.li4:hover .box-rotate,
.index .section_04 .list li.li8:hover .box-rotate,
.index .section_04 .list li.li9:hover .box-rotate {
	margin-right: 0px;
	margin-right: 0;
}

.foot_lianxi {
	background: #f5f5f5;
	padding-bottom: 59px;
	padding-top: 56px;
	overflow: hidden;
}

.foot_form {
	width: 1230px;
	padding: 0px 15px;
	margin: auto;
	max-width: 100%;
	overflow: hidden;
}

.foot_form h3 {
	font-size: 28px;
	font-family: Microsoft YaHei;
	margin-bottom: 20px;
	font-weight: 500;
	color: rgba(51, 51, 51, 1);
	text-align: left;
}

.foot_form h5 {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(102, 102, 102, 1);
	margin-bottom: 20px;
}

.foot_form .words {
	height: 46px;
	background: rgba(255, 255, 255, 0);
	border: 1px solid rgba(51, 51, 51, 0.3);
	border-radius: 10px;
	display: block;
	padding: 0px 15px;
	font-size: 16px;
}

.f_text {
	width: 380px;
	margin: 10px 20px 10px 0;
	float: left;
}

.f_text:last-child {
	margin-right: 0px;
}

.f_liuyan {
	width: 1180px;
}

.foot_tel {
	margin-top: 30px;
}

.foot_tel .tel {
	font-size: 24px;
	font-family: Microsoft YaHei;
	color: rgba(51, 51, 51, 1);
	line-height: 30px;
	padding-left: 38px;
	float: left;
	background: url("../images/tel.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/tel.png*/
		no-repeat;
	margin-bottom: 20px;
}

.foot_tel .send {
	float: right;
	display: block;
	margin: auto;
	width: 134px;
	height: 38px;
	background: rgba(0, 209, 209, 1);
	border-radius: 19px;
	cursor: pointer;
	border: none;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 100;
	color: rgba(255, 255, 255, 1);
	line-height: 36px;
	float: right;
	width: 309px;
	height: 51px;
	background: #b91e22;
	border-radius: 26px;
}




.foot_adress {
	width: 1230px;
	padding: 20px 15px;
	margin: auto;
	max-width: 100%;
}

.foot_adress h3 {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	line-height: 38px;
	padding-left: 38px;
	background: url("../images/add.png")
		/*tpa=http://www.mw-robot.com/template/pc/skin/images/add.png*/
		no-repeat;
}

.foot_adress ul {
	padding: 20px 0;
}

.foot_adress ul li {
	width: 16%;
	float: left;
	border-right: 1px dashed #ccc;
	margin-right: 4%;
	padding-right: 4%;
	margin-bottom: 20px;
}

.foot_adress ul li:nth-child(5n) {
	margin-right: 0;
}

.foot_adress ul li h5 {
	color: #b91e22;
	font-size: 18px;
	margin-bottom: 10px;
}

.foot_adress ul li p {
	color: rgba(102, 102, 102, 1);
}

.foot_adress ul li:last-child {
	border-right: 0px dashed #ccc;
}

.foot_adress ul li:first-child {
	margin-left: 0px;
}

.anli_bt {
	overflow: hidden;
}

.anli_bt_left {
	float: left;
	width: 50%;
}

.anli_bt_left h3 {
	margin-top: 100px;
	margin-bottom: 100px;
}

.anli_bt_left h3 a {
	border-bottom: 2px #b91e22 solid;
	font-size: 30px;
	color: #000;
	padding-bottom: 10px;
}

.anli_bt_left p {
	font-size: 20px;
}

.anli_bt_right {
	float: right;
	width: 50%;
}

.anli_bt_right img {
	max-width: 100%;
}

.videolist {
	position: relative;
	width: 500px;
	height: 300px;
	margin-right: 50px;
	margin-top: 15px;
	margin-bottom: 30px;
}

.videolist:hover {
	cursor: pointer;
}

.videoed {
	display: none;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 45%;
	top: 45%;
	z-index: 99;
	border-radius: 100%;
	transform-origin: 100% 0 0;
}

.videos {
	transform-origin: 100% 0 0;
	display: none;
	border: 1px solid #080808;
	position: fixed;
	transform: translateX(-50%);
	top: 0;
	margin-top: 262px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .3);
	z-index: 100;
	width: 640px;
	height: 360px;
}

.vclose {
	position: absolute;
	right: 28%;
	top: 29%;
	border-radius: 100%;
	cursor: pointer;
}

.agv_shu {
	border-left: 1px solid #000;
	line-height: 30px;
	margin-top: 15px;
	padding-left: 10px;
	height: 30px;
}

.agv_shu1 {
	background: #b91e22;
	border-radius: 5px;
	color: #fff;
	line-height: 30px;
	padding: 0 10px;
	float: left;
	font-size: 16px;
}

.agv_shu1:hover {
	color: #fff;
}

.agv_shu2 {
	line-height: 30px;
	padding: 0 10px;
	float: left;
	font-size: 16px;
}

@media screen and (max-width: 1200px) {
	.footer .sec1 a {
		text-align: left;
	}

	.foot_form {
		width: 100%;
		padding: 0px 15px;
		margin: auto;
		max-width: 100%;
		overflow: hidden;
	}

	.f_text {
		width: 100%;
		margin: 10px 0px;
		float: none;
	}

	.f_text:last-child {
		margin-right: 0px;
	}

	.f_liuyan {
		width: 100%;
		margin: 10px 0;
		float: none;
	}

	.foot_adress ul li {
		width: 48%;
		float: left;
		border-right: 0px dashed #ccc;
		margin-right: 1%;
		margin-left: 1%;
		padding-right: 0%;
		margin-bottom: 20px;
	}

	.anli_bt {
		overflow: hidden;
	}

	.anli_bt_left {
		float: none;
		width: 100%;
	}

	.anli_bt_left h3 {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.anli_bt_left h3 a {
		border-bottom: 2px #b91e22 solid;
		font-size: 20px;
		color: #b91e22;
		padding-bottom: 10px;
	}

	.anli_bt_right {
		float: none;
		width: 100%;
	}

	.videolist {
		position: relative;
		width: 100%;
		height: 200px;
		margin-right: 10px;
		margin-top: 15px;
		margin-bottom: 30px;
	}

	.videolist:hover {
		cursor: pointer;
	}

	.videoed {
		display: none;
		width: 50px;
		height: 50px;
		position: absolute;
		left: 1%;
		top: 45%;
		z-index: 99;
		border-radius: 100%;
		transform-origin: 100% 0 0;
	}

	.videos {
		transform-origin: 100% 0 0;
		display: none;
		border: 1px solid #080808;
		position: fixed;
		left: 1%;
		top: 50%;
		z-index: 100;
		width: 100% !important;
		height: 160px;
		margin-left: 0px;
		margin-top: 0px;
	}

	.vclose {
		position: absolute;
		right: 1%;
		top: 1%;
		border-radius: 100%;
		cursor: pointer;
	}

	.videos video {
		width: 100% !important;
	}

	.news_show h1 {
		font-size: 22px;
	}
}


.videos {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
	margin: 0px;
	transform: none;
}

.videos video {

	-webkit-transition: all 0.6s;
	-o-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	transition: all 0.6s;




	position: absolute;
	top: 50%;
	left: 50%;
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

	max-width: 100%;
	width: 600px;
	top: 40%;
	opacity: 0
}


.videos.current video {
	top: 50%;
	opacity: 1;
	border: 10px solid rgba(255, 255, 255, 0.8);
}

.pagelist {
	text-align: center;
}