/*购物车html元素
<div class="m-sidebar">
	<div class="cart">
		<i id="end"></i>
		<span>购物车</span>
	</div>
</div>
*/
@CHARSET "UTF-8";
.m-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	background: #3a4e89;
	z-index: 2000;
	width: 35px;
	height: 100%;
	font-size: 12px;
	color: #fff;
}
.m-sidebar .cart {
	color: #fff;
	text-align: center;
	line-height: 20px;
	padding: 200px 0 0 0px;
	top:100px;
}
.m-sidebar .cart span {
	display: block;
	width: 20px;
	margin: 0 auto;
}
.m-sidebar .cart i {
	width: 35px;
	height: 35px;
	display: block;
	background: url(../../Images/cart.png) no-repeat;
}
.u-flyer {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	position: fixed;
	z-index: 9999;
}