// @Author: vxhly
// @Date:   2017-04-10 03:16:33 pm
// @Email:  pengchengou@gmail.com
// @Filename: _clean.scss
// @Last modified by:   vxhly
// @Last modified time: 2017-12-16 03:01:08 pm
// @License: MIT
/**
 * [清除内外边距]
 */

blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
  margin : 0;
  padding: 0;
}
/**
 * [重置 HTML5 元素]
 */

article,
aside,
audio,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
mark,
menu,
nav,
section,
summary,
time,
video {
  display: block;
  margin : 0;
  padding: 0;
}
/**
 * [隐藏属性]
 */

[hidden],
script,
template {
  display: none;
}
/**
 * [重置 H5 画板]
 */

canvas {
  display: inline-block;
}
/**
 * [重置 summary]
 */

summary {
  display: list-item;
}
/**
 * [重置 img 样式]
 */

img {
  border                : 0;
  -ms-interpolation-mode: bicubic;
  vertical-align        : middle;
}
/**
 * [设置高度，超出自动隐藏]
 */

body,
html {
  min-height: 100%;
  overflow  : hidden;
}
/**
 * [重置 H5 元素的边距]
 */

address,
blockquote,
dl,
fieldset,
figure,
hr,
ol,
p,
pre,
ul {
  margin: 0 0 1rem;
}
/**
 * [重置行内元素]
 */

a,
b,
big,
code,
font,
i,
img,
q,
span,
time {
  margin : .3rem 0;
  display: inline-block;
}
/**
 * [清除点击效果]
 */
*:focus {
  outline: none;
}