/* 新闻列表通用样式 */
.news {
  width: 87.5rem;
  margin: 0 auto;
  margin-bottom: 3.75rem;
}
.news_list {
  display: flex;
  padding: 2.5rem 0;
  border-bottom: 1px solid #d8d8d8;
}
.news_img {
  width: 20rem;
  height: 12.5rem;
  border-radius: 0.63rem;
  margin-right: 2.5rem;
}
.news_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
}
.news_content img {
  cursor: pointer;
}
.news_title {
  font-weight: 500;
  font-size: 1.38rem;
  color: #1a1a1a;
}
.news_create_time {
  color: #5c6166;
  font-size: 0.88rem;
}
.news_msg {
  color: #5c6166;
  font-size: 0.88rem;
}
.enter-icon {
  margin-bottom: 6px;
}
.enter-icon:hover {
  margin-bottom: 0;
  width: 1.5rem;
  height: 1.5rem;
}
/* 新闻详情通用样式 */
.news_detail {
  width: 87.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.news_detail_left {
  width: 62.5rem;
}
.news_detail_title {
  font-weight: 500;
  font-size: 2.38rem;
  color: #1a1a1a;
  text-align: left;
  margin-bottom: 3.13rem;
}
.news_detail_time {
  font-size: 0.88rem;
  color: #5c6166;
  text-align: left;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #d8d8d8;
}
.news_detail_content {
  padding: 1.88rem 0;
  font-size: 1.13rem;
  color: #333;
  border-bottom: 1px solid #d8d8d8;
  text-align: left;
  line-height: 1.6;
}

/* 确保文章内容中的HTML元素正确显示 */
.news_detail_content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.news_detail_content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.news_detail_content h1, .news_detail_content h2, .news_detail_content h3,
.news_detail_content h4, .news_detail_content h5, .news_detail_content h6 {
  margin: 1.5rem 0 1rem 0;
  font-weight: bold;
}

.news_detail_content ul, .news_detail_content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.news_detail_content li {
  margin-bottom: 0.5rem;
}
.about_mky {
  font-size: 1.88rem;
  color: #3e5990;
  text-align: left;
}
.about_content {
  font-size: 1.13rem;
  color: #333;
  text-align: left;
}
.about_box {
  display: flex;
  margin: 1.25rem 0;
  text-align: left;
}
.about_box img {
  margin-right: 1.88rem;
}
.next_pre {
  width: 100%;
  background: rgba(72, 110, 143, 0.05);
  border-radius: 5px;
  padding: 1.88rem;
  text-align: left;
  box-sizing: border-box;
}
.next_pre p {
  font-size: 1.13rem;
  color: #1a1a1a;
  line-height: 1.88rem;
}
.next_pre p a {
  color: #1a1a1a;
  text-decoration: none;
}
.next_pre p a:hover {
  color: #0080ff;
  text-decoration: none;
}
.news_detail_right {
  width: 21.88rem;
}
.news_list_title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.news_lists {
  text-align: left;
  margin-bottom: 1.88rem;
}
.news_lists p {
  font-size: 1.38rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0.7rem 0;
  font-size: 18px;
}
.news_lists p a {
    color: #1A1A1A;
    text-decoration: none;
}
.news_lists p a:hover {
    color: #0080ff;
    text-decoration: none;
}
/* 移动端适配 */
@media (max-width: 768px) {
  .news {
    width: 100%;
    margin: 0 auto 3.75rem;
    padding: 15px;
    box-sizing: border-box;
  }
  .news_list {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid #d8d8d8;
  }
  .news_img {
    width: 100%;
    height: auto;
    border-radius: 0.63rem;
    margin-right: 2.5rem;
  }
  .news_title {
    font-size: 16px;
    margin: 15px 0;
  }
  .news_create_time {
    margin-bottom: 15px;
  }
  .news_detail {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    box-sizing: border-box;
  }
  .news_detail_left {
    width: 100%;
  }
  .news_detail_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .news_detail_content {
    font-size: 14px;
  }
  .about_mky {
    font-size: 18px;
    margin: 20px 0 12px;
  }
  .about_box img {
    width: 106px;
    margin-right: 12px;
  }
}
