html {
  font-family: 'PingFangSC-Regular', 'PingFang SC', 'STHeiti Light', 'helvetica neue', 'hiragino sans gb', 'arial', 'microsoft yahei ui', 'microsoft yahei', 'simsun', sans-serif;
}

input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #D1D1D1;
}

input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #D1D1D1;
}

input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #D1D1D1;
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #D1D1D1;
}

body {
  background: #fff;
  color: #292929;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

em,
i {
  font-style: normal;
}

ul,
dl,
p {
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  color: #333;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* b {
  font-weight: normal;
} */
img {
  border: none;
}

input,
textarea {
  vertical-align: middle;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}

textarea {
  overflow: auto;
}

table {
  border-spacing: 0;
  border: none;
  border-collapse: collapse;
}

button {
  border: none;
  background: none;
}

button:focus,
button:active:focus,
button.active:focus,
button.focus,
button:active.focus,
button.active.focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.el-scrollbar__bar {
  display: none;
}

.ellipsis-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 两行缩略 */
.ellipsis-2-line {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.flex {
  display: flex;
}

.flex-between {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}

.flex-around {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}

.flex-center {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-row-center {
  justify-content: center;
}

.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(2deg) translate3d(0, 0, 0)
  }

  50% {
    -webkit-transform: rotate(-2deg) translate3d(0, 0, 0)
  }

  100% {
    -webkit-transform: rotate(2deg) translate3d(0, 0, 0)
  }
}

@-moz-keyframes shake {
  0% {
    transform: rotate(2deg) translate3d(0, 0, 0)
  }

  50% {
    transform: rotate(-2deg) translate3d(0, 0, 0)
  }

  100% {
    transform: rotate(2deg) translate3d(0, 0, 0)
  }
}

@-ms-keyframes shake {
  0% {
    transform: rotate(2deg) translate3d(0, 0, 0)
  }

  50% {
    transform: rotate(-2deg) translate3d(0, 0, 0)
  }

  100% {
    transform: rotate(2deg) translate3d(0, 0, 0)
  }
}

.modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 10;
}

.popup {
  background: white;
  border-radius: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
}

.wid-1 {
  width: 10%;
}

.wid-2 {
  width: 20%;
}

.wid-3 {
  width: 30%;
}

.wid-4 {
  width: 40%;
}

.wid-5 {
  width: 50%;
}