
.video-container[data-v-f95be5c2] {
  position: relative;
  width: 100%;
  height: calc(100vh - 50px);
  background: #000;
  overflow: hidden;
}
.video-list[data-v-f95be5c2] {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
}
.video-item[data-v-f95be5c2] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  transition: transform 0.3s ease-out;
}
.video-item video[data-v-f95be5c2] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.video-overlay[data-v-f95be5c2] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.bottom-info[data-v-f95be5c2] {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 20;
}
.user-info[data-v-f95be5c2] {
  display: flex;
  align-items: center;
}
.avatar[data-v-f95be5c2] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.avatar img[data-v-f95be5c2] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-details[data-v-f95be5c2] {
  flex: 1;
}
.username[data-v-f95be5c2] {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.description[data-v-f95be5c2] {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}
.action-buttons[data-v-f95be5c2] {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 20;
}
.action-item[data-v-f95be5c2] {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.action-item[data-v-f95be5c2]:hover {
  transform: scale(1.1);
}
.action-item .icon[data-v-f95be5c2] {
  margin-bottom: 5px;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-item .icon.active[data-v-f95be5c2] {
  transform: scale(1.2);
  animation: heartBeat-f95be5c2 0.3s ease-in-out;
}
.action-item .count[data-v-f95be5c2] {
  font-size: 12px;
  font-weight: bold;
}
.play-pause-btn[data-v-f95be5c2] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  z-index: 30;
}
.play-pause-btn[data-v-f95be5c2]:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-click-area[data-v-f95be5c2] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}
.loading-indicator[data-v-f95be5c2] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.loading-spinner[data-v-f95be5c2] {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin-f95be5c2 1s linear infinite;
}
.loading-text[data-v-f95be5c2] {
  color: white;
  font-size: 14px;
  opacity: 0.8;
}
.no-more-indicator[data-v-f95be5c2] {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
.no-more-text[data-v-f95be5c2] {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
@keyframes heartBeat-f95be5c2 {
0% { transform: scale(1);
}
50% { transform: scale(1.3);
}
100% { transform: scale(1.2);
}
}
@keyframes spin-f95be5c2 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}

/* 响应式设计 */
@media (max-width: 768px) {
.video-overlay[data-v-f95be5c2] {
    padding: 15px;
}
.action-buttons[data-v-f95be5c2] {
    right: 15px;
    gap: 15px;
}
.action-item .icon[data-v-f95be5c2] {
    /* 图标大小在模板中通过size属性控制 */
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-pause-btn[data-v-f95be5c2] {
    width: 60px;
    height: 60px;
}
.bottom-info[data-v-f95be5c2] {
    gap: 10px;
}
.user-info[data-v-f95be5c2] {
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.user-info[data-v-f95be5c2]:hover {
    transform: scale(1.02);
}
.user-info[data-v-f95be5c2]:active {
    transform: scale(0.98);
}
.avatar[data-v-f95be5c2] {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.username[data-v-f95be5c2] {
    font-size: 14px;
}
.description[data-v-f95be5c2] {
    font-size: 12px;
}
}
