body {
  margin: 0;
  padding: 0;
  font-size: .5rem;
}

html {
  color: #000;
  background: #FFF;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
}

body,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
dl,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul {
  list-style: none;
}

img {
  border-style: none;
}

* {
  margin: 0;
  padding: 0
}

li {
  list-style: none
}

img {
  vertical-align: top;
  border: none
}

/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
fieldset,
lengend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td {
  /* table elements 表格元素 */
  margin: 0;
  padding: 0;
}

/** 重置文本格式元素 **/
a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  text-decoration: underline;
}

sup {
  vertical-align: text-top;
}

/* 重置, 减少对行高的影响 */
sub {
  vertical-align: text-bottom;
}

/* 重置 HTML5 元素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  display: block;
  margin: 0;
  padding: 0;
}

mark {
  background: #ff0;
}


ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
}

li {
  display: list-item;
  text-align: -webkit-match-parent;
}

table {
  width: 100%;
  font-size: 0.14rem;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
  line-height: 0.8rem;
  margin: 0 auto;
}

input {
  background: none;
  outline: none;
  border: 0px;
}

input:focus {
  outline: none;
}

.display-flex {
  display: flex;
  align-items: center;
}
.display-flex-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.display-flex-e {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/* 超出省略号 */
.ellipsis-item {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ellipsis-item-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ellipsis-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* flex布局 */
.display-flex {
  display: flex;
  align-items: center;
}

.display-flex-c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-pointer {
  cursor: pointer;
}
