.news-detail-section {
  background: #FFFFFF;
  padding: 72px 0;
}
.news-detail-section .news-detail-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .news-detail-section .news-detail-container {
    flex-direction: column;
    gap: 48px;
  }
}
.news-detail-section .news-content {
  flex: 1;
}
.news-detail-section .news-content .news-title {
  font-size: 43px;
  color: #03256C;
  line-height: 59px;
  font-weight: bold;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .news-detail-section .news-content .news-title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 24px;
  }
}
.news-detail-section .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E7EB;
}
@media (max-width: 767px) {
  .news-detail-section .news-content .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
  }
}
.news-detail-section .news-content .news-meta .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-detail-section .news-content .news-meta .author-info .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.news-detail-section .news-content .news-meta .author-info .author-name {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
}
.news-detail-section .news-content .news-meta .category-tag .category-label {
  background: #E0E7FF;
  color: #3730A3;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.news-detail-section .news-content .news-body .news-image {
  width: 100%;
  margin-bottom: 32px;
}
.news-detail-section .news-content .news-body .news-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.news-detail-section .news-content .news-body .news-text {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  line-height: 1.7;
  color: #374151;
}
.news-detail-section .news-content .news-body .news-text p {
  font-size: 16px;
  margin-bottom: 24px;
}
.news-detail-section .news-content .news-body .news-text p:last-child {
  margin-bottom: 0;
}
.news-detail-section .news-content .news-body .news-text h2 {
  font-size: 24px;
  font-weight: bold;
  color: #03256C;
  margin: 40px 0 24px 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .news-detail-section .news-content .news-body .news-text h2 {
    font-size: 20px;
    margin: 32px 0 20px 0;
  }
}
.news-detail-section .news-content .news-body .news-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #03256C;
  margin: 32px 0 20px 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .news-detail-section .news-content .news-body .news-text h3 {
    font-size: 18px;
    margin: 24px 0 16px 0;
  }
}
.news-detail-section .news-content .news-body .news-text ul,
.news-detail-section .news-content .news-body .news-text ol {
  margin: 24px 0;
  padding-left: 24px;
}
.news-detail-section .news-content .news-body .news-text ul li,
.news-detail-section .news-content .news-body .news-text ol li {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.news-detail-section .news-content .news-body .news-text blockquote {
  background: #F7F8F9;
  border-left: 4px solid #03256C;
  padding: 20px 24px;
  margin: 32px 0;
  font-style: italic;
  color: #4B5563;
}
.news-detail-section .news-content .news-body .news-text a {
  color: #03256C;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.news-detail-section .news-content .news-body .news-text a:hover {
  border-bottom-color: #03256C;
}
.news-detail-section .related-news {
  width: 400px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
}
@media (max-width: 1024px) {
  .news-detail-section .related-news {
    width: 100%;
  }
}
.news-detail-section .related-news .related-title {
  font-size: 15px;
  color: #03256C;
  line-height: 21px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #EFF0F1;
}
@media (max-width: 767px) {
  .news-detail-section .related-news .related-title {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}
.news-detail-section .related-news .related-news-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  background: #FFFFFF;
  border: none;
  border-bottom: 1px solid #EFF0F1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.news-detail-section .related-news .related-news-item:first-child {
  padding-top: 0;
}
.news-detail-section .related-news .related-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.news-detail-section .related-news .related-news-item:hover {
  background: #F8FAFC;
}
.news-detail-section .related-news .related-news-item .related-image {
  aspect-ratio: 128 / 72;
  width: auto;
  height: 72px;
  background: #D8D8D8;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.news-detail-section .related-news .related-news-item .related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-detail-section .related-news .related-news-item .related-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-detail-section .related-news .related-news-item .related-content .related-news-title {
  font-family: 'Alibaba-PuHuiTi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-detail-section .related-news .related-news-item .related-content .related-meta {
  margin-top: auto;
}
.news-detail-section .related-news .related-news-item .related-content .related-meta .related-category {
  background: #F7F8F9;
  border-radius: 12px;
  font-size: 13px;
  color: #353CF6;
  line-height: 13px;
  font-weight: bold;
  padding: 6px 12px;
  display: inline-block;
  width: fit-content;
  font-family: 'Alibaba-PuHuiTi', sans-serif;
}
@media (max-width: 767px) {
  .news-detail-section {
    padding: 48px 0;
  }
  .news-detail-section .news-detail-container {
    gap: 32px;
  }
  .news-detail-section .related-news .related-news-list {
    padding: 12px;
  }
  .news-detail-section .related-news .related-news-item {
    padding: 12px 0;
  }
  .news-detail-section .related-news .related-news-item:first-child {
    padding-top: 0;
  }
  .news-detail-section .related-news .related-news-item:last-child {
    padding-bottom: 0;
  }
  .news-detail-section .related-news .related-news-item .related-image {
    height: 60px;
    aspect-ratio: 128 / 72;
  }
  .news-detail-section .related-news .related-news-item .related-content .related-news-title {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .news-detail-section .related-news .related-news-item .related-content .related-meta .related-category {
    font-size: 12px;
    line-height: 12px;
    padding: 4px 8px;
  }
}
