  <style>
    /* ====== 与主页保持完全一致的全局重置 ====== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      overflow-y: scroll;
    }
    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;
    }
    body.lightbox-open {
      overflow: hidden;
    }
    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;
    }

    /* ====== 截图版块 ====== */
    .screenshot-wrapper {
      background-color: #fcfcfc;
      border: 1px solid #e8e8e8;
      padding: 15px 20px;
      border-radius: 3px;
      margin-bottom: 20px;
    }
    .screenshot-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;
    }
    .screenshot-subtitle {
      text-align: center;
      color: #999;
      font-size: 13px;
      margin-bottom: 20px;
    }

    .screenshot-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-bottom: 10px;
    }
    .screenshot-item {
      background-color: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }
    .screenshot-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }
    .screenshot-thumb {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      background-color: #eee;
    }
    .screenshot-item:hover .screenshot-thumb {
      opacity: 0.92;
    }
    .screenshot-caption {
      padding: 8px 6px;
      text-align: center;
      font-size: 13px;
      color: #555;
      background-color: #fafafa;
      border-top: 1px solid #eee;
      font-weight: bold;
    }

    /* ====== 灯箱 ====== */
    .lightbox-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.85);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .lightbox-overlay.active {
      display: flex;
    }
    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 85%;
      text-align: center;
    }
    .lightbox-content img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 4px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.6);
      background-color: #111;
      object-fit: contain;
    }
    .lightbox-close {
      position: absolute;
      top: -40px;
      right: -10px;
      font-size: 38px;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      transition: color 0.2s;
      line-height: 1;
      user-select: none;
    }
    .lightbox-close:hover {
      color: #d00;
    }
    .lightbox-caption {
      margin-top: 15px;
      color: #ddd;
      font-size: 15px;
      text-align: center;
      background: rgba(0,0,0,0.5);
      padding: 6px 18px;
      border-radius: 20px;
      display: inline-block;
    }

    /* ====== 侧边栏 ====== */
    .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;
      object-fit: contain;
      background-color: #f5f5f5;
    }
    .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;
      }
      .screenshot-title {
        font-size: 20px;
      }
      .screenshot-wrapper {
        padding: 15px 15px;
      }
      .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .sidebar-box {
        display: inline-block;
        width: 45%;
        vertical-align: top;
        margin-right: 2%;
      }
    }
    @media (max-width: 600px) {
      body {
        padding: 10px 5px;
      }
      .container {
        padding: 15px 12px;
      }
      .header h1 {
        font-size: 18px;
      }
      .screenshot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .sidebar-box {
        display: block;
        width: auto;
        margin-right: 0;
      }
    }
    @media (max-width: 400px) {
      .screenshot-grid {
        grid-template-columns: 1fr;
      }
    }
  </style>