/* 通用 */
* {
  padding: 0;
  margin: 0;
  color: #5e5b5c;
}

body {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.rowReverse {
  flex-direction: row-reverse;
}

.column {
  flex-direction: column;
}

.start {
  align-items: start;
}

.end {
  align-items: end;
}

.green {
  color: #0f823b;
}

.red {
  color: #ff0000;
}

.white {
  color: #fff;
}

.fontColor {
  color: #838788;
}

.fontSize12 {
  font-size: 12px;
}

.fontSize14 {
  font-size: 14px;
}

.fontSize24 {
  font-size: 24px;
}

.fontWeight {
  font-weight: 700;
}

.text-desc {
  padding: 20px 45px 20px 50px;
  font-size: 12px;
}

.paddingHtml {
  padding: 35px 20px 10px 20px;
}

.box::-webkit-scrollbar {
  width: 0 !important;
}

/* ---文字 ----样式 */

.titleGreen {
  display: flex;
  justify-content: center;
  color: green;
  font-weight: 600;
  font-size: 14px;
}

.wrap {
  position: relative;
  text-align: center;
  width: 100%;
  margin: 15px 0px;
}

.wrap div {
  line-height: 20px;
  font-weight: 700;
}

.wrap div:after,
.wrap div:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 26%;
  background: #ddd;
}

.wrap div:before {
  left: 20px;
}

.wrap div:after {
  right: 20px;
}

/* tab栏 */
@media screen and (max-width: 480px) {
  .tab {
    position: relative;
  }

  .tab_list {
    width: 320px;
    margin: 0 auto;
  }

  .tab_list li {
    float: left;
    width: 80px;
    height: 45px;
    line-height: 45px;
    list-style: none;
    text-align: center;
  }

  .tab_list li:not(:last-child)::after {
    content: "";
    position: relative;
    top: 10px;
    left: 10px;
    display: inline-block;
    height: 27px;
    width: 1px;
  }

  .tab_list li:first-child {
    border-bottom-left-radius: 20px;
  }

  .tab_list li:last-child {
    border-bottom-right-radius: 20px;
  }

  .tab_list .whiteTab {
    background-color: #fff;
    color: #008543;
  }

  .tab_list .greenTab {
    background-color: #008543;
    color: #fff;
  }

  .tab_list .backTab {
    background-color: #fff;
    color: #e92e3c;
  }

  .tab_list .redTab {
    background-color: #e92e3c;
    color: #fff;
  }
}
