@import url("my_style.css");
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

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

html,
body,
header,
section,
footer,
div,
ul,
ol,
li,
img,
a,
span,
em,
del,
center,
strong,
var,
fieldset,
form,
label,
dl,
dt,
dd,
cite,
input,
hr,
time,
mark,
code,
figcaption,
figure,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
	color: #000;
	font-size: 12px;
	/*在X5新内核Blink中，在排版页面的时候，会主动对字体进行放大，会检测页面中的主字体，当某一块字体在
我们的判定规则中，认为字号较小，并且是页面中的主要字体，就会采取主动放大的操作。然而这不是我们想要的，可以采取给最大高度解决*/
	max-height: 100000px;
}


/*click300ms----meta标签--chrome生效，safari必须设置*/

html {
	touch-action: manipulation;
}

html,
body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-select: none;
	background-color: #fff;
	-webkit-overflow-scrolling: touch;
  font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
  width:100%;height:100%;margin:0 auto;display:block


}
 
header,
footer,
section,
img,
a,
button,
em,
del,
strong,
var,
fieldset,
label,
cite,

/*small,*/

time,
mark,
code,
figcaption,
figure,
textarea {
	display: block;
}

header,
section,
footer {
	position: relative;
	/*overflow:hidden;*/
}

big {
	font-size: larger;
}

small {
	font-size: smaller;
}

ol,
ul {
	list-style: none;
}

button {
	padding: 10px;
}

span {
	display: inline-block;
}

a,
a:visited {
	text-decoration: none;
}

label,
.wordWrap {
	word-wrap: break-word;
	word-break: break-all;
}

.clearfix {
	clear: both;
	overflow: hidden;
}

.clearfix:before {
	display: table;
	content: " ";
}

.clearfix:after {
	clear: both;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

a,
button,
input,
textarea {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border: 0;
	/*-webkit-user-modify: read-write-plaintext-only;*/
}

input[type=number]::-webkit-textfield-decoration-container {
	background-color: transparent;
}

input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
}

input {
	-webkit-appearance: none;
}


/*
     * 重置disabled元素的默认指针样式
     */

button[disabled],
input[disabled] {
	cursor: default;
}


/*
     * 防止现代浏览器将没有controls属性的的‘audio’元素显示出来
     * 移除 iOS 5 设备中多余的高度
     */

audio:not([controls]) {
	display: none;
	height: 0;
}


/*
     * 校正IE 8/9中‘hidden’属性不起作用的问题
     */

[hidden] {
	display: none;
}


/*
     * 校正‘outline’在Chrome和其他浏览器间的不一致
     */

a:focus {
	outline: thin dotted;
}

a:active,
a:hover {
	outline: 0;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}


/*
     * 防止所有浏览器中的‘sub’和‘sup’影响到行高（line-height）
     */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -3px;
}

sub {
	bottom: -2.5px;
}


/*
     * 更正 IE 9 中奇怪的‘overflow’表现
     */

svg:not(:root) {
	overflow: hidden;
}

button,
input {
	line-height: normal;
}


/*
     * 1. 避免 Android 4.0.* 中的 WebKit bug ，该bug会破坏原生的‘audio
     *    和‘video’控制器
     * 2. 更正 iOS 中无法设置可点击的‘input’的问题
     * 3. 增强图片类型以及其他类型的‘input’中指针的可用性以及样式的一致性
     */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
	cursor: pointer;
	/* 3 */
}


/*
     * 重置disabled元素的默认指针样式
     */

button[disabled],
input[disabled] {
	cursor: default;
}


/*
     * 移除 Firefox 4+ 内部的内边距
     */

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}


/*
     * 1. 移除 IE 8/9 中默认的垂直滚动条
     * 2. 增强所有浏览器中的对对齐以及可读性
     */

textarea {
	overflow: auto;
	/* 1 */
	vertical-align: top;
	/* 2 */
	resize: none;
}


/*
     * 移除单元格间大部分的间距
     */

table {
	border-collapse: collapse;
	border-spacing: 0;
}
