.dynamic .content-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 0.6rem 0;
  white-space: nowrap;
  overflow: auto;
}

.dynamic .content-tabs > div {
  background-color: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 0.8rem 0.2rem rgba(8, 0, 0, 0.1);
  box-shadow: 0 0 0.8rem 0.2rem rgba(8, 0, 0, 0.1);
  cursor: pointer;
}

.dynamic .content-tabs > div.active {
  background-color: var(--primary-color);
  color: #fff;
}

.dynamic .content-tabs > div.active .icon {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.dynamic .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  font-weight: 500;
}

.dynamic .content-box > a {
  width: calc(50% - 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.dynamic .content-box p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dynamic .content-box em {
  font-size: 0.85rem;
  color: #999;
}

/* h5适配 */
.is-mobile .dynamic .content-tabs {
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

.is-mobile .dynamic .content-box {
  gap: 1.6rem;
}

.is-mobile .dynamic .content-box > a {
  width: 100%;
}