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,
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;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
q,
blockquote {
  quotes: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: '';
  content: none;
}
a img {
  border: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/*!
 * init.css       在reset基础上额外调整样式
 */
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font: 16px '微软雅黑', Arial, Verdana;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
  -webkit-appearance: none;
  /*屏蔽阴影*/
  -webkit-tap-highlight-color: transparent;
  /*ios android去除自带阴影的样式*/
}
input,
select,
textarea {
  border: none;
  outline: none;
  resize: none;
  font-family: inherit;
  padding-left: 3px;
}
i {
  color: inherit;
  display: inline-block;
}
strong {
  font-weight: bold;
}
input[type='reset'],
input[type='submit'] {
  cursor: pointer;
}
img {
  max-width: 100%;
}
#mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 500;
}
.k-flex {
  display: box;
  display: -moz-box;
  display: -webkit-box;
  box-align: center;
  box-pack: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
}
.k-flex-v {
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  /* autoprefixer: on */
}
.k-flex-top {
  box-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
}
.k-flex-bottom {
  box-align: end;
  -webkit-box-align: end;
  -moz-box-align: end;
}
.k-flex-left {
  box-pack: start;
  -webkit-box-pack: start;
  -moz-box-pack: start;
}
.k-flex-right {
  box-pack: end;
  -webkit-box-pack: end;
  -moz-box-pack: end;
}
.k-flex-justify {
  box-pack: justify;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
}
.k-flex-item {
  box-flex: 1;
  -moz-box-flex: 1;
  -webkit-box-flex: 1;
}
.text-overflow-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn-atv {
  display: block;
  transition: transform linear 0.3s;
}
.btn-atv:active {
  transform: scale(0.9);
}
