
.album-container[data-v-0d3b0b46] {
  min-height: 100vh;
  background-color: #f8f8f8;
  padding-top: 60px;
}
.fixed-header[data-v-0d3b0b46] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
}
.nav-left[data-v-0d3b0b46] {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-title[data-v-0d3b0b46] {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  flex: 1;
  text-align: center;
}
.nav-right[data-v-0d3b0b46] {
  width: 20px;
}
.album-content[data-v-0d3b0b46] {
  padding: 16px;
}
.loading-container[data-v-0d3b0b46] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.loading-text[data-v-0d3b0b46] {
  margin-top: 12px;
  font-size: 14px;
  color: #999;
}
.empty-container[data-v-0d3b0b46] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.empty-text[data-v-0d3b0b46] {
  margin-top: 12px;
  font-size: 16px;
  color: #999;
}
.album-grid[data-v-0d3b0b46] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.album-item[data-v-0d3b0b46] {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.album-item[data-v-0d3b0b46]:hover {
  transform: scale(1.02);
}

/* 毛玻璃遮盖层样式 */
.blur-overlay[data-v-0d3b0b46] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}
.blur-overlay[data-v-0d3b0b46]:hover {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lock-icon[data-v-0d3b0b46] {
  margin-bottom: 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unlock-text[data-v-0d3b0b46] {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.album-image[data-v-0d3b0b46] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-thumbnail[data-v-0d3b0b46] {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.album-video[data-v-0d3b0b46] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.video-play-icon[data-v-0d3b0b46] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* 视频预览弹窗样式 */
.video-modal[data-v-0d3b0b46] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
}
.video-container[data-v-0d3b0b46] {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-player[data-v-0d3b0b46] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.close-btn[data-v-0d3b0b46] {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.close-btn .van-icon[data-v-0d3b0b46] {
  color: #fff;
  font-size: 24px;
}
.pause-icon[data-v-0d3b0b46] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  pointer-events: none;
}
.pause-icon .van-icon[data-v-0d3b0b46] {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* 响应式设计 - 保持3列布局 */
@media (max-width: 480px) {
.album-grid[data-v-0d3b0b46] {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
}
@media (min-width: 768px) {
.album-grid[data-v-0d3b0b46] {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
}


