/*样式初始化*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  /*outline （轮廓）是绘制于元素周围的一条线，位于边框边缘的外围，可起到突出元素的作用。*/
  font-size: 100%;
  /*inherit 关键字指定一个属性应从父元素继承它的值。*/
  font: inherit;
  /*baseline 默认。元素放置在父元素的基线上。*/
  vertical-align: baseline;
}
* {
  font-style: normal;
  font-weight: normal;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*禁止链接高亮（苹果手机)*/
  -webkit-touch-callout: none;
  /*禁止链接长按弹出选项菜单*/
}
html {
  width: 100%;
  background: #fff;
}

body {
  width: 100%;
  /*PC网页最小的宽度*/
  color: #333;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  /*解决Iphone下橱窗字体变大问题*/
}

/********************* a标签 *********************/
a {
  text-decoration: none;
  color: inherit;
}

a:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*禁止链接高亮*/
  -webkit-touch-callout: none;
  /*禁止链接长按弹出选项菜单*/
}

a:link,
a:visited,
a:hover,
a:active {
  /* color: #000; */
  text-decoration: none;
}
/********************* a标签 *********************/

img {
  display: block;
  border: none;
}

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

input,
textarea {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  box-shadow: none;
  -webkit-appearance: none;
  /*去除input默认样式*/
}

table {
  border-collapse: collapse;
  /*为表格设置合并边框模型*/
}

input,
button,
textarea {
  outline: none;
  background: transparent;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  resize: none;
  border: none;
}

select {
  outline: none;
  background: transparent;
  resize: none;
  border: none;
}

/************共用样式***********/
