/* 后台自定义样式 */

body {
    background: #f2f3f5;
}

/* 布局 */
.layui-logo {
    font-weight: bold;
    letter-spacing: 1px;
}
.layui-body {
    overflow-y: auto;
}
.layui-main {
    padding: 16px;
    width: 100%;
}

/* 面板 */
.panel {
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
}
.panel-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
}

/* 筛选栏 */
.filter-bar {
    margin-bottom: 12px;
}
.filter-bar .layui-inline {
    margin-right: 8px;
}
.filter-bar .layui-input {
    width: 180px;
}

/* 统计卡片 */
.stat-cards {
    margin-bottom: 16px;
}
.stat-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-right: 16px;
    flex-shrink: 0;
}
.stat-info {
    flex: 1;
}
.stat-num {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}
.stat-label {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

/* 今日动态 */
.today-stats {
    padding: 8px 0;
}
.today-item {
    display: inline-block;
    margin-right: 40px;
    font-size: 14px;
    color: #666;
}
.today-item b {
    color: #07c160;
    font-size: 18px;
    margin: 0 4px;
}

/* 登录页 */
.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #07c160, #05a54f);
}
.login-box {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    width: 360px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.login-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}
.login-sub {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin: 8px 0 30px;
}
.login-btn {
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    background: #07c160;
}
