/* 图片合集页面特有样式 */
    .images-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
      gap: 32px;
      margin-bottom: 32px;
    }

    /* 图片合集卡片样式 */
    .image-card {
      background: #ffffff;
      border: 1px solid rgba(184, 31, 45, 0.1);
      border-radius: 16px;
      overflow: hidden;
      transition: all .3s ease;
      cursor: pointer;
      height: 320px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    }

    .image-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(184, 31, 45, 0.15);
    }

    .image-cover-container {
      height: 220px;
      background: #f8f9fa;
      overflow: hidden;
      position: relative;
    }

    .image-cover {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .image-details {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .image-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .image-title {
      font-size: 16px;
      font-weight: 600;
      color: #222;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.4;
    }

    .image-count-badge {
      background: linear-gradient(135deg, #b81f2d, #9f1925);
      color: white;
      padding: 4px 12px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 500;
      white-space: nowrap;
      margin-left: 8px;
    }

    .image-description {
      color: #6b7280;
      font-size: 14px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      flex: 1;
    }

    /* 响应式样式 */
    @media (max-width: 768px) {
      .images-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .image-card {
        height: 300px;
      }

      .image-cover-container {
        height: 200px;
      }
    }

    @media (max-width: 480px) {
      .image-card {
        height: 280px;
      }

      .image-cover-container {
        height: 180px;
      }
    }