    /* 顶部标题栏 */
    .reviews-header {
      /*background: #fff;*/
      padding: 76px 40px 40px 40px;
      /*border-bottom: 1px solid #e0e0e0;*/
      /*position: sticky;
      top: 0;
      z-index: 100;*/
      display: flex;
      align-items: center;
      gap: 12px;
      flex-direction: column;
    background: #fdf2cc;
    }
    .reviews-header p{
      max-width: 860px;
      text-align: center;
    }
    .header-icon {
      width: 32px;
      height: 32px;
      background: #4a90d9;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header-icon svg {
      width: 18px;
      height: 18px;
      fill: white;
    }

    .reviews-header h1 {
      font-size: 30px;
      font-weight: 600;
      color: #1a1a1a;
      text-align: center;
    }

    .header-count {
      margin-left: auto;
      font-size: 13px;
      color: #888;
    display: none;
    }

    /* 主容器 */
    .container {
      padding: 60px 40px 24px 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* 瀑布流布局 */
    .masonry {
      column-count: 4;
      column-gap: 16px;
    }

    @media (max-width: 1200px) { .masonry { column-count: 3; } }
    @media (max-width: 800px)  { .masonry { column-count: 2; } }
    @media (max-width: 500px)  { .masonry { column-count: 1; } }

    /* 图片卡片 */
    .photo-item {
      break-inside: avoid;
      margin-bottom: 16px;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      background: #ddd;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .photo-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    }

    .photo-item img {
      width: 100%;
      display: block;
      transition: opacity 0.3s;
    }

    .photo-item img.loading {
      opacity: 0;
    }

    /* 悬浮遮罩 */
    .photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.25s;
      display: flex;
      align-items: flex-end;
      padding: 14px;
    }

    .photo-item:hover .photo-overlay {
      opacity: 1;
    }

    .photo-label {
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      display: none;
    }

    /* 放大图标 */
    .photo-zoom {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s;
    }

    .photo-item:hover .photo-zoom {
      opacity: 1;
    }

    .photo-zoom svg {
      width: 16px;
      height: 16px;
      stroke: #333;
    }

    /* ===== 灯箱 Lightbox ===== */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .lightbox.active {
      opacity: 1;
      pointer-events: all;
    }

    /* 图片容器 */
    .lb-img-wrap {
      position: relative;
      max-width: 90vw;
      max-height: 88vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lb-img {
      max-width: 90vw;
      max-height: 84vh;
      border-radius: 10px;
      object-fit: contain;
      box-shadow: 0 24px 80px rgba(0,0,0,0.6);
      transition: opacity 0.2s;
    }

    .lb-img.fade {
      opacity: 0;
    }

    /* 关闭按钮 */
    .lb-close {
      position: absolute;
      top: 20px;
      right: 24px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      z-index: 10;
    }

    .lb-close:hover {
      background: rgba(255,255,255,0.25);
    }

    .lb-close svg {
      width: 20px;
      height: 20px;
      stroke: #fff;
      stroke-width: 2;
    }

    /* 左右切换按钮 */
    .lb-btn {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255,255,255,0.14);
      border: 1.5px solid rgba(255,255,255,0.22);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s;
      z-index: 10;
    }

    .lb-btn:hover {
      background: rgba(255,255,255,0.28);
      transform: translateY(-50%) scale(1.08);
    }

    .lb-btn svg {
      width: 24px;
      height: 24px;
      stroke: #fff;
      stroke-width: 2;
      fill: none;
    }

    .lb-prev { left: 24px; }
    .lb-next { right: 24px; }

    /* 底部信息栏 */
    .lb-footer {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 16px;
      z-index: 10;
    }

    .lb-counter {
      background: rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 6px 16px;
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      white-space: nowrap;
    }

    .lb-title {
      color: rgba(255,255,255,0.75);
      font-size: 13px;
      max-width: 300px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      display: none;
    }

    /* 点滴导航 */
    .lb-dots {
      position: fixed;
      bottom: 70px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 10;
    }

    .lb-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    .lb-dot.active {
      background: #fff;
      transform: scale(1.4);
    }

    /* 加载占位 */
    .skeleton {
      background: linear-gradient(90deg, #e0e0e0 25%, #ebebeb 50%, #e0e0e0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite;
    }

    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
  </style>