:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

.card {
  padding: 2em;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f5f5;
}
.app {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

[data-v-7c674207] {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.epub-reader[data-v-7c674207] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* 适配安全区域 */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  background-color: #fff;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  box-sizing: border-box;
}

/* 状态栏 */
.status-bar[data-v-7c674207] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* 状态栏高度 = 安全区域顶部高度，如果为0则使用默认值 */
  height: max(env(safe-area-inset-top), 20px); /* iPhone 刘海屏或 Android 状态栏 */
  min-height: 20px; /* 非刘海屏设备的最小高度（Android状态栏通常20px，iPhone非刘海屏24px） */
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 101; /* 比导航栏更高 */
  /* 隐藏时向上移动，移动距离 = 状态栏高度 + 导航栏高度 + 安全区域高度 */
  transform: translateY(calc(-100% - 44px - env(safe-area-inset-top)));
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
.status-bar.show[data-v-7c674207] {
  transform: translateY(0);
}

/* 顶部工具栏 */
.reader-header[data-v-7c674207] {
  position: fixed;
  /* 位于状态栏下方 */
  top: max(env(safe-area-inset-top), 20px);
  left: 0;
  right: 0;
  /* 基础高度 */
  min-height: 44px;
  height: 44px;
  padding: 0 16px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  /* 隐藏时向上移动，移动距离 = 导航栏高度 + 状态栏高度 + 安全区域高度 */
  transform: translateY(calc(-100% - 20px - env(safe-area-inset-top)));
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.reader-header.show[data-v-7c674207] {
  transform: translateY(0);
}
.header-left[data-v-7c674207] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.back-btn[data-v-7c674207] {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #333;
  flex-shrink: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.back-btn[data-v-7c674207]:focus,
.back-btn[data-v-7c674207]:active,
.back-btn[data-v-7c674207]:focus-visible {
  outline: none;
  border: none;
  box-shadow: none;
}
.back-btn svg[data-v-7c674207] {
  width: 20px;
  height: 20px;
}
.book-title[data-v-7c674207] {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
.header-right[data-v-7c674207] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-btn[data-v-7c674207] {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #333;
}
.menu-btn svg[data-v-7c674207] {
  width: 20px;
  height: 20px;
}

/* 阅读区域 */
.reader-content[data-v-7c674207] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #fff;
}
#viewer[data-v-7c674207] {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
  /* 适配安全区域，避免内容被遮挡 */
  padding-top: calc(16px + env(safe-area-inset-top));
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}

/* 点击区域 */
.click-area[data-v-7c674207] {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
}
.left-area[data-v-7c674207] {
  left: 0;
  width: 30%;
}
.center-area[data-v-7c674207] {
  left: 30%;
  width: 40%;
}
.right-area[data-v-7c674207] {
  right: 0;
  width: 30%;
}

/* 底部导航栏 */
.reader-footer[data-v-7c674207] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  /* 基础高度 + 安全区域适配（底部） */
  min-height: 60px;
  height: calc(60px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.reader-footer.show[data-v-7c674207] {
  transform: translateY(0);
}
.footer-nav[data-v-7c674207] {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  padding: 0 16px;
}
.nav-item[data-v-7c674207] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  color: #666;
  font-size: 12px;
  flex: 1;
}
.nav-item svg[data-v-7c674207] {
  width: 24px;
  height: 24px;
}
.nav-item span[data-v-7c674207] {
  font-size: 12px;
}

/* 侧边面板 */
.side-panel[data-v-7c674207] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.side-panel.show[data-v-7c674207] {
  opacity: 1;
  visibility: visible;
}
.panel-content[data-v-7c674207] {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.side-panel.show .panel-content[data-v-7c674207] {
  transform: translateX(0);
}
.panel-header[data-v-7c674207] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  padding-top: calc(16px + env(safe-area-inset-top));
  border-bottom: 1px solid #eee;
  /* 基础高度 + 安全区域适配（刘海屏） */
  min-height: 44px;
  height: calc(44px + env(safe-area-inset-top));
  box-sizing: border-box;
}
.panel-header h3[data-v-7c674207] {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.close-btn[data-v-7c674207] {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
}
.panel-body[data-v-7c674207] {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
}
.panel-body ul[data-v-7c674207] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.panel-body li[data-v-7c674207] {
  padding: 12px 0;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}
.panel-body li.active[data-v-7c674207] {
  color: #007aff;
  font-weight: 500;
}
.empty-message[data-v-7c674207] {
  text-align: center;
  color: #999;
  padding: 40px 16px;
  font-size: 14px;
}

/* 书签项 */
.bookmark-item[data-v-7c674207] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.bookmark-info[data-v-7c674207] {
  flex: 1;
  min-width: 0;
  cursor: pointer;
}
.bookmark-title[data-v-7c674207] {
  font-size: 15px;
  color: #333;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.bookmark-meta[data-v-7c674207] {
  font-size: 12px;
  color: #999;
}
.bookmark-delete[data-v-7c674207] {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

/* 设置面板 */
.setting-item[data-v-7c674207] {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.setting-item label[data-v-7c674207] {
  display: block;
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
}
.font-size-control[data-v-7c674207] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.font-size-control button[data-v-7c674207] {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}
.font-size-control button[data-v-7c674207]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.font-size-control span[data-v-7c674207] {
  flex: 1;
  text-align: center;
  font-size: 15px;
  color: #333;
}
.theme-toggle[data-v-7c674207] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  color: #333;
}
.add-bookmark-btn[data-v-7c674207] {
  width: 100%;
  padding: 12px;
  border: 1px solid #007aff;
  background: #007aff;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.add-bookmark-btn svg[data-v-7c674207] {
  width: 18px;
  height: 18px;
}

/* 加载提示 */
.loading-overlay[data-v-7c674207] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.loading-spinner[data-v-7c674207] {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007aff;
  border-radius: 50%;
  animation: spin-7c674207 1s linear infinite;
}
@keyframes spin-7c674207 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.loading-text[data-v-7c674207] {
  margin-top: 16px;
  font-size: 14px;
  color: #666;
}

/* 暗色模式 */
.epub-reader[data-v-7c674207] {
  background-color: #fff;
}

/* 调试信息显示 */
.debug-info[data-v-7c674207] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  min-width: 300px;
  max-width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}
.debug-info h3[data-v-7c674207] {
  margin: 0 0 16px 0;
  font-size: 18px;
  color: #333;
  border-bottom: 2px solid #007aff;
  padding-bottom: 8px;
}
.debug-item[data-v-7c674207] {
  margin: 12px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  word-break: break-all;
}
.debug-item strong[data-v-7c674207] {
  color: #333;
  margin-right: 8px;
}

/* 响应式调整 */
@media (max-width: 480px) {
.book-title[data-v-7c674207] {
    font-size: 14px;
}
.panel-content[data-v-7c674207] {
    width: 85%;
}
.debug-info[data-v-7c674207] {
    min-width: 280px;
    padding: 16px;
}
.debug-info h3[data-v-7c674207] {
    font-size: 16px;
}
.debug-item[data-v-7c674207] {
    font-size: 13px;
}
}

.video-player-wrapper[data-v-0f723840] {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-height: 400px;
  display: block;
  visibility: visible;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.video-iframe-container[data-v-0f723840] {
  position: relative;
  width: 100%;
  min-height: 400px;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-iframe[data-v-0f723840] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-player-container[data-v-0f723840] {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 400px;
  background-color: #000;
  display: block;
  visibility: visible;
  overflow: hidden;
  box-sizing: border-box;
  flex: 1;
  min-width: 0;
  /* touch-action: none 让 JS 完全接管触摸手势判定，
     防止浏览器 pan-y 与我们的 preventDefault 竞争导致卡顿 */
  touch-action: none;
  -webkit-overflow-scrolling: touch;
}

/* 滑动容器 */
.video-swipe-wrapper[data-v-0f723840] {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-swipe-wrapper.swiping[data-v-0f723840] {
  transition: none;
}
.video-swipe-wrapper.transitioning[data-v-0f723840] {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-swipe-wrapper.no-transition[data-v-0f723840] {
  transition: none !important;
}

/* 视频滑动项 */
.video-swipe-item[data-v-0f723840] {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.video-current[data-v-0f723840] {
  position: relative;
  z-index: 2;
}

/* 视频预览层 */
.video-preview[data-v-0f723840] {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1;
}
.video-preview-prev[data-v-0f723840] {
  top: -100%;
}
.video-preview-next[data-v-0f723840] {
  top: 100%;
}
.video-preview-content[data-v-0f723840] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-preview-poster[data-v-0f723840] {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.4s ease-out;
}
.video-preview-poster.fade-out[data-v-0f723840] {
  opacity: 0;
}
.video-preview-placeholder[data-v-0f723840] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
}
.video-preview-placeholder svg[data-v-0f723840] {
  width: 64px;
  height: 64px;
}
.video-element[data-v-0f723840] {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 400px;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  background-color: #000;
  display: block;
  visibility: visible;
  opacity: 1;
  z-index: 1;
  cursor: pointer;
  box-sizing: border-box;
}

/* 彻底隐藏所有浏览器原生媒体控件按钮 */
.video-element[data-v-0f723840]::-webkit-media-controls-start-playback-button,
.video-element[data-v-0f723840]::-webkit-media-controls-play-button,
.video-element[data-v-0f723840]::-webkit-media-controls-overlay-play-button,
.video-element[data-v-0f723840]::-webkit-media-controls-panel,
.video-element[data-v-0f723840]::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0 !important;
}
video[data-v-0f723840]::-webkit-media-controls {
  display: none !important;
}
video[data-v-0f723840]::-webkit-media-controls-enclosure {
  display: none !important;
}

/* 确保视频滑动项占满容器 */
.video-swipe-item .video-element[data-v-0f723840] {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  object-fit: cover;
}
.video-controls-overlay[data-v-0f723840] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    transparent 20%,
    transparent 80%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 40;
}
.video-controls-overlay .controls-top[data-v-0f723840],
.video-controls-overlay .controls-bottom[data-v-0f723840] {
  pointer-events: auto;
}
.controls-top[data-v-0f723840] {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
  position: relative;
}
.back-btn[data-v-0f723840] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.back-btn[data-v-0f723840]:hover {
  background: rgba(0, 0, 0, 0.7);
}
.back-btn svg[data-v-0f723840] {
  width: 24px;
  height: 24px;
}
.video-title-control[data-v-0f723840] {
  flex: 1;
  color: white;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 作者头像容器 - 与右侧操作按钮列对齐 */
.author-avatar-container[data-v-0f723840] {
  position: fixed;
  right: 12px;
  top: calc(44px + env(safe-area-inset-top) + (100vh - 44px - env(safe-area-inset-top)) / 2);
  transform: translateY(calc(-50% - 180px));
  z-index: 50;
  pointer-events: auto;
}
.author-avatar-wrapper[data-v-0f723840] {
  position: relative;
  width: 48px;
  height: 48px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.author-avatar-img[data-v-0f723840] {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background: #333;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.author-avatar-placeholder[data-v-0f723840] {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
}
.author-avatar-placeholder svg[data-v-0f723840] {
  width: 24px;
  height: 24px;
}
.follow-btn[data-v-0f723840] {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff4757;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-tap-highlight-color: transparent;
}
.follow-btn[data-v-0f723840]:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.follow-btn[data-v-0f723840]:active {
  transform: scale(0.95);
}
.follow-btn svg[data-v-0f723840] {
  width: 12px;
  height: 12px;
  stroke: #ffffff;
}
.follow-btn.followed[data-v-0f723840] {
  background: #2ed573;
}
.controls-center[data-v-0f723840] {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.play-btn-large[data-v-0f723840] {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  outline: none;
  box-shadow: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.play-btn-large[data-v-0f723840]:hover,
.play-btn-large[data-v-0f723840]:focus,
.play-btn-large[data-v-0f723840]:active {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
  outline: none;
  border: none;
  box-shadow: none;
}
.play-btn-large svg[data-v-0f723840] {
  width: 32px;
  height: 32px;
  stroke: none;
  fill: currentColor;
  outline: none;
}
.controls-right[data-v-0f723840] {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
  pointer-events: auto;
}
.mute-btn[data-v-0f723840] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mute-btn[data-v-0f723840]:hover {
  background: rgba(0, 0, 0, 0.7);
}
.mute-btn svg[data-v-0f723840] {
  width: 24px;
  height: 24px;
}
.controls-bottom[data-v-0f723840] {
  padding: 16px;
}
.progress-bar[data-v-0f723840] {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
}
.progress-fill[data-v-0f723840] {
  height: 100%;
  background: rgba(255, 107, 107, 0.6);
  border-radius: 2px;
  transition: width 0.1s;
}
.time-info[data-v-0f723840] {
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
  font-size: 12px;
}
.video-tap-overlay[data-v-0f723840] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-indicator[data-v-0f723840] {
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: play-indicator-fade-0f723840 0.3s ease;
  pointer-events: none;
}
.play-indicator svg[data-v-0f723840] {
  width: 32px;
  height: 32px;
  margin-left: 4px; /* Slight adjustment to visually center the triangle */
}
@keyframes play-indicator-fade-0f723840 {
from {
    opacity: 0;
    transform: scale(1.2);
}
to {
    opacity: 1;
    transform: scale(1);
}
}

/* 滑动切换指示器 - 已完全移除 */
/* 彻底删除所有箭头相关的CSS样式，确保不会显示 */
/* 全局强制隐藏所有箭头相关元素 */
.swipe-indicator[data-v-0f723840],
.swipe-arrow[data-v-0f723840],
[class*="swipe-indicator"][data-v-0f723840],
[class*="swipe-arrow"][data-v-0f723840] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  z-index: -9999 !important;
}
@media (max-width: 768px) {
.video-player-wrapper[data-v-0f723840] {
    min-height: 300px;
}
.video-element[data-v-0f723840] {
    min-height: 300px;
}
.video-iframe-container[data-v-0f723840] {
    min-height: 300px;
}
.play-btn-large[data-v-0f723840] {
    width: 56px;
    height: 56px;
}
.play-btn-large svg[data-v-0f723840] {
    width: 28px;
    height: 28px;
}
.adjust-indicator[data-v-0f723840] {
    padding: 24px 40px;
    min-width: 150px;
}
.adjust-icon[data-v-0f723840] {
    font-size: 40px;
}
.adjust-value[data-v-0f723840] {
    font-size: 20px;
}
.author-avatar-container[data-v-0f723840] {
    right: 12px;
    top: calc(44px + env(safe-area-inset-top) + (100vh - 44px - env(safe-area-inset-top)) / 2);
    transform: translateY(calc(-50% - 180px));
}
.author-avatar-wrapper[data-v-0f723840] {
    width: 44px;
    height: 44px;
}
.follow-btn[data-v-0f723840] {
    width: 18px;
    height: 18px;
    border-width: 1.5px;
}
.follow-btn svg[data-v-0f723840] {
    width: 10px;
    height: 10px;
}
}

.video-container[data-v-33ea6756] {
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}
.video-header[data-v-33ea6756] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.video-header h1[data-v-33ea6756] {
  margin: 0;
  font-size: 24px;
  color: #333;
}
.back-btn[data-v-33ea6756] {
  padding: 8px 16px;
  background-color: #007aff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
.back-btn[data-v-33ea6756]:hover {
  background-color: #0056b3;
}
.video-content[data-v-33ea6756] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.video-content.has-nav-bar[data-v-33ea6756] {
  margin-top: calc(44px + env(safe-area-inset-top));
}

/* 移动端顶部导航栏 - 只显示返回按钮 */
.mobile-nav-bar[data-v-33ea6756] {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  height: 44px;
  padding: 0;
  background-color: #000000;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding-left: 12px;
  box-sizing: border-box;
}

/* 填充状态栏区域的背景 - 纯黑色 */
.mobile-nav-bar[data-v-33ea6756]::before {
  content: '';
  position: absolute;
  top: calc(-1 * env(safe-area-inset-top));
  left: 0;
  right: 0;
  height: env(safe-area-inset-top);
  background-color: #000000;
  z-index: -1;
  /* 确保不遮挡状态栏内容 */
  pointer-events: none;
}
.nav-back-btn[data-v-33ea6756] {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  color: #ffffff;
  transition: background 0.2s, opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-back-btn[data-v-33ea6756]:active {
  opacity: 0.6;
  background: rgba(0, 0, 0, 0.5);
}
.nav-back-btn svg[data-v-33ea6756] {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}
.debug-info[data-v-33ea6756] {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.debug-info h3[data-v-33ea6756] {
  margin-top: 0;
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
}
.debug-item[data-v-33ea6756] {
  margin-bottom: 12px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border-left: 3px solid #007aff;
}
.debug-item strong[data-v-33ea6756] {
  color: #007aff;
  margin-right: 8px;
}
.content-preview[data-v-33ea6756] {
  margin-top: 8px;
  padding: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  font-size: 12px;
  max-height: 100px;
  overflow-y: auto;
  word-break: break-all;
  font-family: monospace;
}
.article-content[data-v-33ea6756] {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.article-header[data-v-33ea6756] {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.article-title[data-v-33ea6756] {
  margin-top: 0;
  margin-bottom: 12px;
  color: #333;
  font-size: 24px;
  line-height: 1.4;
}
.article-meta[data-v-33ea6756] {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}
.author-label[data-v-33ea6756] {
  margin-right: 6px;
  color: #999;
}
.author-name[data-v-33ea6756] {
  color: #333;
  font-weight: 500;
}
.article-type[data-v-33ea6756] {
  margin-top: 10px;
}
.type-badge[data-v-33ea6756] {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  background-color: #f0f0f0;
  color: #666;
}
.type-badge.type-video[data-v-33ea6756] {
  background-color: #e3f2fd;
  color: #1976d2;
}
.article-body[data-v-33ea6756] {
  color: #333;
  line-height: 1.8;
}
.article-summary[data-v-33ea6756] {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-left: 3px solid #007aff;
  border-radius: 4px;
}
.article-summary p[data-v-33ea6756] {
  margin: 0;
  color: #666;
  font-style: italic;
}
.article-html-content[data-v-33ea6756] {
  font-size: 16px;
}
.article-html-content[data-v-33ea6756] p {
  margin: 16px 0;
  text-align: justify;
}
.article-html-content[data-v-33ea6756] img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 16px 0;
}

/* 加载提示 */
.loading-overlay[data-v-33ea6756] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loading-spinner[data-v-33ea6756] {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-33ea6756 1s linear infinite;
}
@keyframes spin-33ea6756 {
to { transform: rotate(360deg);
}
}
.loading-text[data-v-33ea6756] {
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
}

/* 错误提示 */
.error-overlay[data-v-33ea6756] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-content[data-v-33ea6756] {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  max-width: 80%;
  text-align: center;
}
.error-icon[data-v-33ea6756] {
  font-size: 48px;
  margin-bottom: 16px;
}
.error-title[data-v-33ea6756] {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.error-message[data-v-33ea6756] {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.error-actions[data-v-33ea6756] {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.error-btn[data-v-33ea6756] {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
.dismiss-btn[data-v-33ea6756] {
  background-color: #f0f0f0;
  color: #333;
}
.dismiss-btn[data-v-33ea6756]:hover {
  background-color: #e0e0e0;
}

/* 视频错误提示 - 弹框样式 */
.confirm-dialog-content[data-v-33ea6756] {
	width: 300px;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 20px 16px;
	box-sizing: border-box;
}
.dialog-title[data-v-33ea6756] {
	font-size: 16px;
	font-weight: 500;
	color: #272727;
	text-align: center;
	margin-bottom: 12px;
}
.dialog-content[data-v-33ea6756] {
	font-size: 14px;
	color: #272727;
	text-align: center;
	line-height: 1.6;
	margin-bottom: 20px;
}
.dialog-buttons[data-v-33ea6756] {
	display: flex;
	gap: 12px;
}
.dialog-btn[data-v-33ea6756] {
	flex: 1;
	height: 44px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
  cursor: pointer;
}
.dialog-btn-cancel[data-v-33ea6756] {
	background-color: #E5E5E5;
}
.dialog-btn-confirm[data-v-33ea6756] {
	background-color: #E60012;
}
.dialog-btn-text[data-v-33ea6756] {
	font-size: 15px;
	font-weight: normal;
}
.dialog-btn-cancel .dialog-btn-text[data-v-33ea6756] {
	color: #272727;
}
.dialog-btn-confirm .dialog-btn-text[data-v-33ea6756] {
	color: #FFFFFF;
}
.video-error-message[data-v-33ea6756] {
  display: none;
}

/* 移动端优化 - 只显示视频 */
.video-container.mobile-view[data-v-33ea6756] {
  padding: 0;
  min-height: 100vh;
  height: 100vh;
  background-color: #000;
  overflow: hidden; /* 阻止页面本身滚动，避免上拉后页面再向下位移 */
}

/* 移动端视频包装器 */
.mobile-video-wrapper[data-v-33ea6756] {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden; /* 仅由内部手势控制上下切换，避免额外滚动 */
}
.video-player-section[data-v-33ea6756] {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

/* 视频信息区域 - 固定在进度条上方，从底部向上：title → subtitle */
.video-info-section[data-v-33ea6756] {
  position: fixed;
  left: 0;
  right: 60px; /* 留出右侧操作按钮空间 */
  bottom: calc(44px + max(env(safe-area-inset-bottom), 0px)); /* 进度条高度约 44px */
  padding: 0 16px 4px 16px;
  margin: 0;
  color: #ffffff;
  box-sizing: border-box;
  z-index: 10001;
  pointer-events: none;
}
.video-info-section .video-title[data-v-33ea6756] {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.video-info-section .video-subtitle[data-v-33ea6756] {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  word-break: break-word;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* 视频进度条 - 固定在页面最底部 */
.video-progress-fixed[data-v-33ea6756] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 10px 16px;
  padding-bottom: calc(10px + max(env(safe-area-inset-bottom), 0px));
  z-index: 10002;
  pointer-events: auto;
}
.video-progress-fixed .progress-bar-wrapper[data-v-33ea6756] {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.video-progress-fixed .progress-bar[data-v-33ea6756] {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.video-progress-fixed .progress-fill[data-v-33ea6756] {
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  transition: width 0.1s;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.video-progress-fixed .progress-dot[data-v-33ea6756] {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  transition: left 0.1s, width 0.2s, height 0.2s;
  pointer-events: none;
}
.video-progress-fixed .progress-bar:active .progress-dot[data-v-33ea6756] {
  width: 16px;
  height: 16px;
}
.video-progress-fixed .time-info[data-v-33ea6756] {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  white-space: nowrap;
  min-width: 40px;
  text-align: right;
  font-weight: 500;
}

/* 以下样式已移至 .video-info-section 内部选择器 */
.video-meta[data-v-33ea6756] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #999999;
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.video-source[data-v-33ea6756] {
  color: #cccccc;
  font-weight: 500;
}
.video-date[data-v-33ea6756] {
  color: #999999;
}
.video-views[data-v-33ea6756] {
  color: #999999;
  font-weight: 500;
}

/* 视频作者信息 */
.video-author-info[data-v-33ea6756] {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  -webkit-tap-highlight-color: transparent;
}
.author-avatar[data-v-33ea6756] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

/* 右侧操作按钮 */
.video-actions[data-v-33ea6756] {
  position: fixed;
  right: 12px;
  top: calc(44px + env(safe-area-inset-top) + (100vh - 44px - env(safe-area-inset-top)) / 2);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 100;
  padding: 8px 0;
  pointer-events: auto;
}
.action-btn[data-v-33ea6756] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  cursor: pointer;
  padding: 4px 8px;
  transition: opacity 0.2s;
  min-width: 44px;
  -webkit-tap-highlight-color: transparent;
}
.action-btn[data-v-33ea6756]:active,
.action-btn[data-v-33ea6756]:focus {
  opacity: 0.6;
  outline: none;
  border: none;
}
.action-btn svg[data-v-33ea6756] {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
}
.action-btn span[data-v-33ea6756] {
  font-size: 12px;
  color: #ffffff;
  white-space: nowrap;
}

/* 点赞按钮激活状态 - 红色 */
.action-btn:not(.favorite-btn).active svg[data-v-33ea6756] {
  stroke: #ff4757;
  fill: #ff4757;
}
.action-btn:not(.favorite-btn).active span[data-v-33ea6756] {
  color: #ff4757;
}

/* 收藏按钮激活状态 - 黄色（优先级更高） */
.action-btn.favorite-btn.active svg[data-v-33ea6756] {
  stroke: #ffd700 !important;
  fill: #ffd700 !important;
}
.action-btn.favorite-btn.active span[data-v-33ea6756] {
  color: #ffd700 !important;
}
.video-container.mobile-view .video-header[data-v-33ea6756] {
  display: none;
}
.video-container.mobile-view .video-content[data-v-33ea6756] {
  gap: 0;
}
.video-container.mobile-view .debug-info[data-v-33ea6756] {
  display: none;
}
.video-container.mobile-view .article-content[data-v-33ea6756] {
  padding: 0;
  background-color: #000;
  box-shadow: none;
}
.video-container.mobile-view .article-header[data-v-33ea6756] {
  display: none;
}
.video-container.mobile-view .article-body[data-v-33ea6756] {
  padding: 0;
}
.video-container.mobile-view .article-summary[data-v-33ea6756] {
  display: none;
}
.video-container.mobile-view .article-html-content[data-v-33ea6756] {
  display: none;
}

/* 视频播放器在移动端全屏显示 */
.video-container.mobile-view[data-v-33ea6756] .video-player-wrapper {
  margin: 0;
  border-radius: 0;
  min-height: calc(100vh - 44px - env(safe-area-inset-top));
  height: calc(100vh - 44px - env(safe-area-inset-top));
  max-height: calc(100vh - 44px - env(safe-area-inset-top));
}
.video-container.mobile-view[data-v-33ea6756] .video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-container.mobile-view .mobile-video-wrapper[data-v-33ea6756] .video-player-wrapper {
  margin: 0;
  border-radius: 0;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video-container.mobile-view .mobile-video-wrapper .video-player-section[data-v-33ea6756] {
  height: auto;
  min-height: 0;
  max-height: calc(100vh - 200px);
  width: 100% !important;
  min-width: 0;
  flex: 0 0 auto;
}
.video-container.mobile-view .mobile-video-wrapper[data-v-33ea6756] .video-player-container {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 200px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container.mobile-view .mobile-video-wrapper[data-v-33ea6756] .video-element {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  box-sizing: border-box;
}
@media (max-width: 768px) {
.video-container[data-v-33ea6756] {
    padding: 0;
    min-height: 100vh;
    background-color: #000;
}
.video-header[data-v-33ea6756] {
    display: none;
}
.video-content[data-v-33ea6756] {
    gap: 0;
}
.debug-info[data-v-33ea6756] {
    display: none;
}
.article-content[data-v-33ea6756] {
    padding: 0;
    background-color: #000;
    box-shadow: none;
}
.article-header[data-v-33ea6756] {
    display: none;
}
.article-body[data-v-33ea6756] {
    padding: 0;
}
.article-summary[data-v-33ea6756] {
    display: none;
}
.article-html-content[data-v-33ea6756] {
    display: none;
}
  
  /* 视频播放器在移动端全屏显示 */
[data-v-33ea6756] .video-player-wrapper {
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
}
[data-v-33ea6756] .video-element {
    min-height: 100vh;
    max-height: 100vh;
}
}
