html {
    overflow-y: scroll;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: all;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8vw;
}

.loader-rings {
    position: relative;
    width: 14vw;
    height: 14vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .loader-rings { width: 32vw; height: 32vw; }
    .loader-container { gap: 4vw; }
}
.loader-ring {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ring-outer {
    width: 100%;
    height: 100%;
    animation: spin-ring 3.2s linear infinite;
}
.ring-middle {
    width: 78%;
    height: 78%;
    animation: spin-ring-reverse 2.4s linear infinite;
}
.ring-inner {
    width: 56%;
    height: 56%;
    animation: spin-ring 1.8s linear infinite;
}
.ring-svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 0 6px rgba(100, 150, 255, 0.35));
}

@keyframes spin-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spin-ring-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.loader-core {
    position: absolute;
    width: 18%;
    height: 18%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.core-dot {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: core-pulse 1.4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255,255,255,0.7), 0 0 40px rgba(100,160,255,0.5), 0 0 80px rgba(100,160,255,0.3);
}
.core-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100,160,255,0.45) 0%, rgba(100,160,255,0.1) 40%, transparent 70%);
    z-index: 1;
    animation: glow-breathe 2s ease-in-out infinite;
}
@keyframes core-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.85; }
}
@keyframes glow-breathe {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

.loader-dots {
    display: flex;
    gap: 0.55vw;
    align-items: center;
}
@media (max-width: 768px) {
    .loader-dots { gap: 8px; }
}
.loader-dots span {
    display: block;
    width: 0.55vw;
    height: 0.55vw;
    border-radius: 50%;
    background: #fff;
    animation: bounce-dot 1.2s ease-in-out infinite;
}
@media (max-width: 768px) {
    .loader-dots span { width: 8px; height: 8px; }
}
.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.18s; }
.loader-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes bounce-dot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; background: #a0c4ff; }
    30% { transform: translateY(-1.2vw); opacity: 1; background: #fff; }
}
@media (max-width: 768px) {
    @keyframes bounce-dot {
        0%, 60%, 100% { transform: translateY(0); opacity: 0.4; background: #a0c4ff; }
        30% { transform: translateY(-16px); opacity: 1; background: #fff; }
    }
}

.loader-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85vw;
    letter-spacing: 0.15vw;
    margin: 0;
    font-weight: 400;
}
@media (max-width: 768px) {
    .loader-text { font-size: 13px; letter-spacing: 2px; }
}


:root {
    --page-padding: 5vw;
    --card-radius: 0.6vw;
    --primary: #1677ff;
    --red: #d32f2f;
    --bg-white: #ffffff;
    --cat-bg: #f5f7fa;
    --subcat-bg: #f5f7fa;
    --notice-bg: #fdf0cf;
    --favorite-active: #ff4757;
    --new-green: #27ae60;
    --svip-purple: #8e44ad;
    --tag-font: 0.65vw;
}
body {
    background: var(--bg-white);
    font-family: "Microsoft YaHei","PingFang SC",sans-serif;
    margin: 0;
}

body.loading-locked {
    overflow: hidden;
}


.banner-wrapper { width: auto; margin: 1vw var(--page-padding) 1.2vw; position: relative; overflow: hidden; border-radius: 0.5vw; max-height: 16.15vw; }
.banner-slider { display: flex; transition: transform 0.5s ease; width: 100%; }
.banner-slide { min-width: 100%; }
.banner-slide a { display: block; width: 100%; }
.banner-slide img { width: 100%; height: 16.15vw; object-fit: contain;
background: #000;; display: block; }
.banner-dots { position: absolute; bottom: 0.6vw; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5vw; }
.banner-dot { width: 0.7vw; height: 0.7vw; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s; }
.banner-dot.active { background: #fff; }



.notice-bar { 
    background: var(--notice-bg); 
    border-radius: 0.4vw; 
    padding: 0.5vw 1vw; 
    margin: 0 var(--page-padding) 1.2vw; 
    box-shadow: 0 0.2vw 1vw rgba(0,0,0,0.04); 
    text-align: center; 
    font-size: 0.75vw; 
    color: var(--red);
    font-weight: bold; 
    overflow: hidden; 
    position: relative;
    white-space: nowrap;
}

.notice-bar .notice-pc { 
    display: inline !important;
    white-space: normal;
    line-height: 1.4;
}

.notice-mobile-scroll {
    display: none;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
.notice-scroll-wrap {
    display: inline-block;
    white-space: nowrap;
    animation: noticeScroll 15s linear infinite;
    will-change: transform;
    padding-left: 100%;
}


@keyframes noticeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


@media (min-width: 769px) { 
    .notice-mobile-scroll { display: none !important; } 
    .notice-bar .notice-pc { display: inline !important; } 
    .notice-bar { height: auto !important; line-height: normal !important; }
}


@media (max-width: 768px) {
    .notice-bar .notice-pc { display: none !important; } 
    .notice-mobile-scroll { display: block !important; font-size: 14px; }
    .notice-bar { 
        font-size: 13px; 
        padding: 0 12px; 
        height: 36px;
        line-height: 36px;
        white-space: nowrap;
    } 
    .banner-wrapper { max-height: 26.5vw; } 
    .banner-slide img { height: 26.5vw; }
}


.category-section { padding: 0 var(--page-padding); margin-bottom: 1.4vw; } 
.parent-cats {
  display: flex;
  justify-content: center;
  gap: 0.9vw;
  flex-wrap: wrap;
  margin-bottom: 0.6vw; 
  padding: 0.6vw 1.2vw; 
  border-radius: 1.2vw;
  background: transparent;
  border: none;
}
.parent-cat {
  padding: 0.22vw 0.75vw;
  border-radius: 1vw;
  background: #ffffff;
  color: #555;
  text-decoration: none;
  font-size: 0.9vw;
  font-weight: 500;
  border: 1px solid #eaecef;
  box-shadow: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.parent-cat.active,
.parent-cat:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: none;
}

.subcat-row {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-top: 0.4vw;
  flex-wrap: nowrap;
  background: #f7f9fc;
  padding: 0.7vw 1.2vw; 
  border-radius: 1.2vw;
  border: 1px solid rgba(0,0,0,0.04);
  overflow-x: auto;
}
.subcat-links {
  display: flex;
  gap: 0.7vw;
  align-items: center;
  flex-wrap: nowrap;
}
.subcat-links .subcat-item {
  padding: 0.25vw 0.7vw;
  border-radius: 0.8vw;
  background: #ffffff;
  color: #555;
  text-decoration: none;
  font-size: 0.8vw;
  border: 1px solid #eaecef;
  transition: all 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}
.subcat-links .subcat-item.active,
.subcat-links .subcat-item:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}


.fav-link {
  margin-left: 0.4vw;
  background: #fff;
  color: var(--favorite-active);
  border: 1px solid rgba(255,71,87,0.25);
  font-weight: 500;
  display: inline-flex !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}
.fav-link.active-fav {
  background: var(--favorite-active);
  color: #fff;
  border-color: var(--favorite-active);
  box-shadow: none;
}


.search-box {
  margin-left: auto;
  display: flex;
  gap: 0.3vw;
  flex-shrink: 0;
  background: #fff;
  padding: 0.3vw 1vw;
  border-radius: 1vw;
  border: 1px solid #eaecef;
  transition: all 0.2s;
}
.search-box:focus-within {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(22,119,255,0.15);
}
.search-box input {
  padding: 0.3vw 0;
  border: none;
  font-size: 0.78vw;
  outline: none;
  width: 12vw;
  background: transparent;
}
.search-box button {
  padding: 0.4vw 1.1vw;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 0.7vw;
  font-size: 0.75vw;
  cursor: pointer;
  transition: all 0.2s;
}
.search-box button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}


.mobile-search { display: none; margin-top: 0.8vw; background: #fff; border-radius: 2vw; border: 0.08vw solid #ddd; padding: 0.5vw 1vw; }
.mobile-search form { display: flex; gap: 0.5vw; width: 100%; }
.mobile-search input { flex: 1; padding: 0.5vw 1vw; border: none; font-size: 0.8vw; outline: none; }
.mobile-search button { background: var(--primary); border: none; color: #fff; border-radius: 2vw; padding: 0 1.2vw; font-size: 0.8vw; }

@media (max-width: 768px) {
    .parent-cats { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; gap: 10px; padding: 8px 12px; }
    .parent-cat { font-size: 13px; padding: 10px 18px; border-radius: 20px; flex-shrink:0; }
    .subcat-row { padding: 8px 12px; gap: 10px; }
    .subcat-links { gap: 10px; }
    .subcat-links .subcat-item { font-size: 13px; padding: 9px 16px;border-radius: 20px; }
    .subcat-row .search-box { display: none; }
    .mobile-search { display: block; margin: 12px 3vw 16px; }
    .mobile-search input { font-size: 14px; padding: 8px 12px; }
    .mobile-search button { font-size: 14px; padding: 0 15px; }

    .fav-link{
        font-size:13px;
        padding:9px 16px;
        border-radius:20px;
    }
}


.material-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2vw; padding: 0 var(--page-padding); margin-bottom: 2vw; }
@media (max-width: 768px) { .material-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; padding: 0 3vw; margin-bottom: 20px; } }


.material-card { background: #fff; border-radius: var(--card-radius); overflow: hidden; box-shadow: 0 0.2vw 1vw rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; cursor: pointer; }
.material-card:hover { transform: translateY(-0.2vw); box-shadow: 0 0.5vw 2vw rgba(0,0,0,0.1); }
.card-thumb { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #eee; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }


.card-tags-left { position: absolute; top: 0.5vw; left: 0.5vw; display: flex; gap: 0.25vw; flex-wrap: wrap; z-index: 2; max-width: 60%; }
.card-tags-right { position: absolute; top: 0.5vw; right: 0.5vw; display: flex; gap: 0.25vw; flex-wrap: wrap; z-index: 2; justify-content: flex-end; max-width: 60%; }
.card-tags-bottom-right {
    position: absolute;
    right: 0.6vw;
    bottom: 2vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3vw;
    z-index: 20;
    padding: 0.1vw;
}
.tag {
    font-size: var(--tag-font); padding: 0.2vw 0.55vw; border-radius: 0.4vw; color: #fff;
    font-weight: 500; line-height: 1.4; white-space: nowrap; border: none; cursor: default; display: inline-flex; align-items: center;
}
.tag.copyright { background: #ff0000; }
.tag.svip{
    background:var(--svip-purple);
    position:relative;
    top:-1px;
}
.tag.new-green { background: var(--new-green); }


.fav-tag {
    background: rgba(255,255,255,0.5);
    color: #333;
    font-weight: 500;
    font-size: 0.8vw;
    border: 1px solid #ddd;
}
.fav-tag.faved { color: var(--favorite-active); border-color: var(--favorite-active); background: #ffecec; }
.fav-tag:hover { border-color: var(--favorite-active); }

@media (max-width: 768px) {
    :root { --tag-font: 10px; }
    .tag { font-size: 10px; padding: 2px 6px; border-radius: 8px; }
    .fav-tag { font-size: 10px; padding: 2px 6px; border-radius: 8px; }
    .card-tags-left { top: 5px; left: 5px; gap: 3px; }
    .card-tags-right { top: 5px; right: 5px; gap: 3px; }
    .card-tags-bottom-right {
        bottom: 28px;
        right: 8px;
        gap: 4px;
    }
}


.audio-play-area { position: relative; width: 100%; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.audio-play-btn-large { width: 3vw; height: 3vw; border-radius: 50%; background: rgba(255,255,255,0.95); border: none; font-size: 1.3vw; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #333; transition: all 0.2s; flex-shrink: 0; z-index: 1; box-shadow: 0 0.3vw 1vw rgba(0,0,0,0.2); }
.audio-play-btn-large:hover { background: #fff; transform: scale(1.08); box-shadow: 0 0.4vw 1.5vw rgba(0,0,0,0.3); }
.audio-placeholder-icon { font-size: 3vw; z-index: 1; opacity: 0.7; }
.audio-progress-bar-wrap { width: 70%; margin-top: 0.6vw; z-index: 1; }
.audio-progress-bar { width: 100%; height: 0.35vw; background: rgba(255,255,255,0.4); border-radius: 1vw; cursor: pointer; overflow: hidden; }
.audio-progress-fill { height: 100%; background: #fff; width: 0%; border-radius: 1vw; transition: width 0.1s; }
.audio-time-display { margin-top: 0.3vw; font-size: 0.6vw; color: rgba(255,255,255,0.9); z-index: 1; }
@media (max-width: 768px) {
    .audio-play-btn-large { width: 40px; height: 40px; font-size: 18px; }
    .audio-placeholder-icon { font-size: 40px; }
    .audio-progress-bar-wrap { width: 75%; margin-top: 8px; }
    .audio-progress-bar { height: 5px; }
    .audio-time-display { font-size: 11px; margin-top: 4px; }
}
@media (max-width: 768px) {
  .card-info {
    padding-top: 8px !important;
     padding-bottom: 8px !important;
  }
}

.card-info { padding: 0.6vw 0.8vw; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.card-title-row { display: flex; justify-content: space-between; align-items: center; gap: 0.4vw; }
.card-title { font-size: 0.75vw; color: #333; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; min-width: 0; }
.btn-card { font-size: 0.65vw; padding: 0.25vw 0.7vw; border-radius: 0.4vw; border: none; cursor: pointer; background: var(--primary); color: #fff; text-decoration: none; white-space: nowrap; flex-shrink: 0; display: inline-flex; align-items: center; }
.btn-card:hover { opacity: 0.9; }
.download-btn { background: #f0ad4e; }
@media (max-width: 768px) {
    .material-card { border-radius: 10px; }
    .card-title { font-size: 13px; white-space: normal; word-break: break-word; }
    .card-title-row { flex-wrap: wrap; }
    .btn-card { font-size: 12px; padding: 4px 10px; border-radius: 6px; }
}


.material-overlay { z-index: 10001; }
.material-dialog { background: #fff; border-radius: 0.8vw; width: 90%; max-width: 50vw; max-height: 90vh; overflow-y: auto; position: relative; padding: 1.5vw 1.8vw; display: flex; flex-direction: column; }
@media (max-width: 768px) { .material-dialog { max-width: 92%; padding: 5vw 4vw; border-radius: 12px; } }
.detail-close { position: absolute; top: 0.6vw; right: 1vw; font-size: 1.4vw; color: #999; background: none; border: none; cursor: pointer; }
.detail-title { font-size: 1.2vw; font-weight: 600; text-align: center; margin-bottom: 1.2vw; color: #222; }
.media-area { display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 1.2vw; }
.media-area img { max-width: 100%; max-height: 50vh; border-radius: 0.4vw; cursor: zoom-in; }
.nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 2.2vw; height: 2.2vw; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4vw; cursor: pointer; color: #333; box-shadow: 0 0.3vw 0.8vw rgba(0,0,0,0.1); user-select: none; z-index: 2; }
.nav-btn.prev { left: -1.2vw; } .nav-btn.next { right: -1.2vw; }

@media (max-width: 768px) {
    .detail-close { font-size: 20px; top: 8px; right: 12px; }
    .detail-title { font-size: 18px; margin-bottom: 16px; }
    .detail-download-btn { font-size: 14px; padding: 8px 16px; border-radius: 8px; }
    .nav-btn { width: 44px; height: 44px; font-size: 28px; }
    .nav-btn.prev { left: -12px; } 
    .nav-btn.next { right: -12px; }
}
.detail-download-btn { align-self: flex-end; padding: 0.4vw 1.6vw; background: var(--primary); color: #fff; border: none; border-radius: 0.4vw; font-size: 0.8vw; cursor: pointer; }
@media (max-width: 768px) {
    .detail-download-btn {
        padding: 8px 20px !important;
        font-size: 15px !important;
        border-radius: 8px !important;
        margin-top: 10px !important;
    }
}
.audio-player-box { width: 100%; }
.audio-controls { display: flex; align-items: center; gap: 0.6vw; margin-top: 0.5vw; flex-wrap: wrap; }
.progress-bar { flex: 1; height: 0.3vw; background: #e0e0e0; border-radius: 0.2vw; cursor: pointer; position: relative; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary); width: 0%; border-radius: 0.2vw; }
.time-label { font-size: 0.7vw; color: #666; min-width: 3vw; text-align: center; }
video { width: 100%; max-height: 50vh; border-radius: 0.3vw; }


.zoom-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.25); z-index: 11000; display: flex; align-items: center; justify-content: center; overflow: hidden; touch-action: none; }
.zoom-overlay img { max-width: 95%; max-height: 95%; transition: transform 0.1s; cursor: grab; }
.zoom-close { position: absolute; top: 1.5vw; right: 2vw; font-size: 2.5vw; color: #fff; cursor: pointer; z-index: 1; }
@media (max-width: 768px) {
    .zoom-close { top: 12px; right: 16px; font-size: 28px; }
}


.vip-tip-dialog { background: #fff; border-radius: 0.8vw; padding: 2vw 2.5vw; text-align: center; max-width: 28vw; width: 90%; box-shadow: 0 0.5vw 2vw rgba(0,0,0,0.2); }
.vip-tip-dialog p { font-size: 1vw; color: #333; margin-bottom: 1.2vw; }
.vip-tip-dialog .btn-group { display: flex; justify-content: center; gap: 1vw; }
.vip-tip-dialog button { padding: 0.5vw 1.5vw; border-radius: 0.4vw; border: none; font-size: 0.85vw; cursor: pointer; }
.vip-tip-dialog .btn-close { background: #eee; color: #666; }
.vip-tip-dialog .btn-buy { background: var(--primary); color: #fff; }
@media (max-width: 768px) { .vip-tip-dialog { max-width: 80%; padding: 5vw 6vw; } .vip-tip-dialog p { font-size: 14px; } .vip-tip-dialog button { font-size: 13px; padding: 6px 18px; } }


.pagination { display: flex; justify-content: center; align-items: center; gap: 0.4vw; padding: 1.5vw 0 2.5vw; font-size: 0.8vw; flex-wrap: wrap; }
.pagination .total-info { margin-right: 0.8vw; color: #666; }
.pagination .page-arrow, .pagination .page-num { padding: 0.3vw 0.8vw; background: #fff; border: 0.08vw solid #ddd; border-radius: 0.3vw; color: #333; text-decoration: none; display: inline-flex; align-items: center; gap: 0.3vw; cursor: pointer; }
.pagination .page-num.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination span.dots { color: #999; }
.page-jump { margin-left: 0.8vw; display: flex; align-items: center; gap: 0.3vw; }
.page-jump input { width: 3.5vw; padding: 0.25vw; font-size: 0.75vw; border: 0.08vw solid #ddd; border-radius: 0.3vw; text-align: center; }
.page-jump button { padding: 0.25vw 0.7vw; background: var(--primary); color: #fff; border: none; border-radius: 0.3vw; cursor: pointer; font-size: 0.75vw; }
@media (max-width: 768px) { 
    .pagination { font-size: 13px; gap: 5px; padding: 20px 0 30px; } 
    .pagination .page-arrow, .pagination .page-num { padding: 4px 9px; border-radius: 4px; } 
    .page-jump { display: none; } 
    .total-info { margin-right: 4px; } 
}


.material-grid.loading { opacity: 0.5; pointer-events: none; transition: opacity 0.15s; }


@media (max-width: 768px) {
     .banner-wrapper { margin: 15px 3vw 16px !important; }
    .notice-bar { margin: 0 3vw 16px; }
    .category-section { margin-bottom: 20px; }
    .banner-dot { width: 8px; height: 8px; }
}


.no-data-empty {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    color: #999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    margin: 0 auto;
}
.empty-icon {
    font-size: 70px;
    margin-bottom: 16px;
    line-height: 1;
}
.empty-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #666;
}
.empty-desc {
    font-size: 14px;
    color: #999;
}


.parent-cats::-webkit-scrollbar,
.subcat-row::-webkit-scrollbar{
    display:none;
}


/* 修复详情弹窗左右箭头层级 —— 解决手机端被图片盖住问题 */
.nav-btn {
  z-index: 99999 !important;
  pointer-events: auto !important;
  background: rgba(255,255,255,1) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}
#mediaContent {
  position: relative;
  z-index: 1;
}
.media-area {
  position: relative;
  z-index: 10;
}