@charset "utf-8";

// 引入css 适配方案
@import "flexible";

// 引入重置样式
@import "normalize";

// 引入工具类
@import "tool";

/* 全局设置 */
*,
*:before,
*:after{
	// font-family: PingFang sc, Verdana, Helvetica Neue, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
	// 移动端字体策略
	font-family: Helvetica, "PingFang sc", sans-serif;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	-webkit-appearance: none;
			appearance: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* 设置基本html,body样式 */
html,body{
	margin: 0 auto;
	padding: 0;
}

/* 设置图片最大宽度 */
img{
	max-width: 100%;
}

/* 清除默认按钮表现形式 */
button{
	-webkit-appearance: none;
			appearance: none;
}

/* 设置表格默认样式 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 文本域禁止拖拉放大 */
textarea {
	resize: none;
}

a {
	text-decoration: none;
	color: currentColor;
}

img {
    vertical-align: top;
}

i, em {
    font-style: normal;
}

ol, ul, li, menu {
    list-style: none outside none;
}

fieldset, iframe, abbr, acronym {
    border: 0 none;
}

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

del {
    text-decoration:line-through;
}
