.smartPage .smartPage-text {
  z-index: -1;
}
.tab_wrap {
  width: 100%;
  text-align: center;
}
.tabs {
  display: inline-flex;
  justify-content: center;
  background: #EAEAEA;
  border-radius: 4px;
  padding: 2px;
}
.tabs .tab_item {
  padding: 10px;
  font-size: 18px;
  color: #777777;
  cursor: pointer;
}
.tabs .tab_item:hover {
  background: #fff;
  border-radius: 2px;
  color: #2B2B2B;
}
.tabs .cur {
  background: #fff;
  border-radius: 4px;
  color: #2B2B2B;
}
.list {
  width: 100%;
}
.list .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 4px solid #12D8FF;
}
.list .item .cover {
  width: 320px;
  border-radius: 24px;
  overflow: hidden;
}
.list .item .cover img {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.list .item .text {
  width: calc(100% - 370px);
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.list .item .text .name {
  width: 100%;
  font-size: 18px;
  color: #000;
  margin-bottom: 40px;
  transition: 0.5s;
}
.list .item .text .desc {
  width: 100%;
  font-size: 14px;
  line-height: 28px;
  color: #000;
}
.list .item .text .time {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list .item .text .time span {
  font-size: 16px;
  color: #000;
}
.list .item .text .time img {
  width: 14px;
  display: block;
}
.list .item:hover .cover img {
  transform: scale(1.2);
}
.list .item:hover .name {
  color: #12D8FF;
}
@media only screen and (max-width: 1280px) {
  .tabs {
    overflow-x: auto;
  }
  .tabs .tab_item {
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 820px) {
  .list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .list .item {
    width: 49%;
    display: block;
  }
  .list .item .cover {
    width: 100%;
  }
  .list .item .text {
    width: 100%;
  }
  .list .item .text .span {
    width: 100%;
  }
  .list .item .text .name {
    margin: 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }
  .list .item .text .desc {
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: normal;
    margin-bottom: 10px;
  }
  .list .item .text .time span {
    font-size: 12px;
  }
  .list .item .text .time img {
    width: 6px;
  }
}
