        /* ===== 品牌主题（青嵩科技） ===== */
        :root {
            --brand: #0E8F8A;
            --brand-hover: #0B7A76;
            --brand-soft: #E6F7F6;
            --brand-navy: #0A1F36;
            --brand-navy-2: #132A42;
            --el-color-primary: #0E8F8A;
            --el-color-primary-light-3: #4BAEAA;
            --el-color-primary-light-5: #87C9C6;
            --el-color-primary-light-7: #B3DEDC;
            --el-color-primary-light-8: #CCE9E8;
            --el-color-primary-light-9: #E6F4F3;
            --el-color-primary-dark-2: #0B7270;
        }

        /* ===== 全局重置 & 样式 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        body {
            background: #F0F4F9;
            height: 100vh;
            overflow: hidden;
            -webkit-tap-highlight-color: transparent;
        }
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-thumb {
            background: #CBD5E1;
            border-radius: 8px;
        }

        /* ===== 登录页 ===== */
        .login-page {
            height: 100vh;
            height: 100dvh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 16px;
            background:
                radial-gradient(ellipse at 20% 10%, rgba(14, 143, 138, 0.35), transparent 50%),
                radial-gradient(ellipse at 90% 80%, rgba(10, 61, 72, 0.45), transparent 45%),
                linear-gradient(160deg, #0A1F36 0%, #0F172A 45%, #0A3D48 100%);
        }
        .login-card {
            width: 400px;
            max-width: 100%;
            padding: 36px 28px 32px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
        }
        .login-card .logo {
            text-align: center;
            margin-bottom: 28px;
        }
        .login-card .logo .brand-logo {
            width: 168px;
            max-width: 70%;
            height: auto;
            display: block;
            margin: 0 auto 12px;
        }
        .login-card .logo .login-slogan {
            color: #64748B;
            font-size: 14px;
            line-height: 1.5;
        }
        .login-card .logo i {
            font-size: 48px;
            color: #0E8F8A;
        }
        .login-card .logo h1 {
            font-size: 24px;
            margin-top: 12px;
            color: #0F172A;
            font-weight: 700;
        }
        .login-card .logo p {
            color: #64748B;
            font-size: 14px;
        }
        .login-card .el-form-item {
            margin-bottom: 22px;
        }
        .login-card .el-button {
            width: 100%;
        }
        .login-card .demo-tip {
            margin-top: 16px;
            font-size: 13px;
            color: #94A3B8;
            text-align: center;
            background: #F8FAFC;
            padding: 10px;
            border-radius: 8px;
        }
        .login-card .demo-tip code {
            background: #E2E8F0;
            padding: 2px 8px;
            border-radius: 4px;
            color: #0F172A;
        }

        /* ===== 主布局 ===== */
        .app-container {
            display: flex;
            height: 100vh;
        }

        /* ===== 侧边栏 ===== */
        .sidebar {
            width: 240px;
            background: linear-gradient(180deg, #0A1F36 0%, #0F172A 100%);
            color: #94A3B8;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            transition: transform 0.28s ease, width 0.28s ease;
            overflow-y: auto;
            overflow-x: hidden;
            z-index: 40;
        }
        .sidebar-mask {
            display: none;
        }
        .sidebar .logo {
            display: flex;
            align-items: center;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            gap: 12px;
        }
        .sidebar .logo .brand-logo-side {
            width: 42px;
            height: 42px;
            object-fit: cover;
            object-position: top center;
            border-radius: 10px;
            background: #fff;
            flex-shrink: 0;
        }
        .sidebar .logo .brand-text {
            display: flex;
            flex-direction: column;
            min-width: 0;
            gap: 2px;
        }
        .sidebar .logo .brand-name {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }
        .sidebar .logo .brand-en {
            font-size: 10px;
            color: #64748B;
            letter-spacing: 0.2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .sidebar .logo i {
            font-size: 28px;
            color: #0E8F8A;
        }
        .sidebar .logo span {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
        }
        .sidebar .menu {
            padding: 16px 12px;
            flex: 1;
        }
        .sidebar .menu-item {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 4px;
            color: #94A3B8;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.2s;
            gap: 14px;
        }
        .sidebar .menu-item i {
            width: 20px;
            font-size: 18px;
            text-align: center;
        }
        .sidebar .menu-item:hover {
            background: #1E293B;
            color: #E2E8F0;
        }
        .sidebar .menu-item.active {
            background: #1E293B;
            color: #fff;
            font-weight: 500;
            border-left: 3px solid #0E8F8A;
        }
        .sidebar .menu-item .badge {
            margin-left: auto;
            background: #0E8F8A;
            color: #fff;
            font-size: 11px;
            border-radius: 12px;
            padding: 0 8px;
            line-height: 20px;
        }
        .sidebar .user-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #94A3B8;
            font-size: 14px;
        }
        .sidebar .user-footer .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #0E8F8A;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            overflow: hidden;
            flex-shrink: 0;
        }
        .sidebar .user-footer .avatar.has-img,
        .topbar .right .user-info .avatar-sm.has-img,
        .org-avatar.has-img,
        .profile-avatar.has-img {
            background: #E2E8F0;
        }
        .sidebar .user-footer .avatar img,
        .topbar .right .user-info .avatar-sm img,
        .org-avatar img,
        .profile-avatar img,
        .emp-avatar-picker img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ===== 主区域 ===== */
        .main {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        /* ===== 顶部导航 ===== */
        .topbar {
            height: 64px;
            background: #fff;
            padding: 0 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
            flex-shrink: 0;
            gap: 16px;
            border-bottom: 1px solid #E9EEF4;
        }
        .topbar .left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
        }
        .topbar .left .breadcrumb {
            font-size: 16px;
            font-weight: 500;
            color: #1E293B;
        }
        .topbar .menu-toggle {
            display: none;
        }
        .topbar .brand-logo-top {
            display: none;
            width: 34px;
            height: 34px;
            object-fit: cover;
            object-position: top center;
            border-radius: 8px;
            background: #fff;
            flex-shrink: 0;
        }
        .topbar .user-name-text {
            font-size: 14px;
            color: #1E293B;
        }
        .topbar .user-chevron {
            font-size: 12px;
            color: #94A3B8;
        }
        .m-search-bar,
        .m-tabbar {
            display: none;
        }
        .topbar .left .search-box {
            position: relative;
            max-width: 280px;
            width: 100%;
        }
        .topbar .left .search-box i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #94A3B8;
        }
        .topbar .left .search-box input {
            width: 100%;
            height: 38px;
            padding-left: 38px;
            border: 1px solid #E2E8F0;
            border-radius: 8px;
            background: #F8FAFC;
            font-size: 14px;
            outline: none;
            transition: 0.2s;
        }
        .topbar .left .search-box input:focus {
            border-color: #0E8F8A;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(14, 143, 138, 0.12);
        }
        .topbar .right {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .topbar .right .icon-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #475569;
            font-size: 18px;
            cursor: pointer;
            transition: 0.2s;
            background: transparent;
            border: none;
        }
        .topbar .right .icon-btn:hover {
            background: #F1F5F9;
        }
        .topbar .right .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 4px 12px 4px 4px;
            border-radius: 30px;
            transition: 0.2s;
            position: relative;
        }
        .topbar .right .user-info:hover {
            background: #F1F5F9;
        }
        .topbar .right .user-info .avatar-sm {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #0E8F8A;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            overflow: hidden;
            flex-shrink: 0;
        }
        .topbar .right .user-info .dropdown {
            display: none;
            position: absolute;
            top: 48px;
            right: 0;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            min-width: 148px;
            z-index: 100;
        }
        .topbar .right .user-info:hover .dropdown {
            display: block;
        }
        .topbar .right .user-info .dropdown-item {
            padding: 10px 16px;
            font-size: 14px;
            color: #1E293B;
            cursor: pointer;
            transition: 0.15s;
        }
        .topbar .right .user-info .dropdown-item:hover {
            background: #F1F5F9;
        }
        .topbar .right .user-info .dropdown-item i {
            margin-right: 8px;
            width: 18px;
            color: #64748B;
        }

        /* ===== 内容 ===== */
        .content {
            flex: 1;
            padding: 24px 28px;
            overflow-y: auto;
            background: #F0F4F9;
        }
        .card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
            padding: 20px;
            transition: box-shadow 0.3s;
        }
        .card:hover {
            box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.07);
        }
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        .card-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: #1E293B;
            margin: 0;
        }

        /* 统计卡片 */
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 24px;
        }
        .stat-item {
            background: #fff;
            border-radius: 12px;
            padding: 20px 24px;
            box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: 0.3s;
            border: 1px solid #F1F5F9;
        }
        .stat-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        .stat-item .icon-wrap {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #fff;
            flex-shrink: 0;
        }
        .stat-item .icon-wrap.blue {
            background: linear-gradient(135deg, #0E8F8A, #5B8DEF);
        }
        .stat-item .icon-wrap.green {
            background: linear-gradient(135deg, #10B981, #34D399);
        }
        .stat-item .icon-wrap.orange {
            background: linear-gradient(135deg, #F59E0B, #FBBF24);
        }
        .stat-item .icon-wrap.purple {
            background: linear-gradient(135deg, #8B5CF6, #A78BFA);
        }
        .stat-item .info .number {
            font-size: 28px;
            font-weight: 700;
            color: #0F172A;
            line-height: 1.2;
        }
        .stat-item .info .label {
            font-size: 14px;
            color: #64748B;
            margin-top: 4px;
        }
        .stat-item.clickable {
            cursor: pointer;
        }

        /* ===== 仪表盘增强 ===== */
        .dash-page {
            animation: dashFadeIn 0.35s ease;
        }
        @keyframes dashFadeIn {
            from { opacity: 0; transform: translateY(6px); }
            to { opacity: 1; transform: none; }
        }
        .dash-hero {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 22px 26px;
            border-radius: 16px;
            margin-bottom: 20px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .dash-hero.admin {
            background: linear-gradient(135deg, #0F172A 0%, #0A3D48 55%, #0E8F8A 100%);
        }
        .dash-hero.employee {
            background: linear-gradient(135deg, #0F766E 0%, #0D9488 50%, #14B8A6 100%);
        }
        .dash-hero::after {
            content: '';
            position: absolute;
            right: -40px;
            top: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }
        .dash-hello {
            font-size: 22px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .dash-role-badge {
            font-size: 12px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,0.18);
            border: 1px solid rgba(255,255,255,0.25);
        }
        .dash-sub {
            margin-top: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.78);
        }
        .dash-hero-meta {
            text-align: right;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }
        .dash-date {
            font-size: 13px;
            color: rgba(255,255,255,0.75);
            margin-bottom: 10px;
        }
        .dash-quick {
            display: flex;
            gap: 8px;
            justify-content: flex-end;
            flex-wrap: wrap;
        }
        .dash-qa {
            border: 1px solid rgba(255,255,255,0.28);
            background: rgba(255,255,255,0.12);
            color: #fff;
            border-radius: 8px;
            padding: 7px 12px;
            font-size: 13px;
            cursor: pointer;
            transition: 0.2s;
        }
        .dash-qa:hover {
            background: rgba(255,255,255,0.22);
        }
        .dash-qa.warn {
            background: rgba(245, 158, 11, 0.28);
            border-color: rgba(255,255,255,0.4);
        }
        .dash-qa i { margin-right: 4px; }

        .dash-stats { margin-bottom: 16px; }

        .dash-alert-row {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }
        .dash-alert-row.emp {
            grid-template-columns: repeat(4, 1fr);
        }
        .dash-alert {
            background: #fff;
            border: 1px solid #E8EEF5;
            border-radius: 12px;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: 0.2s;
        }
        .dash-alert:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
        }
        .dash-alert i {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #EFF6FF;
            color: #0E8F8A;
            flex-shrink: 0;
        }
        .dash-alert.warn i { background: #FFF7ED; color: #F59E0B; }
        .dash-alert.danger i { background: #FEF2F2; color: #EF4444; }
        .dash-alert strong {
            display: block;
            font-size: 20px;
            color: #0F172A;
            line-height: 1.2;
        }
        .dash-alert span {
            font-size: 12px;
            color: #64748B;
        }
        .dash-alert-action {
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
            cursor: default;
        }
        .dash-alert-action:hover { transform: none; }
        .dash-alert-main {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
        .dash-remind-btn {
            border: none;
            background: linear-gradient(135deg, #F59E0B, #F97316);
            color: #fff;
            border-radius: 8px;
            padding: 7px 10px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
        }
        .dash-remind-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .dash-week-card { margin-bottom: 16px; }
        .dash-week-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 12px;
        }
        .dash-legend {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: #64748B;
        }
        .dash-legend .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }
        .dash-legend .dot.good { background: #10B981; }
        .dash-legend .dot.partial { background: #F59E0B; }
        .dash-legend .dot.bad { background: #EF4444; }
        .dash-legend .dot.empty { background: #CBD5E1; }
        .dash-week-cal {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }
        .dash-week-day {
            border: 1px solid #E8EEF5;
            border-radius: 12px;
            padding: 12px 10px;
            background: #F8FAFC;
            cursor: pointer;
            transition: 0.2s;
            min-height: 128px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .dash-week-day:hover {
            border-color: #93C5FD;
            box-shadow: 0 6px 16px rgba(37, 99, 235, 0.08);
        }
        .dash-week-day.today {
            border-color: #0E8F8A;
            background: linear-gradient(180deg, #EFF6FF 0%, #fff 60%);
            box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
        }
        .dash-week-day.future {
            opacity: 0.72;
        }
        .dash-week-day.good { border-top: 3px solid #10B981; }
        .dash-week-day.partial { border-top: 3px solid #F59E0B; }
        .dash-week-day.bad { border-top: 3px solid #EF4444; }
        .dash-week-day.empty { border-top: 3px solid #CBD5E1; }
        .dash-week-day.none { border-top: 3px solid #E2E8F0; }
        .dash-week-day .wd-top {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 4px;
        }
        .dash-week-day .wd-name {
            font-size: 13px;
            font-weight: 700;
            color: #0F172A;
        }
        .dash-week-day .wd-date {
            font-size: 11px;
            color: #94A3B8;
        }
        .dash-week-day .wd-status {
            font-size: 12px;
            font-weight: 600;
            color: #475569;
        }
        .dash-week-day.good .wd-status { color: #059669; }
        .dash-week-day.partial .wd-status { color: #D97706; }
        .dash-week-day.bad .wd-status { color: #DC2626; }
        .dash-week-day .wd-stats {
            display: flex;
            flex-direction: column;
            gap: 2px;
            font-size: 11px;
            color: #64748B;
            margin-top: auto;
        }
        .dash-week-day .wd-remind {
            margin-top: 6px;
            border: none;
            background: #F59E0B;
            color: #fff;
            border-radius: 6px;
            padding: 5px 0;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
        }
        .dash-week-day .wd-remind.emp {
            background: #0D9488;
        }
        .dash-week-day .wd-remind:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Element Plus 日历强制中文周标题兜底 */
        .el-calendar-table thead th {
            font-size: 13px;
        }

        .dash-grid-main {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
            align-items: stretch;
        }
        .dash-grid-main > .card {
            display: flex;
            flex-direction: column;
            min-height: 300px;
        }
        .dash-grid-secondary {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .dash-chart-card .card-header {
            margin-bottom: 12px;
        }
        .dash-chart {
            flex: 1;
            display: flex;
            gap: 10px;
            min-height: 220px;
            padding: 0 4px 0 0;
        }
        .dash-chart-y {
            width: 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-end;
            padding: 2px 0 30px;
            font-size: 11px;
            color: #94A3B8;
            line-height: 1;
            flex-shrink: 0;
            user-select: none;
        }
        .dash-chart-main {
            flex: 1;
            position: relative;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }
        .dash-chart-grid {
            position: absolute;
            left: 0;
            right: 0;
            top: 20px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            pointer-events: none;
            z-index: 0;
        }
        .dash-chart-grid i {
            display: block;
            height: 0;
            border-top: 1px dashed #E2E8F0;
        }
        .dash-bars {
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 6px;
            padding: 0 2px;
            min-height: 0;
        }
        .dash-bar-col {
            flex: 1;
            min-width: 0;
            max-width: 64px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .dash-bar-val {
            height: 20px;
            line-height: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #334155;
        }
        .dash-bar-track {
            flex: 1;
            width: 100%;
            max-width: 44px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            min-height: 0;
        }
        .dash-bar {
            width: 100%;
            max-width: 40px;
            border-radius: 8px 8px 3px 3px;
            background: linear-gradient(180deg, #5EC4C1 0%, #0E8F8A 100%);
            transition: height 0.35s ease;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.18);
            min-height: 0;
        }
        .dash-chart.employee .dash-bar {
            background: linear-gradient(180deg, #5EEAD4 0%, #0D9488 100%);
            box-shadow: 0 4px 10px rgba(13, 148, 136, 0.18);
        }
        .dash-bar-col.muted .dash-bar {
            height: 4px !important;
            background: #CBD5E1;
            box-shadow: none;
        }
        .dash-bar-col.today .dash-bar {
            box-shadow: 0 6px 14px rgba(37, 99, 235, 0.28);
        }
        .dash-chart.employee .dash-bar-col.today .dash-bar {
            box-shadow: 0 6px 14px rgba(13, 148, 136, 0.28);
        }
        .dash-bar-day {
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #64748B;
            white-space: nowrap;
        }
        .dash-bar-col.today .dash-bar-day {
            color: #0E8F8A;
            font-weight: 700;
        }
        .dash-chart.employee .dash-bar-col.today .dash-bar-day {
            color: #0D9488;
        }

        .dash-follow-list {
            flex: 1;
            max-height: none;
            overflow-y: auto;
            min-height: 0;
        }
        .dash-follow-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding: 12px 4px;
            border-bottom: 1px solid #F1F5F9;
            cursor: pointer;
            border-radius: 8px;
            transition: 0.15s;
        }
        .dash-follow-item:hover { background: #F8FAFC; }
        .dash-follow-item:last-child { border-bottom: none; }
        .dash-follow-item .left { min-width: 0; }
        .dash-follow-item .left strong {
            display: block;
            color: #0F172A;
            font-size: 14px;
        }
        .dash-follow-item .meta {
            font-size: 12px;
            color: #94A3B8;
        }
        .dash-follow-item .right {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #64748B;
            flex-shrink: 0;
        }
        .dash-follow-item.overdue .right { color: #EF4444; }
        .dash-follow-item.today .right { color: #D97706; }

        .dash-rank-list { display: flex; flex-direction: column; gap: 10px; }
        .dash-rank-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 10px;
            background: #F8FAFC;
        }
        .dash-rank-item .rank {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            background: #E2E8F0;
            color: #475569;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .dash-rank-item .rank.r1 { background: #FEF3C7; color: #B45309; }
        .dash-rank-item .rank.r2 { background: #E2E8F0; color: #475569; }
        .dash-rank-item .rank.r3 { background: #FFEDD5; color: #C2410C; }
        .dash-rank-item .who { flex: 1; min-width: 0; }
        .dash-rank-item .who strong { display: block; font-size: 14px; color: #0F172A; }
        .dash-rank-item .who span { font-size: 12px; color: #94A3B8; }
        .dash-rank-item .amt { text-align: right; }
        .dash-rank-item .amt strong { display: block; font-size: 14px; color: #0F172A; }
        .dash-rank-item .amt span { font-size: 12px; color: #64748B; }

        .dash-funnel { display: flex; flex-direction: column; gap: 12px; }
        .dash-funnel-row {
            display: grid;
            grid-template-columns: 56px 1fr 36px;
            align-items: center;
            gap: 10px;
        }
        .dash-funnel-row .lab { font-size: 13px; color: #64748B; }
        .dash-funnel-row .track {
            height: 10px;
            background: #F1F5F9;
            border-radius: 999px;
            overflow: hidden;
        }
        .dash-funnel-row .fill {
            height: 100%;
            border-radius: 999px;
            transition: width 0.4s ease;
        }
        .dash-funnel-row .fill.potential { background: #94A3B8; }
        .dash-funnel-row .fill.following { background: #14A3A0; }
        .dash-funnel-row .fill.negotiated { background: #F59E0B; }
        .dash-funnel-row .fill.closed { background: #10B981; }
        .dash-funnel-row .fill.lost { background: #EF4444; }
        .dash-funnel-row .num {
            text-align: right;
            font-size: 13px;
            font-weight: 600;
            color: #0F172A;
        }

        .dash-emp-top {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }
        .dash-progress-grid { display: flex; flex-direction: column; gap: 16px; }
        .dash-prog .prog-head {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            font-size: 13px;
            color: #64748B;
        }
        .dash-prog .prog-head strong { color: #0F172A; }
        .dash-prog-meta {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        .dash-prog-meta > div {
            background: #F8FAFC;
            border-radius: 10px;
            padding: 12px;
        }
        .dash-prog-meta span {
            display: block;
            font-size: 12px;
            color: #94A3B8;
            margin-bottom: 4px;
        }
        .dash-prog-meta strong {
            font-size: 16px;
            color: #0F172A;
        }
        .dash-plan-body .plan-nums {
            display: flex;
            gap: 16px;
            margin-bottom: 10px;
            font-size: 13px;
            color: #334155;
        }
        .dash-plan-body .plan-nums i { color: #0D9488; margin-right: 4px; }
        .dash-plan-body .plan-content {
            font-size: 13px;
            color: #64748B;
            margin-bottom: 12px;
            line-height: 1.5;
        }
        .dash-plan-empty {
            text-align: center;
            padding: 28px 12px;
            color: #94A3B8;
        }
        .dash-plan-empty p { margin-bottom: 12px; }
        .dash-empty {
            padding: 28px 12px;
            text-align: center;
            color: #94A3B8;
            font-size: 13px;
        }

        /* 状态标签 */
        .status-tag {
            padding: 2px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
        }
        .status-tag.potential {
            background: #E2E8F0;
            color: #475569;
        }
        .status-tag.following {
            background: #FEF3C7;
            color: #B45309;
        }
        .status-tag.negotiated {
            background: #DBEAFE;
            color: #1D4ED8;
        }
        .status-tag.closed {
            background: #D1FAE5;
            color: #065F46;
        }
        .status-tag.lost {
            background: #FEE2E2;
            color: #991B1B;
        }
        .status-tag.pending {
            background: #E2E8F0;
            color: #475569;
        }
        .status-tag.assigned {
            background: #DBEAFE;
            color: #1D4ED8;
        }
        .status-tag.plan-pending {
            background: #FEF3C7;
            color: #B45309;
        }
        .status-tag.plan-approved {
            background: #D1FAE5;
            color: #065F46;
        }
        .status-tag.plan-rejected {
            background: #FEE2E2;
            color: #991B1B;
        }
        .el-table .el-table__body tr:hover > td {
            background-color: #EBF2FF !important;
        }
        .toolbar-row {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .lead-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin-bottom: 18px;
        }
        .lead-stat {
            position: relative;
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            padding: 16px 18px 16px 20px;
            overflow: hidden;
            transition: transform .2s, box-shadow .2s;
            cursor: default;
        }
        .lead-stat:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
        }
        .lead-stat::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px;
            background: var(--accent, #94A3B8);
        }
        .lead-stat.total { --accent: #64748B; }
        .lead-stat.pending { --accent: #0E8F8A; }
        .lead-stat.assigned { --accent: #10B981; }
        .lead-stat.today { --accent: #F59E0B; }
        .lead-stat.clickable { cursor: pointer; }
        .lead-stat.clickable.active {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(14, 143, 138, 0.15);
        }
        .lead-stat-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .lead-stat .label {
            font-size: 13px;
            color: #64748B;
            font-weight: 500;
            margin-bottom: 0;
        }
        .lead-stat-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: #fff;
            background: var(--accent);
        }
        .lead-stat .value {
            font-size: 28px;
            font-weight: 700;
            color: #0F172A;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }
        .lead-stat .value.pending { color: #0E8F8A; }
        .lead-stat .value.assigned { color: #10B981; }
        .lead-stat .sub {
            margin-top: 6px;
            font-size: 12px;
            color: #94A3B8;
        }
        .lead-page-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 16px;
        }
        .lead-page-head h2 {
            font-size: 18px;
            font-weight: 700;
            color: #0F172A;
            margin: 0 0 4px;
        }
        .lead-page-head p {
            margin: 0;
            font-size: 13px;
            color: #64748B;
        }
        .lead-page-actions {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
            flex-wrap: wrap;
            align-items: center;
        }
        .lead-btn-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 18px;
            height: 18px;
            margin-left: 6px;
            padding: 0 5px;
            border-radius: 9px;
            background: #E2E8F0;
            color: #475569;
            font-size: 11px;
            font-weight: 600;
            line-height: 1;
        }
        .lead-list-card .lead-list-header {
            align-items: center;
        }
        .lead-list-title {
            display: flex;
            align-items: baseline;
            gap: 10px;
        }
        .lead-list-title h3 {
            margin: 0;
        }
        .lead-list-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .lead-filter-panel {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 12px 14px;
            margin-bottom: 12px;
        }
        .lead-filter-row {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .lead-filter-search {
            width: 260px;
            max-width: 100%;
        }
        .lead-filter-item {
            width: 120px;
        }
        .lead-filter-batch {
            width: 180px;
        }
        .lead-filter-date {
            width: 240px;
        }
        .lead-filter-chips {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed #E2E8F0;
        }
        .lead-batch-bar {
            margin-top: 0;
        }
        .lead-batch-dialog-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
        }
        .lead-preview-bar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            margin-top: 12px;
            padding: 10px 12px;
            background: #F8FAFC;
            border-radius: 8px;
            border: 1px solid #E2E8F0;
            font-size: 13px;
            color: #475569;
        }
        .lead-preview-bar .ok { color: #059669; font-weight: 600; }
        .lead-preview-bar .bad { color: #DC2626; font-weight: 600; }
        .lead-upload-zone {
            border: 1.5px dashed #94A3B8;
            border-radius: 12px;
            padding: 36px 16px;
            text-align: center;
            background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
            cursor: pointer;
            transition: border-color .2s, background .2s, box-shadow .2s;
        }
        .lead-upload-zone:hover,
        .lead-upload-zone.dragover {
            border-color: #0E8F8A;
            background: #EFF6FF;
            box-shadow: inset 0 0 0 1px rgba(14, 143, 138, 0.15);
        }
        .lead-upload-zone i {
            font-size: 32px;
            color: #0E8F8A;
            margin-bottom: 10px;
        }
        .lead-upload-zone p {
            margin: 0;
            color: #334155;
            font-size: 14px;
            font-weight: 500;
        }
        .lead-upload-zone .hint {
            margin-top: 8px;
            font-size: 12px;
            color: #94A3B8;
        }
        .batch-active {
            background: #EFF6FF !important;
        }
        .el-table .batch-active > td {
            background: #EFF6FF !important;
        }
        .lead-num-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 28px;
            padding: 2px 8px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            background: #F1F5F9;
            color: #475569;
        }
        .lead-num-badge.success { background: #ECFDF5; color: #059669; }
        .lead-num-badge.warn { background: #FEF3C7; color: #D97706; }
        .lead-num-badge.danger { background: #FEE2E2; color: #DC2626; }
        .lead-num-badge.info { background: #EFF6FF; color: #0E8F8A; }
        .lead-empty {
            text-align: center;
            padding: 48px 16px;
            color: #94A3B8;
        }
        .lead-empty i {
            font-size: 40px;
            margin-bottom: 12px;
            opacity: 0.5;
            display: block;
        }
        .lead-empty p { margin: 0; font-size: 14px; }
        .lead-phone {
            font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
            font-size: 13px;
            letter-spacing: 0.3px;
        }
        .lead-phone.invalid { color: #DC2626; }
        .lead-list-meta {
            font-size: 12px;
            color: #94A3B8;
        }
        .lead-source-tag {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            background: #F1F5F9;
            color: #475569;
        }
        .assign-mode-tips {
            margin-top: 8px;
            padding: 10px 12px;
            background: #F8FAFC;
            border-radius: 8px;
            font-size: 12px;
            color: #64748B;
            line-height: 1.6;
        }
        @media (max-width: 900px) {
            .lead-stats { grid-template-columns: repeat(2, 1fr); }
            .lead-page-head { flex-direction: column; }
            .lead-filter-search,
            .lead-filter-item,
            .lead-filter-batch,
            .lead-filter-date { width: 100%; }
            .wp-head-actions { width: 100%; }
            .wp-date-nav { flex-wrap: wrap; }
        }

        /* ===== 工作进度 ===== */
        .wp-page .card {
            margin-bottom: 0;
        }
        .wp-head-actions {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
            flex-wrap: wrap;
            align-items: center;
        }
        .wp-date-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 4px 6px;
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
        }
        .wp-stats .lead-stat.today { --accent: #F59E0B; }
        .wp-emp {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .wp-avatar {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            background: linear-gradient(135deg, #0E8F8A, #5B8DEF);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .wp-avatar.lg {
            width: 48px;
            height: 48px;
            font-size: 18px;
            border-radius: 14px;
        }
        .wp-emp-name {
            font-weight: 600;
            color: #0F172A;
            font-size: 13px;
        }
        .wp-metric {
            padding: 2px 0;
        }
        .wp-metric-top {
            display: flex;
            align-items: baseline;
            gap: 2px;
            line-height: 1.2;
        }
        .wp-metric-actual {
            font-size: 16px;
            font-weight: 700;
            color: #0F172A;
        }
        .wp-metric-sep {
            color: #CBD5E1;
            margin: 0 2px;
        }
        .wp-metric-plan {
            font-size: 13px;
            color: #64748B;
            font-weight: 500;
        }
        .wp-metric-unit {
            font-size: 11px;
            color: #94A3B8;
            margin-left: 4px;
        }
        .wp-bar {
            margin-top: 6px;
            height: 6px;
            background: #F1F5F9;
            border-radius: 999px;
            overflow: hidden;
        }
        .wp-bar-fill {
            height: 100%;
            border-radius: 999px;
            transition: width .35s ease;
            min-width: 0;
        }
        .wp-bar-fill.calls {
            background: linear-gradient(90deg, #0E8F8A, #5EC4C1);
        }
        .wp-bar-fill.visits {
            background: linear-gradient(90deg, #10B981, #34D399);
        }
        .wp-metric-hint {
            margin-top: 4px;
            font-size: 11px;
            color: #94A3B8;
        }
        .wp-content {
            font-size: 13px;
            color: #334155;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.45;
        }
        .wp-unsubmitted {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #F59E0B;
            font-size: 12px;
            font-weight: 500;
            background: #FFFBEB;
            border: 1px solid #FDE68A;
            padding: 2px 10px;
            border-radius: 999px;
        }
        .wp-detail-hero {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            background: linear-gradient(135deg, #F8FBFF, #F0F7FF);
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            margin-bottom: 14px;
        }
        .wp-detail-name {
            font-size: 16px;
            font-weight: 700;
            color: #0F172A;
        }
        .wp-detail-date {
            font-size: 12px;
            color: #64748B;
            margin-top: 2px;
        }
        .wp-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .wp-detail-card {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 14px 16px;
        }
        .wp-detail-card .label {
            font-size: 12px;
            color: #64748B;
            margin-bottom: 6px;
        }
        .wp-detail-card .nums {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 8px;
        }
        .wp-detail-card .nums b {
            font-size: 22px;
            color: #0F172A;
        }
        .wp-detail-card .nums span {
            font-size: 13px;
            color: #94A3B8;
        }
        .wp-remind-badge {
            display: inline-block;
            padding: 2px 8px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 600;
            background: #FFF7ED;
            color: #C2410C;
            border: 1px solid #FED7AA;
        }
        .wp-remind-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 14px;
            padding: 12px 14px;
            border-radius: 10px;
            background: linear-gradient(135deg, #FFF7ED, #FFFBEB);
            border: 1px solid #FDBA74;
        }
        .wp-remind-banner-main {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            min-width: 0;
        }
        .wp-remind-banner-main > i {
            color: #EA580C;
            margin-top: 3px;
        }
        .wp-remind-banner-main strong {
            display: block;
            color: #9A3412;
            font-size: 13px;
        }
        .wp-remind-banner-main p {
            margin: 4px 0 0;
            color: #7C2D12;
            font-size: 13px;
            line-height: 1.4;
        }
        .wp-remind-banner-main small {
            color: #A16207;
            font-size: 11px;
        }
        .wp-remind-banner-actions {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }
        .wp-trend {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding: 8px 4px 4px;
        }
        .wp-trend-item {
            flex: 1;
            min-width: 64px;
            max-width: 96px;
            text-align: center;
            cursor: pointer;
            border-radius: 10px;
            padding: 8px 4px;
            transition: background .2s;
        }
        .wp-trend-item:hover {
            background: #F8FAFC;
        }
        .wp-trend-item.today {
            background: #EBF2FF;
            box-shadow: inset 0 0 0 1px #BFDBFE;
        }
        .wp-trend-item.future {
            opacity: .45;
            cursor: default;
        }
        .wp-trend-label {
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin-bottom: 8px;
            font-size: 12px;
            color: #334155;
            font-weight: 600;
        }
        .wp-trend-label small {
            font-weight: 500;
            color: #94A3B8;
            font-size: 11px;
        }
        .wp-trend-bars {
            display: flex;
            justify-content: center;
            gap: 6px;
            height: 88px;
            align-items: flex-end;
        }
        .wp-trend-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            width: 18px;
        }
        .wp-trend-track {
            width: 100%;
            height: 72px;
            background: #F1F5F9;
            border-radius: 6px;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }
        .wp-trend-fill {
            width: 100%;
            border-radius: 6px 6px 0 0;
            min-height: 0;
            transition: height .35s ease;
        }
        .wp-trend-fill.submit {
            background: linear-gradient(180deg, #5EC4C1, #0E8F8A);
        }
        .wp-trend-fill.achieve {
            background: linear-gradient(180deg, #34D399, #10B981);
        }
        .wp-trend-col span {
            font-size: 10px;
            color: #64748B;
        }
        .wp-trend-meta {
            margin-top: 6px;
            font-size: 10px;
            color: #94A3B8;
            white-space: nowrap;
        }

        /* 员工详情抽屉 */
        .wp-emp-panel {
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 0;
        }
        .wp-emp-panel-head {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
        }
        .wp-emp-toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }
        .wp-emp-body {
            flex: 1;
            overflow-y: auto;
            padding-right: 4px;
        }
        .wp-section {
            margin-top: 18px;
        }
        .wp-section h4 {
            margin: 0 0 10px;
            font-size: 14px;
            font-weight: 700;
            color: #0F172A;
        }
        .wp-section-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 10px;
        }
        .wp-section-head h4 { margin: 0; }
        .wp-plan-block {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 12px 14px;
        }
        .wp-plan-block p {
            margin: 0;
            color: #334155;
            font-size: 13px;
            line-height: 1.55;
            white-space: pre-wrap;
        }
        .wp-empty-soft {
            padding: 18px;
            text-align: center;
            color: #94A3B8;
            background: #F8FAFC;
            border: 1px dashed #E2E8F0;
            border-radius: 10px;
            font-size: 13px;
        }
        .wp-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .wp-tl-item {
            display: flex;
            gap: 12px;
            padding: 0 0 16px;
            position: relative;
        }
        .wp-tl-item:not(:last-child)::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 32px;
            bottom: 0;
            width: 2px;
            background: #E2E8F0;
        }
        .wp-tl-dot {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            flex-shrink: 0;
            font-size: 12px;
            z-index: 1;
        }
        .wp-tl-item.call .wp-tl-dot { background: linear-gradient(135deg, #0E8F8A, #5EC4C1); }
        .wp-tl-item.visit .wp-tl-dot { background: linear-gradient(135deg, #10B981, #34D399); }
        .wp-tl-body {
            flex: 1;
            min-width: 0;
            background: #fff;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 10px 12px;
        }
        .wp-tl-top {
            display: flex;
            justify-content: space-between;
            gap: 8px;
            align-items: baseline;
        }
        .wp-tl-top strong {
            font-size: 13px;
            color: #0F172A;
        }
        .wp-tl-top span {
            font-size: 11px;
            color: #94A3B8;
            white-space: nowrap;
        }
        .wp-tl-body p {
            margin: 6px 0 0;
            font-size: 13px;
            color: #475569;
            line-height: 1.45;
        }
        .wp-tl-meta {
            margin-top: 6px;
            font-size: 11px;
            color: #94A3B8;
        }
        .wp-remind-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .wp-remind-item {
            padding: 10px 12px;
            border-radius: 8px;
            background: #FFF7ED;
            border: 1px solid #FED7AA;
            font-size: 13px;
            color: #9A3412;
        }
        .wp-remind-item small {
            display: block;
            margin-top: 4px;
            color: #C2410C;
            font-size: 11px;
        }
        .wp-month-overview {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 12px;
        }
        .wp-mo-item {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 12px;
            text-align: center;
        }
        .wp-mo-item b {
            display: block;
            font-size: 20px;
            color: #0F172A;
            line-height: 1.2;
        }
        .wp-mo-item span {
            display: block;
            margin-top: 4px;
            font-size: 11px;
            color: #64748B;
        }
        .wp-month-legend {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 14px;
            margin-bottom: 12px;
            font-size: 12px;
            color: #64748B;
        }
        .wp-month-legend .lg {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 3px;
            margin-right: 4px;
            vertical-align: middle;
        }
        .wp-month-legend .lg.achieved { background: #10B981; }
        .wp-month-legend .lg.submitted { background: #0E8F8A; }
        .wp-month-legend .lg.pending { background: #F59E0B; }
        .wp-month-legend .lg.active { background: #8B5CF6; }
        .wp-month-legend .lg.miss { background: #FCA5A5; }
        .wp-month-legend .lg.future { background: #E2E8F0; }
        .wp-month-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }
        .wp-month-wd {
            text-align: center;
            font-size: 12px;
            color: #94A3B8;
            font-weight: 600;
            padding: 4px 0;
        }
        .wp-month-cell {
            min-height: 78px;
            border-radius: 10px;
            border: 1px solid #E2E8F0;
            background: #fff;
            padding: 8px;
            cursor: pointer;
            transition: .15s;
            position: relative;
        }
        .wp-month-cell.pad {
            border: none;
            background: transparent;
            cursor: default;
            min-height: 0;
        }
        .wp-month-cell:not(.pad):hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
        }
        .wp-month-cell.today {
            box-shadow: inset 0 0 0 2px #0E8F8A;
        }
        .wp-month-cell.selected {
            box-shadow: inset 0 0 0 2px #0F172A;
        }
        .wp-month-cell.achieved { background: #ECFDF5; border-color: #A7F3D0; }
        .wp-month-cell.submitted { background: #EFF6FF; border-color: #BFDBFE; }
        .wp-month-cell.pending { background: #FFFBEB; border-color: #FDE68A; }
        .wp-month-cell.active { background: #F5F3FF; border-color: #DDD6FE; }
        .wp-month-cell.miss { background: #FEF2F2; border-color: #FECACA; }
        .wp-month-cell.future {
            background: #F8FAFC;
            color: #CBD5E1;
            cursor: default;
        }
        .wp-mc-day {
            font-size: 13px;
            font-weight: 700;
            color: #0F172A;
        }
        .wp-month-cell.future .wp-mc-day { color: #CBD5E1; }
        .wp-mc-nums {
            margin-top: 6px;
            display: flex;
            flex-direction: column;
            gap: 2px;
            font-size: 11px;
            color: #64748B;
        }
        .wp-mc-tag {
            position: absolute;
            right: 6px;
            top: 6px;
            font-size: 10px;
            padding: 1px 6px;
            border-radius: 999px;
            background: #10B981;
            color: #fff;
            font-weight: 600;
        }
        .wp-mc-tag.soft { background: #0E8F8A; }
        .wp-mc-tag.warn { background: #F87171; }
        .wp-month-day-card {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 12px 14px;
        }
        .wp-month-day-card p {
            margin: 10px 0;
            font-size: 13px;
            color: #334155;
            line-height: 1.5;
        }
        @media (max-width: 900px) {
            .wp-month-overview { grid-template-columns: repeat(2, 1fr); }
            .wp-detail-grid { grid-template-columns: 1fr; }
            .wp-month-cell { min-height: 64px; padding: 6px; }
        }
        .customer-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }
        .customer-stat-chip {
            border: 1px solid #E2E8F0;
            background: #F8FAFC;
            color: #475569;
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s;
            user-select: none;
        }
        .customer-stat-chip:hover {
            border-color: #0E8F8A;
            color: #0E8F8A;
        }
        .customer-stat-chip.active {
            background: #EBF2FF;
            border-color: #0E8F8A;
            color: #0E8F8A;
            font-weight: 600;
        }
        .customer-stat-chip .num {
            font-weight: 700;
            margin-left: 4px;
        }
        .customer-stat-chip.danger {
            color: #DC2626;
            border-color: #FECACA;
            background: #FEF2F2;
        }
        .customer-stat-chip.danger.active {
            background: #FEE2E2;
            border-color: #EF4444;
        }
        .batch-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            background: #EBF2FF;
            border: 1px solid #BFDBFE;
            border-radius: 8px;
            padding: 10px 14px;
            margin-bottom: 12px;
            font-size: 13px;
            color: #1E40AF;
        }
        .follow-tag {
            display: inline-block;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 10px;
            line-height: 1.4;
        }
        .follow-tag.overdue {
            background: #FEE2E2;
            color: #B91C1C;
        }
        .follow-tag.today {
            background: #FEF3C7;
            color: #B45309;
        }
        .follow-tag.soon {
            background: #FFEDD5;
            color: #C2410C;
        }
        .follow-tag.upcoming {
            background: #DBEAFE;
            color: #1D4ED8;
        }
        .follow-tag.none {
            color: #94A3B8;
        }
        .phone-cell {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .phone-cell .copy-btn {
            color: #94A3B8;
            cursor: pointer;
            font-size: 12px;
        }
        .phone-cell .copy-btn:hover {
            color: #0E8F8A;
        }
        .table-empty-hint {
            color: #94A3B8;
        }
        .plan-box {
            background: #fff;
            border-radius: 12px;
            padding: 20px 24px;
            box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
            border: 1px solid #F1F5F9;
            margin-bottom: 20px;
        }
        .action-btn {
            color: #64748B;
            cursor: pointer;
            transition: 0.2s;
            padding: 4px 6px;
            border-radius: 4px;
            font-size: 16px;
        }
        .action-btn:hover {
            color: #0E8F8A;
            background: #EBF2FF;
        }
        .action-btn.danger:hover {
            color: #EF4444;
            background: #FEE2E2;
        }

        /* 绩效看板 */
        .performance-top {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }
        .perf-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px 24px;
            box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
            border: 1px solid #F1F5F9;
            position: relative;
        }
        .perf-card .perf-label {
            font-size: 14px;
            color: #64748B;
            margin-bottom: 6px;
        }
        .perf-card .perf-value {
            font-size: 32px;
            font-weight: 700;
            color: #0F172A;
        }
        .perf-card .perf-sub {
            font-size: 14px;
            color: #64748B;
            margin-top: 8px;
        }
        .perf-card .perf-badge {
            display: inline-block;
            padding: 4px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
        }
        .perf-badge.success {
            background: #D1FAE5;
            color: #065F46;
        }
        .perf-badge.danger {
            background: #FEE2E2;
            color: #991B1B;
        }
        .perf-benchmark {
            font-size: 12px;
            color: #94A3B8;
            margin-top: 4px;
            background: #F8FAFC;
            padding: 4px 10px;
            border-radius: 12px;
            display: inline-block;
        }

        /* 日历 */
        .cal-cell {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            font-size: 14px;
        }
        .cal-cell .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-top: 2px;
        }
        .cal-cell .dot.green {
            background: #10B981;
        }
        .cal-cell .dot.red {
            background: #EF4444;
        }
        .cal-cell .dot.gray {
            background: #CBD5E1;
        }

        /* 纯中文月历 */
        .cn-cal-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cn-cal-nav strong {
            font-size: 15px;
            color: #0F172A;
            min-width: 96px;
            text-align: center;
        }
        .cn-cal-nav-btn {
            border: 1px solid #E2E8F0;
            background: #fff;
            color: #475569;
            width: 28px;
            height: 28px;
            border-radius: 8px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .cn-cal-nav-btn.today {
            width: auto;
            padding: 0 10px;
            font-size: 12px;
        }
        .cn-cal-nav-btn:hover {
            border-color: #93C5FD;
            color: #0E8F8A;
        }
        .cn-calendar {
            user-select: none;
        }
        .cn-cal-head {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            margin-bottom: 8px;
        }
        .cn-cal-head span {
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: #64748B;
            padding: 8px 0;
        }
        .cn-cal-body {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
        }
        .cn-cal-cell {
            min-height: 72px;
            border-radius: 10px;
            background: #F8FAFC;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            border: 1px solid transparent;
            transition: background .15s, border-color .15s, transform .15s;
        }
        .cn-cal-cell.muted {
            opacity: 0.35;
        }
        .cn-cal-cell.today {
            background: #EFF6FF;
            border-color: #93C5FD;
        }
        .cn-cal-cell.clickable {
            cursor: pointer;
        }
        .cn-cal-cell.clickable:hover {
            background: #DBEAFE;
            border-color: #5EC4C1;
            transform: translateY(-1px);
        }
        .cn-cal-cell.selected {
            background: #DBEAFE;
            border-color: #0E8F8A;
            box-shadow: 0 0 0 2px rgba(14, 143, 138, 0.15);
        }
        .cn-cal-cell.future {
            cursor: not-allowed;
        }
        .cn-cal-num {
            font-size: 14px;
            color: #0F172A;
            font-weight: 600;
        }
        .cn-cal-cell .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }
        .cn-cal-cell .dot.green { background: #10B981; }
        .cn-cal-cell .dot.red { background: #EF4444; }
        .cn-cal-cell .dot.gray { background: #CBD5E1; }
        .cn-cal-mini {
            font-size: 11px;
            color: #64748B;
            line-height: 1;
        }
        .cn-cal-legend {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 14px;
            margin: 0 0 12px;
            font-size: 12px;
            color: #64748B;
        }
        .cn-cal-legend .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 4px;
            vertical-align: middle;
        }
        .cn-cal-legend .dot.green { background: #10B981; }
        .cn-cal-legend .dot.red { background: #EF4444; }
        .cn-cal-legend .dot.gray { background: #CBD5E1; }

        .perf-bottom-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 20px;
        }
        .perf-empty {
            text-align: center;
            color: #94A3B8;
            padding: 24px 12px;
            font-size: 13px;
        }
        .perf-rank {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #E2E8F0;
            color: #475569;
            font-size: 12px;
            font-weight: 700;
        }
        .perf-rank.r1 { background: #FEF3C7; color: #B45309; }
        .perf-rank.r2 { background: #E2E8F0; color: #475569; }
        .perf-rank.r3 { background: #FFEDD5; color: #C2410C; }
        .perf-name-link {
            color: #0E8F8A;
            cursor: pointer;
            font-weight: 600;
        }
        .perf-rank-table .el-table__row {
            cursor: pointer;
        }
        .perf-rate-cell {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .perf-rate-cell .el-progress {
            flex: 1;
        }
        .perf-rate-cell span {
            min-width: 40px;
            font-size: 12px;
            color: #475569;
        }
        .perf-day-summary {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            margin-bottom: 16px;
        }
        .perf-day-summary.self {
            grid-template-columns: repeat(4, 1fr);
        }
        .perf-day-summary .item {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 10px;
            padding: 12px 14px;
        }
        .perf-day-summary .item span {
            display: block;
            font-size: 12px;
            color: #64748B;
            margin-bottom: 4px;
        }
        .perf-day-summary .item strong {
            font-size: 20px;
            color: #0F172A;
        }
        .perf-day-summary .item strong.warn { color: #D97706; }
        .perf-day-summary .item strong.ok { color: #059669; }
        .perf-day-summary .item strong.bad { color: #DC2626; }
        .perf-day-summary .item small {
            display: block;
            margin-top: 2px;
            color: #94A3B8;
            font-size: 12px;
        }
        .perf-day-plan-cell {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .perf-day-section {
            margin-top: 18px;
        }
        .perf-day-section h4 {
            margin: 0 0 10px;
            font-size: 14px;
            color: #0F172A;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .perf-day-tip {
            margin-top: 12px;
            font-size: 12px;
        }

        /* 响应式 */
        @media (max-width: 1200px) {
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .performance-top {
                grid-template-columns: 1fr;
            }
            .perf-bottom-grid {
                grid-template-columns: 1fr;
            }
            .perf-day-summary,
            .perf-day-summary.self {
                grid-template-columns: repeat(2, 1fr);
            }
            .dash-alert-row {
                grid-template-columns: repeat(3, 1fr);
            }
            .dash-alert-row.emp {
                grid-template-columns: repeat(2, 1fr);
            }
            .dash-grid-main,
            .dash-grid-secondary,
            .dash-emp-top {
                grid-template-columns: 1fr;
            }
            .dash-grid-main > .card {
                min-height: 0;
            }
            .dash-chart {
                min-height: 200px;
            }
            .dash-week-cal {
                grid-template-columns: repeat(4, 1fr);
            }
            .dash-hero {
                flex-direction: column;
                align-items: flex-start;
            }
            .dash-hero-meta {
                text-align: left;
                width: 100%;
            }
            .dash-quick {
                justify-content: flex-start;
            }
        }
        @media (max-width: 768px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .dash-alert-row,
            .dash-alert-row.emp {
                grid-template-columns: 1fr 1fr;
            }
            .dash-week-cal {
                grid-template-columns: repeat(2, 1fr);
            }
            .dash-prog-meta {
                grid-template-columns: 1fr;
            }
            .login-card {
                width: 100%;
                padding: 28px 20px;
            }
        }

        /* 拨号盘 */
        .dialpad {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            max-width: 240px;
            margin: 0 auto;
        }
        .dialpad .num-btn {
            height: 52px;
            border-radius: 12px;
            border: 1px solid #E2E8F0;
            background: #fff;
            font-size: 22px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.15s;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0F172A;
        }
        .dialpad .num-btn:hover {
            background: #F1F5F9;
            border-color: #0E8F8A;
        }
        .dialpad .num-btn:active {
            transform: scale(0.95);
        }
        .dialpad .num-btn .sub {
            font-size: 10px;
            color: #94A3B8;
            margin-left: 2px;
        }

        .mt-16 {
            margin-top: 16px;
        }
        .flex {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .w-full {
            width: 100%;
        }
        .link {
            color: #0E8F8A;
            cursor: pointer;
            font-weight: 500;
        }
        .link:hover {
            text-decoration: underline;
        }
        .text-muted {
            color: #94A3B8;
            font-size: 13px;
        }
        .hidden {
            display: none !important;
        }

/* ===== 客户列表增强 ===== */
.customer-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0F172A 0%, #0A3D48 55%, #0E8F8A 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(14, 143, 138, 0.22);
}
.customer-page-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.customer-page-head .sub {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}
.customer-page-head .head-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.customer-page-head .el-button {
    --el-button-bg-color: rgba(255,255,255,0.12);
    --el-button-border-color: rgba(255,255,255,0.28);
    --el-button-text-color: #fff;
    --el-button-hover-bg-color: rgba(255,255,255,0.22);
    --el-button-hover-border-color: rgba(255,255,255,0.45);
    --el-button-hover-text-color: #fff;
}
.customer-page-head .el-button--primary {
    --el-button-bg-color: #fff;
    --el-button-border-color: #fff;
    --el-button-text-color: #0A3D48;
    --el-button-hover-bg-color: #EEF4FF;
    --el-button-hover-border-color: #EEF4FF;
    --el-button-hover-text-color: #0A3D48;
}

.customer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.customer-stat-chip {
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #475569;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.customer-stat-chip i {
    font-size: 12px;
    opacity: 0.7;
}
.customer-stat-chip:hover {
    border-color: #0E8F8A;
    color: #0E8F8A;
    transform: translateY(-1px);
}
.customer-stat-chip.active {
    background: #EBF2FF;
    border-color: #0E8F8A;
    color: #1D4ED8;
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(14, 143, 138, 0.12);
}
.customer-stat-chip .num {
    font-weight: 700;
    margin-left: 2px;
    min-width: 18px;
    text-align: center;
}
.customer-stat-chip.danger {
    color: #DC2626;
    border-color: #FECACA;
    background: #FEF2F2;
}
.customer-stat-chip.danger.active {
    background: #FEE2E2;
    border-color: #EF4444;
}
.customer-stat-chip.warn {
    color: #B45309;
    border-color: #FDE68A;
    background: #FFFBEB;
}
.customer-stat-chip.warn.active {
    background: #FEF3C7;
    border-color: #F59E0B;
}
.customer-stat-chip.level {
    background: linear-gradient(180deg, #FFFBEB, #fff);
}

.customer-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}
.customer-toolbar .filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.view-toggle {
    display: inline-flex;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
}
.view-toggle button {
    border: none;
    background: transparent;
    width: 34px;
    height: 32px;
    cursor: pointer;
    color: #64748B;
}
.view-toggle button.active {
    background: #0E8F8A;
    color: #fff;
}

.batch-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: linear-gradient(90deg, #EBF2FF, #F0F9FF);
    border: 1px solid #BFDBFE;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #1E40AF;
}

.level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.level-badge.A { background: #FEF3C7; color: #B45309; border: 1px solid #FCD34D; }
.level-badge.B { background: #DBEAFE; color: #1D4ED8; border: 1px solid #93C5FD; }
.level-badge.C { background: #E0E7FF; color: #4338CA; border: 1px solid #A5B4FC; }
.level-badge.D { background: #F1F5F9; color: #64748B; border: 1px solid #CBD5E1; }
.level-badge.none { background: #F8FAFC; color: #94A3B8; border: 1px dashed #CBD5E1; font-weight: 500; }

.status-select-wrap .el-select .el-input__wrapper {
    box-shadow: none !important;
    background: transparent;
    padding: 0 4px;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.status-pill.potential { background: #EEF2FF; color: #4F46E5; }
.status-pill.following { background: #FEF3C7; color: #B45309; }
.status-pill.negotiated { background: #DBEAFE; color: #1D4ED8; }
.status-pill.closed { background: #D1FAE5; color: #065F46; }
.status-pill.lost { background: #FEE2E2; color: #991B1B; }

.idle-chip {
    font-size: 12px;
    color: #64748B;
}
.idle-chip.hot { color: #DC2626; font-weight: 600; }
.idle-chip.warm { color: #D97706; }

.customer-empty {
    padding: 56px 20px;
    text-align: center;
    color: #94A3B8;
}
.customer-empty i {
    font-size: 42px;
    color: #CBD5E1;
    margin-bottom: 12px;
}
.customer-empty h4 {
    margin: 0 0 6px;
    color: #475569;
    font-size: 16px;
}
.customer-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
}

.customer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}
.customer-card {
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}
.customer-card:hover {
    border-color: #93C5FD;
    box-shadow: 0 8px 24px rgba(14, 143, 138, 0.12);
    transform: translateY(-2px);
}
.customer-card.selected {
    border-color: #0E8F8A;
    background: #F8FBFF;
    box-shadow: 0 0 0 3px rgba(14, 143, 138, 0.12);
}
.customer-card .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}
.customer-card .card-name {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
}
.customer-card .card-company {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 2px;
}
.customer-card .card-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    margin-bottom: 12px;
}
.customer-card .card-meta i {
    width: 16px;
    color: #94A3B8;
}
.customer-card .card-actions {
    display: flex;
    gap: 6px;
    border-top: 1px solid #F1F5F9;
    padding-top: 10px;
}
.customer-card .check {
    position: absolute;
    top: 12px;
    left: 12px;
}
.customer-card.has-check {
    padding-left: 40px;
}
.remark-preview {
    font-size: 12px;
    color: #94A3B8;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.inline-date .el-input__wrapper {
    box-shadow: none !important;
    background: transparent;
    padding-left: 0;
}
/* ===== 订单管理页 ===== */
.orders-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0F172A 0%, #164E63 50%, #0D9488 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.2);
}
.orders-page-head h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.orders-page-head p {
    margin: 0;
    font-size: 13px;
    opacity: 0.82;
}
.orders-head-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.orders-card-header {
    flex-wrap: wrap;
    gap: 10px;
}
.orders-status-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.order-chip {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 500;
    background: #F1F5F9;
    color: #64748B;
}
.order-chip.closed { background: #DBEAFE; color: #1D4ED8; }
.order-chip.pending { background: #FEF3C7; color: #B45309; }
.order-chip.paid { background: #D1FAE5; color: #047857; }
.order-chip.cancelled { background: #FEE2E2; color: #B91C1C; }
.orders-toolbar {
    margin-bottom: 14px;
}
.order-amount {
    color: #0F172A;
    font-variant-numeric: tabular-nums;
}
.order-customer {
    font-weight: 500;
    color: #1E293B;
}
.order-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    line-height: 1.6;
}
.order-status-pill i {
    font-size: 10px;
    opacity: 0.7;
}
.order-status-pill.closed { background: #DBEAFE; color: #1D4ED8; }
.order-status-pill.pending { background: #FEF3C7; color: #B45309; }
.order-status-pill.paid { background: #D1FAE5; color: #047857; }
.order-status-pill.cancelled { background: #FEE2E2; color: #B91C1C; }
.order-progress {
    margin-top: 8px;
    height: 6px;
    background: #E2E8F0;
    border-radius: 999px;
    overflow: hidden;
    width: 100%;
    max-width: 140px;
}
.order-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8B5CF6, #A78BFA);
    border-radius: 999px;
    transition: width 0.3s ease;
}
.orders-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #F1F5F9;
}
.orders-page .el-table {
    --el-table-header-bg-color: #F8FAFC;
}
.orders-page .el-table th.el-table__cell {
    font-weight: 600;
    color: #475569;
}
.orders-stats .stat-item .info .label {
    font-size: 12px;
}
@media (max-width: 1100px) {
    .orders-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 720px) {
    .orders-page-head {
        flex-direction: column;
    }
    .orders-stats {
        grid-template-columns: 1fr !important;
    }
}

/* ===== 企业化：业务类型 / 项目交付 / 组织 ===== */
.menu-group-label {
    padding: 14px 18px 6px;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #64748B;
    text-transform: uppercase;
}
.icon-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #EF4444;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
}
.biz-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}
.biz-tag.saas { background: #EFF6FF; color: #1D4ED8; }
.biz-tag.youzan { background: #FEF3C7; color: #B45309; }
.biz-tag.custom { background: #F1F5F9; color: #334155; }
.project-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    background: #F1F5F9;
    color: #475569;
    user-select: none;
    line-height: 1.5;
}
.project-status-pill i { font-size: 10px; opacity: 0.7; }
.project-status-pill.pending { background: #F1F5F9; color: #64748B; }
.project-status-pill.developing { background: #DBEAFE; color: #1D4ED8; }
.project-status-pill.testing { background: #FEF3C7; color: #B45309; }
.project-status-pill.delivered { background: #DCFCE7; color: #15803D; }
.project-status-pill.maintenance { background: #E0E7FF; color: #4338CA; }
.project-status-pill.closed { background: #E2E8F0; color: #475569; }

/* ----- 项目交付页 ----- */
.projects-page {
    animation: dashFadeIn 0.35s ease;
}
.projects-page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 22px 26px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.28), transparent 42%),
        linear-gradient(135deg, #0F172A 0%, #164E63 48%, #0D9488 100%);
    color: #fff;
    box-shadow: 0 16px 40px rgba(13, 148, 136, 0.22);
}
.projects-head-copy h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
}
.projects-head-copy h3 i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    font-size: 16px;
}
.projects-head-copy p {
    margin: 0;
    font-size: 13px;
    opacity: 0.82;
}
.projects-head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.projects-view-switch {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    gap: 2px;
}
.projects-view-switch .pvs-btn {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.projects-view-switch .pvs-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.projects-view-switch .pvs-btn.active {
    background: #fff;
    color: #0F766E;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
.projects-page-head .projects-btn-ghost {
    --el-button-bg-color: rgba(255, 255, 255, 0.12);
    --el-button-border-color: rgba(255, 255, 255, 0.3);
    --el-button-text-color: #fff;
    --el-button-hover-bg-color: rgba(255, 255, 255, 0.22);
    --el-button-hover-border-color: rgba(255, 255, 255, 0.45);
    --el-button-hover-text-color: #fff;
}
.projects-page-head .projects-btn-primary {
    --el-button-bg-color: #fff;
    --el-button-border-color: #fff;
    --el-button-text-color: #0F766E;
    --el-button-hover-bg-color: #ECFDF5;
    --el-button-hover-border-color: #ECFDF5;
    --el-button-hover-text-color: #0F766E;
    font-weight: 600;
}

.projects-stats {
    margin-bottom: 20px;
    gap: 16px;
}
.projects-stat {
    border-radius: 18px !important;
    padding: 18px 20px !important;
    border: 1px solid #E8EEF7;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
.projects-stat .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px !important;
}
.projects-stat.clickable {
    cursor: pointer;
}
.projects-stat.active {
    border-color: #99F6E4;
    background: linear-gradient(180deg, #F0FDFA 0%, #fff 100%);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12), 0 8px 24px rgba(13, 148, 136, 0.08);
}
.projects-stat .info .number {
    font-size: 26px;
}
.projects-stat .info .label {
    font-size: 13px;
}

.projects-main-card {
    border-radius: 22px !important;
    padding: 22px 24px 24px !important;
    border: 1px solid #E8EEF7;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}
.projects-card-header {
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}
.projects-card-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.projects-card-title h3 {
    margin: 0;
}
.projects-count-hint {
    font-size: 13px;
    color: #94A3B8;
}
.projects-pay-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.prj-chip {
    border: 1px solid transparent;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #F1F5F9;
    color: #64748B;
}
.prj-chip.closed { background: #DBEAFE; color: #1D4ED8; }
.prj-chip.pending { background: #FEF3C7; color: #B45309; }
.prj-chip.paid { background: #D1FAE5; color: #047857; }
.prj-chip.cancelled { background: #FEE2E2; color: #B91C1C; }
.prj-chip:hover { transform: translateY(-1px); filter: brightness(0.98); }
.prj-chip.active {
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.12);
    font-weight: 700;
}

.projects-toolbar {
    margin-bottom: 18px;
    gap: 10px;
    align-items: center;
}
.projects-toolbar-spacer {
    flex: 1;
    min-width: 8px;
}
.projects-search {
    width: 240px;
}
.projects-search .el-input__wrapper,
.projects-select .el-select__wrapper {
    border-radius: 999px !important;
    box-shadow: 0 0 0 1px #E2E8F0 inset !important;
}
.projects-select {
    width: 132px;
}
.projects-page .el-button.is-round {
    padding: 8px 18px;
}

/* 列表卡片 */
.project-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 180px;
}
.project-list-empty {
    text-align: center;
    padding: 56px 20px;
    border: 1px dashed #CBD5E1;
    border-radius: 20px;
    background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
}
.project-list-empty .ple-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 20px;
    background: #ECFDF5;
    color: #0D9488;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.project-list-empty h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #0F172A;
}
.project-list-empty p {
    margin: 0 0 16px;
    font-size: 13px;
    color: #94A3B8;
}
.project-list-card {
    display: flex;
    gap: 16px;
    align-items: stretch;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #E8EEF7;
    background: #fff;
    cursor: pointer;
    transition: all 0.22s ease;
}
.project-list-card:hover {
    border-color: #99F6E4;
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.1);
    transform: translateY(-2px);
}
.plc-biz {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: #fff;
}
.plc-biz.saas { background: linear-gradient(135deg, #0E8F8A, #2DD4BF); }
.plc-biz.youzan { background: linear-gradient(135deg, #D97706, #FBBF24); }
.plc-biz.custom { background: linear-gradient(135deg, #475569, #94A3B8); }
.plc-main {
    flex: 1;
    min-width: 0;
}
.plc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.plc-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex-wrap: wrap;
}
.plc-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.35;
}
.plc-amount {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.plc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 8px;
    font-size: 12px;
    color: #64748B;
}
.plc-meta i {
    width: 14px;
    color: #94A3B8;
    margin-right: 2px;
}
.plc-contract {
    color: #0E8F8A;
    text-decoration: none;
    font-weight: 500;
}
.plc-contract:hover { text-decoration: underline; }
.plc-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}
.plc-progress-track {
    flex: 1;
    height: 8px;
    background: #F1F5F9;
    border-radius: 999px;
    overflow: hidden;
    max-width: 280px;
}
.plc-progress-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #0E8F8A, #2DD4BF);
    transition: width 0.35s ease;
}
.plc-progress-bar.pending { background: linear-gradient(90deg, #94A3B8, #CBD5E1); }
.plc-progress-bar.developing { background: linear-gradient(90deg, #0E8F8A, #5EEAD4); }
.plc-progress-bar.testing { background: linear-gradient(90deg, #D97706, #FBBF24); }
.plc-progress-bar.delivered,
.plc-progress-bar.maintenance,
.plc-progress-bar.closed { background: linear-gradient(90deg, #059669, #34D399); }
.plc-dates {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #94A3B8;
    white-space: nowrap;
}
.plc-dates-arrow { opacity: 0.5; }
.plc-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    flex-shrink: 0;
    min-width: 110px;
}
.plc-actions {
    display: flex;
    gap: 2px;
}
.projects-page .action-btn {
    border-radius: 10px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-cred-box {
    margin-top: 16px;
    padding: 14px 16px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
}
.admin-cred-box h4 {
    margin: 0 0 10px;
    font-size: 13px;
    color: #0F172A;
}
.admin-cred-box p {
    margin: 6px 0;
    font-size: 13px;
    color: #334155;
    word-break: break-all;
}
.admin-cred-box label {
    display: inline-block;
    width: 42px;
    color: #94A3B8;
}
.project-detail-panel {
    padding: 8px 10px 28px;
}

/* 详情抽屉 */
.project-detail-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.pdh-biz {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.pdh-biz.saas { background: linear-gradient(135deg, #0E8F8A, #2DD4BF); }
.pdh-biz.youzan { background: linear-gradient(135deg, #D97706, #FBBF24); }
.pdh-biz.custom { background: linear-gradient(135deg, #475569, #94A3B8); }
.pdh-copy { flex: 1; min-width: 0; }
.pdh-title {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}
.pdh-sub {
    margin-top: 4px;
    font-size: 13px;
    color: #94A3B8;
}
.pdh-actions {
    display: flex;
    gap: 4px;
    align-items: flex-start;
}
.project-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.project-detail-progress {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #F8FAFC;
    border: 1px solid #E8EEF7;
}
.project-detail-progress .plc-progress-track {
    max-width: none;
    margin-top: 8px;
}
.pdp-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748B;
}
.pdp-label strong { color: #0F172A; }
.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.pdg-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #E8EEF7;
}
.pdg-item .lab {
    display: block;
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 4px;
}
.pdg-item strong {
    font-size: 15px;
    color: #0F172A;
    font-weight: 600;
}
.project-detail-block {
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #E8EEF7;
    background: #fff;
}
.pdb-label {
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 6px;
}
.pdb-contract {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.pdb-contract a {
    color: #0E8F8A;
    text-decoration: none;
}
.pdb-text {
    font-size: 13px;
    color: #334155;
    line-height: 1.6;
}
.project-log-composer {
    margin: 16px 0;
    padding: 14px;
    border-radius: 16px;
    background: #F8FAFC;
    border: 1px solid #E8EEF7;
}
.plc-composer-bar {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    align-items: center;
}
.project-logs-title {
    margin: 18px 0 10px;
    font-size: 14px;
    color: #0F172A;
}

/* 对话框 */
.projects-dialog .el-dialog {
    border-radius: 20px !important;
    overflow: hidden;
}
.projects-dialog .el-dialog__header {
    padding: 18px 22px 10px;
}
.projects-dialog .el-dialog__body {
    padding: 8px 22px 10px;
}
.projects-dialog .el-dialog__footer {
    padding: 12px 22px 20px;
}
.projects-form-section {
    font-size: 13px;
    font-weight: 600;
    color: #0F766E;
    margin: 6px 0 14px;
    padding-left: 10px;
    border-left: 3px solid #14B8A6;
}
.projects-date-row {
    display: flex;
    gap: 10px;
    width: 100%;
}
.projects-biz-radios .el-radio-button__inner {
    border-radius: 999px !important;
    padding: 8px 16px;
}
.projects-biz-radios .el-radio-button:first-child .el-radio-button__inner {
    border-radius: 999px !important;
}
.projects-biz-radios .el-radio-button:last-child .el-radio-button__inner {
    border-radius: 999px !important;
}
.projects-form .el-input__wrapper,
.projects-form .el-textarea__inner,
.projects-form .el-select__wrapper {
    border-radius: 12px !important;
}

/* ===== 三大业务板块 ===== */
.project-boards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    padding-top: 4px;
}
.project-board {
    background: linear-gradient(180deg, #F8FAFC 0%, #fff 48%);
    border: 1px solid #E8EEF7;
    border-radius: 20px;
    padding: 16px;
    min-height: 340px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}
.project-board.board-saas { border-top: 4px solid #0E8F8A; }
.project-board.board-youzan { border-top: 4px solid #D97706; }
.project-board.board-custom { border-top: 4px solid #475569; }
.project-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}
.project-board-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.project-board-title strong {
    font-size: 22px;
    color: #0F172A;
}
.project-board-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
    padding: 12px;
    background: #fff;
    border: 1px solid #F1F5F9;
    border-radius: 14px;
}
.project-board-metrics .lab {
    display: block;
    font-size: 11px;
    color: #94A3B8;
    margin-bottom: 2px;
}
.project-board-metrics strong {
    font-size: 14px;
    color: #0F172A;
}
.project-board-empty {
    text-align: center;
    color: #94A3B8;
    font-size: 13px;
    padding: 36px 8px;
    border: 1px dashed #E2E8F0;
    border-radius: 16px;
    background: #fff;
}
.project-board-empty i {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.6;
}
.project-board-empty p {
    margin: 0 0 6px;
}
.project-board-item {
    display: flex;
    gap: 10px;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #F1F5F9;
    transition: all 0.2s ease;
}
.project-board-item:hover {
    border-color: #99F6E4;
    box-shadow: 0 8px 18px rgba(13, 148, 136, 0.08);
}
.project-board-item:last-child { margin-bottom: 0; }
.pbi-main { flex: 1; min-width: 0; cursor: pointer; }
.pbi-title {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pbi-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
    font-size: 12px;
    color: #64748B;
}
.pbi-progress {
    margin-top: 10px;
}
.pbi-progress .plc-progress-track {
    max-width: none;
}
.pbi-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
.pbi-actions { display: flex; gap: 2px; }
.contract-upload-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
.contract-file-name {
    font-size: 13px;
    color: #334155;
}
.contract-file-name a {
    margin-left: 6px;
    color: #0E8F8A;
}
.link-btn {
    color: #0E8F8A;
    font-size: 12px;
    text-decoration: none;
}
.link-btn:hover { text-decoration: underline; }

@media (max-width: 1200px) {
    .plc-side {
        min-width: 96px;
    }
    .plc-progress {
        flex-wrap: wrap;
    }
}
@media (max-width: 1100px) {
    .project-boards { grid-template-columns: 1fr; }
    .projects-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 860px) {
    .projects-page-head {
        flex-direction: column;
        align-items: stretch;
    }
    .project-list-card {
        flex-direction: column;
    }
    .plc-side {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        width: 100%;
        flex-wrap: wrap;
    }
    .projects-search,
    .projects-select {
        width: 100%;
    }
    .project-detail-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 720px) {
    .projects-stats {
        grid-template-columns: 1fr !important;
    }
}

/* ===== 系统设置页 ===== */
.settings-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0F172A 0%, #0A3D48 48%, #0E8F8A 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(14, 143, 138, 0.22);
}
.settings-page-head h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.settings-page-head p {
    margin: 0;
    font-size: 13px;
    opacity: 0.82;
}
.settings-head-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.settings-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}
.settings-preview-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #E8EEF7;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}
.settings-preview-card .sp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.settings-preview-card.call .sp-icon { background: linear-gradient(135deg, #0E8F8A, #5EC4C1); }
.settings-preview-card.visit .sp-icon { background: linear-gradient(135deg, #0D9488, #2DD4BF); }
.settings-preview-card.amount .sp-icon { background: linear-gradient(135deg, #D97706, #FBBF24); }
.settings-preview-card.work .sp-icon { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.settings-preview-card .sp-label {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 4px;
}
.settings-preview-card .sp-value {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.settings-preview-card .sp-value span {
    margin-left: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #94A3B8;
}
.settings-tabs .el-tabs__header {
    margin-bottom: 14px;
}
.settings-panel {
    padding: 20px 22px;
}
.settings-section-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}
.settings-section-title > i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #0E8F8A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.settings-section-title h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: #0F172A;
}
.settings-section-title p {
    margin: 0;
    font-size: 12px;
    color: #64748B;
}
.settings-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 20px;
}
.settings-form-grid.cols-2 .span-2 {
    grid-column: span 2;
}
.settings-field-hint {
    margin-top: 4px;
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.4;
}
.settings-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B;
    font-size: 13px;
    line-height: 1.5;
}
.settings-tip i {
    color: #0E8F8A;
    margin-top: 2px;
}
.settings-weekday-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.settings-weekday {
    min-width: 64px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.settings-weekday:hover {
    border-color: #93C5FD;
    color: #1D4ED8;
}
.settings-weekday.active {
    background: linear-gradient(135deg, #0E8F8A, #14A3A0);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 14px rgba(14, 143, 138, 0.28);
}
.settings-switch-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}
.settings-switch-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}
.settings-switch-item strong {
    display: block;
    font-size: 14px;
    color: #0F172A;
    margin-bottom: 4px;
}
.settings-switch-item p {
    margin: 0;
    font-size: 12px;
    color: #64748B;
}
.settings-brand-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    padding: 16px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0A1F36, #0A3D48);
    color: #fff;
}
.settings-brand-preview .sbp-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(14, 143, 138, 0.25);
    color: #5EC4C1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.settings-brand-preview .sbp-logo-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    background: #fff;
    flex-shrink: 0;
}
.settings-brand-preview .sbp-name {
    font-size: 18px;
    font-weight: 700;
}
.settings-brand-preview .sbp-slogan {
    margin-top: 4px;
    font-size: 13px;
    color: #94A3B8;
}
.settings-brand-preview .sbp-en {
    margin-top: 2px;
    font-size: 11px;
    color: #64748B;
    letter-spacing: 0.3px;
}
.settings-brand-preview .sbp-phone {
    margin-top: 6px;
    font-size: 12px;
    color: #CBD5E1;
}
.settings-two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}
.settings-security-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.settings-security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}
.settings-security-item > i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #EFF6FF;
    color: #0E8F8A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.settings-security-item strong {
    display: block;
    font-size: 13px;
    color: #0F172A;
}
.settings-security-item p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #64748B;
}
.settings-security-item .el-button {
    margin-left: auto;
    flex-shrink: 0;
}
.settings-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.settings-about-grid > div {
    padding: 12px 14px;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}
.settings-about-grid span {
    display: block;
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 4px;
}
.settings-about-grid strong {
    font-size: 14px;
    color: #0F172A;
}
@media (max-width: 1100px) {
    .settings-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .settings-two-col,
    .settings-switch-row,
    .settings-form-grid {
        grid-template-columns: 1fr;
    }
    .settings-form-grid.cols-2 .span-2 {
        grid-column: span 1;
    }
    .settings-page-head {
        flex-direction: column;
    }
}
@media (max-width: 640px) {
    .settings-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 组织人事 ===== */
.org-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding: 16px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 48%, #0F766E 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.18);
}
.org-page-head h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.org-page-head p {
    margin: 0;
    font-size: 13px;
    opacity: 0.82;
}
.org-head-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.org-page-head .el-button {
    --el-button-bg-color: rgba(255,255,255,0.12);
    --el-button-border-color: rgba(255,255,255,0.28);
    --el-button-text-color: #fff;
    --el-button-hover-bg-color: rgba(255,255,255,0.22);
    --el-button-hover-border-color: rgba(255,255,255,0.45);
    --el-button-hover-text-color: #fff;
}
.org-page-head .el-button--primary {
    --el-button-bg-color: #fff;
    --el-button-border-color: #fff;
    --el-button-text-color: #0F766E;
    --el-button-hover-bg-color: #ECFDF5;
    --el-button-hover-border-color: #ECFDF5;
    --el-button-hover-text-color: #0F766E;
}

.org-stats {
    margin-bottom: 18px;
}
.org-stats .stat-item {
    padding: 16px 18px;
}
.org-stats .stat-item .info .number {
    font-size: 24px;
}

.org-card {
    padding: 8px 20px 20px;
}
.org-tabs > .el-tabs__header {
    margin-bottom: 14px;
}
.org-tabs .el-tabs__item {
    font-weight: 500;
}
.org-tabs .el-tabs__item i {
    margin-right: 6px;
    font-size: 13px;
}

.org-toolbar {
    margin-bottom: 14px;
}
.org-toolbar-spacer {
    flex: 1;
    min-width: 8px;
}
.org-dept-hint {
    font-size: 12px;
    color: #64748B;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 6px 12px;
}
.org-dept-hint i {
    color: #0D9488;
}

.org-table {
    --el-table-header-bg-color: #F8FAFC;
    width: 100%;
}
.org-table th.el-table__cell {
    font-weight: 600;
    color: #475569;
}
.org-table td.el-table__cell {
    vertical-align: middle;
}
.org-table-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #F1F5F9;
    font-size: 13px;
    color: #64748B;
}
.org-table-footer strong {
    color: #0F172A;
}

.org-user-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.org-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0E8F8A, #5EC4C1);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.org-avatar.admin {
    background: linear-gradient(135deg, #D97706, #F59E0B);
}
.org-user-meta {
    min-width: 0;
}
.org-user-name {
    font-weight: 600;
    color: #0F172A;
    line-height: 1.3;
}
.org-user-sub {
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.3;
}
.org-dept-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    background: #F1F5F9;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
}
.org-status-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}
.org-status-dot::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #94A3B8;
}
.org-status-dot.on {
    color: #047857;
}
.org-status-dot.on::before {
    background: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.org-status-dot.off {
    color: #64748B;
}
.org-time {
    color: #64748B;
    font-variant-numeric: tabular-nums;
    font-size: 12px;
}
.org-row-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex-wrap: wrap;
}
.org-row-actions .el-button {
    margin: 0 !important;
}
.org-row-actions .el-button i {
    margin-right: 3px;
    font-size: 11px;
}

.org-dept-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.org-dept-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: #ECFDF5;
    color: #0D9488;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.org-dept-name {
    font-weight: 600;
    color: #0F172A;
}
.org-count-badge {
    display: inline-flex;
    min-width: 28px;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: #EBF2FF;
    color: #1D4ED8;
    font-weight: 700;
    font-size: 12px;
}

.org-form-tip {
    margin-top: 4px;
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.4;
}

.org-form-section {
    margin: 4px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E2E8F0;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.profile-card {
    min-height: 120px;
}

.profile-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0E8F8A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.profile-avatar-mask,
.emp-avatar-mask {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.15s;
    font-size: 16px;
}
.profile-avatar:hover .profile-avatar-mask,
.emp-avatar-picker:hover .emp-avatar-mask,
.profile-avatar.uploading .profile-avatar-mask {
    opacity: 1;
}
.emp-avatar-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 18px 100px;
}
.emp-avatar-picker {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0E8F8A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}
.emp-avatar-fallback {
    line-height: 1;
}
.emp-avatar-meta .emp-avatar-title {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 4px;
}
.profile-edit-form {
    margin-bottom: 12px;
}

.profile-head-meta {
    min-width: 0;
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
}

.profile-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 13px;
    color: #64748B;
}

.profile-desc {
    margin-bottom: 16px;
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin-top: 4px;
}

@media (max-width: 1100px) {
    .org-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 720px) {
    .org-page-head {
        flex-direction: column;
    }
    .org-stats {
        grid-template-columns: 1fr !important;
    }
}

/* ===== 京东风手机端布局 ===== */
@media (max-width: 900px) {
    .sidebar-mask {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 35;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }
    .app-container.sidebar-open .sidebar-mask {
        opacity: 1;
        pointer-events: auto;
    }
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(78vw, 300px) !important;
        transform: translateX(-105%);
        box-shadow: 8px 0 28px rgba(0, 0, 0, 0.25);
    }
    .app-container.sidebar-open .sidebar {
        transform: translateX(0);
    }
    .sidebar .logo .brand-text,
    .sidebar .menu-item span,
    .sidebar .user-footer .name,
    .sidebar .menu-item .badge {
        display: initial;
    }
    .sidebar .menu-item {
        justify-content: flex-start;
        padding: 12px 16px;
    }
    .sidebar .menu-item i {
        font-size: 18px;
        margin: 0;
    }
    .sidebar .user-footer {
        justify-content: flex-start;
    }
    .menu-group-label {
        display: block;
    }

    .topbar {
        height: 52px;
        padding: 0 12px;
        position: sticky;
        top: 0;
        z-index: 20;
        background: linear-gradient(90deg, #0E8F8A 0%, #0B7A76 100%);
        border-bottom: none;
        box-shadow: 0 2px 8px rgba(14, 143, 138, 0.25);
    }
    .topbar .menu-toggle {
        display: inline-flex;
        color: #fff;
        background: rgba(255, 255, 255, 0.12);
    }
    .topbar .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.22);
    }
    .topbar .brand-logo-top {
        display: block;
    }
    .topbar .left {
        gap: 10px;
    }
    .topbar .left .breadcrumb {
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 42vw;
    }
    .topbar .left .search-box {
        display: none;
    }
    .topbar .right {
        gap: 6px;
    }
    .topbar .right .icon-btn {
        color: #fff;
        width: 34px;
        height: 34px;
    }
    .topbar .right .icon-btn:hover {
        background: rgba(255, 255, 255, 0.15);
    }
    .topbar .user-name-text,
    .topbar .user-chevron {
        display: none;
    }
    .topbar .right .user-info {
        padding: 2px;
        background: transparent;
    }
    .topbar .right .user-info:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .m-search-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 10px 12px 0;
        padding: 0 14px;
        height: 40px;
        background: #fff;
        border-radius: 20px;
        border: 1px solid #E2E8F0;
        box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
    }
    .m-search-bar i {
        color: #94A3B8;
        font-size: 14px;
    }
    .m-search-bar input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
        color: #0F172A;
        min-width: 0;
    }

    .m-tabbar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
        height: calc(56px + env(safe-area-inset-bottom, 0px));
        padding: 4px 4px calc(4px + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-top: 1px solid #E8EEF4;
        box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.06);
    }
    .m-tab {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border: none;
        background: transparent;
        color: #94A3B8;
        font-size: 11px;
        cursor: pointer;
        padding: 4px 0;
        -webkit-tap-highlight-color: transparent;
    }
    .m-tab i {
        font-size: 18px;
        line-height: 1;
    }
    .m-tab.active {
        color: #0E8F8A;
        font-weight: 600;
    }

    .main {
        width: 100%;
        min-width: 0;
    }
    .content {
        padding: 12px !important;
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
        overflow-x: hidden;
    }

    /* 京东风：通栏卡片、少留白 */
    .card,
    .dash-hero,
    .settings-panel,
    .customer-page-head,
    .projects-page-head,
    .org-page-head,
    .settings-page-head,
    .lead-page-head,
    .wp-page-head {
        border-radius: 12px !important;
    }
    .dash-hero {
        padding: 16px !important;
    }
    .dash-quick {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    .dash-quick .dash-qa {
        flex-shrink: 0;
    }
    .stat-grid,
    .dash-stats {
        gap: 10px !important;
    }
    .dash-alert-row,
    .dash-alert-row.emp {
        grid-template-columns: 1fr !important;
    }

    /* 表格横向滚动，避免撑破屏 */
    .el-table {
        width: 100% !important;
    }
    .el-dialog {
        width: calc(100vw - 24px) !important;
        max-width: 560px;
        margin: 8vh auto !important;
    }
    .el-message-box {
        width: calc(100vw - 32px) !important;
    }

    /* 客户/项目列表更像京东商品流 */
    .customer-cards,
    .projects-list,
    .project-list {
        grid-template-columns: 1fr !important;
    }
    .customer-toolbar,
    .customer-page-head,
    .projects-page-head,
    .org-page-head,
    .settings-page-head,
    .lead-page-head,
    .wp-page-head,
    .orders-toolbar,
    .flex-between {
        flex-wrap: wrap;
        gap: 10px;
    }
    .settings-form-grid.cols-2,
    .settings-two-col,
    .settings-switch-row {
        grid-template-columns: 1fr !important;
    }
    .project-board,
    .projects-board {
        grid-template-columns: 1fr !important;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .topbar .left .breadcrumb {
        max-width: 36vw;
        font-size: 14px;
    }
    .dash-alert-row,
    .dash-alert-row.emp,
    .dash-week-cal {
        grid-template-columns: 1fr !important;
    }
    .login-card .logo .brand-logo {
        width: 140px;
    }
}
