@charset "UTF-8";
/**
  * @name:css重置样式
  * @update:2022-1-6
  **/


/* 重置样式 */
* {
  box-sizing: border-box;
}

body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td,
pre,
xmp {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
small,
big,
input,
textarea,
button,
select {
  font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-weight: normal;
}

address,
cite,
dfn,
em,
i,
optgroup,
var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

caption,
th {
  text-align: inherit;
}

ul,
ol,
menu {
  list-style: none;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
}

img,
object,
input,
textarea,
button,
select {
  vertical-align: middle;
}

article,
aside,
footer,
header,
section,
nav,
figure,
figcaption,
hgroup,
details,
menu {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "\0020";
}

textarea {
  overflow: auto;
  resize: vertical;
}

input,
textarea,
button,
select,
a {
  outline: 0 none;
  border: none;
  color: #000;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

mark {
  background-color: transparent;
}

a,
ins,
s,
u,
del {
  text-decoration: none;
}

sup,
sub {
  vertical-align: baseline;
}

html {
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  /* 微软雅黑 */
  font: 12px/1.5 '\5FAE\8F6F\96C5\9ED1',
    tahoma,
    '\5b8b\4f53',
    sans-serif;
  background: #fff;

}

/* 常用公共类 */
/* flex布局 */
.flex-row,
.flex-row-sb,
.flex-row-ad,
.flex-col,
.flex-col-sb,
.flex-col-ad,
.flex-row-center,
.flex-col-center {
  display: flex;
}

.flex-row-center,
.flex-col-center {
  justify-content: center;
}

.flex-row,
.flex-row-sb,
.flex-row-ad {
  flex-direction: row;
}

.flex-col,
.flex-col-sb,
.flex-col-ad,
.flex-col-center {
  flex-direction: column;
}

.flex-row-sb,
.flex-col-sb {
  justify-content: space-between;
}

.flex-row-ad,
.flex-col-ad {
  justify-content: space-around;
}

.flex-align-center {
  align-items: center;
}

/* 左右浮动 */
.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  *zoom: 1;
}

.clear:after {
  content: "";
  display: block;
  clear: both;
}

.inb {
  display: inline-block;
}

/* 不显示 */
.dsn {
  display: none;
}

/* 水平居中 */
.tac {
  text-align: center;
}

/* fixed定位 */
.fixed {
  position: fixed;
}

/* 相对定位 */
.rel {
  position: relative;
}

/* 绝对定位 */
.abs {
  position: absolute;
}

/* 超出一行显示... */
.beyond_eip {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/*超出多行省略显示...*/

.beyond2_eip {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.beyond3_eip {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.beyond4_eip {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

/*超出内容隐藏*/
.ovh {
  overflow: hidden;
}

/*禁止文字选中*/
.sele_none {
  user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
}