/* 收藏库页面样式 */
:root { 
    --zrecords-disabled:#a0aec0;
    --zrecords-best:#FFD700;
    --zrecords-second:#C0C0C0;
}

/* 移动端警告横条 - 默认隐藏 */
.zrecords-mobile-warning {
    display: none;
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* 在移动端显示警告横条 */
@media (max-width: 768px) {
    .zrecords-mobile-warning {
        display: block;
    }
}

/* 卡片容器 */
.zrecords-container {
    margin-top: 20px;
}

/* 控制区域 */
.zrecords-controls {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    flex-direction: column;
}

/* 筛选控制区域 */
.zrecords-filter-controls {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

/* 搜索输入框 */
.zrecords-search-input {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #4a5568;
    background-color: #2d2d2d;
    color: #e0e0e0;
    font-size: 0.9rem;
    min-width: 150px;
}

.zrecords-search-input:focus {
    outline: none;
    border-color: var(--heo-theme);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.zrecords-search-input::placeholder {
    color: var(--zrecords-disabled);
}

/* 自定义标签筛选器 */
.zrecords-custom-filter {
    position: relative;
    height: 40px; /* 固定高度，与其他筛选控件保持一致 */
}

.zrecords-tag-selector {
    position: relative;
    height: 100%;
}

.zrecords-tag-input-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 12px;
    border-radius: 20px;
    border: 1px solid #4a5568;
    background-color: #2d2d2d;
    cursor: text;
}

.zrecords-tag-input-container:focus-within {
    outline: none;
    border-color: var(--heo-theme);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

/* 标签筛选输入框 */
.zrecords-tag-input-container .zrecords-search-input {
    flex: 1;
    min-width: 80px;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    height: auto;
}

.zrecords-tag-input-container .zrecords-search-input:focus {
    outline: none;
    box-shadow: none;
}

.zrecords-tag-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    border: 1px solid #4a5568;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    margin-top: 5px;
}

.zrecords-tag-option {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #4a5568;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.zrecords-tag-option:hover {
    background-color: #3a3a3a;
}

.zrecords-tag-option:last-child {
    border-bottom: none;
}

/* 已选标签容器（移到筛选器下方） */
.zrecords-selected-tags-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* 已选标签列表 */
.zrecords-selected-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 已选标签项 */
.zrecords-selected-tag-item {
    display: flex;
    align-items: center;
    background-color: #2d2d2d;
    border: 1px solid var(--heo-theme);
    border-radius: 20px;
    padding: 0px 12px;
    color: #e0e0e0;
    font-size: 0.8rem;
}

/* 已选标签清除按钮 */
.zrecords-selected-tag-clear {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
    color: #e0e0e0;
}

.zrecords-selected-tag-clear:hover {
    color: var(--heo-theme);
}

/* 筛选下拉框 */
.zrecords-filter-select {
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #4a5568;
    background-color: #2d2d2d;
    color: #e0e0e0;
    font-size: 0.9rem;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0e0e0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 11px;
    padding-right: 35px;
    min-width: 120px;
}

.zrecords-filter-select:focus {
    outline: none;
    border-color: var(--heo-theme);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

/* 重置按钮样式 - 继承纪念日页面样式 */
#resetFilters {
    background: var(--heo-theme);
    color: #1a1a1a;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    font-size: 0.9rem;
}

#resetFilters:hover {
    background: var(--heo-theme-op-deep);
}

#applyFilters {
    background: var(--heo-theme);
    color: #1a1a1a;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    font-size: 0.9rem;
}

#applyFilters:hover {
    background: var(--heo-theme-op-deep);
}

/* 刷新按钮样式 - 继承纪念日页面样式 */
#refreshDataBtn {
    background: var(--heo-theme);
    color: #1a1a1a;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    font-size: 0.9rem;
}

#refreshDataBtn:hover {
    background: var(--heo-theme-op-deep);
}

/* 加载指示器 */
.importantdays-loading-indicator {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #1a1a1a;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 加载状态 */
.zrecords-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    grid-column: 1 / -1;
    color: #cccccc;
    font-size: 1rem;
}

.zrecords-loading .importantdays-loading-indicator {
    width: 32px;
    height: 32px;
    border-width: 4px;
    margin-bottom: 15px;
}

/* 卡片网格布局 - 响应式 */
.zrecords-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

/* 在较宽屏幕上显示两列 */
@media (min-width: 768px) {
    .zrecords-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 收藏库卡片基础样式 */
.zrecords-card {
    background: #2d2d2d;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 卡片新顶部区域 */
.zrecords-card-new-top {
    border-bottom: 1px solid #4a5568;
    margin-bottom: 10px;
}

/* 当新顶部区域为空时隐藏 */
.zrecords-card-new-top:empty {
    display: none;
}

/* 奖项标签容器 */
.zrecords-awards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 5px;
}

/* 奖项标签 */
.zrecords-award-tag {
    display: inline-block;
    padding: 0px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

/* 奖项标签悬停效果 */
.zrecords-award-tag:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* 奖项标签提示 */
.zrecords-award-tag::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 0px 5px;
    border-radius: 6px;
    font-size: 0.7rem;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid transparent; /* 默认边框透明 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
    overflow: visible;
    width: 100%;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

/* 金奖标签提示 */
.zrecords-award-tag.award-gold::after {
    border-color: var(--zrecords-best); /* 与金奖背景色一致 */
}

/* 银奖标签提示 */
.zrecords-award-tag.award-silver::after {
    border-color: var(--zrecords-second); /* 与银奖背景色一致 */
}

/* 默认奖项标签提示 */
.zrecords-award-tag.award-default::after {
    border-color: var(--heo-theme); /* 与默认奖项背景色一致 */
}

/* 更多标签提示 */
.zrecords-award-tag.award-more::after {
    display: none;
}

/* 暂无记录提示 */
.zrecords-award-tag.zrecords-no-awards::after {
    display: none;
}

/* 奖项标签提示显示 */
.zrecords-award-tag:hover::after {
    opacity: 1;
    visibility: visible;
}

/* 金奖 */
.zrecords-award-tag.award-gold {
    background-color: var(--zrecords-best);
    color: var(--global-bg);
    border-color: var(--zrecords-best);
}

/* 银奖 */
.zrecords-award-tag.award-silver {
    background-color: var(--zrecords-second);
    color: var(--global-bg);
    border-color: var(--zrecords-second);
}

/* 默认奖项颜色 */
.zrecords-award-tag.award-default {
    background-color: var(--heo-theme);
    border-color: var(--heo-theme);
    color: var(--global-bg);

}

/* 更多标签 */
.zrecords-award-tag.award-more {
    background-color: var(--heo-theme);
    border-color: var(--heo-theme);
    color: var(--global-bg);
}

/* 暂无获奖记录文本 */
.zrecords-award-tag.zrecords-no-awards {
    background-color: none;
    border: none;
    color: var(--zrecords-disabled);
    font-style: italic;
}

/* 奖项模态框遮罩 */
.zrecords-awards-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 奖项模态框遮罩显示 */
.zrecords-awards-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 奖项模态框 */
.zrecords-awards-modal {
    background: #2d2d2d;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* 奖项模态框显示动画 */
.zrecords-awards-modal-overlay.active .zrecords-awards-modal {
    transform: scale(1);
}

/* 模态框头部 */
.zrecords-awards-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(90deg, #1a1a1a, #2d2d2d);
    border-bottom: 1px solid #4a5568;
    position: relative;
    z-index: 1000;
}

.zrecords-awards-modal-title {
    font-size: 0.9rem;
    font-weight: 600;
}

/* 关闭按钮 */
.zrecords-awards-modal-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 2.2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
    padding-bottom: 0.4rem;
}

/* 关闭按钮悬停效果 */
.zrecords-awards-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* 模态框内容 */
.zrecords-awards-modal-content {
    padding: 20px;
}

/* 模态框中的奖项列表 */
.zrecords-awards-modal-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 模态框中的奖项项 */
.zrecords-awards-modal-item {
    padding: 15px;
    border-radius: 8px;
    background-color: #1a1a1a;
    border: 1px solid #4a5568;
}

/* 模态框中的奖项标题 */
.zrecords-awards-modal-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heo-theme);
    word-break: break-word;
}

/* 模态框中的奖项信息 */
.zrecords-awards-modal-item-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.zrecords-awards-modal-item-info span {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

/* 模态框中的奖项描述 */
.zrecords-awards-modal-item-description {
    font-size: 0.8rem;
    color: var(--zrecords-disabled);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #4a5568;
    line-height: 1.4;
}

/* 卡片头部 - 渐变背景条 */
.zrecords-card-header {
    background: linear-gradient(135deg, var(--heo-theme), var(--heo-theme-op-deep));
    color: #1a1a1a;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 0 0 auto;
}

/* 卡片标题 */
.zrecords-card-title{
    flex: 0 1 auto;
    max-width: 85%;
}

/* 游戏名称 */
.zrecords-card-name {
    font-size: 1rem;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'weilai heavy' !important;
}

/* 原始名称 */
.zrecords-card-origin-name {
    font-size: 0.8rem;
    opacity: 0.9;
    overflow: hidden;
    white-space: nowrap;
}

/* 游玩状态标识 */
.zrecords-play-status {
    flex: none;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

/* 不同状态的颜色 */
.status-wishlist {
    background-color: #3b5bdb;
}

.status-playing {
    background-color: #e67700;
}

.status-completed {
    background-color: #2b8a3e;
}

.status-paused {
    background-color: #748cab;
}

.status-dropped {
    background-color: #c92a2a;
}

/* 卡片主体 */
.zrecords-card-body {
    padding: 10px;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 0 auto;
}

/* 顶部区域 */
.zrecords-top-section {
    display: flex;
    flex: 1 0 auto;
    gap: 20px;
    margin-bottom: 10px;
}

/* 封面区域 */
.zrecords-cover-section {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* 封面占位符 */
.zrecords-cover-placeholder {
    width: 100%;
    height: 160px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-size: 0.8rem;
    text-align: center;
    border: 2px solid var(--heo-theme);
}

/* 为封面图片添加圆角样式，解决图片覆盖圆角的问题 */
.zrecords-cover-placeholder img {
    border-radius: 8px;
}

/* 总时长 */
.zrecords-time {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* 时间标签 */
.zrecords-time-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heo-theme);
}

/* 游玩时长 */
.zrecords-play-time {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    font-family: 'weilai bold' !important;
}

/* 信息区域 */
.zrecords-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 信息行 */
.zrecords-info-row {
    display: flex;
    align-items: flex-start;
}

/* 信息标签 */
.zrecords-info-label {
    font-weight: 600;
    min-width: 80px;
    color: var(--heo-theme);
    font-size: 0.7rem;
}

/* 信息值 */
.zrecords-info-value {
    flex: 1;
    font-size: 0.7rem;
    color: #e0e0e0;
}

/* 标签容器 */
.zrecords-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* 标签样式 */
.zrecords-tag, .zrecords-type {
    background-color: #1a1a1a;
    color: #ffd700;
    
    padding: 0px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    cursor: help;
    position: relative;
    border: 1px solid #ffd700;
}

/* 类型样式 */
.zrecords-type {
    background-color: #1a1a1a;
    color: var(--heo-theme);
    border: 1px solid var(--heo-theme);
}

/* 标签悬停提示 */
.zrecords-tag:hover::after, .zrecords-type:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px); /* 增加10px的间距 */
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: normal;
    width: 250px;
    z-index: 1002;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--heo-theme);
}

/* 评分区域 */
.zrecords-score-section {
    max-width: 120px;
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 评分框 */
.zrecords-score-box {
    text-align: center;
    padding: 8px;
    background-color: #ffd700;
    border-radius: 8px;
    color: #1a1a1a;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* 评分标题 */
.zrecords-score-title {
    font-size: 0.9rem;
    font-weight: 600;
}

/* 个人评分 */
.zrecords-score-value {
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'weilai heavy'!important;
}

/* 神作 - 金色 */
.score-masterpiece {
    background-color: #ffd700;
}

/* 佳作 - 绿色 */
.score-great {
    background-color: #4CAF50;
}

/* 良好 - 蓝色 */
.score-good {
    background-color: #64B5F6;
}

/* 一般 - 橙色 */
.score-average {
    background-color: #FFB74D;
}

/* 较差 - 红色 */
.score-poor {
    background-color: #FF8A80;
}

/* 默认主题色 */
.score-default,
.score-description-default {
    background-color: var(--heo-theme);
}

/* 个人评分描述 */
.zrecords-score-description {
    font-size: 0.7rem;
    margin-top: 2px;
}

/* 图表容器 */
.zrecords-chart-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 10px;
}

/* 图表占位符 */
.zrecords-chart-placeholder {
    color: #cccccc;
    font-size: 0.9rem;
}

/* 底部区域 */
.zrecords-bottom-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 文本框 */
.zrecords-text-box {
    flex: 1;
    border-radius: 8px;
    padding: 15px;
    border: 2px solid #1a1a1a;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
}

/* 文本标题 */
.zrecords-text-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--heo-theme);
}

/* 滚动区域 */
.zrecords-scrollable-area {
    max-height: 120px;
    overflow-y: auto;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #e0e0e0;
}

/* 滚动条样式 */
.zrecords-scrollable-area::-webkit-scrollbar {
    width: 5px;
}

.zrecords-scrollable-area::-webkit-scrollbar-track {
    background: #2d2d2d;
    border-radius: 10px;
}

.zrecords-scrollable-area::-webkit-scrollbar-thumb {
    background: var(--heo-theme);
    border-radius: 10px;
}

/* 无简介或评价时的提示 */
.zrecords-no-intro, .zrecords-no-comment {
    color: var(--zrecords-disabled);
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

/* 关联文章横条 */
.zrecords-related-articles {
    flex: 0 0 auto;
    border-top: 1px solid #4a5568;
    font-size: 0.8rem;
    color: white;
}

.zrecords-related-articles a {
    color: var(--heo-theme);
    text-decoration: none;
}

.zrecords-related-articles a:hover {
    text-decoration: underline;
}

.zrecords-comment-text {
    flex: 0 0 auto;
    gap: 10px;
    display: flex;
}

.related-count {
    color: var(--zrecords-disabled);
}

/* 分页控件样式 */
.zrecords-pagination {
    overflow: visible;
    text-align: center;
    margin-top: 15px;
    justify-content: center;
}

.zrecords-pagination .pagination {
    position: relative;
    display: flex;
    justify-content: center;
}

.zrecords-pagination .page-number {
    width: 2rem;
    background: var(--heo-card-bg);
    height: 2rem;
    line-height: calc(2rem - 2px);
    border-radius: 8px !important;
    margin: 0 0.3rem;
    box-shadow: var(--heo-shadow-border);
    border: var(--style-border);
    transition: 0.3s;
}

.zrecords-pagination .page-number.current {
    background: var(--heo-theme);
    border: var(--style-border-hover);
    box-shadow: var(--heo-shadow-theme);
}

.zrecords-pagination .page-number.current:hover {
    background: var(--heo-theme);
    box-shadow: var(--heo-shadow-theme);
    color: var(--heo-white);
}

.zrecords-pagination .page-number:hover {
    color: var(--heo-theme);
    border: var(--style-border-hover);
    box-shadow: var(--heo-shadow-main);
    transform: scale(1.03);
}

.zrecords-pagination .page-number:hover:not(.current) {
    transform: scale(1.03);
}

.zrecords-pagination .page-number:active {
    transform: scale(0.97);
}

.zrecords-pagination span.space {
    margin: 0 0.3rem;
}

.zrecords-pagination a.extend.next,
.zrecords-pagination a.extend.prev {
    width: 4rem;
    height: 2rem;
    line-height: 1.9rem;
    border-radius: 8px !important;
    background: var(--heo-card-bg);
    box-shadow: var(--heo-shadow-border);
    position: absolute;
    border: var(--style-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.3s;
}

.zrecords-pagination a.extend.next i,
.zrecords-pagination a.extend.prev i {
    transition: 0.3s;
}

.zrecords-pagination a.extend.next {
    overflow: hidden;
    right: 2px;
}

.zrecords-pagination a.extend.prev {
    overflow: hidden;
    left: 2px;
}

.zrecords-pagination a.extend.next .pagination_tips_next {
    margin-left: -32px;
    transition: .3s ease-out 0s;
    opacity: 0;
}

.zrecords-pagination a.extend.next:hover .pagination_tips_next {
    margin-left: 2px;
    opacity: 1;
    white-space: nowrap;
}

.zrecords-pagination a.extend.prev .pagination_tips_prev {
    margin-right: -32px;
    transition: .3s ease-out 0s;
    opacity: 0;
}

.zrecords-pagination a.extend.prev:hover .pagination_tips_prev {
    margin-right: 2px;
    opacity: 1;
    white-space: nowrap;
}

.zrecords-pagination a.extend.next:hover,
.zrecords-pagination a.extend.prev:hover {
    color: var(--heo-theme);
    border: var(--style-border-hover);
    box-shadow: var(--heo-shadow-main);
    transform: scale(1.03);
}

.zrecords-pagination a.extend.next:active,
.zrecords-pagination a.extend.prev:active {
    transform: scale(0.97);
}

/* 总记录数显示样式 */
.zrecords-total-count {
    text-align: center;
    margin-top: 15px;
    color: var(--zrecords-disabled);
    font-size: 0.8rem;
}

#totalCountNumber {
    color: white;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .zrecords-top-section {
        flex-direction: column;
    }
    
    .zrecords-cover-section {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    
    .zrecords-cover-placeholder {
        width: 100px;
        height: 133px;
    }
    
    .zrecords-score-section {
        flex-direction: column;
        justify-content: space-between;
    }
    
    .zrecords-score-box {
        width: 45%;
    }
    
    .zrecords-chart-container {
        width: 45%;
        height: 120px;
    }
    
    .zrecords-filter-controls {
        width: 100%;
    }
    
    .zrecords-search-input,
    .zrecords-filter-select,
    .zrecords-tag-selector {
        min-width: 100%;
    }
}