html {
  background: #f5f5f5;
}
.tab-wrap {
  background: #FFFFFF;
  box-shadow: 1px 2px 6px 0px rgba(0,0,0,0.2);
}
.tab-wrap .container {
  display: flex;
}

.tab-wrap a {
  padding: 20px 10px;
  position: relative;
  display: block;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}
.tab-wrap a.active {
  color: var(--main-theme-color);
}
.tab-wrap a.active::after {
  background: var(--main-theme-color);
}
.tab-wrap a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.tab-wrap a + a {
  margin-left: 40px;
}
@media screen and (max-width: 750px) {
  .tab-wrap {
    background: #FFFFFF;
    box-shadow: 1px 2px 6px 0px rgba(0,0,0,0.2);
  }
  .tab-wrap .container {
    display: flex;
  }
  .tab-wrap a {
    padding: 20px 5px;
    position: relative;
    display: block;
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
  }
  .tab-wrap a.active::after {
    background: var(--main-theme-color);
  }
  .tab-wrap a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
  }
  .tab-wrap a + a {
    margin-left: 10px;
  }
}

.cons-wrap {
  padding: 40px 0 80px;
}
.cons-wrap .container {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.2);
  border-radius: 20px;
  padding: 47px 40px 81px;
}
.cons-wrap .container > h2 {
  padding: 10px 0;
  border-bottom: 2px solid #009B4C;
}
.cons-wrap .container .wrap {
  color: #666;
  line-height: 2;
}
.cons-wrap .container .wrap img {
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .cons-wrap {
    padding: 40px 0 80px;
  }
  .cons-wrap .container {
    width: 95%;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 27px 20px 40px;
  }
  .cons-wrap .container > h2 {
    padding: 10px 0;
    margin: unset;
    border-bottom: 2px solid #009B4C;
  }
}
