    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-touch-callout: none !important;
      -webkit-user-select: none !important;
      user-select: none !important;
      -webkit-tap-highlight-color:transparent !important;
      }
    body {
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
      background: linear-gradient(to bottom, #1a202c, #1a253a, #1a202c);
      color: #fff;
      context-menu: none !important;
    }
  /* 播放器页面 */
  #playerPage {
   position: fixed;
   left: 0;
   top: 0;
   width: 100vw;
   height: 100%;
   color: #fff;
   background: linear-gradient(to bottom, #1a202c, #1a253a, #1a202c);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 20px;   
   /* 初始在右侧外面 */
   transform: translateX(100%);
   transition: transform 0.4s ease;
   z-index: 11;
   overflow-y: scroll !important;
 }
 #playerPage.show {
   transform: translateX(0);
 }
 /* 加载完成后：从上往下排版 */
 #playerPage.loaded {
   align-items: flex-start;
   justify-content: flex-start;
   padding-top: 40px;
   gap: 12px;
 }
   /* 合集详情页 */
  #albumDetailsPage {
   position: fixed;
   left: 0;
   top: 0;
   width: 100vw;
   height: 100%;
   background: linear-gradient(to bottom, #1a202c, #1a253a, #1a202c);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 20px;   
   /* 初始在右侧外面 */
   transform: translateX(100%);
   transition: transform 0.4s ease;
   z-index: 10;
   overflow-y: scroll !important;
 }
 #albumDetailsPage.show {
   transform: translateX(0);
 }
 /* 加载完成后：从上往下排版 */
 #albumDetailsPage.loaded {
   align-items: flex-start;
   justify-content: flex-start;
   padding-top: 40px;
   gap: 12px;
 }
   /* 搜索 */
  #searchPage {
   position: fixed;
   left: 0;
   top: 0;
   width: 100vw;
   height: 100%;
   background: linear-gradient(to bottom, #1a202c, #1a253a, #1a202c);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 20px;   
   /* 初始在右侧外面 */
   transform: translateX(100%);
   transition: transform 0.4s ease;
   z-index: 9;
 }
 #searchPage.show {
   transform: translateX(0);
 }
    /* 客服 */
  #kefuPage {
   position: fixed;
   left: 0;
   top: 0;
   width: 100vw;
   height: 100%;
   background: linear-gradient(to bottom, #1a202c, #1a253a, #1a202c);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 20px;   
   /* 初始在右侧外面 */
   transform: translateX(100%);
   transition: transform 0.4s ease;
   z-index: 9;
 }
 #kefuPage.show {
   transform: translateX(0);
 }
    .toast {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     padding: 14px 28px;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     color: #FFF;
     font-size: 16px;
     border-radius: 4px;
     z-index: 999999;
     visibility: hidden;
     opacity: 0;
     transition: 0.3s;
     white-space: nowrap;
   }
   .toast.show {
     visibility: visible;
     opacity: 1;
   }
    .page {
      max-width: 1024px;
      margin: 0 auto;
      min-height: 100vh;
      position: relative;
    }
    .homePage {
      width:100%;
      max-width: 1024px;
      margin: 0 auto;
      min-height: 100vh;
      padding-bottom: 50px;
      position: absolute;
      top: 0;
      left: 0;
      display: none; /* 默认全隐藏 */
    }
    .homePage.show {
     display: block; /* 只显示当前页 */
   }
    .top-bar {
      display: block;
      align-items: center;
      padding: 10px 10px 8px 10px;
      position: fixed;
      width:100%;max-width: 1024px;
      top: 0;
      z-index: 3;
      background: rgba(17,33,44,0.8);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
     .top-bar::before {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(to right,
     transparent 0%,
     rgba(120, 144, 165, 0.4) 50%,
     transparent 100%
   );
 }
    .top-bar-head {
      display: flex;
      align-items: center;
      padding: 0px;
      margin:0px;
      gap:5px;
      width:100%;max-width: 1024px;
    }
    .logo {
      font-size: 25px;
      font-weight: 600;
      color: #ff4757;
      white-space: nowrap;
    }
    .search-wrap {
      flex: 1;
    }
    .search {
      background: rgba(42, 42, 42, 0.7);
      border-radius: 20px;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .search input {
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      flex: 1;
      font-size: 14px;
    }
    .top-user {
      font-size: 25px;
      margin:0 5px;
    }
    .tabs {
      display: flex;
      padding: 10px 5px 0px 0px;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
    }
    .tabs::-webkit-scrollbar {
      display: none;
    }
    .tab {
      white-space: nowrap;
      font-size: 14px;
      color: #FFFFFF;
      padding: 8px 0;
    }
    .tab.active {
      color: #ff4757;
      font-size: 16px;
      font-weight: 600;
      position: relative;
    }
    .tab.active::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 28px;
     height: 4px;
     background: #ff4757;
     border-radius: 50px;
     border-bottom-left-radius: 20px;
     border-bottom-right-radius: 20px;
     clip-path: ellipse(50% 100% at top center);
   }
    .content {
      padding: 96px 5px 10px 5px;
    }
.item-type-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding:5px;
}

.item-type-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}

.item-type-text {
  flex: 1;
}

.item-type-title-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 4px 0;
  background: linear-gradient(90deg, #fff, #000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.item-type-title-subtitle {
  font-size: 12px;
  color: #eee;
  margin: 0;
}    
    .section-title {
      font-size: 15px;
      margin: 6px 4px 10px;
    }
    .song-item {
      display: flex;
      align-items: center;
      padding: 10px 6px;
      border-radius: 8px;
      cursor: pointer;
    }
    .song-item.active {
      background: #292929;
    }
    .song-cover {
      width: 46px;
      height: 46px;
      border-radius: 8px;
      background-size: cover;
      background-position: center;
      background-color: #333;
      margin-right: 10px;
      flex-shrink: 0;
    }
    .song-info {
      flex: 1;
      min-width: 0;
      overflow: hidden;
    }
    .song-name {
      font-size: 14px;
      
      overflow: hidden;
      white-space: nowrap;
    }
    .song-singer {
      font-size: 11px;
      color: #999;
      margin-top: 2px;
    }
    .song-play {
      color: #ff4757;
      font-size: 16px;
      padding: 0 10px;
    }
    .song-play-name {
      color: #ff4757;
    }
    #mplayer {
      width:100%;
      height:100%;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: flex;
      justify-content: center;
      align-items: center;
    }
.mplayerTip {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
}
     /* 主按钮 */
     .btn-primary {
       padding: 14px 30px;
       border-radius: 16px;
       background: linear-gradient(90deg, #ffbf00, #ff9f46);
       color: #000;
       font-weight: bold;
       border: none;
       font-size: 16px;
       cursor: pointer;
       margin:15px auto;
     }
     .btn-primary:hover {
       color: #111;
     }
     /* 磨砂玻璃按钮 */
     .btn-glass {
       padding: 12px 30px;
       border: 1px solid rgba(255,255,255,0.2);
       border-radius: 50px;
       background: rgba(255,255,255,0.1);
       backdrop-filter: blur(10px);
       color: #f00;
       font-size: 16px;
       cursor: pointer;
       transition: 0.3s;
       margin:15px auto;
     }
     .btn-glass:hover {
       background: rgba(255,255,255,0.2);
     }
     .smtip {
       color:#eee;
       font-size:12px;
     }
    /* 电影列表容器 - 手机1列 */
.movie-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 5px;
  width: 100%;
  box-sizing: border-box;
}

/* 大屏多列 */
@media (min-width: 576px) {
  .movie-list {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* 电影卡片 */
.movie-item {
  display: flex;
  flex-direction: column;  
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

/* 触摸按压效果 */
.movie-item:active {
  background-color: #2a2a2a;
}

/* 横版封面 16:9 */
.movie-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #222222;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* 视频时长 - 右上角 */
.movie-duration {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 2px;
}

/* 信息区域 */
.movie-info {
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 标题两行省略 */
.movie-title {
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
}

/* 日期 + 分类 同行左右水平对齐 */
.movie-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* 上传日期 */
.movie-date {
  font-size: 12px;
  color: #999;
  margin: 0;
  line-height: 1;
}

/* 分类标签 */
.movie-category {
  font-size: 12px;
  color: #ccc;
  background: #333;
  padding: 3px 6px;
  border-radius: 4px;
  margin: 0;
  line-height: 1;
}
.album-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .album-list {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    padding: 10px;
  }
}

.album-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.album-item:active {
  opacity: 0.9;
}

.album-cover {
  width: 100%;
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  background-color: #222;
  display: block;
}

.album-num {
position: absolute;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 14px;
  padding: 8px 8px 8px 12px;
  z-index: 1;
  border-radius: 0 0 0 20px;
}

.album-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  z-index: 1;
}

.album-title {
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  margin: 0;
}

.album-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #fff;
  margin-top: 4px;
}


    /* 电影列表容器 - 手机2列 */
.movie-list-more {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* 大屏多列 */
@media (min-width: 576px) {
  .movie-list-more {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* 电影卡片 */
.movie-item-more {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

/* 触摸按压效果 */
.movie-item-more:active {
  background-color: #1a253a;
}

/* 横版封面 16:9 */
.movie-cover-more {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #222222;
}

/* 视频时长 - 右上角 */
.movie-duration-more {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 2px;
}

/* 信息区域 */
.movie-info-more {
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 标题两行省略 */
.movie-title-more {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


    /* 底部导航 */
    .bottom-nav {
      position: fixed; left: 50%; bottom: 0; transform: translateX(-50%);
      width: 100%; max-width: 1024px; background: #11212c;
      display: flex; justify-content: space-around; padding: 10px 0 8px;
      box-shadow: 0 -1px 0 rgba(255,255,255,0.06);
      z-index: 2;
    }
    .bottom-nav::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(to right,
     transparent 0%,
     rgba(120, 144, 165, 0.4) 50%,
     transparent 100%
   );
 }
    .nav-item {
      display: flex; flex-direction: column; align-items: center; gap: 3px;
    }
    .nav-item i { font-size: 18px; color: #FFF; }
    .nav-item span { font-size: 14px; color: #FFF;font-weight: 500; }
    .nav-item.active i, .nav-item.active span { color: #ff4757; }
    .dj-loading {
  width: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dj-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 30px;
}

.dj-wave span {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ff2c94, #7a0fec);
  animation: dj-wave 0.6s ease-in-out infinite;
}

.dj-wave span:nth-child(1) { animation-delay: 0s; height: 8px; }
.dj-wave span:nth-child(2) { animation-delay: 0.1s; height: 15px; }
.dj-wave span:nth-child(3) { animation-delay: 0.2s; height: 22px; }
.dj-wave span:nth-child(4) { animation-delay: 0.3s; height: 15px; }
.dj-wave span:nth-child(5) { animation-delay: 0.4s; height: 8px; }

@keyframes dj-wave {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1.5); }
}
/* 加载完毕 */
.load-success-box {
  margin:10px auto;
  display: flex;
  color:#e3e3e3;
  font-size:14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
/* 加载更多 */
.load-more-box {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.load-more-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(90deg, #7a0fec, #ff2c94);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.load-more-btn:hover {
  opacity: 0.9;
  transform: scale(1.04);
}
.load-more-loading {
  display: none;
}

   .jumpPageBox {
     display: flex;
     align-items: center;
     gap: 8px;
     width: fit-content;
     margin: 30px auto;
   }
   .jumpPageBox input {
     width: 60px;
     padding: 8px 10px;
     border: 1px solid #002135;
     border-radius: 6px;
     outline: none;
   }
   .jumpPageBox button {
     padding: 8px 16px;
     background: #7a0fec;
     color: #fff;
     border: none;
     border-radius: 6px;
     cursor: pointer;
   }

.dj-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 30px;
}
.dj-wave span {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ff2c94, #7a0fec);
  animation: dj-wave 0.6s ease-in-out infinite;
}
.dj-wave span:nth-child(1) { animation-delay: 0s; }
.dj-wave span:nth-child(2) { animation-delay: 0.1s; }
.dj-wave span:nth-child(3) { animation-delay: 0.2s; }
.dj-wave span:nth-child(4) { animation-delay: 0.3s; }
.dj-wave span:nth-child(5) { animation-delay: 0.4s; }
@keyframes dj-wave {
  0%,100%{transform:scaleY(0.3);}50%{transform:scaleY(1.5);}
}
  #playerPage {
   width: 100%;
   height: 100%;
   overflow-y: auto;
   -webkit-overflow-scrolling: touch; /* 苹果顺滑滚动 */
  }
  /* 锁底层用的类 */
 .lock {
   position: fixed;
   width: 100%;
   height: 100%;
   overflow: hidden;
 }
  .nav-bar {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 44px;
   background: #1a202c;
   display: flex;
   align-items: center;
   justify-content: center;
   border-bottom: 1px solid #333;
   z-index: 99999;
 }
 .nav-back {
   position: absolute;
   left: 15px;
   width: 24px;
   height: 24px;
   background: none;
   border: none;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
 }
 .nav-title {
   font-size: 17px;
   font-weight: 500;
   color: #fff;
   word-break: break-all;
 }
 .player-wrap {
   width: 100%;
   background: #000;
   aspect-ratio: 16/9;
   background-size: cover;
   background-position: center;
   padding:0;
 }
 /* 滚动区域 */
 .scroll-container {
 position: fixed;
   left: 0;
   right: 0;
   top: calc(44px);
   bottom: 0;
   padding: 0;
   overflow-y: auto;
   -webkit-overflow-scrolling: touch !important;
   z-index: 1;
 }
 /* 视频标题 */
 .video-title-box {
   position: relative;
   margin: 5px 10px;
   border-bottom: 1px solid #222;
   word-break: break-all;
 }
 .video-title {
   font-size: 18px;
   font-weight: 500;
   color: #fff;
   line-height: 1.5;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 4;
   -webkit-box-orient: vertical;
   padding-right: 36px;
   word-break: break-all;
 }
 .video-title.expand {
   -webkit-line-clamp: 999;
 }
 /* 日期 & 播放量 */
 .video-info {
   display: flex;
   align-items: center;
   gap: 5px;
   font-size: 12px;
   color: #999;
   margin-top: 6px;
   padding-bottom: 10px;
   word-break: break-all;
 }
 /* 展开按钮 */
 .toggle-btn {
   position: absolute;
   right: 0;
   top: 20px;
   width: 32px;
   height: 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(255,255,255,0.06);
   border-radius: 16px;
   transition: all 0.2s ease;
 }
 .toggle-btn:active {
   background: rgba(255,255,255,0.12);
 }
 .toggle-btn svg {
   transition: transform 0.24s ease;
 }
 .toggle-btn.rotate svg {
   transform: rotate(180deg);
 }
 /* 四个按钮 */
 .action-group {
   display: flex;
   gap: 12px;
   padding: 14px 10px;
   border-bottom: 1px solid #222;
 }
 .action-item {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 6px;
   padding: 10px 0;
   background: rgba(255,255,255, 0.08);
   border-radius: 12px;
   font-size: 12px;
   color: #eee;
   transition: background 0.2s ease;
 }
 .action-item:active {
   background: rgba(255,255,255, 0.18);
 }
 .action-item svg {
   width: 22px;
   height: 22px;
 }
 /* 列表 */
 .item {
   padding: 5px 0px;
   margin:0 10px 10px 10px;
   border-bottom: linear-gradient(to right,
     transparent 0%,
     rgba(120, 144, 165, 0.8) 50%,
     transparent 100%
   );
   box-shadow: 0 1px 2px rgba(255,255,255,0.03);
   color: #FFF;
   font-size: 18px;
   font-weight: 500;
 }
 
/* 顶部导航 - 暗黑 */
.nav-bar-album {
   position: fixed;
   top: 0;
   left: 0;
   z-index: 5;
  width: 100%;
  height: 56px;
  background: #1a202c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #333;
}

/* 标题在左边 */
.nav-title-album {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

/* 自定义下拉选择器 */
.custom-select-album {
  position: relative;
}
.select-selected-album {
  background: #2a2a2a;
  color: #f0f0f0;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #444;
  min-width: 110px;
}
.select-selected-album::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #aaa;
}
.select-options-album {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: #252525;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  min-width: 130px;
  overflow: hidden;
  display: none;
  z-index: 99;
}
.select-option-album {
  padding: 10px 14px;
  color: #e0e0e0;
  font-size: 14px;
  cursor: pointer;
}
.select-option-album:hover {
  background: #333;
  color: #fff;
}
.select-options-album.show {
  display: block;
}




/* 自定义下拉选择器（收藏） */
.custom-select-like {
  position: relative;
}
.select-selected-like {
  background: #2a2a2a;
  color: #f0f0f0;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #444;
  min-width: 110px;
}
.select-selected-like::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #aaa;
}
.select-options-like {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: #252525;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  min-width: 130px;
  overflow: hidden;
  display: none;
  z-index: 99;
}
.select-option-like {
  padding: 10px 14px;
  color: #e0e0e0;
  font-size: 14px;
  cursor: pointer;
}
.select-option-like:hover {
  background: #333;
  color: #fff;
}
.select-options-like.show {
  display: block;
}

.albumContent{
 padding: 60px 5px 10px 5px;
 }
 .likeContent{
 padding: 60px 5px 10px 5px;
 }
 /* 整体居中 */
.pagination-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* 分页 */
.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  margin:20px auto;
}

/* 按钮 */
.page-item {
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #666;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}
.page-item:hover {
  background: #2b2b30;
}
.page-item.active {
  background: #3b82f6;
  color: #fff;
}
.page-item.disabled {
  color: #666;
  background: #18181b;
  cursor: not-allowed;
}

/* 省略号 */
.dots {
  color: #777;
  padding: 0 2px;
}

/* 跳页 */
.jump-group {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}
.jump-input {
  width: 42px;
  height: 32px;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  outline: none;
}
.jump-input:focus {
  border-color: #3b82f6;
}
.jump-like-input {
  width: 42px;
  height: 32px;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  outline: none;
}
.jump-like-input:focus {
  border-color: #3b82f6;
}
.jump-btn {
  height: 32px;
  padding: 0 8px;
  border-radius: 6px;
  background: #666;
  color: #FFF;
  border: none;
  cursor: pointer;
}

/* ============== 移动端适配 ============== */
@media (max-width: 576px) {
  /* 移动端只留核心页码，不换行 */
  .pagination {
    gap: 3px;
  }
  .page-item {
    min-width: 30px;
    height: 30px;
    font-size: 13px;
  }
  /* 移动端隐藏部分文字，保持紧凑 */
  .prev-text, .next-text {
    display: none;
  }
}


        /* 返回顶部按钮 */
 .back-top {
   position: fixed;
   bottom: 150px;
   right: 20px;
   width: 46px;
   height: 46px;
   border-radius: 50%;
   background: rgba(59, 130, 246, 0.8);
   display: none;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   z-index: 5;
   transition: opacity 0.3s;
 }
 .back-top.show {
   display: flex;
 }
 
 /* 遮罩层 默认隐藏 */
.modalTip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17,33,44,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none; /* 默认隐藏 */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* 弹窗盒子 */
.modal-box {
  width: 280px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.modal-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.modal-content {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
  line-height: 1.5;
}

.modal-buttons {
  display: flex;
  gap: 12px;
}

/* 确认按钮 */
.btn-ok {
  flex: 1;
  padding: 11px 0;
  border: none;
  border-radius: 12px;
  background: #1677ff;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}
.btn-ok:hover {
  background: #3890ff;
}

/* 取消按钮 */
.btn-cancel {
  flex: 1;
  padding: 11px 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}
.btn-cancel:hover {
  background: rgba(255,255,255,0.15);
}

/* 打开弹窗按钮 */
#openModal {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  background: #1677ff;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
        .user-card {
            background-color: #1a202c;
            color: #fff;
            border-radius: 12px;
            max-width: 100%;
            height:100%;
            padding:10px;
        }
        .user-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
            aspect-ratio: 16/9;
            background-size: cover;
            background-position: center;
            background-color: #222222;
        }
        .user-info {
            flex: 1;
            min-width: 0; /* 防止flex子元素溢出 */
        }
        .username {
            font-size: clamp(18px, 5vw, 24px);
            font-weight: 500;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .vip-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background-color: #2d3748;
            padding: 3px 8px;
            border-radius: 6px;
            font-size: clamp(12px, 3vw, 14px);
            color: #a0aec0;
            white-space: nowrap;
        }
        .vip-icon {
            width: 18px;
            height: 18px;
            background: linear-gradient(135deg, #a0aec0, #718096);
            clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-weight: bold;
            color: #fff;
        }
        .user-stats {
            font-size: clamp(14px, 3.5vw, 16px);
            color: #a0aec0;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .stat-item {
            display: flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }
        .rose-icon {
            color: #ff6b81;
        }
        .coin-icon {
            color: #ffd700;
        }
        .svip-banner {
            background: linear-gradient(90deg, #ffd89b 0%, #ffd166 100%);
            border-radius: 12px;
            padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #5d2906;
            flex-wrap: wrap;
            gap: 12px;
        }
        .svip-content {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            min-width: 0;
        }
        .svip-icon {
            width: clamp(40px, 10vw, 48px);
            height: clamp(40px, 10vw, 48px);
            background: linear-gradient(135deg, #b79441, #d69e2e);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(20px, 5vw, 24px);
            font-weight: bold;
            color: #fff;
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            flex-shrink: 0;
        }
        .svip-text {
            font-size: clamp(16px, 4vw, 22px);
            font-weight: 600;
            white-space: nowrap;
        }
        .svip-btn {
            background-color: #2d2926;
            color: #ffd166;
            border: none;
            padding: clamp(10px, 2.5vw, 12px) clamp(18px, 4vw, 24px);
            border-radius: 8px;
            font-size: clamp(16px, 4vw, 18px);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .svip-btn:active {
            transform: scale(0.98);
            background-color: #1a1a1a;
        }
         /* 退出登录按钮 */
         .logout-wrap {
             width: 100%;
             margin-top:20px;
         }
         .logout-btn {
             width: 100%;
             background-color: #2d3748;
             color: #fc8181;
             border: none;
             padding: clamp(12px, 3vw, 14px);
             border-radius: 12px;
             font-size: clamp(15px, 4vw, 16px);
             font-weight: 500;
             cursor: pointer;
             transition: all 0.2s;
         }
         .logout-btn:active {
             background-color: #2d3748;
             transform: scale(0.98);
             color: #f56565;
         }

/* 登录层遮罩 */
.login-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* 登录框 */
.login-box {
  width: 90%;
  max-width: 400px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* 关闭按钮 */
.login-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.login-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
  color: #333;
}

.login-input {
  width: 100%;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
  margin-bottom: 15px;
  font-size: 15px;
}

.login-btn {
  width: 100%;
  height: 48px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.login-btn:hover {
  background: #006bde;
}

/* 打开按钮 */
.open-login {
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 50px;
}

/* 遮罩 */
.vip-modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

/* 弹窗主体 */
.vip-modal {
  width: 90%;
  max-width: 576px;
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 24px;
  max-height: 80vh;
  overflow-y: auto;
}

/* 标题 */
.modal-title {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* 横向滚动档位（窄卡片） */
.plan-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.plan-scroll::-webkit-scrollbar {
  display: none;
}
.plan-item {
  min-width: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: left;
  flex-shrink: 0;
  cursor: pointer;
}
.plan-item.active {
  background: rgba(255,191,0,0.1);
  border-color: #ffbf00;
}
.plan-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.plan-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.plan-price {
  font-size: 16px;
  font-weight: bold;
  color: #ffbf00;
}

/* 支付方式 */
.pay-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #ffbf00;
}

/* 支付按钮 */
.pay-btn {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, #ffbf00, #ff9f46);
  color: #000;
  font-weight: bold;
  font-size: 16px;
  border: none;
  margin-top: 24px;
  cursor: pointer;
}
/* 金黄色加载lodding */
 .loading-wrap {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 30px;
 }
 .gold-loading {
   width: 40px;
   height: 40px;
   border: 3px solid rgba(255, 215, 0, 0.2);
   border-top: 3px solid #FFD700;
   border-radius: 50%;
   animation: gold-spin 0.9s linear infinite;
 }
 @keyframes gold-spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
   
.codeLine {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
  color:#000000;
}

#codeBox {
  width: 100px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
}

.codeLine > * {
  flex-shrink: 0 !important;
}
