footermenu_wev8.css 1.95 KB
.wev-fm-container{
	position: fixed;
	z-index: 5000;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	/*
	background-color: rgba(0, 0, 0, 0.4);
	transition: opacity .282s ease-in-out;
	*/
	overflow: hidden;
	display: none;
}
.wev-fm-mark{
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
	background-color: #000;
	opacity: 0;
	z-index: 4000;
	-webkit-transition: opacity .282s ease-in-out;
	transition: opacity .282s ease-in-out;
}
.wev-fm-mark.show{
	opacity: 0.4;
}
.wev-fm-content{
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	padding: 10px;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	z-index: 4500;
	box-sizing: border-box;
}
.wev-fm-content.hide{
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.wev-fm-ul {
	margin: 0;
	padding: 0;
	color: #777;
	overflow: hidden;
	border-radius: 13px;
}
.wev-fm-ul .menuLi{
	height: 46px;
	font-size: 16px;
	font-weight: 300;
	line-height: 46px;
	text-align: left;
	color: #000;
	background-color: #fff;
	padding-left: 10px;
	position: relative;
	-webkit-tap-highlight-color:transparent;
}
.wev-fm-ul .menuLi .menuText{
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	-webkit-box-sizing:border-box; /* Safari */
	padding-left: 8px;
	height: 46px;
	border-bottom: 1px solid rgb(228, 228, 228);
}
.wev-fm-ul .menuLi:last-child .menuText{
	border-bottom: none;
}
.wev-fm-ul .menuLi .menuIcon{
	position: absolute;
	top: 11px;
	right: 18px;
	width: 24px;
	height: 24px;
}
.wev-fm-ul-cancel{
	margin: 0;
	padding: 0;
	margin-top: 10px;
	overflow: hidden;
}
.wev-fm-ul-cancel .cancel{
	height: 50px;
	color: #017afd;
	font-size: 20px;
	font-weight: 300;
	line-height: 50px;
	text-align: center;
	font-weight: bold;
	background-color: #fff;
	border-radius: 13px;
	-webkit-tap-highlight-color:transparent;
}
.wev-fm-ul .menuLi.active,
.wev-fm-ul-cancel .cancel.active{
	background-color: rgb(218, 218, 218);
}