#member-function {
	position: fixed;
	right: 0;
	bottom: 10px;
	z-index: 500;
}

#member-function > ul {
	height:54px;
}

#member-function > ul > li {
	height: 54px;
	background: #000;
	float: left;
	opacity: 0.8;
	filter: Alpha(opacity=80);
	transition: all 0.3s;
}

#member-function ul li.topMenu {
	display: none;
}

#member-function ul li a {
	width: 100%;
	display: block;
	overflow: hidden;
}

#member-function ul li a:hover {
	color: #fff;
	text-decoration: underline;
}

#member-function ul li i {
	width: 54px;
	height: 54px;
	display: inline-block;
	float: left;
	text-align: center;
	line-height: 54px;
	color: #fff;
}

#member-function ul li a b {
	width: 0;
	display: block;
	float: left;
	transition: all 0.4s ease;
	line-height: 54px;
}

#member-function ul li a:hover b {
	padding-right: 15px;
	width: 70px;
}

#member-function ul li:first-child > i {
	float: left;
	font: normal normal normal 14px/1 FontAwesome;
	line-height: 54px;
}

#member-function ul li:first-child > i:before {
    content: "\f007";
}

#member-function ul li:nth-child(3) {
	position: relative;
	transition: all 0.4s ease;
}

#member-function ul li:nth-child(3):hover {
	padding-right: 15px;
}

#member-function ul li:nth-child(3) a {
	line-height: 54px;
	color: #fff;
}

#member-function ul li:nth-child(3) ul.sub-order-list {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: -54px;
}

#member-function ul li:nth-child(3) ul.sub-order-list li {
	height: 100%;
	position: relative;
}

#member-function ul li:nth-child(3) ul.sub-order-list li #shopping-list {
	width: 100%;
	background: #fff;
	position: absolute;
	bottom: 0;
}

#member-function ul li:nth-child(3) ul.sub-order-list li #shopping-list .list {
	padding: 10px;
	border-bottom: 1px #444 dotted;
}

#member-function ul li:nth-child(3) ul.sub-order-list li #shopping-list .list h3 {
	margin: 5px 0;
	line-height: 170%;
	font-size: 12px;
}

#member-function ul li:nth-child(3) ul.sub-order-list li #shopping-list .list img {
	width: 100%;
}

#member-function ul li:nth-child(3) ul.sub-order-list li #shopping-list .list p {
	font-size: 12px;
}

#member-function ul li .member-site {
	width: 0;
	background: #000;
	float: left;
	opacity: 0.8;
	transition: all 0.4s ease;
	overflow: hidden;
}

#member-function ul li:hover .member-site {
	width: 250px;
	height: 54px;
	overflow: hidden;
}

#member-function ul li .member-site a {
	width: 125px;
	display: block;
	float: left;
	line-height: 54px;
	color: #fff;
}

#member-function ul li .member-site a .sidebox {
	line-height: 54px;
}

#member-function ul li .member-site a i {
	width: 54px;
	height: 54px;
	display: inline-block;
	text-align: center;
	line-height: 54px;
}


/* +mobileList
*----------------------------------------------------------------------------*/
.mobileList {
	position: fixed;
	width: 100%;
	display: none;
	bottom: 0;
	z-index: 500;
}

.mobileList .topIcon {
	text-align: right;
}

.mobileList .topIcon a {
	margin: 10px;
	width: 50px;
	height: 50px;
	background: rgba(0,0,0,0.8);
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	font-size: 30px;
	color: #fff;
}

.mobileList ul {
	overflow: hidden;
}

.mobileList ul li {
	float: left;
	background: rgba(0, 0, 0, 0.8);
	width: 20%;
	min-height: 68px;
}

.mobileList ul li .sidebox {
	text-align: center;
}

.mobileList ul li a {
	padding: 10px 0;
	width: 100%;
	height: 100%;
	display: block;
	color: #fff;
	text-align: center;
	font-size: 12px;
	border-right: 1px #fff solid;
}

.mobileList ul li a i ,
#member-function ul li i {
	margin-bottom: 5px;
	display: block;
	font-size: 20px;
}

#member-function ul li i {
	font-size: inherit;
}

.mobileList ul li a i b ,
#member-function ul li i span {
	position: absolute;
	width: 15px;
	height: 15px;
	margin-left: 5px;
	font-size: 12px;
	font-weight: normal;
	background: #F00;
	border-radius: 50%;
	line-height: 15px;
}

#member-function ul li i span {
	margin-top: 10px;
	text-align: center;
}

.blink {
	animation-duration: 0.5s;
	animation-name: blink;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}
@keyframes blink {
	0% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	81% {

		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}


/* +width:768 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	.mobileList {
		display: block;
	}
	#member-function {
		display: none;
	}
.mobileList .topIcon a{
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    margin: 10px 2px;
}
}