/* Taoqu List页面样式 - 带特殊前缀避免冲突 */

/* 基础样式重置 - 仅针对taoqu-list页面 */



/* 最底层背景色设置 - 使用更强的优先级 */
html,
body.taoqu-list-page,
.taoqu-list-page html,
.taoqu-list-page body {
    background-color: #1a1a1a !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 50%, #1a1a1a 100%) !important;
}

/* 整体背景设置 - 使用新的配色方案 */
.taoqu-list-page body, 
.taoqu-list-page .m24_main_wrapper {
    background-color: #1a1a1a !important; /* 底层背景色 */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 50%, #1a1a1a 100%) !important;
    color: #fff;
    font-family: 'Microsoft YaHei', Arial, sans-serif !important;
    /* 移除 backdrop-filter 以提升性能 */
}

/* 页面主容器背景保护 */
.taoqu-list-page .album_inner_inner_list,
.taoqu-list-page .indx_title_main_wrapper,
.taoqu-list-page .blog_pagination_section {
    background-color: transparent !important;
}

/* 容器样式 */
.taoqu-list-page .containertq {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    background-color: transparent !important;
}

/* 保护封面图片在滚动时的显示状态 */
.taoqu-list-page .custom-taoqu-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 1; /* 默认显示 */
    z-index: 1;
    display: block; /* 确保display为block */
    visibility: visible;
}

/* 确保封面图片的显示状态不被其他样式覆盖 */
.taoqu-list-page .custom-taoqu-cover[style*="display: block"],
.taoqu-list-page .custom-taoqu-cover[style*="opacity: 1"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.taoqu-list-page .custom-taoqu-cover[style*="display: none"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* 封面容器样式 */
.taoqu-list-page .cover-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 比例的正方形 */
    height: 0;
    overflow: hidden;
}

/* 封面区域容器样式 - 参考music-list-filter的现代化设计 */
.taoqu-list-page .custom-taoqu-cover-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px 16px 0 0; /* 增大圆角，更现代化 */
    margin: 0;
    padding: 0;
    border: none;
    /* 参考music-list-filter的边框和阴影效果 */
    border-bottom: 1px solid rgba(170, 60, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* 移除 backdrop-filter 以提升性能 */
}

/* 背景動畫已移除 */

/* 封面呼吸動畫已移除 */

/* 封面图片样式 - 参考music-list-filter的现代化设计 */
.taoqu-list-page .custom-taoqu-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.2s ease, opacity 0.2s ease; /* 簡化過渡效果以提升性能 */
    opacity: 1;
    z-index: 1;
    display: block;
    visibility: visible;
    /* 簡化滤镜效果以提升性能 */
    filter: brightness(1) contrast(1.02);
    /* 封面靜態顯示，無動畫效果 */
}

/* 封面加载状态样式 */
.taoqu-list-page .custom-taoqu-cover.cover-loaded {
    opacity: 1;
    display: block;
    visibility: visible;
}

.taoqu-list-page .custom-taoqu-cover.cover-error {
    opacity: 0;
    display: none;
    visibility: hidden;
}

/* 封面悬停效果 - 簡化濾鏡效果以提升性能 */
.taoqu-list-page .custom-taoqu-card:hover .custom-taoqu-cover {
    filter: brightness(1.05) contrast(1.05);
}

/* 封面容器悬停效果 - 移除發光，只保留邊框色變化 */
.taoqu-list-page .custom-taoqu-card:hover .custom-taoqu-cover-container {
    border-bottom-color: rgba(170, 60, 255, 0.3);
}

/* 播放按钮样式 - 移除發光效果 */
.taoqu-list-page .custom-taoqu-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #af4cff;
    font-size: 24px;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.taoqu-list-page .custom-taoqu-card:hover .custom-taoqu-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 255, 255, 1);
    animation: playButtonAppear 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.taoqu-list-page .custom-taoqu-card.playing .custom-taoqu-play-button {
    opacity: 1;
    transform: translate(-50%, -50%);
    background-color: rgba(170, 60, 255, 0.9);
    color: white;
    animation: playButtonPulse 2s ease-in-out infinite;
}

/* 播放按鈕脈衝動畫 */
@keyframes playButtonPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* 播放按鈕出現動畫 */
@keyframes playButtonAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    60% {
        transform: translate(-50%, -50%) scale(1.15);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* 播放按鈕點擊動畫 */
.taoqu-list-page .custom-taoqu-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

/* 播放按鈕圖標旋轉動畫 - 播放時 */
.taoqu-list-page .custom-taoqu-card.playing .custom-taoqu-play-button i {
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 封面遮罩样式 - 已隱藏 */
.taoqu-list-page .custom-taoqu-cover-overlay {
    display: none !important;
}

.taoqu-list-page .custom-taoqu-card:hover .custom-taoqu-cover-overlay,
.taoqu-list-page .custom-taoqu-card.playing .custom-taoqu-cover-overlay {
    display: none !important;
}

/* 序号样式 - 已隱藏 */
.taoqu-list-page .custom-taoqu-number {
    display: none !important;
}

/* 价格标签样式 - 已隱藏 */
.taoqu-list-page .custom-taoqu-price {
    display: none !important;
}

/* 卡片内容区域 */
.taoqu-list-page .custom-taoqu-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 标题样式 */
.taoqu-list-page .custom-taoqu-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.taoqu-list-page .custom-taoqu-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.4;
    max-height: 2.8em;
}

.taoqu-list-page .custom-taoqu-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.taoqu-list-page .custom-taoqu-title a:hover {
    color: #aa3cff;
}

/* 元数据样式 */
.taoqu-list-page .custom-taoqu-meta {
    margin-bottom: 15px;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

/* 优化后的风格标签样式 */
.taoqu-list-page .custom-taoqu-style {
    display: inline-flex;
    align-items: center;
    background: rgba(170, 60, 255, 0.12);
    color: #aa3cff;
    padding: 4px 12px;
    border-radius: 15px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s ease; /* 簡化過渡效果以提升性能 */
    border: 1px solid transparent;
}

.taoqu-list-page .custom-taoqu-style:hover {
    background: rgba(170, 60, 255, 0.2);
    transform: translateY(-1px); /* 簡化變換效果以提升性能 */
    border-color: rgba(170, 60, 255, 0.3);
    box-shadow: 0 2px 6px rgba(170, 60, 255, 0.15); /* 簡化陰影以提升性能 */
}

.taoqu-list-page .custom-taoqu-style i {
    margin-right: 5px;
    font-size: 12px;
}

.taoqu-list-page .custom-taoqu-style a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* 优化的作者信息样式 */
.taoqu-list-page .custom-taoqu-artist {
    display: inline-flex;
    align-items: center;
    color: #ff53b4;
    margin-bottom: 8px;
    padding: 3px 8px;
    border-radius: 12px;
    transition: all 0.2s ease; /* 簡化過渡效果以提升性能 */
    cursor: pointer;
    font-size: 13px;
    background: rgba(255, 83, 180, 0.08);
    border: 1px solid transparent;
}

.taoqu-list-page .custom-taoqu-artist:hover {
    color: #ff73c4;
    transform: translateY(-1px); /* 簡化變換效果以提升性能 */
    background: rgba(255, 83, 180, 0.15);
    border-color: rgba(255, 83, 180, 0.2);
    box-shadow: 0 2px 6px rgba(255, 83, 180, 0.15); /* 簡化陰影以提升性能 */
}

.taoqu-list-page .custom-taoqu-artist i {
    margin-right: 5px;
    font-size: 12px;
}

/* 发布时间 */
.taoqu-list-page .custom-taoqu-date {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

/* 标签样式 */
.taoqu-list-page .custom-taoqu-tags {
    background: rgba(30, 30, 30, 0.4);
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #b0b0b0;
    border: 1px solid rgba(170, 60, 255, 0.1);
    white-space: normal;
    line-height: 1.5;
    min-height: 40px;
    position: relative;
    z-index: 10;
}

/* 时长样式 */
.taoqu-list-page .custom-taoqu-duration {
    display: inline-flex;
    align-items: center;
    color: #c294ff;
    font-size: 13px;
    margin-bottom: 15px;
    padding: 6px 10px;
    background: rgba(170, 60, 255, 0.08);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.taoqu-list-page .custom-taoqu-duration:hover {
    background: rgba(170, 60, 255, 0.15);
    color: #d8b4ff;
    transform: translateY(-1px);
}

.taoqu-list-page .custom-taoqu-duration i {
    margin-right: 6px;
    font-size: 14px;
}

/* 操作按钮区域 */
.taoqu-list-page .custom-taoqu-actions {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.taoqu-list-page .custom-taoqu-actions a {
    color: #fff;
    transition: color 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.taoqu-list-page .custom-taoqu-actions a:hover {
    color: #af4cff;
}

.taoqu-list-page .custom-taoqu-actions i {
    margin-bottom: 5px;
    font-size: 16px;
}

/* 默认封面样式 - 簡化版本 */
.taoqu-list-page .default-cover {
    display: none; /* 默认隐藏 */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #2a2a2a;
    color: #999;
    text-align: center;
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* 当图片加载失败时显示默认封面 */
.taoqu-list-page .cover-container.has-error .default-cover {
    display: flex;
}

.taoqu-list-page .default-cover i {
    font-size: 24px;
    margin-bottom: 8px;
    color: #aa3cff !important;
}

/* 确保默认封面的显示状态不被其他样式覆盖 */
.taoqu-list-page .default-cover[style*="display: flex"] {
    display: flex !important;
}

.taoqu-list-page .default-cover[style*="display: none"] {
    display: none !important;
}

/* 页面标题动画 - 与music-list-filter统一配色 */
.taoqu-list-page .indx_title_main_wrapper {
    background: rgba(30, 30, 40, 0.95) !important; /* 簡化背景以提升性能 */
    padding: 40px 0 !important;
    border-bottom: 2px solid rgba(170, 60, 255, 0.3) !important;
    /* 移除載入動畫以提升性能 */
    position: relative;
    overflow: hidden;
    /* 移除 backdrop-filter 以提升性能 */
}

/* 移除動態背景效果以提升性能 */
/* .taoqu-list-page .indx_title_main_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 60, 255, 0.1), transparent);
} */

/* taoqu-list-shimmer 動畫已移除 */

.taoqu-list-page .indx_title_left_wrapper h2 {
    color: #aa3cff !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 0 20px rgba(170, 60, 255, 0.5) !important;
    /* 移除標題發光動畫以提升性能 */
    text-align: center !important;
    position: relative;
    z-index: 2;
}

.taoqu-list-page .indx_title_left_wrapper ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
}

.taoqu-list-page .indx_title_left_wrapper ul li {
    display: inline-block !important;
    margin: 0 15px !important;
    /* 移除載入動畫以提升性能 */
}

.taoqu-list-page .indx_title_left_wrapper ul li a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    transition: all 0.2s ease !important; /* 簡化過渡效果以提升性能 */
    padding: 8px 16px !important;
    border-radius: 20px !important;
    background: rgba(170, 60, 255, 0.1) !important;
    border: 1px solid rgba(170, 60, 255, 0.3) !important;
    position: relative;
    overflow: hidden;
}

/* 移除按鈕閃光效果以提升性能 */
/* .taoqu-list-page .indx_title_left_wrapper ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.taoqu-list-page .indx_title_left_wrapper ul li a:hover::before {
    left: 100%;
} */

.taoqu-list-page .indx_title_left_wrapper ul li a:hover {
    color: #aa3cff !important;
    background: rgba(170, 60, 255, 0.2) !important;
    transform: translateY(-2px) !important; /* 簡化變換效果以提升性能 */
    box-shadow: 0 3px 10px rgba(170, 60, 255, 0.3) !important; /* 簡化陰影以提升性能 */
}

/* 全局提示框容器 - 关键修复 */
.taoqu-list-page .tooltip-container {
    position: fixed;
    pointer-events: none;
    z-index: 99999 !important; /* 确保在所有元素之上 */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 标题tooltip - 带发光效果 */
.taoqu-list-page .full-title-tooltip {
    background-color: rgba(18, 18, 18, 0.95);
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    border-radius: 8px;
    min-width: 200px;
    max-width: 350px;
    white-space: normal;
    box-shadow: 0 0 15px rgba(170, 60, 255, 0.6), 0 0 30px rgba(170, 60, 255, 0.3);
    position: absolute;
    border: 1px solid rgba(170, 60, 255, 0.3);
    /* 移除發光動畫以提升性能 */
}

/* 发光动画 */
/* taoqu-list-glow 動畫已移除 */

.taoqu-list-page .full-title-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(18, 18, 18, 0.95) transparent transparent transparent;
}

/* 載入動畫定義已移除，提升頁面性能 */

/* 内容区域容器优化 */
.taoqu-list-page .album_inner_inner_list {
    padding: 30px 0;
    /* 移除載入動畫以提升性能 */
}

/* taoqu-list-contentSlideIn 動畫已移除 */

/* 套曲卡片容器 */
.taoqu-list-page .custom-taoqu-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    width: 100%;
    clear: both;
    /* 移除載入動畫以提升性能 */
}

/* taoqu-list-containerFadeIn 動畫已移除 */

/* 套曲卡片样式 - 参考music-list-filter统一现代化设计 */
.taoqu-list-page .custom-taoqu-card {
    background: rgba(30, 30, 40, 0.95); /* 簡化背景以提升性能 */
    border-radius: 16px; /* 与封面容器保持一致的圆角 */
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease; /* 簡化過渡效果以提升性能 */
    border: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* 進一步簡化陰影以提升性能 */
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* 移除 backdrop-filter 以提升性能 */
}

/* 卡片悬停效果 - 簡化背景效果以提升性能 */
.taoqu-list-page .custom-taoqu-card:hover {
    border-color: rgba(170, 60, 255, 0.5);
    background: rgba(35, 35, 45, 0.95);
}

/* 播放中的卡片样式 - 簡化背景效果以提升性能 */
.taoqu-list-page .custom-taoqu-card.playing {
    border-color: rgba(170, 60, 255, 0.6);
    background: rgba(40, 35, 50, 0.95);
}

/* 播放中的封面樣式 - 簡化濾鏡效果以提升性能 */
.taoqu-list-page .custom-taoqu-card.playing .custom-taoqu-cover {
    filter: brightness(1.08) contrast(1.05);
}

/* 播放中的脈衝動畫已移除 */

/* 筛选栏样式 - 与music-list-filter统一配色 */
.taoqu-list-page .style-page-header-header {
    background: rgba(30, 30, 40, 0.95); /* 簡化背景以提升性能 */
    /* 移除 backdrop-filter 以提升性能 */
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid rgba(170, 60, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* 進一步簡化陰影以提升性能 */
    position: relative;
    overflow: hidden;
    /* 移除載入動畫以提升性能 */
}

/* 移除篩選欄背景動畫以提升性能 */
/* .taoqu-list-page .style-page-header-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(170, 60, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
} */

/* taoqu-list-backgroundPulse 動畫已移除 */

/* taoqu-list-filterBarFadeIn 動畫已移除 */

/* 风格展示区域重新设计 */
.taoqu-list-page .style-showcase {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(170, 60, 255, 0.15);
    position: relative;
    z-index: 2;
}

.taoqu-list-page .style-showcase h3 {
    margin-bottom: 20px;
    color: #aa3cff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    /* 移除載入動畫以提升性能 */
}

/* taoqu-list-titleSlideIn 動畫已移除 */

.taoqu-list-page .style-showcase h3 i {
    margin-right: 12px;
    font-size: 22px;
    /* 移除載入動畫以提升性能 */
}

/* taoqu-list-iconBounce 動畫已移除 */

.taoqu-list-page .style-showcase h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #aa3cff, transparent);
    /* 移除下劃線滑動動畫以提升性能 */
}

/* taoqu-list-underlineSlide 動畫已移除 */

.taoqu-list-page .styles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    /* 移除載入動畫以提升性能 */
}

/* taoqu-list-tagsFadeIn 動畫已移除 */

.taoqu-list-page .style-tag {
    background: rgba(170, 60, 255, 0.15); /* 簡化背景以提升性能 */
    color: #aa3cff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease; /* 簡化過渡效果以提升性能 */
    border: 1px solid rgba(170, 60, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* 移除標籤閃光效果以提升性能 */
/* .taoqu-list-page .style-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.taoqu-list-page .style-tag:hover::before {
    left: 100%;
} */

.taoqu-list-page .style-tag:hover, 
.taoqu-list-page .style-tag.active {
    background: rgba(170, 60, 255, 0.3); /* 簡化背景以提升性能 */
    transform: translateY(-2px) scale(1.02); /* 簡化變換效果以提升性能 */
    border-color: rgba(170, 60, 255, 0.6);
    box-shadow: 0 3px 10px rgba(170, 60, 255, 0.3); /* 簡化陰影以提升性能 */
    color: #fff;
}

/* 搜索和排序区域优化 */
.taoqu-list-page .search-sort-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
    /* 移除載入動畫以提升性能 */
}

/* taoqu-list-sortContainerFadeIn 動畫已移除 */

.taoqu-list-page .style-page-header-header .left,
.taoqu-list-page .style-page-header-header .right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* 搜索框 - 已隐藏 */
.taoqu-list-page .dj-search-container {
    display: none !important;
}

/* 分组样式优化 */
.taoqu-list-page .group {
    margin-bottom: 10px;
}

.taoqu-list-page .group.bmp-sort a {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(30, 30, 30, 0.7); /* 簡化背景以提升性能 */
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease; /* 簡化過渡效果以提升性能 */
    border: 1px solid rgba(170, 60, 255, 0.3);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

/* 移除排序按鈕閃光效果以提升性能 */
/* .taoqu-list-page .group.bmp-sort a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 60, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.taoqu-list-page .group.bmp-sort a:hover::before {
    left: 100%;
} */

.taoqu-list-page .group.bmp-sort a:hover, 
.taoqu-list-page .group.bmp-sort.active a {
    background: rgba(170, 60, 255, 0.3); /* 簡化背景以提升性能 */
    border-color: #aa3cff;
    color: #fff;
    transform: translateY(-1px) scale(1.01); /* 簡化變換效果以提升性能 */
    box-shadow: 0 3px 10px rgba(170, 60, 255, 0.3); /* 簡化陰影以提升性能 */
}

/* 分页样式 */
.taoqu-list-page .blog_pagination_section {
    clear: both;
    padding: 30px 0 50px;
    text-align: center;
    background-color: transparent !important;
}

.taoqu-list-page .blog_pagination_section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.taoqu-list-page .blog_pagination_section ul li {
    display: block;
    margin: 0;
}

.taoqu-list-page .blog_pagination_section ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 1;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(170, 60, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* 移除 backdrop-filter 以提升性能 */
}

.taoqu-list-page .blog_pagination_section ul li a:hover {
    background: #af4cff; /* 簡化背景以提升性能 */
    border-color: #af4cff;
    color: #ffffff;
    transform: translateY(-1px); /* 簡化變換效果以提升性能 */
    box-shadow: 0 3px 10px rgba(170, 60, 255, 0.4); /* 簡化陰影以提升性能 */
}

.taoqu-list-page .blog_pagination_section ul li a.current,
.taoqu-list-page .blog_pagination_section ul li a.active {
    background: #af4cff; /* 簡化背景以提升性能 */
    border-color: #af4cff;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(170, 60, 255, 0.3); /* 簡化陰影以提升性能 */
}

.taoqu-list-page .blog_pagination_section ul li a.prev,
.taoqu-list-page .blog_pagination_section ul li a.next {
    width: 45px;
    font-size: 14px;
}

.taoqu-list-page .blog_pagination_section .prev i:before,
.taoqu-list-page .blog_pagination_section .next i:before {
    color: inherit;
    font-size: 14px;
}

.taoqu-list-page .blog_pagination_section .prev:hover i:before,
.taoqu-list-page .blog_pagination_section .next:hover i:before {
    color: #ffffff;
}

/* 禁用狀態 */
.taoqu-list-page .blog_pagination_section ul li a.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

/* 省略號樣式 */
.taoqu-list-page .blog_pagination_section ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .taoqu-list-page .custom-taoqu-container {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .taoqu-list-page .custom-taoqu-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        padding: 10px;
    }
    
    .taoqu-list-page .style-showcase h3 {
        font-size: 16px;
    }
    
    .taoqu-list-page .style-tag {
        padding: 5px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .taoqu-list-page .custom-taoqu-container {
        grid-template-columns: 1fr;
    }
    
    .taoqu-list-page .search-sort-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .taoqu-list-page .style-page-header-header .right {
        justify-content: center;
        width: 100%;
    }
}

/* 套曲列表分頁樣式 */
.taoqu-list-pagination .blog_pagination_section {
    padding: 30px 0 !important;
    text-align: center !important;
    background: rgba(30, 30, 30, 0.8) !important;
    border-radius: 12px !important;
    margin: 20px 0 !important;
}

.taoqu-list-pagination .blog_pagination_section ul {
    display: inline-block !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.taoqu-list-pagination .blog_pagination_section ul li {
    display: inline-block !important;
    margin: 0 5px !important;
    float: none !important;
}

.taoqu-list-pagination .blog_pagination_section ul li a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 15px !important;
    background: rgba(170, 60, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(170, 60, 255, 0.3) !important;
    font-weight: 500 !important;
    float: none !important;
    line-height: normal !important;
    width: auto !important;
}

.taoqu-list-pagination .blog_pagination_section ul li a:hover {
    background: rgba(170, 60, 255, 0.2) !important;
    border-color: rgba(170, 60, 255, 0.6) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(170, 60, 255, 0.3) !important;
}

/* JavaScript 分頁高亮樣式 */
.taoqu-list-pagination .current-page {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: #ffffff !important;
    border: 2px solid #ff6b35 !important;
    font-weight: bold !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    min-width: 40px !important;
    height: 40px !important;
    line-height: 30px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5) !important;
    transform: translateY(-2px) !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.taoqu-list-pagination .page-number {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #cccccc !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    min-width: 40px !important;
    height: 40px !important;
    line-height: 30px !important;
    text-align: center !important;
    margin: 0 5px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.taoqu-list-pagination .page-number:hover {
    background: rgba(255, 107, 53, 0.2) !important;
    border-color: rgba(255, 107, 53, 0.6) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
} 