.tab-wrap {
  background: #FFFFFF;
  box-shadow: 4px 7px 20px 0px rgba(55,99,170,0.1);
}
.tab-wrap .container {
  padding: unset;
}
.tab-wrap ul {
  display: flex;
}
.tab-wrap li {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #4D4D4D;
  position: relative;
  line-height: 60px;
  cursor: pointer;
}
.tab-wrap li + li {
  margin-left: 60px;
}
.tab-wrap li.active,
.tab-wrap li:hover {
  color: var(--main-color);
}
.tab-wrap li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 23px;
  height: 4px;
  background: #005DD4;
  border-radius: 2px;
}
@media screen and (max-width: 600px) {
  .tab-wrap .container {
    padding: 0 15px;
  }
  .tab-wrap li + li {
    margin-left: 30px;
  }
}



.list-wrap {
  margin-top: 59px;
}
.list-wrap .row {
  display: flex;
  flex-wrap: wrap;
}
.list-wrap .col {
  padding: unset;
}
.list-wrap .col:hover img {
  transform: scale(1.1);
}
.list-wrap .col img {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.list-wrap .cover {
  height: 280px;
  overflow: hidden;
}
.list-wrap .row:hover .desc {
  background: var(--main-color);
}
.list-wrap .desc {
  display: flex;
  justify-content: space-between;
  padding: 40px 50px;
  background: #F2F2F2;
  transition: all .3s ease;
}
.list-wrap .row:hover h2 {
  color: #fff;
}
.list-wrap .desc h2 {
  margin: 0 0 40px;
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
}
.list-wrap .row:hover p {
  color: #fff;
}
.list-wrap .desc p {
  margin: 0 0 43px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 1.7;
  max-width: 812px;
}
.list-wrap .row:hover button {
  background: transparent;
  border-color: #FFFFFF;
}
.list-wrap .desc button {
  display: block;
  width: 107px;
  height: 36px;
  background: var(--main-color);
  border-radius: 4px;
  outline: unset;
  border: 1px solid transparent;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  transition: all .3s ease;
}
.list-wrap .row:hover button {
  background: var(--hover-color);
}
.list-wrap .col {
  margin-bottom: 30px;
}
.list-wrap .row:hover .right {
  color: #fff;
}
.list-wrap .right {
  margin-left: 30px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #4D4D4D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.list-wrap .row:hover .right span {
  color: #fff;
}
.list-wrap .row .right span {
  font-size: 54px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #4D4D4D;
  transition: all .3s ease;
}
@media screen and (max-width: 640px) {
  .list-wrap .row {
    margin: unset;
    padding-bottom: 30px;
    border-bottom: 1px solid #efefef;
    margin-bottom: 30px;
  }
  .list-wrap .desc {
    padding: 20px 15px;
    flex-direction: column;
  }
  .list-wrap .desc h2 {
    font-size: 18px;
  }
  .list-wrap .col:first-child {
    margin: 0 0 15px;
  }
  .list-wrap .desc {
    margin: unset;
  }
  .list-wrap .row .right {
    flex-direction: row-reverse;
    justify-content: left;
    margin: 15px 0 0;
  }
  .list-wrap .row .right span {
    font-size: 12px;
    font-weight: 400;
  }
  .list-wrap .row .right span::before {
    content: "-";
  }
  .list-wrap .right {
    font-size: 12px;
  }
}
