/* 管理员用户页面样式 */
.admin-users {
    padding: 20px;
    background: #f5f7fa;
    min-height: 100vh;
}

/* 页面标题 */
.content-header {
    margin-bottom: 24px;
}

.content-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #303133;
    margin: 0;
}

/* 统计卡片容器 */
.admin-user-stats-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* 统计卡片 */
.admin-user-stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.admin-user-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-user-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.admin-user-stats-card:hover::before {
    opacity: 1;
}

.admin-user-stats-card.active {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

/* 不同类型卡片的颜色 */
.admin-user-stats-card:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.admin-user-stats-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.admin-user-stats-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.admin-user-stats-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* 卡片数字 */
.admin-user-stats-card-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

/* 卡片文字 */
.admin-user-stats-card-text {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 搜索栏样式 */
.admin-users .search-bar {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.1);
}

/* 表格样式 */
.admin-users .el-table {
    margin-bottom: 20px;
}

/* 分页器样式 */
.admin-users .pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* 对话框表单样式 */
.admin-users .el-dialog__body {
    padding: 20px 40px;
}

.admin-users .el-form-item {
    margin-bottom: 20px;
}

/* 按钮间距 */
.admin-users .el-button + .el-button {
    margin-left: 10px;
}

/* 表格操作按钮样式 */
.admin-users .el-table .el-button--small {
    padding: 6px 12px;
    font-size: 12px;
}

/* 加载状态样式 */
.admin-users .el-loading-mask {
    background-color: rgba(255,255,255,0.8);
}