html,
body {
  background: #FAFAFA;
}
.banner-wrap {
  background: url(../img/banner.png) no-repeat;
  height: 240px;
  background-size: 100% 100%;
  background-position: center;
}
.banner-wrap .container {
  display: flex;
  height: 100%;
  align-items: center;
}
.banner-wrap .tl-1 {
  font-size: 38px;
  font-weight: bold;
  color: #fff;
  user-select: none;
  letter-spacing: 3px;
}
.tabs-wrap {
  height: 55px;
  position: relative;
}
.tabs-wrap .tabs {
  height: 55px;
  width: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  display: flex;
  justify-content: center;
}
.tabs-wrap .tabs > .item {
  width: 33.3%;
  text-align: center;
  width: 300px;
  color: #fff;
  line-height: 55px;
  font-size: 20px;
  font-weight: bold;
  transition: 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.2);
}
.tabs-wrap .tabs > .item + .item {
  margin-left: 3px;
}
.tabs-wrap .tabs > .item:hover {
  background-color: #EBF7FF;
  color: #4982F8;
}
.tabs-wrap .tabs > .item.active {
  background-color: #EBF7FF;
  color: #4982F8;
}
.list-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: none;
}
.list-wrap.active {
  display: flex;
  transition: 0.2s ease-in-out;
}
.list-wrap > .item {
  height: 190px;
  overflow: hidden;
  width: calc(50% - 30px);
  margin-bottom: 30px;
  display: flex;
  padding: 23px;
  background: #fff;
  box-shadow: 0 0 12px #eaeaea;
}
.list-wrap > .item .img-wrap {
  width: 230px;
}
.list-wrap > .item .img-wrap img {
  width: 100%;
}
.list-wrap > .item .info-wrap {
  padding: 0 30px;
  position: relative;
  width: calc(100% - 230px);
}
.list-wrap > .item .info-wrap .tl-1 {
  font-size: 26px;
  font-weight: bold;
  position: relative;
}
.list-wrap > .item .info-wrap .tl-1::after {
  content: '';
  width: 50px;
  border-bottom: 1px solid;
  bottom: -10px;
  left: 0;
  position: absolute;
}
.list-wrap > .item .info-wrap .more {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  color: #4982F8;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.list-wrap > .item .info-wrap .more:hover {
  text-decoration: underline;
}
.list-wrap > .item .info-wrap .more img {
  margin-left: 5px;
  height: 18px;
}
