  <style>
    /* ====== 与主页保持完全一致的全局重置 ====== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background-color: #f4f4f4;
      font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
      color: #333;
      font-size: 14px;
      line-height: 1.8;
      display: flex;
      justify-content: center;
      padding: 20px 10px;
    }
    a {
      text-decoration: none;
      color: #333;
    }
    .container {
      width: 1000px;
      max-width: 100%;
      background-color: #fff;
      padding: 25px 30px;
      box-shadow: 0 0 15px rgba(0,0,0,0.08);
      border-radius: 4px;
    }

    /* ====== 头部 ====== */
    .header {
      border-bottom: 2px solid #ddd;
      padding-bottom: 15px;
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 15px;
      position: relative;
    }
    .header-logo {
      width: 150px;
      height: 60px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .header-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .header h1 {
      font-size: 28px;
      color: #000;
      margin: 0;
      font-weight: bold;
      letter-spacing: 1px;
    }
    .header .sub-text {
      position: absolute;
      right: 0;
      top: 10px;
      font-size: 12px;
      color: #999;
    }

    /* ====== 导航栏 ====== */
    .nav-bar {
      background-color: #2c2c2c;
      border-radius: 4px;
      margin-bottom: 25px;
      display: flex;
      flex-wrap: wrap;
      padding: 0;
      list-style: none;
    }
    .nav-bar li {
      flex: 1;
      text-align: center;
      min-width: 70px;
    }
    .nav-bar li a {
      display: block;
      color: #ddd;
      padding: 12px 6px;
      font-size: 14px;
      font-weight: bold;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .nav-bar li a:hover {
      background-color: #d00;
      color: #fff;
    }
    .nav-bar li a.active {
      background-color: #d00;
      color: #fff;
    }

    .page-wrapper {
      display: flex;
      gap: 30px;
    }
    .left-column {
      flex: 3;
      min-width: 0;
    }
    .right-column {
      flex: 1;
      min-width: 200px;
    }

    /* ====== 内容样式 ====== */
    .article-wrapper {
      background-color: #fcfcfc;
      border: 1px solid #e8e8e8;
      padding: 15px 20px;
      border-radius: 3px;
      margin-bottom: 20px;
    }
    .article-title {
      font-size: 22px;
      font-weight: bold;
      color: #000;
      text-align: center;
      margin: 0 0 10px 0;
      padding-bottom: 15px;
      border-bottom: 2px solid #d00;
    }
    .article-subtitle {
      text-align: center;
      color: #999;
      font-size: 13px;
      margin-bottom: 20px;
    }

    .content-block {
      background-color: #fcfcfc;
      border: 1px solid #e8e8e8;
      border-radius: 3px;
      padding: 15px 20px;
      margin-bottom: 25px;
    }
    .content-block.intro-block {
      background-color: #fafaf5;
      border: 1px solid #e8e8e8;
    }
    .content-block .section-heading {
      font-size: 16px;
      color: #333;
      margin: 0 0 12px 0;
      padding: 8px 16px;
      background: #f0f0f0;
      border-left: 4px solid #d00;
      border-radius: 0 4px 4px 0;
      font-weight: bold;
      letter-spacing: 1px;
    }
    .content-block h3 {
      font-size: 15px;
      color: #333;
      margin: 18px 0 8px 0;
    }
    .content-block p {
      margin: 10px 0;
      text-indent: 2em;
      font-size: 14px;
      line-height: 1.8;
    }
    .content-block .highlight-red {
      color: #cc0000;
      font-weight: bold;
    }
    .content-block .highlight {
      color: #cc0000;
      font-weight: bold;
    }

    .anti-cheat-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .anti-cheat-list li {
      padding: 10px 0;
      border-bottom: 1px dashed #e0e0e0;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #444;
      font-size: 14px;
    }
    .anti-cheat-list li:last-child {
      border-bottom: none;
    }
    .anti-cheat-list .check-icon {
      color: #d00;
      font-weight: bold;
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .anti-cheat-list li span {
      color: #444;
      line-height: 1.8;
    }

    .penalty-table {
      width: 100%;
      border-collapse: collapse;
      margin: 15px 0 10px 0;
      font-size: 14px;
      background: #fff;
      border: 1px solid #ddd;
    }
    .penalty-table th {
      background: #2c2c2c;
      color: #fff;
      padding: 10px 8px;
      text-align: center;
      font-weight: bold;
      border: 1px solid #444;
    }
    .penalty-table td {
      padding: 10px 8px;
      border: 1px solid #ddd;
      text-align: center;
      vertical-align: middle;
      background-color: #fafafa;
      font-size: 14px;
    }
    .penalty-table .highlight-red {
      color: #cc0000;
      font-weight: bold;
    }
    .penalty-table .legal-note {
      background: #fef7e0;
      font-size: 13px;
      text-align: left;
      padding: 10px 14px;
      border-left: 4px solid #d00;
    }

    .divider-dot {
      text-align: center;
      margin: 20px 0;
      color: #ccc;
      font-size: 18px;
      letter-spacing: 8px;
    }

    .article-ending {
      background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
      color: #ffd700;
      padding: 25px 25px;
      border-radius: 8px;
      text-align: center;
      margin: 20px 0 10px 0;
    }
    .article-ending p {
      margin: 8px 0;
      font-size: 14px;
      line-height: 1.8;
      text-indent: 0;
    }
    .article-ending .big-text {
      font-size: 22px;
      font-weight: bold;
      color: #fff;
    }
    .article-ending .accent {
      color: #ff6600;
      font-weight: bold;
    }

    /* ====== 新增图片容器 (居中) ====== */
    .image-container {
      text-align: center;
      margin: 25px 0 15px 0;
    }
    .image-container img {
      max-width: 100%;
      height: auto;
      border: 1px solid #ddd;
      border-radius: 6px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    /* ====== 侧边栏 ====== */
    .sidebar-box {
      background: #fafafa;
      border: 1px solid #e8e8e8;
      border-radius: 6px;
      padding: 15px;
      margin-bottom: 20px;
      text-align: center;
    }
    .sidebar-box h4 {
      font-size: 15px;
      color: #333;
      margin: 0 0 12px 0;
      padding-bottom: 8px;
      border-bottom: 2px solid #d00;
      font-weight: bold;
    }
    .sidebar-qr-img {
      width: 120px;
      height: 120px;
      border: 3px solid #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      border-radius: 4px;
      margin-bottom: 8px;
      background: #eaeaea;
      display: inline-block;
    }
    .sidebar-qr-text {
      font-size: 13px;
      color: #666;
      margin: 6px 0;
      line-height: 1.6;
    }
    .sidebar-kuaishou-btn {
      display: block;
      background: #ff6600;
      color: #fff;
      padding: 10px;
      text-align: center;
      margin-top: 10px;
      font-weight: bold;
      border-radius: 4px;
      font-size: 15px;
      transition: background 0.2s;
    }
    .sidebar-kuaishou-btn:hover {
      background: #e55d00;
      color: #fff;
    }
    .sidebar-profile {
      text-align: center;
      padding: 15px;
      border: 1px solid #eee;
      border-radius: 6px;
      background: #fafafa;
    }
    .sidebar-profile .profile-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #ccc;
      display: inline-block;
      vertical-align: middle;
    }
    .sidebar-profile .profile-name {
      display: inline-block;
      vertical-align: middle;
      font-size: 15px;
      font-weight: bold;
      margin-left: 8px;
      color: #333;
    }

    /* ====== 底部 ====== */
    .footer {
      text-align: center;
      font-size: 12px;
      color: #999;
      margin-top: 40px;
      border-top: 1px solid #eee;
      padding-top: 20px;
    }

    /* ====== 响应式 ====== */
    @media (max-width: 1050px) {
      .container {
        margin: 0;
      }
      .page-wrapper {
        flex-direction: column;
      }
      .right-column {
        width: 100%;
      }
      .header {
        flex-direction: column;
        text-align: center;
      }
      .header h1 {
        font-size: 22px;
      }
      .header .sub-text {
        position: static;
        margin-top: 5px;
        font-size: 12px;
      }
      .nav-bar li a {
        padding: 10px 4px;
        font-size: 12px;
      }
      .article-title {
        font-size: 20px;
      }
      .article-wrapper {
        padding: 15px 15px;
      }
      .content-block {
        padding: 15px 15px;
      }
      .content-block p,
      .anti-cheat-list li,
      .anti-cheat-list li span {
        font-size: 14px;
      }
      .sidebar-box {
        display: inline-block;
        width: 45%;
        vertical-align: top;
        margin-right: 2%;
      }
      .penalty-table {
        font-size: 13px;
      }
      .penalty-table th,
      .penalty-table td {
        padding: 8px 6px;
      }
    }
    @media (max-width: 600px) {
      body {
        padding: 10px 5px;
      }
      .container {
        padding: 15px 12px;
      }
      .header h1 {
        font-size: 18px;
      }
      .sidebar-box {
        display: block;
        width: auto;
        margin-right: 0;
      }
      .penalty-table {
        font-size: 12px;
      }
      .penalty-table th,
      .penalty-table td {
        padding: 6px 4px;
        word-break: break-word;
      }
      .article-ending .big-text {
        font-size: 18px;
      }
    }
  </style>