/* 登录页面样式 */
.login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #fff;
}

.login-page .title {
    margin: 60px 0 40px;
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
}

.login-form {
    width: 100%;
    max-width: 320px;
}

.login-form .form-item input {
    background-color: #f5f5f5;
    border: none;
}

.btn-login {
    width: 100%;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 14px;
    color: var(--primary-color);
}

/* 首页样式 */
.welcome-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1890ff, #0050b3);
    color: #fff;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-title {
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.welcome-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: slideInRight 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 功能模块网格 */
.module-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.module-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.module-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.1), rgba(0, 80, 179, 0.1));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.module-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.module-item:hover::before {
    transform: translateY(0);
}

.module-icon {
    font-size: 32px;
    color: #1890ff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.module-item:hover .module-icon {
    transform: scale(1.2) rotate(10deg);
}

.module-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.module-desc {
    font-size: 14px;
    color: #666;
    position: relative;
    z-index: 1;
}

/* 快捷操作区 */
.quick-actions {
    padding: 20px 15px;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 12px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #1890ff;
    border-radius: 2px;
}

.action-list {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
}

.action-item {
    flex: 0 0 auto;
    width: 100px;
    text-align: center;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.action-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-icon {
    font-size: 24px;
    color: #1890ff;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.action-item:hover .action-icon {
    transform: scale(1.2);
}

.action-text {
    font-size: 14px;
    color: #333;
}

/* 通知公告 */
.notice-section {
    padding: 0 15px 20px;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
    animation-delay: 1.1s;
}

.notice-list {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.notice-item {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.notice-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #1890ff;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.notice-item:hover {
    background: #f8f8f8;
    padding-left: 20px;
}

.notice-item:hover::before {
    transform: scaleY(1);
}

.notice-title {
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.notice-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 加载动画 */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #1890ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 页面切换动画 */
.page-transition {
    animation: pageTransition 0.5s ease-out;
}

@keyframes pageTransition {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
</rewritten_file> 