.section-1 {
  background: #0DC8A5;
}
.section-1 .page-container {
  padding-top: 0;
  padding-bottom: 0;
}
.section-1 .right{
  min-width: 0;
  width: auto;
  text-align: center;
}
.section-1 .title {
  color: #fff;
}
.section-1 .desc {
  color: rgba(255, 255, 255, 0.9);
}

.section-2 {
  display: block;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}
.nav-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #969799;
}
.nav-box .separator {
  height: 16px;
  margin: 0 4px;
  user-select: none;
}
.nav-box .last-text {
  color: #323233;
}

/* 卡牌详情内容 */
.content-box {
  margin-top: 3.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.2rem;
}
.content-box .content-left {
  flex-grow: 1;
  min-width: 0;
}
.content-box .content-left .article-title {
  margin: 0;
  font-weight: 600;
  line-height: 5.2rem;
  font-size: 4.4rem;
}
.content-box .content-left .article-date {
  margin-top: 1.2rem;
  line-height: 2.2rem;
  font-size: 1.4rem;
  color: #969799;
}
.content-box .content-left .article-content {
  margin-top: 2.4rem;
  overflow-wrap: anywhere;
}
.content-box .content-left .article-content * {
  font-family: inherit !important;
}
.content-box .content-left .article-content p {
  line-height: 24px !important;
  font-size: 16px !important;
}
.content-box .content-left .article-content pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
}
.content-box .content-left .article-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
}
.content-box .content-left .article-content iframe,
.content-box .content-left .article-content video {
  max-width: 100%;
}
.content-box .content-left .article-content img {
  max-width: 100% !important;
  cursor: zoom-in;
}
.content-box .content-right {
  width: min(100%, 29.2rem);
  flex-shrink: 0;
  margin-left: 2.4rem;
  padding-left: 2.4rem;
  border-left: 1px solid #EBEDF0;
}
.content-box .content-right .right-title {
  margin: 0 0 2.4rem;
  font-size: 28px;
  line-height: 36px;
  color: rgb(50, 50, 51);
  font-weight: bold;
}
.content-box .content-right .r-item{
  display: block;
  margin-bottom: 1.6rem;
  padding: 2.4rem;
  border-radius: 1.6rem;
  border: 0.1rem solid rgba(235, 237, 240, 1);
}
.content-box .content-right .r-item:hover {
  box-shadow: 0rem 0.4rem 1rem rgba(0, 0, 0, 0.08),
    0rem 0.1rem 0.4rem rgba(0, 0, 0, 0.04);
}

.content-box .content-right .r-item .item-t {
  font-weight: 600;
  line-height: 2.8rem;
  font-size: 2.0rem;
  color: #323233;
}
.content-box .content-right .r-item .desc {
  margin-top: 0.8rem;
  line-height: 2.4rem;
  font-size: 1.6rem;
  color: #646566;
}

@media screen and (max-width: 1199px) {
  .content-box {
    flex-direction: column;
  }
  .content-box .content-right {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #EBEDF0;
    padding-top: 2.4rem;
  }
}