.detail-page {
  max-width: var(--maxWidth);
}
.main {
  background-color: #fff;
  padding: 26px;
  display: flex;
  justify-content: space-between;
}
h1 {
  font-size: 32px;
}
.article {
  max-width: 728px;
}

.right-module {
  position: relative;
  width: 300px;
}
.right-module .advert-wrap {
  position: sticky;
  top: 10px;
}
.detail-list {
  max-width: 798px;
  display: grid;
  gap: 15px 20px;
  grid-template-columns: repeat(2, 1fr);
}
.detail-list .item {
  background-color: #fff;
  box-shadow: 0 10px 10px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  color: unset;
}
.detail-list .item:hover h2 {
  text-decoration: underline;
}
.detail-list .item img {
  aspect-ratio: 492 / 274;
  width: 100%;
}
.detail-list .item h2 {
  font-size: 18px;
  font-weight: unset;
  margin: 0;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.content {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  font-family: 'PT Sans', sans-serif;
}
.content h2 {
  font-weight: bold;
  font-size: 20px;
}
.content p {
  margin: 10px 0;
  font-weight: 400;
}
.content a {
  color: #420bf8;
  text-decoration: none;
}
.content video,
.content p img {
  width: 100% !important;
  height: auto;
}
.content td {
  word-break: break-all;
}

.pagination {
  margin: 15px 0;
}

.detail-page .article-action {
  margin-bottom: 15px;
  justify-content: flex-end;
}
.detail-page .article-action a {
  background-color: #e65c00;
  width: auto;
  padding: 0 15px;
}
.detail-page .article-action a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1170px) {
  .main {
    justify-content: center;
  }
  .right-module {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .main {
    padding: 26px 15px;
  }
}
