@charset "utf-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-touch-callout: none;
}
html,
body {
  width: 100%;
  height: 100%;
}
pre {
  white-space: break-spaces;
}

a,
body,
center,
cite,
code,
dd,
del,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hr,
html,
img,
input,
label,
legend,
li,
mark,
ol,
p,
section,
span,
textarea,
time,
td,
th,
ul {
  margin: 0;
  padding: 0;
  /*  自动换行 */
  word-wrap: break-word;
  /*  强制英文单词断行 */
  /* word-break: break-all; */
}

a,
body,
center,
cite,
code,
dd,
del,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hr,
html,
img,
input,
label,
legend,
li,
mark,
ol,
p,
section,
span,
textarea,
time,
ul {
  border: 0;
}
label {
  cursor: pointer;
}
table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

html {
  width: 100%;
  box-sizing: border-box;
}

body {
  width: 100%;
  font: 16px "Microsoft YaHei", "微软雅黑";
  background: #fff;
  color: #040a16;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden;
  overflow-y: auto;
  font-weight: 400;
}

/* 去除IE输入框的X标记 */
input[type="text"]::-ms-clear {
  display: none;
}

/* 去除IE输入框的小眼睛标记 */
input[type="password"]::-ms-reveal {
  display: none;
}
body::-webkit-scrollbar {
  /* 纵向滚动条 宽度 */
  width: 8px;
  /* 横向滚动条 高度 */
  height: 4px;
  /* 整体背景 */
  background: rgba(126, 126, 126, 0.1);
  /* 整体 圆角 */
  border-radius: 8px;
}

/* 滑块 */
body::-webkit-scrollbar-thumb {
  background: #b7251e;
  width: 8px;
  border-radius: 8px;
}
textarea {
  outline: none;
}
textarea::-webkit-scrollbar {
  width: 6px;
}
textarea::-webkit-scrollbar-thumb {
  background: #f2f2f2;
  border-radius: 8px;
}
select {
  border: none;
  outline: none;
  background: transparent;
  background-color: transparent;
  font-size: 16px;
}
a {
  color: #575656;
  text-decoration: none;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
}
i {
  font-style: normal;
}
em {
  /* font-style: normal; */
}
/* ul {
  list-style: none;
} */
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

table {
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  word-wrap: break-word;
}

input,
textarea {
  /*webkit浏览器*/
  -webkit-user-select: auto;
  font-size: 16px;
}

input {
  border: none;
  outline: none;
  font-size: 16px;
}

span {
  display: inline-block;
}
button {
  border: none;
  font-size: 16px;
  outline: none;
  cursor: pointer;
  outline: none;
}
img,
a {
  user-select: none;

  -webkit-user-drag: none;

  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;
}

/* h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
} */

input.round[type="checkbox"] {
  appearance: none; /*取消默认的复选框样式*/
  /*重新写一个复选框圆角样式*/
  width: 14px; /*设置方形宽度为20px*/
  height: 14px; /*设置方形高度为20px*/
  border: 1px solid #1e5fdd; /*设置边框样式*/
  border-radius: 50%; /*将方形的边框改为圆形*/
  position: relative;
  top: 2px;
  margin-right: 8px;
}
/*复选框选择后的样式*/
input.round[type="checkbox"]:checked {
  background-image: url("../images/check.png"); /*复选框选中后添加背景图片*/
  background-repeat: no-repeat; /*取消背景图片平铺*/
  background-size: 9px; /*背景图片大小,第一个27px表示width宽度,第二个27px表示height高度*/
  background-position: center; /*背景图居中对齐*/
}

/* 弹性布局 */
.df {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}
/*伸缩流方向*/
.fdc {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

/*  */
.fdrr {
  -webkit-box-orient: row-reverse;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/*主轴对齐*/
.jcc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.jcfe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.jcsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.jcsa {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.fww {
  -webkit-box-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fwnw {
  -webkit-box-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/*侧轴对齐*/
.aifs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.aife {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.aic {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.aib {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
/*伸缩性*/
.fn {
  -webkit-box-flex: 1;
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
}
.f0 {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.f1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.hidden {
  overflow: hidden;
}

/* 单行溢出文本隐藏 */
.one-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tow-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.three-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.four-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.five-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.f-l {
  float: left;
}

.f-r {
  float: right;
}

.c-b {
  clear: both;
}

.clearf:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
}
img {
  position: relative;
  /* top: -2px; */
}
