  <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;
      flex-wrap: wrap;
    }
    .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 {
      margin-left: auto;
      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,
    .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 .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 .sub-heading {
      font-size: 15px;
      color: #333;
      margin: 16px 0 8px 0;
      padding-left: 12px;
      border-left: 3px solid #d00;
      font-weight: bold;
    }
    .content-block p {
      margin: 10px 0;
      text-indent: 2em;
      font-size: 14px;
      line-height: 1.8;
    }
    .content-block p.no-indent {
      text-indent: 0;
    }
    .highlight-red {
      color: #cc0000;
      font-weight: bold;
    }
    .highlight-gold {
      color: #b8860b;
      font-weight: bold;
    }

    /* ====== 守则列表 ====== */
    .rule-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .rule-list li {
      padding: 10px 0;
      border-bottom: 1px dashed #e8e8e8;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #444;
      font-size: 14px;
      line-height: 1.8;
    }
    .rule-list li:last-child {
      border-bottom: none;
    }
    .rule-list .rule-num {
      color: #d00;
      font-weight: bold;
      flex-shrink: 0;
      min-width: 28px;
      font-size: 14px;
    }
    .rule-list .rule-label {
      font-weight: bold;
      color: #333;
    }

    /* 处罚措施网格 */
    .penalty-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 12px 0 5px;
    }
    .penalty-item {
      background: #f9f9f9;
      border: 1px solid #e8e8e8;
      border-radius: 4px;
      padding: 12px 14px;
      text-align: center;
    }
    .penalty-item .penalty-name {
      font-weight: bold;
      color: #333;
      font-size: 14px;
      display: block;
      margin-bottom: 2px;
    }
    .penalty-item .penalty-desc {
      font-size: 13px;
      color: #666;
    }
    .notice-box {
      background: #fdf6ec;
      border: 1px solid #e8e8e8;
      border-radius: 4px;
      padding: 14px 18px;
      margin: 15px 0 5px;
    }
    .notice-box p {
      margin: 6px 0;
      text-indent: 0;
    }

    /* ====== 新增图片区域 - 居中 ====== */
    .image-center-wrapper {
      text-align: center;
      margin: 16px 0 8px 0;
    }
    .image-center-wrapper img {
      max-width: 100%;
      height: auto;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    /* ====== 侧边栏 ====== */
    .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;
    }

    /* ====== 底部 ====== */
    .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 { margin-left: 0; }
      .penalty-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      body { padding: 10px 5px; }
      .container { padding: 15px 12px; }
      .header h1 { font-size: 18px; }
      .penalty-grid { grid-template-columns: 1fr; }
      .nav-bar li a { padding: 10px 4px; font-size: 12px; }
    }
  </style>