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 .row {
  margin: 0 -7.5px;
}
.cons-wrap .col {
  float: left;
  width: 20%;
  padding: 0 7.5px;
  height: 100%;
}
.cons-wrap .col .wrap {
  height: 450px;
  background: #FFFFFF;
  box-shadow: 0px 1px 10px 0px rgba(0,0,0,0.2);
  padding: 50px 26px;
  transition: background .3s ease;
}
.cons-wrap .col .wrap:hover {
  background: var(--main-theme-color);
}
.cons-wrap .col .wrap h3 {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  text-align: center;
  transition: color .3s ease;
  margin: 28px 0 26px;
}
.cons-wrap .col .wrap:hover h3 {
  color: #fff;
}
.cons-wrap .col .wrap p {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #808080;
  line-height: 1.8;
  transition: color .3s ease;
}
.cons-wrap .col .wrap:hover p {
  color: #fff;
}
.cons-wrap .col .wrap .icon {
  display: flex;
  justify-content: center;
}
.cons-wrap .col .wrap .icon img:first-child {
  display: block;
}
.cons-wrap .col .wrap:hover .icon img:first-child {
  display: none;
}
.cons-wrap .col .wrap .icon img:last-child {
  display: none;
}
.cons-wrap .col .wrap:hover .icon img:last-child {
  display: block;
}
.cons-wrap .rich-text {
  margin: 92px 0 64px;
}
.cons-wrap .rich-text img {
  max-width: 100%;
}
.cons-wrap .rich-text.pc {
  display: block;
}
.cons-wrap .rich-text.mobile {
  display: none;
}

@media screen and (max-width: 750px) {
  .cons-wrap .row {
    margin: 0 -7.5px;
  }
  .cons-wrap .col {
    float: left;
    width: unset;
    padding: 15px;
    height: 100%;
  }
  .cons-wrap .rich-text.pc {
    display: none;
  }
  .cons-wrap .rich-text.mobile {
    display: block;
  }
}
