/*总结css基本样式集合*/
.countDownTitle1 { cursor: pointer; display: inline-block; padding: 10px 15px; margin-top: 10px; background:#005DBA; color:white; border-radius:2px; }
.countDownTitle1:hover { background:#427EC8; }
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	/*height: 100%;*/
}

html * {
	outline: 0;
	-webkit-text-size-adjust: none;
	/*清除浏览器默认点击高亮效果*/
	-webkit-tap-highlight-color: transparent;
	/*以你的border开始计算宽度*/
	-webkit-box-sizing: border-box;
}

html,
body {
	font-family: sans-serif;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

/*框架搭建*/
body {
	width: 100%;
	height: 100%;
	/*给body添加滚动条*/
	overflow: auto;
	color: #333;
	font-family: "microsoft yahei", arial, helvetica, sans-serif;
}

a:link,
a:visited,
a:hover,
a:active {
	/*取消a标签手指按下时出现的黑色遮罩层*/
	-webkit-tap-highlight-color: transparent;
	text-decoration: none;
	color: #333;
}

input,
textarea {
	border: none;
	resize: none;
	outline: medium;
	/*清除浏览器默认的样式*/
	-webkit-appearance: none;
	background-color: transparent;
}

ul {
	list-style: none;
}

img {
	border: none;
	vertical-align: top;
}

/*清除浮動*/
.clearfix:after {
	display: block;
	clear: both;
	content: "";
	visibility: hidden;
	height: 0
}

.clearfix {
	zoom: 1
}

*{box-sizing: border-box;}
