html,
body {
  height: 100%;
  font-family: "PingFang SC";
  padding: 0;
  margin: 0;
}
:root {
  --primary-color: #0f8ef1;
}
body {
  overflow: auto;
}
/*隐藏谷歌浏览器滚动条*/
body::-webkit-scrollbar {
  display: none;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  /* 取消图片包含链接有边框问题  */
  border: 0;
  /* 取消图片底部有空白缝隙，默认图片和文字居中显示 */
  vertical-align: middle;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
  word-break: break-all;
}

div,
p {
  word-wrap: break-word;
  word-break: break-all;
}

@font-face {
  font-family: "PingFang SC";
  /*这里属性值可以自定义,用的时候和定义的一致即可*/
  src: url("../font/PINGFANG_SC_REGULAR_4.woff2") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

table {
  border: 1px solid #ebeef5;
}
table tbody th {
  background-color: #f5f2f0;
}
table tbody td {
  background-color: #fff;
}
table tbody th,
td {
  border-bottom: 1px solid #ebeef5;
  border-right: 1px solid #ebeef5;
  padding: 10px;
}

.d-flex {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
}

.a-center {
  align-items: center;
}

.a-end {
  align-items: flex-end;
}

.a-start {
  align-items: flex-start;
}

.j-center {
  justify-content: center;
}

.j-end {
  justify-content: flex-end;
}

.j-start {
  justify-content: flex-start;
}

.j-sb {
  justify-content: space-between;
}

.j-ad {
  justify-content: space-around;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.color-000 {
  color: #000000;
}

.color-333 {
  color: #333333;
}

.color-666 {
  color: #666666;
}

.color-999 {
  color: #999999;
}

.fs-14 {
  font-size: 0.7292vw;
}

.fs-16 {
  font-size: 0.8333vw;
}

.fs-18 {
  font-size: 0.9375vw;
}

.fs-20 {
  font-size: 1.0417vw;
}

.fs-22 {
  font-size: 1.1458vw;
}

.fs-24 {
  font-size: 1.25vw;
}

.fs-26 {
  font-size: 1.3542vw;
}

.fs-28 {
  font-size: 1.4583vw;
}

.fs-30 {
  font-size: 1.5625vw;
}

.container-1400 {
  width: 72.9167vw;
}

.word-wrap {
  word-wrap: break-word;
  word-break: break-all;
}
.white-space {
  white-space: pre-wrap;
}

.line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 576px) {
  html {
    font-size: 12px;
  }
}

@media screen and (min-width: 575px) {
  html {
    font-size: 13px;
  }
}

@media screen and (min-width: 767px) {
  html {
    font-size: 14px;
  }
}

@media screen and (min-width: 991px) {
  html {
    font-size: 15px;
  }
}

@media screen and (min-width: 1199px) {
  html {
    font-size: 16px;
  }
}

.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
