:root {
    --a: #3b82f6;
    --b: #2563eb;
    --c: #eff6ff;
    --d: rgba(59, 130, 246, 0.1);
    --e: #10b981;
    --f: #059669;
    --g: #ef4444;
    --h: #dc2626;
    --i: #f59e0b;
    --j: #1e293b;
    --k: #64748b;
    --l: #e2e8f0;
    --m: #f1f5f9;
    --n: #ffffff;
    --o: #f8fafc;
    --p: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --q: 0 10px 25px rgba(0, 0, 0, 0.07), 0 4px 10px rgba(0, 0, 0, 0.05);
    --r: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --s: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--m);
    color: var(--j);
    line-height: 1.5;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 登录卡片样式 */
.t {
    max-width: 400px;
    margin: auto;
    background-color: var(--n);
    border-radius: 12px;
    box-shadow: var(--p);
    padding: 40px;
    transition: var(--r);
    position: relative;
    width: 100%;
}

.t::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--a), var(--e));
}

.u {
    text-align: center;
    margin-bottom: 30px;
}

.u h2 {
    color: var(--a);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.u p {
    color: var(--k);
}

.v {
    margin-bottom: 20px;
}

.v label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--j);
}

.w {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--l);
    border-radius: var(--s);
    font-size: 15px;
    transition: var(--r);
    background-color: rgba(255, 255, 255, 0.8);
}

.w:focus {
    outline: none;
    border-color: var(--a);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background-color: white;
}

.w::placeholder {
    color: var(--k);
    opacity: 0.7;
}

.x {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* 错误提示样式 */
.y {
    color: var(--g);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: var(--s);
    background-color: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--r);
    height: 0;
    overflow: hidden;
}

.y.z {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

/* 主内容区域样式 */
.A {
    display: none;
    width: 100%;
}

.B {
    background-color: var(--n);
    border-radius: 12px;
    box-shadow: var(--p);
    padding: 30px;
    margin-top: 20px;
    transition: var(--r);
    position: relative;
    overflow: hidden;
}

.B::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--a), var(--e));
}

.B:hover {
    box-shadow: var(--q);
    transform: translateY(-2px);
}

h2 {
    color: var(--a);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--l);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.5rem;
}

h2 i {
    color: var(--a);
    font-size: 1.7rem;
}

h3 {
    color: var(--j);
    margin: 20px 0 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

h3 i {
    color: var(--a);
}

/* 控制栏样式 */
.C {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: var(--c);
    border-radius: var(--s);
    align-items: center;
}

.D {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.E {
    color: var(--j);
    font-weight: 500;
}

/* 按钮样式 */
button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--s);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--r);
    position: relative;
    overflow: hidden;
}

button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
}

button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.F {
    background-color: var(--a);
    color: white;
}

.F:hover {
    background-color: var(--b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.G {
    background-color: var(--e);
    color: white;
}

.G:hover {
    background-color: var(--f);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.H {
    background-color: var(--g);
    color: white;
}

.H:hover {
    background-color: var(--h);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.I {
    background-color: #6366f1;
    color: white;
}

.I:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

button:active {
    transform: translateY(0);
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--s);
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    background-color: var(--n);
}

th, td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--l);
    transition: var(--r);
}

th {
    background-color: var(--c);
    color: var(--b);
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

th i {
    margin-right: 6px;
    opacity: 0.8;
}

th:hover {
    background-color: #e0e7ff;
}

tbody tr {
    background-color: var(--n);
    transition: var(--r);
}

tbody tr:nth-child(even) {
    background-color: var(--o);
}

tbody tr:hover {
    background-color: var(--d);
    transform: translateX(4px);
}

/* 输入控件样式 */
input, select, textarea {
    padding: 8px 12px;
    border: 1px solid var(--l);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--r);
    background-color: rgba(255, 255, 255, 0.8);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--a);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background-color: white;
}

input::placeholder, textarea::placeholder {
    color: var(--k);
    opacity: 0.7;
}

input[type="number"] {
    width: 100px;
}

input[type="text"], 
input[type="date"] {
    width: 100%;
    box-sizing: border-box;
}

textarea.J {
    width: 100%;
    min-height: 60px;
    resize: vertical;
    font-family: inherit;
}

select.K {
    width: 100px;
    padding: 8px;
}

.L {
    font-weight: 600;
    color: var(--b);
}

#M {
    background-color: var(--c);
    font-weight: bold;
}

#M td {
    padding-top: 16px;
    padding-bottom: 16px;
}

.N {
    text-align: right;
    padding-right: 20px;
}

.O {
    text-align: center;
}

.P {
    padding: 6px 12px;
    font-size: 13px;
    opacity: 0.85;
}

.P:hover {
    opacity: 1;
}

/* 状态标签样式 */
.Q {
    margin-left: auto;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--r);
    opacity: 0.9;
}

.Q.R {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--f);
}

.Q.S {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--i);
}

.Q.T {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--h);
}

.U {
    color: var(--k);
    font-style: italic;
}

/* 数据卡片样式 */
.V {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.W {
    background-color: var(--n);
    border-radius: var(--s);
    padding: 20px;
    box-shadow: var(--p);
    transition: var(--r);
    border-left: 4px solid var(--a);
}

.W:hover {
    transform: translateY(-5px);
    box-shadow: var(--q);
}

.W.X {
    border-left-color: var(--e);
}

.W.Y {
    border-left-color: var(--i);
}

.W.Z {
    border-left-color: var(--a);
}

.W.aa {
    border-left-color: var(--e);
}

.W.ab {
    border-left-color: var(--i);
}

.ac {
    color: var(--k);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ad {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--j);
}

.ae {
    margin-top: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ae.af {
    color: var(--e);
}

/* 文件上传控件 */
#ag {
    display: none;
}

.ah {
    font-size: 0.85rem;
    color: var(--k);
    margin-top: 5px;
    text-align: center;
}

/* 模态框样式 */
.ai {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ai.aj {
    opacity: 1;
    visibility: visible;
}

.ak {
    background-color: var(--n);
    border-radius: var(--s);
    box-shadow: var(--q);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.ai.aj .ak {
    transform: translateY(0);
}

.al {
    padding: 16px 20px;
    border-bottom: 1px solid var(--l);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.am {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--a);
    display: flex;
    align-items: center;
    gap: 8px;
}

.an {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--k);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ao {
    padding: 20px;
}

.ap {
    padding: 16px 20px;
    border-top: 1px solid var(--l);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.aq {
    max-height: 300px;
    overflow-y: auto;
    margin: 15px 0;
    border: 1px solid var(--l);
    border-radius: var(--s);
}

.ar {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.ar th, .ar td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--l);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ar th {
    background-color: var(--c);
    font-size: 0.85rem;
}

.as {
    padding: 12px;
    border-radius: var(--s);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.as.at {
    background-color: var(--d);
    color: var(--b);
}

.as.au {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--f);
}

.as.av {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--h);
}

/* 动画效果 */
@keyframes aw {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

tbody tr, .W, .t, .B {
    animation: aw 0.3s ease-out;
}

@keyframes ax {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.Q.R i, .ae.af i {
    animation: ax 1s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* 响应式样式 */
@media (max-width: 1200px) {
    table {
        font-size: 13px;
    }
    
    th, td {
        padding: 10px 8px;
    }
    
    textarea.J {
        min-height: 40px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .B {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .C {
        flex-direction: column;
        align-items: stretch;
    }

    .D {
        margin-left: 0;
        margin-top: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .Q {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    input[type="number"] {
        width: 70px;
    }

    select.K {
        width: 80px;
    }

    button {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
    
    h2 {
        font-size: 1.3rem;
    }

    .V {
        grid-template-columns: 1fr;
    }
}

/* 首页样式 */
.home-container {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    padding: 40px;
    background-color: var(--n);
    border-radius: 12px;
    box-shadow: var(--p);
}

.home-container h1 {
    color: var(--a);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.home-container p {
    color: var(--k);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.home-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.home-feature {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background-color: var(--c);
    border-radius: var(--s);
    text-align: center;
}

.home-feature i {
    font-size: 2rem;
    color: var(--a);
    margin-bottom: 15px;
}

.home-feature h3 {
    margin-bottom: 10px;
    color: var(--j);
}

.home-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}
