/*  首页顶部swiper  小窗口导航  */
.small_menu>li>a {
	color: white !important;
	font-size: 14px;
}

.small_menu>li>a:hover {
	background: none;
	color: #999999 !important;
}

.small_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.swiper_nav {
	width: 100%;
	position: absolute !important ;
	top: 0;
	left: 0;
	z-index: 1111 !important;
}

.swiper-slide {
	text-align: center;
	font-size: 14px;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.menu {
	min-width: 100px;
	width: 70%;
	max-width: 320px;
	background-color: #2C8DFB;
	color: #fff;
}

.content {
	width: 100%;
}

.menu-button {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 5px;
	width:43px;
	height:40px;
	cursor: pointer;
	-webkit-transition: .3s;
	transition: .3s;
	background-color: #2C8DFB;
}

.menu-button .bar:nth-of-type(1) {
	margin-top: 0px;
}

.menu-button .bar:nth-of-type(3) {
	margin-bottom: 0px;
}

.bar {
	position: relative;
	display: block;
	width: 30px;
	height: 4px;
	margin: 10px auto;
	background-color: #fff;
	border-radius: 10px;
	-webkit-transition: .3s;
	transition: .3s;
}

.menu-button:hover .bar:nth-of-type(1) {
	-webkit-transform: translateY(1.5px) rotate(-4.5deg);
	-ms-transform: translateY(1.5px) rotate(-4.5deg);
	transform: translateY(1.5px) rotate(-4.5deg);
}

.menu-button:hover .bar:nth-of-type(2) {
	opacity: .9;
}

.menu-button:hover .bar:nth-of-type(3) {
	-webkit-transform: translateY(-1.5px) rotate(4.5deg);
	-ms-transform: translateY(-1.5px) rotate(4.5deg);
	transform: translateY(-1.5px) rotate(4.5deg);
}

.cross .bar:nth-of-type(1) {
	-webkit-transform: translateY(15px) rotate(-45deg);
	-ms-transform: translateY(15px) rotate(-45deg);
	transform: translateY(15px) rotate(-45deg);
}

.cross .bar:nth-of-type(2) {
	opacity: 0;
}

.cross .bar:nth-of-type(3) {
	-webkit-transform: translateY(-15px) rotate(45deg);
	-ms-transform: translateY(-15px) rotate(45deg);
	transform: translateY(-15px) rotate(45deg);
}

.cross:hover .bar:nth-of-type(1) {
	-webkit-transform: translateY(13.5px) rotate(-40.5deg);
	-ms-transform: translateY(13.5px) rotate(-40.5deg);
	transform: translateY(13.5px) rotate(-40.5deg);
}

.cross:hover .bar:nth-of-type(2) {
	opacity: .1;
}

.cross:hover .bar:nth-of-type(3) {
	-webkit-transform: translateY(-13.5px) rotate(40.5deg);
	-ms-transform: translateY(-13.5px) rotate(40.5deg);
	transform: translateY(-13.5px) rotate(40.5deg);
}