@charset "UTF-8";
.news-detail-page {
  background: #f7f9fc;
  min-height: 100vh;
}

.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
}

.breadcrumb {
  font-size: 13px;
  color: #999;
}
.breadcrumb span {
  cursor: pointer;
  transition: color 0.2s;
}
.breadcrumb span:hover {
  color: #1890ff;
}
.breadcrumb .sep {
  margin: 0 8px;
  color: #d9d9d9;
  cursor: default;
}
.breadcrumb .current {
  color: #333;
  cursor: default;
  max-width: 400px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.breadcrumb .current:hover {
  color: #333;
}

.page-body {
  padding: 32px 0 80px;
}

.page-title-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.title-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.top-tag {
  display: inline-block;
  padding: 2px 8px;
  background: #ff4d4f;
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.page-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 24px;
  }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #999;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
}
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

.article-main {
  background: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .article-main {
    padding: 24px 20px;
  }
}

.article-cover {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-summary {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  padding: 20px 24px;
  background: #f0f7ff;
  border-radius: 12px;
  border-left: 4px solid #1890ff;
  margin-bottom: 32px;
}

.article-content {
  line-height: 2;
  font-size: 16px;
}
.article-content p {
  margin-bottom: 20px;
  color: #444;
}
.article-content h2 {
  font-size: 26px;
  margin: 40px 0 20px;
  color: #222;
  font-weight: 700;
}
.article-content h3 {
  font-size: 22px;
  margin: 32px 0 16px;
  color: #222;
  font-weight: 600;
}
.article-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 16px 0;
  display: block;
}
.article-content ul, .article-content ol {
  padding-left: 24px;
  color: #555;
}
.article-content ul li, .article-content ol li {
  margin-bottom: 8px;
  line-height: 1.9;
}
.article-content blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  background: #f7f9fc;
  border-left: 4px solid #1890ff;
  color: #666;
  border-radius: 0 8px 8px 0;
}

.sidebar-cta {
  text-align: center;
}
.sidebar-cta .cta-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.sidebar-cta h3 {
  font-size: 17px;
  color: #1a1a2e;
  margin: 0 0 6px;
}
.sidebar-cta p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.sidebar-cta .sidebar-cta-btn {
  background: #1890ff !important;
  border-color: #1890ff !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
}
.sidebar-cta .sidebar-cta-btn:hover {
  background: #40a9ff !important;
  border-color: #40a9ff !important;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  transition: color 0.2s;
}
.related-item:hover {
  color: #1890ff;
}
.related-item .related-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: #1890ff;
  border-radius: 50%;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .breadcrumb-bar {
    padding: 12px 0;
  }
  .breadcrumb {
    font-size: 12px;
  }
  .breadcrumb .current {
    max-width: 160px;
  }
  .page-body {
    padding: 20px 0 36px;
  }
  .container {
    padding: 0 16px;
  }
  .page-title-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  .article-layout {
    gap: 24px;
  }
  .article-cover {
    margin-bottom: 20px;
  }
  .article-cover img {
    max-height: 240px;
  }
  .article-summary {
    font-size: 14px;
    padding: 16px;
    margin-bottom: 20px;
  }
  .article-content {
    font-size: 15px;
  }
  .article-content h2 {
    font-size: 22px;
    margin: 28px 0 16px;
  }
  .article-content h3 {
    font-size: 18px;
  }
  .article-content img {
    margin: 12px 0;
  }
}
.prev-next-nav {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}

.pn-link {
  display: block;
  font-size: 14px;
  color: #888;
  line-height: 2;
  text-decoration: none;
  transition: color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pn-link:hover {
  color: #1890ff;
}

@media (max-width: 480px) {
  .page-title {
    font-size: 20px;
  }
  .article-meta {
    gap: 12px;
  }
}
/* n-card / n-tag 静态还原 */
.side-card {
  background: #fff;
  border: 1px solid #efeff5;
  border-radius: 8px;
  padding: 20px;
}
.side-card .side-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 14px;
}

.side-divider {
  height: 1px;
  background: #efeff5;
  margin: 16px 0;
}

.text-link {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #1890ff;
  text-decoration: none;
  transition: color 0.2s;
}
.text-link:hover {
  color: #40a9ff;
}

.info-tag {
  display: inline-block;
  padding: 0 8px;
  height: 22px;
  line-height: 22px;
  font-size: 12px;
  border-radius: 2px;
  color: #2080f0;
  background: rgba(32, 128, 240, 0.1);
}

.sidebar-cta-btn {
  display: block;
  width: 100%;
  padding: 0 16px;
  height: 40px;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid #1890ff;
}

.meta-item svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.svc-name {
  font-weight: 600;
  font-size: 13px;
}

.svc-desc {
  font-size: 12px;
  color: #aaa;
}
