/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* HTML5 媒体文件跟 images 保持一致 */

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/* 要注意表单元素并不继承父级 font 的问题 */

input,
select,
textarea {
    font-size: 100%;
}

/* 去掉各Table  cell 的边距并让其边重合 */

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

/* IE bug fixed: th 不继承 text-align*/

th {
    text-align: inherit;
}

/* 去除默认边框 */

fieldset,
img {
    border: 0;
}

/* ie6 7 8(q) bug 显示为行内表现 */

iframe {
    display: block;
}

/* 去掉 firefox 下此元素的边框 */

abbr,
acronym {
    font-variant: normal;
    border: 0;
}

/* 一致的 del 样式 */

del {
    text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 500;
}

/* 去掉列表前的标识, li 会继承 */

ol,
ul {
    list-style: none;
}

/* 对齐是排版最重要的因素, 别让什么都居中 */

caption,
th {
    text-align: left;
}

/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

q:before,
q:after {
    content: '';
}

/* 统一上标和下标 */

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

  ::-webkit-input-placeholder {
      font-size: 14px;
      color: #7f7f7f !important;
  }


  :fullscreen {
      background: white;
  }


/* 鼠标悬停 */
a{
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

a:link {
    color: #1C2861;
}

a:visited {
    color: #1C2861;
}
