/* 全局样式 */
.layui-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #fff;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    white-space: nowrap;
}
.layui-logo .layui-icon { font-size: 24px; }

.content-frame {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 60px);
}

/* 页面通用 */
.page-container { padding: 15px; }
.page-title { margin-bottom: 15px; }
.toolbar { margin-bottom: 10px; }
.toolbar .layui-btn + .layui-btn { margin-left: 10px; }

/* 表格状态标签 */
.status-active { color: #5FB878; }
.status-inactive { color: #FF5722; }
.match-yes { color: #5FB878; }
.match-no { color: #FF5722; font-weight: bold; }

/* 登录页 */
.login-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box {
    width: 400px;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 22px;
}
.login-box .logo-icon {
    text-align: center;
    font-size: 48px;
    color: #667eea;
    margin-bottom: 15px;
}

/* 配货单打印样式 */
.pick-detail { padding: 20px; }
.pick-location-group {
    margin-bottom: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    overflow: hidden;
}
.pick-location-header {
    background: #f2f2f2;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 15px;
    border-bottom: 1px solid #e6e6e6;
}
.pick-location-body { padding: 0; }

@media print {
    .layui-header, .layui-side, .no-print { display: none !important; }
    .layui-body { left: 0 !important; }
    .content-frame { height: auto !important; }
}
