/* 详情页重构 - 沉浸式侧边栏布局 */
:root {
  --zh-primary: #00f2ff;
  --zh-secondary: #7000ff;
  --zh-accent: #ff0055;
  --zh-dark-bg: #030508;
  --zh-card-bg: rgba(255, 255, 255, 0.03);
  --zh-card-border: rgba(255, 255, 255, 0.05);
  --zh-text-main: #ffffff;
  --zh-text-muted: #8b9bb4;
  --zh-gradient: linear-gradient(135deg, #00f2ff 0%, #7000ff 100%);
}

body {
  background-color: var(--zh-dark-bg);
  color: var(--zh-text-main);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}

.zh_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 面包屑 - 极简风格 */
.zh_breadcrumb {
  padding: 120px 0 30px;
  background: linear-gradient(to bottom, #05080f, #030508);
}

.zh_breadcrumb_inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--zh-text-muted);
}

.zh_breadcrumb_inner a {
  color: var(--zh-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.zh_breadcrumb_inner a:hover {
  color: var(--zh-primary);
}

.zh_breadcrumb_inner span {
  color: #fff;
}

/* 详情页主布局 Grid */
.zh_detail_layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  padding-bottom: 100px;
  align-items: start;
}

/* 左侧主要内容 */
.zh_main_content {
  min-width: 0;
  /* Prevent grid blowout */
}

/* 头部信息 */
.zh_article_header {
  margin-bottom: 40px;
}

.zh_article_title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.zh_article_meta {
  display: flex;
  gap: 20px;
  color: var(--zh-text-muted);
  font-size: 14px;
  align-items: center;
}

.zh_meta_item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.zh_meta_item i {
  color: var(--zh-primary);
}

/* 主图 */
.zh_hero_image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--zh-card-border);
  position: relative;
}

.zh_hero_image img {
  width: 100%;
  height: auto;
  display: block;
}

.zh_hero_image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 通用卡片样式 */
.zh_widget_card {
  background: var(--zh-card-bg);
  border: 1px solid var(--zh-card-border);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

/* 服务信息卡片 */
.zh_service_info_card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.zh_info_row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--zh-card-border);
}

.zh_info_row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.zh_info_row:first-child {
  padding-top: 0;
}

.zh_info_label {
  color: var(--zh-text-muted);
}

.zh_info_value {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

/* 服务商卡片 */
.zh_provider_card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zh_provider_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--zh-gradient);
}

.zh_provider_avatar {
  width: 80px;
  height: 80px;
  background: rgba(0, 242, 255, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--zh-primary);
  border: 2px solid rgba(0, 242, 255, 0.2);
}

.zh_provider_name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  display: block;
  text-decoration: none;
}

.zh_provider_name:hover {
  color: var(--zh-primary);
}

.zh_provider_desc {
  color: var(--zh-text-muted);
  font-size: 14px;
  margin-bottom: 25px;
}

.zh_provider_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--zh-gradient);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.zh_provider_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 242, 255, 0.3);
}

/* 侧边栏列表 Widget */
.zh_widget_title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.zh_widget_title i {
  color: var(--zh-primary);
}

.zh_widget_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh_widget_list li {
  margin-bottom: 15px;
}

.zh_widget_list li:last-child {
  margin-bottom: 0;
}

.zh_widget_link {
  display: flex;
  gap: 15px;
  text-decoration: none;
  group: hover;
}

.zh_widget_thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.zh_widget_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zh_widget_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zh_widget_text {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zh_widget_link:hover .zh_widget_text {
  color: var(--zh-primary);
}

.zh_widget_date {
  font-size: 12px;
  color: var(--zh-text-muted);
}

/* 响应式 */
@media (max-width: 1024px) {
  .zh_detail_layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zh_sidebar {
    position: static;
  }

  .zh_article_title {
    font-size: 32px;
  }
}