/* 标签样式的初始化 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font: 14px 'Microsoft Yahei', tahoma, arial, 'Hiragino Sans GB', sans-serif;
}

ol,
ul {
	list-style: none
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,a:focus {
	color: inherit;
	text-decoration: none;
}

a,
input,
select,
textarea,
button {
	outline: none;
}

a,
input,
select,
textarea,
button {
	outline: none;
}

input[type="button"],
button {
	cursor: pointer;
}

.img img {
	width:100%;
	height: 100%;
}

span {
	display: inline-block;
	vertical-align: middle;
}

/*样式初始化*/

.fz12 {
	font-size: 12px;
}

.fz14 {
	font-size: 14px;
}

.fz16 {
	font-size: 16px;
}

.fz18 {
	font-size: 18px;
}

.fz20 {
	font-size: 20px;
}

.fz22 {
	font-size: 22px;
}

.ico {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.fl {
	float: left;
	display: inline
}

.fr {
	float: right;
	display: inline
}

.link {
	color: #0076ff;
}

.img {
	display: inline-block;
}

.hidden {
	display: none !important;
}

.clearfix:after {
	content: '';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.nobr {
	word-break: break-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
}

.morenobr {
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	word-break: break-all;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	/*-webkit-line-clamp: 2;判断显示几行才出现省略号(...)*/
}

.scroll {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.scroll ::-webkit-scrollbar-button {
	/*滚动条两端的按钮。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果。*/
	display: none;
}

.scroll ::-webkit-scrollbar-track {
	/*外层轨道。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果。*/
	display: none;
}

.scroll::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	background: transparent;
}

.scroll::-webkit-scrollbar-track {
	border-radius: 3px;
}

.scroll::-webkit-scrollbar-thumb {
	height: 0;
	border-radius: 3px;
	background-color: #999;
}

