@charset "UTF-8";
html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(38, 40, 42);
  background: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #007bff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

button, input, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
  background: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* 顶部文章区域 */
.top-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.top-article {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.top-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.top-article a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.top-article-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.top-article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-article-content {
  padding: 25px;
}

.top-article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
}

.top-article-category {
  color: white;
  padding: 6px 14px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.8rem;
}

.top-article-category {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.top-article-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c2c2c;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-article-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-author {
  font-size: 0.85rem;
  color: #888;
}

/* 主要内容区域 */
.main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* 特色文章 */
.featured-article {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.featured-article:hover {
  transform: translateY(-8px);
}

.featured-article a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-content {
  padding: 40px;
}

.featured-tag {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2c2c2c;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-desc {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.read-more {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* 侧边栏 */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-section {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2c2c2c;
  position: relative;
  padding-left: 15px;
}

.sidebar-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 2px;
}

.sidebar-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.sidebar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.sidebar-list li:hover {
  color: #2563eb;
  cursor: pointer;
}

/* 最新文章区域 */
.latest-articles-section {
  margin-bottom: 50px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #f0f0f0;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #2c2c2c;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 2px;
}

.section-view-more {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

.section-view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* 文章网格 */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.article-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 25px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
}

.article-category {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.article-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c2c2c;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-excerpt {
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 分类列表区域 */
.categories-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.categories-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #2c2c2c;
  position: relative;
}

.categories-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 2px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.category-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.category-item:hover::before {
  left: 100%;
}

.category-item:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}

.category-item:nth-child(1) {
  border-color: #2563eb;
}

.category-item:nth-child(2) {
  border-color: #2563eb;
}

.category-item:nth-child(3) {
  border-color: #2563eb;
}

.category-item:nth-child(4) {
  border-color: #2563eb;
}

.category-item:nth-child(5) {
  border-color: #2563eb;
}

.category-item:nth-child(6) {
  border-color: #2563eb;
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
  position: relative;
  z-index: 1;
}

.category-item:nth-child(1) .category-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.category-item:nth-child(2) .category-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.category-item:nth-child(3) .category-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.category-item:nth-child(4) .category-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.category-item:nth-child(5) .category-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.category-item:nth-child(6) .category-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.category-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c2c2c;
  position: relative;
  z-index: 1;
}

.category-count {
  color: #666;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.view-more-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.view-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

/* 响应式设计 */
@media (max-width: 968px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .featured-title {
    font-size: 1.6rem;
  }
  .featured-content {
    padding: 30px;
  }
  .top-articles {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  .top-articles {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .featured-title {
    font-size: 1.4rem;
  }
  .sidebar-section {
    padding: 20px;
  }
  .categories-section {
    padding: 30px 20px;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .top-article-content {
    padding: 20px;
  }
  .featured-content {
    padding: 20px;
  }
  .featured-title {
    font-size: 1.3rem;
  }
  .article-content {
    padding: 20px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .category-item {
    padding: 25px;
  }
}
/* 加载动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-article,
.featured-article,
.sidebar-section,
.article-card,
.category-item {
  animation: fadeInUp 0.6s ease forwards;
}

.top-article:nth-child(2) {
  animation-delay: 0.1s;
}

.top-article:nth-child(3) {
  animation-delay: 0.2s;
}

.category-item:nth-child(2) {
  animation-delay: 0.1s;
}

.category-item:nth-child(3) {
  animation-delay: 0.2s;
}

.category-item:nth-child(4) {
  animation-delay: 0.3s;
}

.category-item:nth-child(5) {
  animation-delay: 0.4s;
}

.category-item:nth-child(6) {
  animation-delay: 0.5s;
}

.list-page {
  /* 页面标题 */
  /* 新闻列表 */
  /* 响应式设计 */
  /* 加载动画 */
}
.list-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.list-page .page-header {
  text-align: center;
  margin-bottom: 40px;
}
.list-page .page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 10px;
}
.list-page .page-subtitle {
  color: #666;
  font-size: 1.1rem;
}
.list-page .news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}
.list-page .news-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.list-page .news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.list-page .news-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.list-page .news-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 25px;
}
.list-page .news-image-wrapper {
  width: 100%;
  height: 232px;
  overflow: hidden;
}
.list-page .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.list-page .news-item:hover .news-image {
  transform: scale(1.05);
}
.list-page .news-details {
  padding: 25px 25px 25px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.list-page .news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #888;
}
.list-page .news-category {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 6px 14px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.8rem;
}
.list-page .news-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2c2c2c;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-page .news-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-page .news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-page .news-author {
  font-size: 0.9rem;
  color: #888;
}
.list-page .read-more-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.list-page .read-more-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
@media (max-width: 768px) {
  .list-page .container {
    padding: 15px;
  }
  .list-page .page-title {
    font-size: 2rem;
  }
  .list-page .news-content {
    gap: 0;
    grid-template-columns: 1fr;
  }
  .list-page .news-image-wrapper {
    height: 250px;
  }
  .list-page .news-details {
    padding: 25px;
  }
}
@media (max-width: 480px) {
  .list-page .news-title {
    font-size: 1.3rem;
  }
  .list-page .news-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.list-page .news-item {
  animation: fadeInUp 0.6s ease forwards;
}
.list-page .news-item:nth-child(2) {
  animation-delay: 0.1s;
}
.list-page .news-item:nth-child(3) {
  animation-delay: 0.2s;
}
.list-page .news-item:nth-child(4) {
  animation-delay: 0.3s;
}
.list-page .news-item:nth-child(5) {
  animation-delay: 0.4s;
}
.list-page .news-item:nth-child(6) {
  animation-delay: 0.5s;
}
.list-page .news-item:nth-child(7) {
  animation-delay: 0.6s;
}
.list-page .news-item:nth-child(8) {
  animation-delay: 0.7s;
}
.list-page .news-item:nth-child(9) {
  animation-delay: 0.8s;
}
.list-page .news-item:nth-child(10) {
  animation-delay: 0.9s;
}

header {
  position: fixed;
  z-index: 333;
  left: 0;
  top: 0;
  right: 0;
}

.header-height {
  height: 70px;
}

/* 导航栏 */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
}

.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 14px;
}

.nav-menu a:hover, .nav-menu .active a {
  color: #007bff;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
}

/* 移动端菜单按钮 */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* 底部 */
.footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-info {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 10px;
}

.footer-description {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #007bff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
  color: #999;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  .nav-menu.active {
    display: flex !important;
  }
  .menu-toggle {
    display: flex !important;
  }
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 20px;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #007bff;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #999;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-container ul li a.active {
  background: #007bff;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}

@media (max-width: 768px) {
  .pagination-container {
    margin-top: 15px;
    transform: scale(0.8);
  }
}
.detail-page {
  width: min(750px, 100%);
  margin: 0 auto;
  min-height: calc(100vh - 70px);
  padding-bottom: 20px;
  padding-top: 20px;
}
.detail-page .detail-box .title {
  margin-top: 38px;
  margin-bottom: 20px;
  line-height: 23px;
  font-size: 20px;
  color: rgb(38, 40, 42);
  font-weight: bold;
}
.detail-page .detail-box .source {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.detail-page .detail-box .source img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 18px;
}
.detail-page .detail-box .source .name-info .name {
  margin-bottom: 8px;
  color: rgb(38, 38, 38);
  font-size: 16px;
  line-height: 18px;
}
.detail-page .detail-box .source .name-info .time {
  font-size: 14px;
  line-height: 18px;
  color: rgb(140, 140, 140);
}
.detail-page .detail-box .content {
  word-break: break-all;
}

@media (max-width: 768px) {
  .detail-page {
    padding: 0 8px;
    margin: 8px auto;
    padding-top: 20px;
  }
  .detail-page .detail-box .title {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .detail-page .detail-box .source {
    margin-bottom: 10px;
  }
  .detail-page .detail-box .source img {
    margin-right: 10px;
  }
  .detail-page .detail-box .source .name-info .name {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .bread {
    margin-bottom: 20px;
    margin-left: 5px !important;
  }
}
.bread {
  display: flex;
  align-items: center;
  gap: 8px;
  left: 22px;
  font-size: 14px;
  line-height: 22px;
  width: min(1200px, 100%);
  margin: 0 auto;
  margin-bottom: 20px;
}
.bread .link {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.bread .link a {
  color: rgba(0, 0, 0, 0.45);
}
.bread .text {
  color: rgb(0, 0, 0);
  font-weight: bold;
}

/*# sourceMappingURL=index.css.map */
