/* 下载中心 tab样式 */
.tabs-nav {
  align-items: center;
  padding: 0 40px;
  font-size: 0;
  -webkit-text-size-adjust: none;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  margin-bottom: 10px;
}

.tabs-item {
  position: relative;
  display: inline-block;
  padding: 20px 0 27px;
  list-style: none;
  font-size: 18px;
  font-weight: 500;
  color: #565656;
  letter-spacing: 0;
  line-height: 25px;
  cursor: pointer;
}
.tabs-item:not(:last-child) {
  margin-right: 35px;
}
.tabs-item:hover,
.tabs-item.active {
  color: #f05a23;
}
.tabs-item a {
  color: #565656;
}
.tabs-item:hover a,
.tabs-item.active a {
  color: #f05a23;
}
.tabs-item.active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  width: 100%;
  border-bottom: 3px solid rgba(240, 90, 35, 1);
}
.tab-pane {
  display: none;
  padding: 10px 40px 60px 40px;
  background-color: #fff;
  border-radius: 8px;
  box-sizing: border-box;
}
.tab-pane.active {
  display: block;
}
/* ------ */