.detail-page {
  max-width: var(--subMaxWidth);
  padding-top: 10px;
}
.detail-page .main {
  display: flex;
}
h1 {
  font-size: 36px;
  color: var(--fontColor);
}
.img-wrap {
  text-align: center;
}
.img-wrap img {
  aspect-ratio: 16 / 9;
  width: 80%;
}
.btn-wrap {
  text-align: center;
  font-size: 24px;
}
.detail-page .content {
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 600px;
  flex: 1;
}
.detail-page .common-btn2 {
  font-weight: bold;
  font-size: 40px;
  width: 100%;
}
.right {
  width: 300px;
  flex-shrink: 0;
  margin-left: 20px;
}
@media screen and (min-width: 640px) and (max-width: 950px) {
  .detail-page {
    flex-flow: column nowrap;
  }
  .detail-page .content {
    padding: 0 10px;
  }
  .right {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .detail-page {
    flex-flow: column nowrap;
    padding-top: 0;
  }

  h1 {
    font-size: 24px;
  }
  .img-wrap img {
    width: 100%;
  }
  .detail-page .content {
    width: 100%;
    padding-bottom: 20px;
  }
  .detail-page .content .intro {
    padding: 0 10px;
  }
  .detail-page .common-btn2 {
    font-size: 20px;
    width: auto;
    padding: 10px 50px;
  }
  .right {
    display: none;
  }
}

.abstract,
.desc {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  font-family: 'PT Sans', sans-serif;
}
.desc h2 {
  font-weight: bold;
  font-size: 20px;
}
.desc p {
  margin: 10px 0;
  font-weight: 400;
}
.desc a {
  color: #420bf8;
  text-decoration: none;
}
.desc video,
.desc img {
  width: 100% !important;
  height: auto;
}
.desc td {
  word-break: break-all;
}

.right .ad-wrap {
  position: sticky;
  top: 0;
}
