/* 黑色背景 + 白蓝风格分页 */
        .layui-laypage {
            font-family: 'Arial', sans-serif;
        }

/* 分页按钮基础样式 */
.layui-laypage a,
.layui-laypage span {
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 3px;
    border-radius: 4px;
    border: 1px solid #2d2d2d;
    background-color: #1a1a1a;
    color: #e0e0e0;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}

/* 下拉选择框样式 */
.layui-laypage-limits select {
    height: 32px;
    border-radius: 4px;
    border: 1px solid #2d2d2d;
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 0 25px 0 10px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' 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 8px center;
    cursor: pointer;
}

/* 悬停效果 */
.layui-laypage a:hover,
.layui-laypage-limits select:hover {
    border-color: #1E9FFF;
    color: #1E9FFF;
}

/* 当前页码样式 */
.layui-laypage-curr .layui-laypage-em {
    background-color: #1E9FFF !important;
    color: white !important;
    border-radius: 4px;
}

/* 禁用按钮样式 */
.layui-laypage a[lay-page="prev"].layui-disabled,
.layui-laypage a[lay-page="next"].layui-disabled,
.layui-laypage a[lay-page="first"].layui-disabled,
.layui-laypage a[lay-page="last"].layui-disabled {
    color: #666 !important;
    border-color: #2d2d2d !important;
    cursor: not-allowed;
}

/* 下拉选项样式 */
.layui-laypage-limits option {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

/* 计数文字样式 */
.layui-laypage-count {
    color: #aaa;
    margin-right: 15px;
}



/* 用户下拉菜单样式 */
.user-dropdown {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-info:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.user-info:active {
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin: 8px 0 0 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 添加一个小箭头指示器 */
.user-info::after {
    content: '▼';
    font-size: 10px;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.user-dropdown:hover .user-info::after {
    transform: rotate(180deg);
}

/* 游客模式样式 */
.guest-mode .guest-info {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.guest-mode .guest-info:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    border-color: rgba(255, 193, 7, 0.5);
    color: #fff3cd;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .auth-buttons {
        flex-direction: column;
        gap: 5px;
    }

    .auth-btn {
        padding: 6px 16px;
        font-size: 13px;
    }

    .dropdown-menu {
        right: -10px;
    }
}