<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	padding: 0;
	margin: 0;
}

img {
	border-style: none;
	border: 0;
	vertical-align: middle;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	color: #333;
}

p {
	margin: 0;
	padding: 0;
	color: #666;
}

b,
strong {
	font-weight: bolder;
}

a {
	background-color: transparent;
	color: #333;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	color: #666;
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* 表单*/
input {
	outline: none;
	border: none;
	-webkit-appearance: none;
}

textarea {
	font-family: Arial, "Open Sans", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
	overflow: auto;
	resize: none;
}

button {
	outline: none;
	-webkit-appearance: none;
	cursor: pointer;
}


/* 表格 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*浮动*/
.fl {
	float: left;
}

.fr {
	float: right;
}

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

/* 触发 hasLayout */
.clearfix {
	zoom: 1;
}
</pre></body></html>