

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 12px;
	/*font: inherit;*/
	vertical-align: baseline;
	text-decoration:none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
	font-style: normal;
}
a,img,button,input,textarea{
	-webkit-tap-highlight-color:rgba(255,255,255,0);
}
input,textarea{
	-webkit-appearance:none;
}
input:-webkit-autofill { 
	-webkit-box-shadow: 0 0 0 1000px #fbfbfb inset; 
} 
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.clear{
	*clear: both;
}
.clear:after{
	content: "";
	clear: both;
	display: block;
	zoom: 1;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
}




::-webkit-scrollbar {
	width: 5px;
	height: 8px;
	background-color: #fff;
}

::-webkit-scrollbar-track {
	/*background-color: #fefefe;*/
	background-color: #333333;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4)
}

::-webkit-scrollbar-track:hover {
	/*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
	background-color: #fefefe;*/
}

/*::-webkit-scrollbar-track:active {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
	background-color: #f0f0f0;
}*/

::-webkit-scrollbar-thumb {
	/*background-color: rgba(0, 0, 0, 0.2);*/
	background-color: #FFFFFF;
	border-radius: 10px;
	-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1)
}

::-webkit-scrollbar-thumb:hover {
	/*background-color: rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1)*/
}

/*::-webkit-scrollbar-thumb:active {
	background: rgba(0, 0, 0, 0.6)
}*/

/*单选框*/

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}
[type="checkbox"]:not(:checked)+ label,
[type="checkbox"]:checked+ label {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	font-size: 16px;
	color: #a1a1a1;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

[type="checkbox"]:not(:checked)+ label:before,
[type="checkbox"]:checked+ label:before {
	content: '';
	position: absolute;
	left: 4px;
	top: 1px;
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 2px;
	/*box-shadow: inset 0 1px 3px rgba(0, 0, 0, .3);*/
	line-height: 150%;
	border: 1px solid #076BF2;
}
[type="checkbox"]:not(:checked)+ label:after,
[type="checkbox"]:checked+ label:after {
 	content: '✔';
	position: absolute;
	top: 0px;
	left: 7px;
	font-size: 12px;
	color: #076BF2;
	transition: all .2s;
	line-height: 150%;
	font-weight: bold;
}

[type="checkbox"]:not(:checked)+ label:after {
	opacity: 0;
	transform: scale(0);
}

[type="checkbox"]:checked+ label:after {
	opacity: 1;
	transform: scale(1);
}

[type="checkbox"]:disabled:not(:checked)+ label:before,
[type="checkbox"]:disabled:checked+ label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

[type="checkbox"]:disabled:checked+ label:after {
	color: #999;
}

[type="checkbox"]:disabled+ label {
	color: #aaa;
}

[type="checkbox"]:checked:focus+ label:before,
[type="checkbox"]:not(:checked):focus+ label:before {}




/*取消购物*/
.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}
@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
	}
	100% {
		
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		-ms-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
		opacity: 0;
	}
}

