/* 英雄区 - 带背景图版本 */
.zonkvm-winbatch-hero {
  padding: 100px 0;
  background-image: url('img/news_bg_windows.jpg'); /* 你的背景图地址 */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  z-index: 1;
}
    .zonkvm-winbatch-hero-title {
        margin-top:50px;
      font-size: 2.4rem;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 20px;
    }
    .zonkvm-winbatch-hero-desc {
      font-size: 1rem;
      color: #4b5563;
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .zonkvm-winbatch-hero-img {
      max-width: 100%;
      border-radius: 6px;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }

    /* 兼容提示条 */
    .zonkvm-winbatch-compatibility {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: 8px;
      font-size: 14px;
      color: #065f46;
      margin-bottom: 24px;
    }
    .zonkvm-winbatch-compatibility i {
      color: #10b981;
      font-size: 16px;
    }

    /* 按钮增强 */
    .zonkvm-winbatch-btn-primary {
      padding: 10px 20px;
      font-weight: 600;
      border-radius: 8px;
    }

    /* 区块标题 */
    .zonkvm-winbatch-section {
      padding: 70px 0;
    }
    .zonkvm-winbatch-section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .zonkvm-winbatch-section-title h2 {
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 12px;
    }
    .zonkvm-winbatch-section-title p {
      color: #6b7280;
      max-width: 750px;
      margin: 0 auto;
    }

    /* 功能卡片 */
    .zonkvm-winbatch-feature-card {
      height: 100%;
      padding: 32px 20px;
      border-radius: 6px;
      background: #fff;
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
      text-align: center;
    }
    .zonkvm-winbatch-feature-card:hover {
      border-color: #dbeafe;
      box-shadow: 0 8px 25px -8px rgba(59, 130, 246, 0.15);
      transform: translateY(-4px);
    }
    .zonkvm-winbatch-feature-icon {
      font-size: 2.8rem;
      color: #3b82f6;
      margin-bottom: 20px;
    }
    .zonkvm-winbatch-feature-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: #1f2937;
    }
    .zonkvm-winbatch-feature-desc {
      color: #6b7280;
      line-height: 1.6;
    }

    /* 更新日志 */
    .zonkvm-winbatch-changelog {
      background-color: #f9fafb;
    }
    .zonkvm-winbatch-changelog-item {
      background: #fff;
      border-radius: 10px;
      padding: 24px;
      margin-bottom: 16px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }
    .zonkvm-winbatch-changelog-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 16px;
    }
    .zonkvm-winbatch-changelog-version {
      font-weight: 600;
      font-size: 1.1rem;
      color: #1f2937;
    }
    .zonkvm-winbatch-changelog-date {
      color: #9ca3af;
      font-size: 0.9rem;
    }
    .zonkvm-winbatch-changelog-badge {
      background: #10b981;
      font-size: 0.7rem;
      padding: 3px 8px;
      border-radius: 4px;
      margin-left: 8px;
    }
    .zonkvm-winbatch-changelog-change {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
    }
    .zonkvm-winbatch-changelog-change i {
      color: #3b82f6;
      margin-top: 4px;
    }
    .zonkvm-winbatch-change-tag {
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-right: 8px;
    }
    .zonkvm-winbatch-change-tag.new {
      background: #dbeafe;
      color: #1e40af;
    }
    .zonkvm-winbatch-change-tag.improve {
      background: #d1fae5;
      color: #065f46;
    }
    .zonkvm-winbatch-change-tag.fix {
      background: #fee2e2;
      color: #991b1b;
    }

    /* 响应式 */
    @media (max-width:768px) {
      .zonkvm-winbatch-hero {
        padding: 50px 0;
        text-align: center;
      }
      .zonkvm-winbatch-hero-title {
        font-size: 1.9rem;
      }
      .zonkvm-winbatch-compatibility {
        width: 100%;
        justify-content: center;
      }
    }