@import '_content/BootstrapBlazor.Tasks.Dashboard/BootstrapBlazor.Tasks.Dashboard.d4lz9tz0se.bundle.scp.css';

/* _content/School.Server/Components/Components/AssignmentAnswerComponent.razor.rz.scp.css */
.assignment-answer-container[b-zvn6tygtd4] {
    margin-top: 1rem;
}

.assignment-content-section[b-zvn6tygtd4],
.answer-section[b-zvn6tygtd4] {
    margin-bottom: 1.5rem;
}

.section-header[b-zvn6tygtd4] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.assignment-content-box[b-zvn6tygtd4] {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

.answer-input-container[b-zvn6tygtd4] {
    background-color: #fff;
    border-left: 4px solid #28a745;
}

.choice-container[b-zvn6tygtd4] {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
}

.textarea-container[b-zvn6tygtd4] {
    margin-top: 0.5rem;
}

.answer-textarea[b-zvn6tygtd4] {
    min-height: 120px;
    resize: vertical;
}

.required-indicator[b-zvn6tygtd4] {
    font-weight: bold;
    margin-left: 0.25rem;
}

.question-content[b-zvn6tygtd4] {
    font-size: 1rem;
    line-height: 1.6;
}
/* _content/School.Server/Components/Components/AssignmentContentCompositeQuestion.razor.rz.scp.css */
/* 复合题作业内容组件样式 */
.composite-question-content[b-abpb3uo49q] {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
}

/* 题目内容区域 */
.composite-content-section[b-abpb3uo49q] {
    margin-bottom: 2.5rem;
}

.content-section-header[b-abpb3uo49q] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.content-section-header[b-abpb3uo49q]::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background: #3b82f6; /* 清新的蓝色 */
    border-radius: 2px;
}

/* 题目内容容器 */
.composite-content-box[b-abpb3uo49q] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.composite-content-box[b-abpb3uo49q]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3b82f6; /* 清新的蓝色 */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.composite-content-box:hover[b-abpb3uo49q]::before {
    transform: scaleX(1);
}

.composite-content-box:hover[b-abpb3uo49q] {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

/* Markdown 内容样式优化 */
.composite-content-box[b-abpb3uo49q]  h1,
.composite-content-box[b-abpb3uo49q]  h2,
.composite-content-box[b-abpb3uo49q]  h3,
.composite-content-box[b-abpb3uo49q]  h4,
.composite-content-box[b-abpb3uo49q]  h5,
.composite-content-box[b-abpb3uo49q]  h6 {
    color: #1e293b;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.composite-content-box[b-abpb3uo49q]  h1:first-child,
.composite-content-box[b-abpb3uo49q]  h2:first-child,
.composite-content-box[b-abpb3uo49q]  h3:first-child {
    margin-top: 0;
}

.composite-content-box[b-abpb3uo49q]  p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #374151;
}

.composite-content-box[b-abpb3uo49q]  img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.composite-content-box[b-abpb3uo49q]  code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    color: #dc2626;
}

.composite-content-box[b-abpb3uo49q]  pre {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.composite-content-box[b-abpb3uo49q]  blockquote {
    border-left: 4px solid #3b82f6; /* 项目标准蓝色 */
    background: #f8fafc;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

.composite-content-box[b-abpb3uo49q]  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.composite-content-box[b-abpb3uo49q]  th,
.composite-content-box[b-abpb3uo49q]  td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.composite-content-box[b-abpb3uo49q]  th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
}

/* 子题目区域 */
.sub-questions[b-abpb3uo49q] {
    margin-top: 2rem;
}

/* 单个子题目容器 */
.sub-question-item[b-abpb3uo49q] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sub-question-item[b-abpb3uo49q]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #3b82f6; /* 清新的蓝色 */
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sub-question-item:hover[b-abpb3uo49q]::before {
    transform: scaleY(1);
}

.sub-question-item:hover[b-abpb3uo49q] {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

/* 子题目编号 */
.sub-question-number[b-abpb3uo49q] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
}

/* 子题目内容 */
.sub-question-content[b-abpb3uo49q] {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* 子题目内容文本 */
.sub-question-text[b-abpb3uo49q] {
    flex: 1;
    padding-top: 0.25rem;
}

/* 答案输入区域 */
.sub-answer-section[b-abpb3uo49q] {
    margin-top: 1rem;
}

/* 选择题样式 */
.choice-container[b-abpb3uo49q] {
    /* 保持默认样式，不添加额外样式 */
}

/* RadioList 和 CheckboxList 使用默认样式，不添加额外样式 */

/* 文本域样式 */
.textarea-container[b-abpb3uo49q] {
    position: relative;
}

.answer-textarea[b-abpb3uo49q] {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    background: #f8fafc;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.answer-textarea:focus[b-abpb3uo49q] {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.answer-textarea[b-abpb3uo49q]::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .composite-question-content[b-abpb3uo49q] {
        padding: 1.5rem;
    }
    
    .composite-content-section[b-abpb3uo49q] {
        margin-bottom: 2rem;
    }
    
    .content-section-header[b-abpb3uo49q] {
        font-size: 1.125rem;
    }
    
    .composite-content-box[b-abpb3uo49q] {
        padding: 1.5rem;
    }
    
    .sub-question-item[b-abpb3uo49q] {
        padding: 1rem;
    }
    
    .answer-textarea[b-abpb3uo49q] {
        min-height: 100px;
    }
}

@media (max-width: 576px) {
    .composite-question-content[b-abpb3uo49q] {
        padding: 1rem;
    }
    
    .composite-content-box[b-abpb3uo49q] {
        padding: 1rem;
    }
    
    .sub-question-item[b-abpb3uo49q] {
        padding: 0.875rem;
    }
    
    .answer-textarea[b-abpb3uo49q] {
        min-height: 80px;
        padding: 0.75rem;
    }
}

/* 平板端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .composite-question-content[b-abpb3uo49q] {
        padding: 1.75rem;
    }
    
    .composite-content-box[b-abpb3uo49q] {
        padding: 1.75rem;
    }
}

/* 大屏幕优化 */
@media (min-width: 1400px) {
    .composite-question-content[b-abpb3uo49q] {
        padding: 2.5rem;
    }
    
    .composite-content-box[b-abpb3uo49q] {
        padding: 2.5rem;
    }
    
    .answer-textarea[b-abpb3uo49q] {
        min-height: 150px;
    }
}

/* 动画效果 */
@keyframes slideInUp-b-abpb3uo49q {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.composite-content-section[b-abpb3uo49q] {
    animation: slideInUp-b-abpb3uo49q 0.6s ease-out;
}

.sub-question-item[b-abpb3uo49q] {
    animation: slideInUp-b-abpb3uo49q 0.6s ease-out;
}

.sub-question-item:nth-child(2)[b-abpb3uo49q] {
    animation-delay: 0.1s;
}

.sub-question-item:nth-child(3)[b-abpb3uo49q] {
    animation-delay: 0.2s;
}

.sub-question-item:nth-child(4)[b-abpb3uo49q] {
    animation-delay: 0.3s;
}

.sub-question-item:nth-child(5)[b-abpb3uo49q] {
    animation-delay: 0.4s;
}

/* 无障碍支持 */
@media (prefers-reduced-motion: reduce) {
    *[b-abpb3uo49q] {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    .composite-content-box[b-abpb3uo49q],
    .sub-question-item[b-abpb3uo49q] {
        border-width: 2px;
    }
}
/* _content/School.Server/Components/Components/AssignmentContentNonProgramming.razor.rz.scp.css */
/* 非编程类作业内容组件样式 */
.non-programming-content[b-ioibbwu06e] {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
}

/* 题目内容区域 */
.assignment-content-section[b-ioibbwu06e] {
    margin-bottom: 2.5rem;
}

.content-section-header[b-ioibbwu06e] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.content-section-header[b-ioibbwu06e]::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background: #3b82f6; /* 清新的蓝色 */
    border-radius: 2px;
}

/* 题目内容容器 */
.assignment-content-box[b-ioibbwu06e] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 选择题的题目内容样式 */
.question-content[b-ioibbwu06e] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1rem;
    font-weight: 500;
}

.assignment-content-box[b-ioibbwu06e]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3b82f6; /* 清新的蓝色 */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.assignment-content-box:hover[b-ioibbwu06e]::before {
    transform: scaleX(1);
}

.assignment-content-box:hover[b-ioibbwu06e] {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

/* Markdown 内容样式优化 */
.assignment-content-box[b-ioibbwu06e]  h1,
.assignment-content-box[b-ioibbwu06e]  h2,
.assignment-content-box[b-ioibbwu06e]  h3,
.assignment-content-box[b-ioibbwu06e]  h4,
.assignment-content-box[b-ioibbwu06e]  h5,
.assignment-content-box[b-ioibbwu06e]  h6 {
    color: #1e293b;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.assignment-content-box[b-ioibbwu06e]  h1:first-child,
.assignment-content-box[b-ioibbwu06e]  h2:first-child,
.assignment-content-box[b-ioibbwu06e]  h3:first-child {
    margin-top: 0;
}

.assignment-content-box[b-ioibbwu06e]  p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #374151;
}

.assignment-content-box[b-ioibbwu06e]  img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.assignment-content-box[b-ioibbwu06e]  code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    color: #dc2626;
}

.assignment-content-box[b-ioibbwu06e]  pre {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.assignment-content-box[b-ioibbwu06e]  blockquote {
    border-left: 4px solid #3b82f6; /* 项目标准蓝色 */
    background: #f8fafc;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

.assignment-content-box[b-ioibbwu06e]  table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.assignment-content-box[b-ioibbwu06e]  th,
.assignment-content-box[b-ioibbwu06e]  td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.assignment-content-box[b-ioibbwu06e]  th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
}

/* 答案输入区域 */
.answer-section[b-ioibbwu06e] {
    margin-bottom: 2rem;
}

.answer-label[b-ioibbwu06e] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.answer-label[b-ioibbwu06e]::before {
    content: '✏️';
    font-size: 1.25rem;
}

.required-indicator[b-ioibbwu06e] {
    color: #dc2626;
    font-size: 1.25rem;
}

/* 答案输入控件样式 */
.answer-input-container[b-ioibbwu06e] {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.answer-input-container:focus-within[b-ioibbwu06e] {
    border-color: #3b82f6; /* 项目标准蓝色 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* 选择题样式 */
.choice-container[b-ioibbwu06e] {
    /* 保持默认样式，不添加额外样式 */
}

/* CheckboxList 和 RadioList 使用默认样式，不添加额外样式 */

/* 多选框特殊样式 */
.multiselect-container[b-ioibbwu06e]  .multiselect-item {
    padding: 0.5rem;
    margin: 0.25rem;
    background-color: #f3f4f6;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.multiselect-container[b-ioibbwu06e]  .multiselect-item.selected {
    background-color: #3b82f6;
    color: #ffffff;
}

.multiselect-container[b-ioibbwu06e]  .multiselect-item:hover {
    background-color: #e5e7eb;
}

.multiselect-container[b-ioibbwu06e]  .multiselect-item.selected:hover {
    background-color: #2563eb;
}

.select-container select[b-ioibbwu06e] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background: #f8fafc;
    color: #374151;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.select-container select:focus[b-ioibbwu06e] {
    background: #ffffff;
}

/* 文本域样式 */
.textarea-container[b-ioibbwu06e] {
    position: relative;
}

.answer-textarea[b-ioibbwu06e] {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    background: #f8fafc;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    font-family: inherit;
}

.answer-textarea:focus[b-ioibbwu06e] {
    background: #ffffff;
}

.answer-textarea[b-ioibbwu06e]::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* 字数统计 */
.character-count[b-ioibbwu06e] {
    position: absolute;
    bottom: 0.5rem;
    right: 0.75rem;
    font-size: 0.8rem;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    backdrop-filter: blur(4px);
}

/* 提交按钮区域 */
.submit-section[b-ioibbwu06e] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
}

.submit-button[b-ioibbwu06e] {
    background: #10b981; /* 清新的绿色 */
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
    min-width: 160px;
    justify-content: center;
}

.submit-button:hover[b-ioibbwu06e] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
    background: #059669;
}

.submit-button:active[b-ioibbwu06e] {
    transform: translateY(0);
}

.submit-button:disabled[b-ioibbwu06e] {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .non-programming-content[b-ioibbwu06e] {
        padding: 1.5rem;
    }
    \n    .assignment-content-section[b-ioibbwu06e] {\n        margin-bottom: 2rem;\n    }\n    \n    .content-section-header[b-ioibbwu06e] {\n        font-size: 1.125rem;\n    }\n    \n    .assignment-content-box[b-ioibbwu06e] {\n        padding: 1.5rem;\n    }\n    \n    .answer-textarea[b-ioibbwu06e] {\n        min-height: 120px;\n    }\n    \n    .submit-button[b-ioibbwu06e] {\n        width: 100%;\n        padding: 1rem;\n    }\n[b-ioibbwu06e]}\n\n@media (max-width: 576px)[b-ioibbwu06e] {\n    .non-programming-content {\n        padding: 1rem;\n    }\n    \n    .assignment-content-box[b-ioibbwu06e] {\n        padding: 1rem;\n    }\n    \n    .answer-input-container[b-ioibbwu06e] {\n        padding: 0.75rem;\n    }\n    \n    .answer-textarea[b-ioibbwu06e] {\n        min-height: 100px;\n        padding: 0.75rem;\n    }\n    \n    .submit-button[b-ioibbwu06e] {\n        font-size: 1rem;\n        padding: 0.875rem;\n    }\n[b-ioibbwu06e]}\n\n/* 平板端优化 */\n@media (min-width: 769px) and (max-width: 1024px)[b-ioibbwu06e] {\n    .non-programming-content {\n        padding: 1.75rem;\n    }\n    \n    .assignment-content-box[b-ioibbwu06e] {\n        padding: 1.75rem;\n    }\n[b-ioibbwu06e]}\n\n/* 大屏幕优化 */\n@media (min-width: 1400px)[b-ioibbwu06e] {\n    .non-programming-content {\n        padding: 2.5rem;\n    }\n    \n    .assignment-content-box[b-ioibbwu06e] {\n        padding: 2.5rem;\n    }\n    \n    .answer-textarea[b-ioibbwu06e] {\n        min-height: 180px;\n    }\n[b-ioibbwu06e]}\n\n/* 动画效果 */\n@keyframes slideInUp[b-ioibbwu06e] {\n    from {\n        transform: translateY(20px);\n        opacity: 0;\n    }\n    to[b-ioibbwu06e] {\n        transform: translateY(0);\n        opacity: 1;\n    }\n[b-ioibbwu06e]}\n\n.assignment-content-section[b-ioibbwu06e] {\n    animation: slideInUp 0.6s ease-out;\n}\n\n.answer-section[b-ioibbwu06e] {\n    animation: slideInUp 0.6s ease-out 0.2s both;\n}\n\n.submit-section[b-ioibbwu06e] {\n    animation: slideInUp 0.6s ease-out 0.4s both;\n}\n\n/* 焦点状态 */\n.submit-button:focus[b-ioibbwu06e] {\n    outline: none;\n    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3), 0 8px 32px rgba(16, 185, 129, 0.35);\n}\n\n/* 无障碍支持 */\n@media (prefers-reduced-motion: reduce)[b-ioibbwu06e] {\n    * {\n        animation-duration: 0.01ms !important;\n        animation-iteration-count: 1 !important;\n        transition-duration: 0.01ms !important;\n    }\n[b-ioibbwu06e]}\n\n/* 高对比度模式支持 */\n@media (prefers-contrast: high)[b-ioibbwu06e] {\n    .assignment-content-box,\n    .answer-input-container {\n        border-width: 2px;\n    }\n    \n    .submit-button[b-ioibbwu06e] {\n        border: 2px solid #000;\n    }\n    \n    .answer-textarea[b-ioibbwu06e],\n    .select-container select[b-ioibbwu06e] {\n        border: 1px solid #000;\n    }\n[b-ioibbwu06e]}
/* _content/School.Server/Components/Components/AssignmentDetails.razor.rz.scp.css */
.assignment-details-container[b-8367wbrupn] {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 10px;
}

.assignment-details-container[b-8367wbrupn]::-webkit-scrollbar {
    width: 8px;
}

.assignment-details-container[b-8367wbrupn]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.assignment-details-container[b-8367wbrupn]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.assignment-details-container[b-8367wbrupn]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.content-display[b-8367wbrupn] {
    margin-bottom: 15px;
}

.code-display pre[b-8367wbrupn] {
    max-height: 300px;
    overflow-y: auto;
    background-color: #f8f9fa;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
}

.code-display pre[b-8367wbrupn]::-webkit-scrollbar {
    width: 6px;
}

.code-display pre[b-8367wbrupn]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.code-display pre[b-8367wbrupn]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.code-display pre[b-8367wbrupn]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.options-list[b-8367wbrupn] {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
}

.options-list[b-8367wbrupn]::-webkit-scrollbar {
    width: 6px;
}

.options-list[b-8367wbrupn]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.options-list[b-8367wbrupn]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.options-list[b-8367wbrupn]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.option-item[b-8367wbrupn] {
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 15px;
}

.option-label-display[b-8367wbrupn] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-weight: bold;
    font-size: 14px;
}

.form-footer[b-8367wbrupn] {
    position: sticky;
    bottom: 0;
    background-color: white;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
}
/* _content/School.Server/Components/Components/AssignmentTypeUI/CompositeQuestionUI.razor.rz.scp.css */
.composite-question-ui[b-vtnxcakovy] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* 子题目管理样式 */
.sub-questions-management[b-vtnxcakovy] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.sub-questions-list[b-vtnxcakovy] {
    max-height: 600px;
    overflow-y: auto;
}

.sub-question-item[b-vtnxcakovy] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.2s ease;
    margin-bottom: 0.75rem;
}

.sub-question-item:hover[b-vtnxcakovy] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.sub-question-content[b-vtnxcakovy] {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
}

.sub-question-options[b-vtnxcakovy] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.sub-question-answer[b-vtnxcakovy] {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.option-item[b-vtnxcakovy] {
    color: #64748b;
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

/* 与项目风格保持一致的颜色方案 */
[b-vtnxcakovy] .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .composite-question-ui[b-vtnxcakovy] {
        padding: 1rem;
    }
    
    .sub-questions-management[b-vtnxcakovy] {
        padding: 1rem;
    }
    
    .sub-question-item[b-vtnxcakovy] {
        padding: 0.75rem;
    }
}
/* _content/School.Server/Components/Components/AssignmentTypeUI/FillInTheBlankUI.razor.rz.scp.css */
.fill-in-blank-ui[b-fyprmm4ha4] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* 与项目风格保持一致的颜色方案 */
[b-fyprmm4ha4] .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

[b-fyprmm4ha4] .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .fill-in-blank-ui[b-fyprmm4ha4] {
        padding: 1rem;
    }
}
/* _content/School.Server/Components/Components/AssignmentTypeUI/MultipleChoiceUI.razor.rz.scp.css */
.multiple-choice-ui[b-hahw383omy] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* 选项管理样式 */
.options-management[b-hahw383omy] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.options-list[b-hahw383omy] {
    max-height: 400px;
    overflow-y: auto;
}

.option-item[b-hahw383omy] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.option-item:hover[b-hahw383omy] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.option-label-display[b-hahw383omy] {
    background: #3b82f6;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* 选项正确答案复选框对齐样式 */
.form-check[b-hahw383omy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.form-check-input[b-hahw383omy] {
    margin: 0 !important;
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    accent-color: #3b82f6;
}

.form-check-label[b-hahw383omy] {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.125rem;
    cursor: pointer;
    user-select: none;
}

/* 与项目风格保持一致的颜色方案 */
[b-hahw383omy] .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .multiple-choice-ui[b-hahw383omy] {
        padding: 1rem;
    }
    
    .options-management[b-hahw383omy] {
        padding: 1rem;
    }
    
    .option-item[b-hahw383omy] {
        padding: 0.75rem;
    }
    
    .option-label-display[b-hahw383omy] {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
}
/* _content/School.Server/Components/Components/AssignmentTypeUI/ProgrammingUI.razor.rz.scp.css */
.programming-ui[b-61xlg025rj] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* CodeEditor 容器样式 */
.code-editor-container[b-61xlg025rj] {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    overflow: hidden;
}

/* 与项目风格保持一致的颜色方案 */

/* 响应式设计 */
@media (max-width: 768px) {
    .programming-ui[b-61xlg025rj] {
        padding: 1rem;
    }
}
/* _content/School.Server/Components/Components/AssignmentTypeUI/SingleChoiceUI.razor.rz.scp.css */
.single-choice-ui[b-4rwztvr1wl] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* 选项管理样式 */
.options-management[b-4rwztvr1wl] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.options-list[b-4rwztvr1wl] {
    max-height: 400px;
    overflow-y: auto;
}

.option-item[b-4rwztvr1wl] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.option-item:hover[b-4rwztvr1wl] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.option-label-display[b-4rwztvr1wl] {
    background: #3b82f6;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* 选项正确答案单选框对齐样式 */
.form-check[b-4rwztvr1wl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.form-check-input[b-4rwztvr1wl] {
    margin: 0 !important;
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    accent-color: #3b82f6;
}

.form-check-label[b-4rwztvr1wl] {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.125rem;
    cursor: pointer;
    user-select: none;
}

/* 与项目风格保持一致的颜色方案 */
[b-4rwztvr1wl] .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .single-choice-ui[b-4rwztvr1wl] {
        padding: 1rem;
    }
    
    .options-management[b-4rwztvr1wl] {
        padding: 1rem;
    }
    
    .option-item[b-4rwztvr1wl] {
        padding: 0.75rem;
    }
    
    .option-label-display[b-4rwztvr1wl] {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
}
/* _content/School.Server/Components/Components/AssignmentTypeUI/TrueFalseUI.razor.rz.scp.css */
.true-false-ui[b-ytxm2n4nur] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* 与项目风格保持一致的颜色方案 */
[b-ytxm2n4nur] .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

[b-ytxm2n4nur] .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .true-false-ui[b-ytxm2n4nur] {
        padding: 1rem;
    }
}
/* _content/School.Server/Components/Components/CourseHomeworkSubmissions.razor.rz.scp.css */
/* 整体容器样式 */
.row.g-3[b-50nclr40e3] {
    margin: 0;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 卡片样式优化 */
.card[b-50nclr40e3] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover[b-50nclr40e3] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 课程信息卡片特殊样式 */
.course-info-card[b-50nclr40e3] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 108, 247, 0.1);
}

.course-card-header[b-50nclr40e3] {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    margin: -1px -1px 0 -1px;
}

.header-icon[b-50nclr40e3] {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 18px;
}

.course-card-header h5[b-50nclr40e3] {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.course-info-content[b-50nclr40e3] {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.info-item[b-50nclr40e3] {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.info-icon[b-50nclr40e3] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
    color: #4a6cf7;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon[b-50nclr40e3] {
    background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
    color: white;
    transform: translateY(-2px);
}

.info-details[b-50nclr40e3] {
    flex: 1;
}

.info-label[b-50nclr40e3] {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-value[b-50nclr40e3] {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.info-divider[b-50nclr40e3] {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e9ecef, transparent);
    margin: 0 8px;
}

/* 表单标签样式 */
.bootstrap-label[b-50nclr40e3] {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control-plaintext[b-50nclr40e3] {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 0;
}

/* 作业列表卡片特殊样式 */
.assignments-card[b-50nclr40e3] {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.assignments-header[b-50nclr40e3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-left[b-50nclr40e3] {
    display: flex;
    align-items: center;
}

.header-icon[b-50nclr40e3] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 18px;
    color: #4a6cf7;
}

.header-left h5[b-50nclr40e3] {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.header-stats[b-50nclr40e3] {
    display: flex;
    align-items: center;
}

.stat-item[b-50nclr40e3] {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-icon[b-50nclr40e3] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    color: white;
}

.stat-content[b-50nclr40e3] {
    display: flex;
    flex-direction: column;
}

.stat-label[b-50nclr40e3] {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.stat-value[b-50nclr40e3] {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.stat-divider[b-50nclr40e3] {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 16px;
}

/* 表格样式优化 */
.table-responsive[b-50nclr40e3] {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.assignments-table[b-50nclr40e3] {
    margin-bottom: 0;
}

.assignments-table th[b-50nclr40e3] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.assignments-table td[b-50nclr40e3] {
    border: none;
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.assignments-table tr:hover td[b-50nclr40e3] {
    background-color: #f8f9fa;
}

/* 作业类型徽章样式 */
.assignment-type-badge[b-50nclr40e3] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon[b-50nclr40e3] {
    width: 28px;
    height: 28px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #4a6cf7;
}

/* 作业标题样式 */
.assignment-title[b-50nclr40e3] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.title-text[b-50nclr40e3] {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.title-meta[b-50nclr40e3] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-item[b-50nclr40e3] {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #6c757d;
}

.meta-item i[b-50nclr40e3] {
    margin-right: 4px;
    font-size: 10px;
}

/* 提交统计样式 */
.submission-stats[b-50nclr40e3] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-progress[b-50nclr40e3] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-label[b-50nclr40e3] {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6c757d;
}

.progress-bar-container[b-50nclr40e3] {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill[b-50nclr40e3] {
    height: 100%;
    background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-bar-container.graded .progress-bar-fill[b-50nclr40e3] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* 操作按钮样式 */
.action-cell[b-50nclr40e3] {
    display: flex;
    justify-content: center;
}

.view-details-btn[b-50nclr40e3] {
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.view-details-btn:hover[b-50nclr40e3] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(74, 108, 247, 0.3);
}

/* 徽章样式优化 */
.badge[b-50nclr40e3] {
    padding: 6px 10px;
    font-weight: 500;
    border-radius: 6px;
}

/* 盾牌徽章样式优化 */
.shield-badge[b-50nclr40e3] {
    margin-right: 8px;
    font-size: 0.85em;
}

/* 按钮样式优化 */
.btn[b-50nclr40e3] {
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.btn:hover[b-50nclr40e3] {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary[b-50nclr40e3] {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-50nclr40e3] {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* 空状态样式 */
.empty-state[b-50nclr40e3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    margin: 20px 0;
}

.empty-icon[b-50nclr40e3] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
    color: #adb5bd;
    animation: float-b-50nclr40e3 3s ease-in-out infinite;
}

.empty-text[b-50nclr40e3] {
    text-align: center;
}

.empty-text h6[b-50nclr40e3] {
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.empty-text p[b-50nclr40e3] {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

@keyframes float-b-50nclr40e3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 统计概览卡片样式 */
.stats-overview-card[b-50nclr40e3] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 108, 247, 0.1);
    margin-bottom: 24px;
}

.stats-overview-header[b-50nclr40e3] {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-overview-header h5[b-50nclr40e3] {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
}

.stats-overview-header h5 i[b-50nclr40e3] {
    color: #4a6cf7;
    margin-right: 8px;
}

.stats-grid[b-50nclr40e3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 24px;
}

.stat-card[b-50nclr40e3] {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover[b-50nclr40e3] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.stat-card-icon[b-50nclr40e3] {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.stat-card:nth-child(1) .stat-card-icon[b-50nclr40e3] {
    background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
}

.stat-card:nth-child(2) .stat-card-icon[b-50nclr40e3] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.stat-card:nth-child(3) .stat-card-icon[b-50nclr40e3] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.stat-card:nth-child(4) .stat-card-icon[b-50nclr40e3] {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
}

.stat-card-content[b-50nclr40e3] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-card-value[b-50nclr40e3] {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-card-label[b-50nclr40e3] {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

/* 状态指示器样式 */
.status-indicator[b-50nclr40e3] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-indicator.active[b-50nclr40e3] {
    background-color: #28a745;
}

.status-indicator.pending[b-50nclr40e3] {
    background-color: #ffc107;
}

.status-indicator.inactive[b-50nclr40e3] {
    background-color: #dc3545;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .course-info-content[b-50nclr40e3] {
        flex-wrap: wrap;
    }
    
    .info-item[b-50nclr40e3] {
        min-width: 45%;
    }
    
    .stats-grid[b-50nclr40e3] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .course-info-content[b-50nclr40e3] {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-item[b-50nclr40e3] {
        min-width: 100%;
    }
    
    .info-divider[b-50nclr40e3] {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .assignments-header[b-50nclr40e3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .header-stats[b-50nclr40e3] {
        width: 100%;
        justify-content: space-between;
    }
    
    .stat-divider[b-50nclr40e3] {
        display: none;
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .stats-grid[b-50nclr40e3] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        padding: 20px;
    }
    
    .stat-card[b-50nclr40e3] {
        padding: 16px;
    }
    
    .stat-card-icon[b-50nclr40e3] {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .stat-card-value[b-50nclr40e3] {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .course-info-content[b-50nclr40e3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .info-item[b-50nclr40e3] {
        width: 100%;
        min-width: auto;
    }
    
    .info-divider[b-50nclr40e3] {
        width: 100%;
        height: 1px;
        margin: 8px 0;
    }
    
    .stats-grid[b-50nclr40e3] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .row.g-3[b-50nclr40e3] {
        padding: 15px;
    }
    
    .card[b-50nclr40e3] {
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .course-card-header[b-50nclr40e3] {
        padding: 16px 20px;
        border-radius: 8px 8px 0 0;
    }
    
    .header-icon[b-50nclr40e3] {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .course-card-header h5[b-50nclr40e3] {
        font-size: 18px;
    }
    
    .course-info-content[b-50nclr40e3] {
        padding: 20px;
        gap: 16px;
    }
    
    .info-icon[b-50nclr40e3] {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .info-value[b-50nclr40e3] {
        font-size: 14px;
    }
    
    .assignments-header[b-50nclr40e3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .header-stats[b-50nclr40e3] {
        width: 100%;
        justify-content: space-between;
    }
    
    .stat-item[b-50nclr40e3] {
        padding: 8px 12px;
        flex: 1;
    }
    
    .stat-icon[b-50nclr40e3] {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .stat-value[b-50nclr40e3] {
        font-size: 16px;
    }
    
    .stat-divider[b-50nclr40e3] {
        margin: 0 12px;
    }
    
    .stats-grid[b-50nclr40e3] {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px 20px;
    }
    
    .stat-card[b-50nclr40e3] {
        padding: 16px;
    }
    
    .stat-card-value[b-50nclr40e3] {
        font-size: 20px;
    }
    
    .assignments-table th[b-50nclr40e3],
    .assignments-table td[b-50nclr40e3] {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .assignment-type-badge[b-50nclr40e3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .submission-stats[b-50nclr40e3] {
        gap: 6px;
    }
    
    .action-cell[b-50nclr40e3] {
        justify-content: flex-start;
    }
    
    .view-details-btn[b-50nclr40e3] {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .empty-state[b-50nclr40e3] {
        padding: 40px 20px;
    }
    
    .empty-icon[b-50nclr40e3] {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .empty-text h6[b-50nclr40e3] {
        font-size: 16px;
    }
    
    .empty-text p[b-50nclr40e3] {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .row.g-3[b-50nclr40e3] {
        padding: 10px;
    }
    
    .course-card-header[b-50nclr40e3] {
        padding: 12px 16px;
    }
    
    .header-icon[b-50nclr40e3] {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .course-card-header h5[b-50nclr40e3] {
        font-size: 16px;
    }
    
    .course-info-content[b-50nclr40e3] {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon[b-50nclr40e3] {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .info-label[b-50nclr40e3] {
        font-size: 11px;
    }
    
    .info-value[b-50nclr40e3] {
        font-size: 13px;
    }
    
    .assignments-header[b-50nclr40e3] {
        padding: 12px 16px;
    }
    
    .header-left h5[b-50nclr40e3] {
        font-size: 16px;
    }
    
    .header-stats[b-50nclr40e3] {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .stat-item[b-50nclr40e3] {
        width: 100%;
        padding: 8px 12px;
    }
    
    .stat-divider[b-50nclr40e3] {
        width: 100%;
        height: 1px;
        margin: 8px 0;
    }
    
    .stats-grid[b-50nclr40e3] {
        padding: 12px 16px;
    }
    
    .stat-card[b-50nclr40e3] {
        padding: 12px;
        gap: 12px;
    }
    
    .stat-card-icon[b-50nclr40e3] {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .stat-card-value[b-50nclr40e3] {
        font-size: 18px;
    }
    
    .stat-card-label[b-50nclr40e3] {
        font-size: 13px;
    }
    
    .assignments-table th[b-50nclr40e3],
    .assignments-table td[b-50nclr40e3] {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .assignments-table[b-50nclr40e3] {
        font-size: 13px;
    }
    
    .assignment-title .title-text[b-50nclr40e3] {
        font-size: 14px;
    }
    
    .meta-item[b-50nclr40e3] {
        font-size: 11px;
    }
    
    .progress-label[b-50nclr40e3] {
        font-size: 11px;
    }
    
    .action-cell[b-50nclr40e3] {
        justify-content: center;
    }
    
    .view-details-btn[b-50nclr40e3] {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .empty-state[b-50nclr40e3] {
        padding: 30px 15px;
    }
    
    .empty-icon[b-50nclr40e3] {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .empty-text h6[b-50nclr40e3] {
        font-size: 15px;
    }
    
    .empty-text p[b-50nclr40e3] {
        font-size: 12px;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .btn[b-50nclr40e3],
    .view-details-btn[b-50nclr40e3] {
        min-height: 44px;
        min-width: 44px;
    }
    
    .stat-card[b-50nclr40e3],
    .info-item[b-50nclr40e3] {
        min-height: 48px;
    }
    
    .assignments-table tr[b-50nclr40e3] {
        min-height: 48px;
    }
    
    .assignments-table th[b-50nclr40e3],
    .assignments-table td[b-50nclr40e3] {
        padding: 16px 12px;
    }
    
    .action-cell[b-50nclr40e3] {
        padding: 8px 0;
    }
}

/* 横向滚动优化 */
@media (max-width: 768px) {
    .table-responsive[b-50nclr40e3] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .assignments-table[b-50nclr40e3] {
        min-width: 600px;
    }
}

@media (max-width: 576px) {
    .row.g-3[b-50nclr40e3] {
        padding: 10px;
    }
    
    .course-info-content[b-50nclr40e3] {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon[b-50nclr40e3] {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .info-details[b-50nclr40e3] {
        flex: 1;
    }
    
    .info-value[b-50nclr40e3] {
        font-size: 13px;
    }
    
    .stats-grid[b-50nclr40e3] {
        padding: 16px;
        gap: 12px;
    }
    
    .stat-card[b-50nclr40e3] {
        padding: 12px;
    }
    
    .stat-card-icon[b-50nclr40e3] {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .stat-card-value[b-50nclr40e3] {
        font-size: 20px;
    }
    
    .stat-card-label[b-50nclr40e3] {
        font-size: 12px;
    }
    
    .assignments-header[b-50nclr40e3] {
        padding: 12px 16px;
    }
    
    .header-icon[b-50nclr40e3] {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .header-left h5[b-50nclr40e3] {
        font-size: 16px;
    }
    
    .stat-item[b-50nclr40e3] {
        padding: 6px 12px;
    }
    
    .stat-icon[b-50nclr40e3] {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    .stat-value[b-50nclr40e3] {
        font-size: 14px;
    }
    
    .assignments-table th[b-50nclr40e3],
    .assignments-table td[b-50nclr40e3] {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .assignment-type-badge[b-50nclr40e3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .badge-icon[b-50nclr40e3] {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .assignment-title[b-50nclr40e3] {
        max-width: 120px;
    }
    
    .title-text[b-50nclr40e3] {
        font-size: 12px;
    }
    
    .title-meta[b-50nclr40e3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .submission-stats[b-50nclr40e3] {
        min-width: 120px;
    }
    
    .progress-label[b-50nclr40e3] {
        font-size: 11px;
    }
    
    .action-cell[b-50nclr40e3] {
        padding: 4px;
    }
    
    .view-details-btn[b-50nclr40e3] {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .empty-state[b-50nclr40e3] {
        padding: 30px 15px;
    }
    
    .empty-icon[b-50nclr40e3] {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .empty-text h6[b-50nclr40e3] {
        font-size: 14px;
    }
    
    .empty-text p[b-50nclr40e3] {
        font-size: 11px;
    }
}

/* 触摸设备优化 */
@media (hover: none) {
    .stat-card:hover[b-50nclr40e3] {
        transform: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    }
    
    .info-item:hover .info-icon[b-50nclr40e3] {
        transform: none;
    }
    
    .btn:hover[b-50nclr40e3] {
        transform: none;
        box-shadow: none;
    }
    
    .view-details-btn:hover[b-50nclr40e3] {
        transform: none;
        box-shadow: none;
    }
    
    /* 增大可点击区域 */
    .info-item[b-50nclr40e3] {
        padding: 8px;
    }
    
    .stat-card[b-50nclr40e3] {
        padding: 16px;
    }
    
    .view-details-btn[b-50nclr40e3] {
        min-height: 36px;
        min-width: 80px;
    }
    
    /* 表格行优化 */
    .assignments-table tr[b-50nclr40e3] {
        height: 60px;
    }
    
    .assignments-table td[b-50nclr40e3] {
        padding: 16px 12px;
    }
}

/* 横向滚动优化 */
.table-responsive[b-50nclr40e3] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive[b-50nclr40e3]::-webkit-scrollbar {
    height: 6px;
}

.table-responsive[b-50nclr40e3]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.table-responsive[b-50nclr40e3]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.table-responsive[b-50nclr40e3]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 动画效果 */
@keyframes fadeIn-b-50nclr40e3 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn-b-50nclr40e3 {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-b-50nclr40e3 {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin-b-50nclr40e3 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card[b-50nclr40e3] {
    animation: fadeIn-b-50nclr40e3 0.5s ease forwards;
}

/* 加载状态样式 */
.loading-overlay[b-50nclr40e3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-spinner[b-50nclr40e3] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.spinner-circle[b-50nclr40e3] {
    width: 48px;
    height: 48px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #4a6cf7;
    border-radius: 50%;
    animation: spin-b-50nclr40e3 1s linear infinite;
}

.spinner-text[b-50nclr40e3] {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.loading-content[b-50nclr40e3] {
    opacity: 0.6;
    pointer-events: none;
}

/* 卡片进入动画 */
.course-info-card[b-50nclr40e3] {
    animation: slideIn-b-50nclr40e3 0.6s ease forwards;
}

.assignments-card[b-50nclr40e3] {
    animation: slideIn-b-50nclr40e3 0.8s ease forwards;
}

.stats-overview-card[b-50nclr40e3] {
    animation: slideIn-b-50nclr40e3 0.7s ease forwards;
}

/* 统计卡片动画 */
.stat-card[b-50nclr40e3] {
    animation: fadeIn-b-50nclr40e3 0.5s ease forwards;
}

.stat-card:nth-child(1)[b-50nclr40e3] { animation-delay: 0.1s; }
.stat-card:nth-child(2)[b-50nclr40e3] { animation-delay: 0.2s; }
.stat-card:nth-child(3)[b-50nclr40e3] { animation-delay: 0.3s; }
.stat-card:nth-child(4)[b-50nclr40e3] { animation-delay: 0.4s; }

/* 表格行动画 */
.assignments-table tr[b-50nclr40e3] {
    animation: fadeIn-b-50nclr40e3 0.5s ease forwards;
}

.assignments-table tr:nth-child(1)[b-50nclr40e3] { animation-delay: 0.1s; }
.assignments-table tr:nth-child(2)[b-50nclr40e3] { animation-delay: 0.2s; }
.assignments-table tr:nth-child(3)[b-50nclr40e3] { animation-delay: 0.3s; }
.assignments-table tr:nth-child(4)[b-50nclr40e3] { animation-delay: 0.4s; }
.assignments-table tr:nth-child(5)[b-50nclr40e3] { animation-delay: 0.5s; }

/* 按钮悬停动画 */
.btn:hover[b-50nclr40e3] {
    animation: pulse-b-50nclr40e3 0.3s ease;
}

/* 图标动画 */
.info-icon:hover[b-50nclr40e3] {
    animation: pulse-b-50nclr40e3 0.5s ease;
}

.header-icon:hover[b-50nclr40e3] {
    animation: pulse-b-50nclr40e3 0.5s ease;
}

.stat-card-icon:hover[b-50nclr40e3] {
    animation: pulse-b-50nclr40e3 0.5s ease;
}

.badge-icon:hover[b-50nclr40e3] {
    animation: pulse-b-50nclr40e3 0.3s ease;
}

/* 作业状态徽章容器 */
.status-badges[b-50nclr40e3] {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* 统计信息样式 */
.stats-container[b-50nclr40e3] {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.stat-item[b-50nclr40e3] {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
}

.stat-item i[b-50nclr40e3] {
    margin-right: 5px;
    color: #4a6cf7;
}

.stat-item strong[b-50nclr40e3] {
    color: #495057;
    margin-left: 5px;
}
/* _content/School.Server/Components/Components/ExamAnswerDetailDialog.razor.rz.scp.css */
.judge-message-content[b-ipgr7ilrqn] {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5;
}
/* _content/School.Server/Components/Components/ExamAssignmentSelect.razor.rz.scp.css */
.assignment-select-container[b-rp661c6kx0] {
    /* 移除 min-height 避免 Dialog 出现白底 */
}

.selected-item[b-rp661c6kx0] {
    transition: all 0.2s ease-in-out;
}

.selected-item:hover[b-rp661c6kx0] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.selected-title[b-rp661c6kx0] {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 4px;
}

.selected-meta[b-rp661c6kx0] {
    font-size: 0.8rem;
}

.selected-assignments .card[b-rp661c6kx0] {
    height: 100%;
}

.selected-assignments .card-body[b-rp661c6kx0] {
    max-height: 500px;
    overflow-y: auto;
}

.selected-list[b-rp661c6kx0] {
    /* 移除 min-height 避免 Dialog 出现白底 */
}

/* 自定义滚动条 */
.selected-assignments .card-body[b-rp661c6kx0]::-webkit-scrollbar {
    width: 6px;
}

.selected-assignments .card-body[b-rp661c6kx0]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.selected-assignments .card-body[b-rp661c6kx0]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.selected-assignments .card-body[b-rp661c6kx0]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
/* _content/School.Server/Components/Components/ExamStudentAnswersDialog.razor.rz.scp.css */
.judge-message-content[b-54fa6eid3y] {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5;
}

.loading-container[b-54fa6eid3y] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-spinner[b-54fa6eid3y] {
    width: 2rem;
    height: 2rem;
    border: 0.25rem solid #f3f3f3;
    border-top: 0.25rem solid #3498db;
    border-radius: 50%;
    animation: spin-b-54fa6eid3y 1s linear infinite;
    margin-bottom: 1rem;
}

.loading-text[b-54fa6eid3y] {
    color: #6c757d;
}

@keyframes spin-b-54fa6eid3y {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.options-list[b-54fa6eid3y] {
    margin-top: 0.5rem;
}

.option-item[b-54fa6eid3y] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.option-label[b-54fa6eid3y] {
    color: #495057;
}

.composite-answers[b-54fa6eid3y] {
    margin-top: 0.5rem;
}

.sub-answer-item[b-54fa6eid3y] {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

/* 美化的考试信息头部卡片 */
.exam-header-card[b-54fa6eid3y] {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.exam-header-card[b-54fa6eid3y]::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.exam-header-content[b-54fa6eid3y] {
    position: relative;
    z-index: 1;
}

.exam-title-section[b-54fa6eid3y] {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.exam-icon[b-54fa6eid3y] {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.exam-title[b-54fa6eid3y] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 600;
}

.exam-subtitle[b-54fa6eid3y] {
    margin: 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.exam-meta-section[b-54fa6eid3y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.meta-item[b-54fa6eid3y] {
    display: flex;
    align-items: center;
}

.meta-icon[b-54fa6eid3y] {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.meta-content[b-54fa6eid3y] {
    flex: 1;
}

.meta-label[b-54fa6eid3y] {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.meta-value[b-54fa6eid3y] {
    font-size: 0.95rem;
    font-weight: 500;
}

/* 美化的学生选择器卡片 */
.student-selector-card[b-54fa6eid3y] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.selector-header[b-54fa6eid3y] {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.selector-title[b-54fa6eid3y] {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #495057;
}

.selector-title i[b-54fa6eid3y] {
    margin-right: 0.5rem;
    color: #6a11cb;
}

.selector-content[b-54fa6eid3y] {
    padding: 1.5rem;
}

.selector-row[b-54fa6eid3y] {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.selector-field[b-54fa6eid3y] {
    flex: 1;
    min-width: 250px;
}

.field-label[b-54fa6eid3y] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
}

.student-select[b-54fa6eid3y] {
    width: 100%;
}

.selector-action[b-54fa6eid3y] {
    margin-bottom: 0.25rem;
}

/* 美化的学生信息卡片 */
.student-info-card[b-54fa6eid3y] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.student-header[b-54fa6eid3y] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
}

.student-avatar[b-54fa6eid3y] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    font-size: 1.75rem;
}

.student-details[b-54fa6eid3y] {
    flex: 1;
}

.student-name[b-54fa6eid3y] {
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.student-badges[b-54fa6eid3y] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.status-badge[b-54fa6eid3y], .score-badge[b-54fa6eid3y] {
    display: flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge i[b-54fa6eid3y], .score-badge i[b-54fa6eid3y] {
    margin-right: 0.4rem;
}

.status-judged[b-54fa6eid3y] {
    background: rgba(40, 167, 69, 0.8);
}

.status-pending[b-54fa6eid3y] {
    background: rgba(255, 193, 7, 0.8);
}

.score-badge[b-54fa6eid3y] {
    background: rgba(255, 255, 255, 0.25);
}

.student-meta[b-54fa6eid3y] {
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background-color: #f8f9fa;
}

.student-meta .meta-item[b-54fa6eid3y] {
    display: flex;
    align-items: center;
}

.student-meta .meta-icon[b-54fa6eid3y] {
    width: 32px;
    height: 32px;
    background: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: #6a11cb;
}

.student-meta .meta-content[b-54fa6eid3y] {
    flex: 1;
}

.student-meta .meta-label[b-54fa6eid3y] {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.student-meta .meta-value[b-54fa6eid3y] {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .exam-title-section[b-54fa6eid3y] {
        flex-direction: column;
        text-align: center;
    }
    
    .exam-icon[b-54fa6eid3y] {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .exam-meta-section[b-54fa6eid3y] {
        grid-template-columns: 1fr;
    }
    
    .selector-row[b-54fa6eid3y] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .selector-action[b-54fa6eid3y] {
        margin-top: 1rem;
    }
    
    .student-header[b-54fa6eid3y] {
        flex-direction: column;
        text-align: center;
    }
    
    .student-avatar[b-54fa6eid3y] {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .student-badges[b-54fa6eid3y] {
        justify-content: center;
    }
    
    .student-meta[b-54fa6eid3y] {
        grid-template-columns: 1fr;
    }
}
/* _content/School.Server/Components/Components/ExamView.razor.rz.scp.css */
.exam-view-container[b-3j5qgvq2ob] {
    padding: 0;
}

/* 试卷基本信息样式 */
.exam-basic-info .card[b-3j5qgvq2ob] {
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.exam-title[b-3j5qgvq2ob] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exam-title h5[b-3j5qgvq2ob] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.exam-meta[b-3j5qgvq2ob] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-item[b-3j5qgvq2ob] {
    margin-bottom: 0.75rem;
}

.info-item label[b-3j5qgvq2ob] {
    font-weight: 500;
    color: #6c757d;
    margin-right: 0.5rem;
    min-width: 80px;
    display: inline-block;
}

.exam-description[b-3j5qgvq2ob] {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    border-left: 4px solid #0d6efd;
}

.exam-settings[b-3j5qgvq2ob] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.setting-item[b-3j5qgvq2ob] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 参与班级样式 */
.exam-classes .card[b-3j5qgvq2ob] {
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.class-list[b-3j5qgvq2ob] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.class-badge[b-3j5qgvq2ob] {
    font-size: 0.875rem;
    padding: 0.35em 0.65em;
}

/* 试卷题目样式 */
.exam-questions .card[b-3j5qgvq2ob] {
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.exam-questions .card-header[b-3j5qgvq2ob] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exam-questions .card-header h4[b-3j5qgvq2ob] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.question-count[b-3j5qgvq2ob] {
    font-size: 0.875rem;
    color: #6c757d;
}

.questions-container[b-3j5qgvq2ob] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question-item[b-3j5qgvq2ob] {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    background-color: #fff;
}

.question-header[b-3j5qgvq2ob] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.question-number[b-3j5qgvq2ob] {
    font-weight: 600;
    color: #0d6efd;
    min-width: 30px;
}

.question-title[b-3j5qgvq2ob] {
    font-weight: 500;
    flex-grow: 1;
}

.question-meta[b-3j5qgvq2ob] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.question-content[b-3j5qgvq2ob] {
    margin-bottom: 0.75rem;
}

.question-text[b-3j5qgvq2ob] {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* 复合题样式 */
.composite-question[b-3j5qgvq2ob] {
    margin-bottom: 0.75rem;
}

.main-content[b-3j5qgvq2ob] {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
}

.sub-questions[b-3j5qgvq2ob] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 选择题样式 */
.choice-question[b-3j5qgvq2ob] {
    margin-bottom: 0.75rem;
}

.question-options[b-3j5qgvq2ob] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.option-item[b-3j5qgvq2ob] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
}

.option-label[b-3j5qgvq2ob] {
    font-weight: 500;
    min-width: 20px;
}

/* 答案样式 */
.question-answer[b-3j5qgvq2ob] {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background-color: #e7f3ff;
    border-radius: 0.25rem;
    border-left: 4px solid #0d6efd;
}

.answer-label[b-3j5qgvq2ob] {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.answer-content[b-3j5qgvq2ob] {
    font-family: 'Courier New', monospace;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #dee2e6;
}

/* 考试统计样式 */
.exam-stats .card[b-3j5qgvq2ob] {
    border-radius: 0.375rem;
}

.stats-grid[b-3j5qgvq2ob] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-card[b-3j5qgvq2ob] {
    text-align: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease-in-out;
}

.stat-card:hover[b-3j5qgvq2ob] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.stat-number[b-3j5qgvq2ob] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 0.25rem;
}

.stat-label[b-3j5qgvq2ob] {
    font-size: 0.875rem;
    color: #6c757d;
}

/* 加载状态样式 */
.loading-container[b-3j5qgvq2ob] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    gap: 1rem;
}

.loading-text[b-3j5qgvq2ob] {
    color: #6c757d;
    font-size: 0.875rem;
}
/* _content/School.Server/Components/Components/ExpandableCard.razor.rz.scp.css */
/* 可展开卡片组件样式 - 简约清新风格 */
.expandable-card[b-fyw0f6ld86] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: fit-content;
}

.expandable-card:hover[b-fyw0f6ld86] {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* 卡片头部 */
.expandable-card-header[b-fyw0f6ld86] {
    background: #ffffff; /* 纯白色背景 */
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.expandable-card-header:hover[b-fyw0f6ld86] {
    background: #f8fafc;
}

.card-info h3[b-fyw0f6ld86] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.card-meta[b-fyw0f6ld86] {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-stats[b-fyw0f6ld86] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-badge[b-fyw0f6ld86] {
    font-size: 0.875rem;
    color: #1d4ed8; /* 深蓝色文字 */
    font-weight: 500;
    background: #dbeafe; /* 清新的浅蓝色背景 */
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    border: 1px solid #93c5fd;
}

.collapse-icon[b-fyw0f6ld86] {
    font-size: 0.75rem;
    color: #64748b;
    transition: transform 0.2s ease;
}

/* 卡片内容 */
.expandable-card-content[b-fyw0f6ld86] {
    padding: 1rem 1.5rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .expandable-card-header[b-fyw0f6ld86] {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .card-stats[b-fyw0f6ld86] {
        align-self: flex-end;
    }
    
    .expandable-card-content[b-fyw0f6ld86] {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .expandable-card-header[b-fyw0f6ld86] {
        padding: 0.75rem;
    }
    
    .expandable-card-content[b-fyw0f6ld86] {
        padding: 0.75rem;
    }
}
/* _content/School.Server/Components/Components/HomeworkSubmissions.razor.rz.scp.css */
/* 整体容器样式 */
.row.g-3[b-hbvvktdk8r] {
    margin: 0;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 作业信息卡片样式 */
.assignment-info-card[b-hbvvktdk8r] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 108, 247, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.assignment-info-card:hover[b-hbvvktdk8r] {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.assignment-card-header[b-hbvvktdk8r] {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    margin: -1px -1px 0 -1px;
}

.header-icon[b-hbvvktdk8r] {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 18px;
}

.assignment-card-header h5[b-hbvvktdk8r] {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.assignment-info-content[b-hbvvktdk8r] {
    display: flex;
    align-items: center;
    padding: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.info-item[b-hbvvktdk8r] {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.info-icon[b-hbvvktdk8r] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
    color: #4a6cf7;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon[b-hbvvktdk8r] {
    background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
    color: white;
    transform: translateY(-2px);
}

.info-details[b-hbvvktdk8r] {
    flex: 1;
}

.info-label[b-hbvvktdk8r] {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-value[b-hbvvktdk8r] {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.info-divider[b-hbvvktdk8r] {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e9ecef, transparent);
    margin: 0 8px;
}

/* 表单标签样式 */
.bootstrap-label[b-hbvvktdk8r] {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}

/* 表单值样式 */
div[role="textbox"][b-hbvvktdk8r] {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 0;
}

/* 统计概览卡片样式 */
.stats-overview-card[b-hbvvktdk8r] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(74, 108, 247, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
}

.stats-overview-header[b-hbvvktdk8r] {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-overview-header h5[b-hbvvktdk8r] {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
}

.stats-overview-header h5 i[b-hbvvktdk8r] {
    color: #4a6cf7;
    margin-right: 8px;
}

.stats-grid[b-hbvvktdk8r] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 20px 24px;
}

.stat-card[b-hbvvktdk8r] {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover[b-hbvvktdk8r] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.stat-card-icon[b-hbvvktdk8r] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.stat-card:nth-child(1) .stat-card-icon[b-hbvvktdk8r] {
    background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
}

.stat-card:nth-child(2) .stat-card-icon[b-hbvvktdk8r] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.stat-card:nth-child(3) .stat-card-icon[b-hbvvktdk8r] {
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
}

.stat-card:nth-child(4) .stat-card-icon[b-hbvvktdk8r] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.stat-card-content[b-hbvvktdk8r] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-card-value[b-hbvvktdk8r] {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-card-label[b-hbvvktdk8r] {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

/* 提交列表卡片样式 */
.submissions-card[b-hbvvktdk8r] {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.submissions-header[b-hbvvktdk8r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-left[b-hbvvktdk8r] {
    display: flex;
    align-items: center;
}

.header-left h5[b-hbvvktdk8r] {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.header-stats[b-hbvvktdk8r] {
    display: flex;
    align-items: center;
}

.stat-item[b-hbvvktdk8r] {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-icon[b-hbvvktdk8r] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4a6cf7 0%, #3b5bdb 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    color: white;
}

.stat-content[b-hbvvktdk8r] {
    display: flex;
    flex-direction: column;
}

.stat-label[b-hbvvktdk8r] {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.stat-value[b-hbvvktdk8r] {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.stat-divider[b-hbvvktdk8r] {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 16px;
}

/* 表格样式优化 */
.table-responsive[b-hbvvktdk8r] {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.submissions-table[b-hbvvktdk8r] {
    margin-bottom: 0;
}

.submissions-table th[b-hbvvktdk8r] {
    background: #f8f9fa;
    color: #495057;
    font-weight: 600;
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submissions-table td[b-hbvvktdk8r] {
    border: none;
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.submissions-table tr:hover td[b-hbvvktdk8r] {
    background-color: #f8f9fa;
}

/* 学生信息样式 */
.student-info[b-hbvvktdk8r] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.student-avatar[b-hbvvktdk8r] {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #4a6cf7;
}

.student-name[b-hbvvktdk8r] {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

/* 提交时间样式 */
.submission-time[b-hbvvktdk8r] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-icon[b-hbvvktdk8r] {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #4a6cf7;
}

.time-text[b-hbvvktdk8r] {
    font-size: 14px;
    color: #2c3e50;
}

/* 检查状态样式 */
.check-status[b-hbvvktdk8r] {
    display: flex;
    justify-content: center;
}

.status-badge[b-hbvvktdk8r] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.checked[b-hbvvktdk8r] {
    background: #d4edda;
    color: #155724;
}

.status-badge.unchecked[b-hbvvktdk8r] {
    background: #f8d7da;
    color: #721c24;
}

/* 结果状态样式 */
.result-badge[b-hbvvktdk8r] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.result-badge.correct[b-hbvvktdk8r] {
    background: #d4edda;
    color: #155724;
}

.result-badge.incorrect[b-hbvvktdk8r] {
    background: #f8d7da;
    color: #721c24;
}

.result-badge.pending[b-hbvvktdk8r] {
    background: #fff3cd;
    color: #856404;
}

/* 操作按钮样式 */
.action-cell[b-hbvvktdk8r] {
    display: flex;
    justify-content: center;
}

.view-content-btn[b-hbvvktdk8r] {
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.view-content-btn:hover[b-hbvvktdk8r] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(74, 108, 247, 0.3);
}

/* 按钮样式优化 */
.btn[b-hbvvktdk8r] {
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.btn:hover[b-hbvvktdk8r] {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary[b-hbvvktdk8r] {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-hbvvktdk8r] {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-sm[b-hbvvktdk8r] {
    padding: 6px 12px;
    font-size: 0.875rem;
}

/* 状态文本样式 */
.text-success[b-hbvvktdk8r] {
    color: #28a745;
    font-weight: 500;
}

.text-danger[b-hbvvktdk8r] {
    color: #dc3545;
    font-weight: 500;
}

.text-warning[b-hbvvktdk8r] {
    color: #ffc107;
    font-weight: 500;
}

/* 状态指示器样式 */
.status-indicator[b-hbvvktdk8r] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-indicator.success[b-hbvvktdk8r] {
    background-color: #28a745;
}

.status-indicator.danger[b-hbvvktdk8r] {
    background-color: #dc3545;
}

.status-indicator.warning[b-hbvvktdk8r] {
    background-color: #ffc107;
}

/* 操作按钮容器 */
.action-buttons[b-hbvvktdk8r] {
    display: flex;
    gap: 8px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .stats-grid[b-hbvvktdk8r] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        padding: 20px;
    }
    
    .stat-card[b-hbvvktdk8r] {
        padding: 16px;
    }
    
    .stat-card-icon[b-hbvvktdk8r] {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .stat-card-value[b-hbvvktdk8r] {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .assignment-info-content[b-hbvvktdk8r] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .info-item[b-hbvvktdk8r] {
        width: 100%;
        min-width: auto;
    }
    
    .info-divider[b-hbvvktdk8r] {
        width: 100%;
        height: 1px;
        margin: 8px 0;
    }
    
    .submissions-header[b-hbvvktdk8r] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .header-stats[b-hbvvktdk8r] {
        width: 100%;
        justify-content: space-between;
    }
    
    .stat-divider[b-hbvvktdk8r] {
        display: none;
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .stats-grid[b-hbvvktdk8r] {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 20px;
    }
    
    .stat-card[b-hbvvktdk8r] {
        padding: 16px;
    }
    
    .stat-card-icon[b-hbvvktdk8r] {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .stat-card-value[b-hbvvktdk8r] {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .assignment-info-content[b-hbvvktdk8r] {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .info-item[b-hbvvktdk8r] {
        width: 100%;
        min-width: auto;
    }
    
    .info-divider[b-hbvvktdk8r] {
        width: 100%;
        height: 1px;
        margin: 8px 0;
    }
    
    .submissions-header[b-hbvvktdk8r] {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .header-stats[b-hbvvktdk8r] {
        width: 100%;
        justify-content: space-between;
    }
    
    .stat-divider[b-hbvvktdk8r] {
        display: none;
    }
}

@media (max-width: 768px) {
    .row.g-3[b-hbvvktdk8r] {
        padding: 15px;
    }
    
    .card[b-hbvvktdk8r] {
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .assignment-card-header[b-hbvvktdk8r] {
        padding: 16px 20px;
        border-radius: 8px 8px 0 0;
    }
    
    .header-icon[b-hbvvktdk8r] {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .assignment-card-header h5[b-hbvvktdk8r] {
        font-size: 18px;
    }
    
    .assignment-info-content[b-hbvvktdk8r] {
        padding: 20px;
        gap: 16px;
    }
    
    .info-icon[b-hbvvktdk8r] {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .info-value[b-hbvvktdk8r] {
        font-size: 14px;
    }
    
    .stats-grid[b-hbvvktdk8r] {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px 20px;
    }
    
    .stat-card[b-hbvvktdk8r] {
        padding: 16px;
    }
    
    .stat-card-value[b-hbvvktdk8r] {
        font-size: 20px;
    }
    
    .submissions-header[b-hbvvktdk8r] {
        padding: 16px 20px;
    }
    
    .header-left h5[b-hbvvktdk8r] {
        font-size: 18px;
    }
    
    .stat-item[b-hbvvktdk8r] {
        padding: 8px 12px;
    }
    
    .stat-icon[b-hbvvktdk8r] {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .stat-value[b-hbvvktdk8r] {
        font-size: 16px;
    }
    
    .submissions-table th[b-hbvvktdk8r],
    .submissions-table td[b-hbvvktdk8r] {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .student-info[b-hbvvktdk8r] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .submission-time[b-hbvvktdk8r] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .action-cell[b-hbvvktdk8r] {
        justify-content: flex-start;
    }
    
    .view-content-btn[b-hbvvktdk8r] {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .empty-state[b-hbvvktdk8r] {
        padding: 40px 20px;
    }
    
    .empty-icon[b-hbvvktdk8r] {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .empty-text h6[b-hbvvktdk8r] {
        font-size: 16px;
    }
    
    .empty-text p[b-hbvvktdk8r] {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .row.g-3[b-hbvvktdk8r] {
        padding: 10px;
    }
    
    .assignment-card-header[b-hbvvktdk8r] {
        padding: 12px 16px;
    }
    
    .header-icon[b-hbvvktdk8r] {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .assignment-card-header h5[b-hbvvktdk8r] {
        font-size: 16px;
    }
    
    .assignment-info-content[b-hbvvktdk8r] {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon[b-hbvvktdk8r] {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .info-label[b-hbvvktdk8r] {
        font-size: 11px;
    }
    
    .info-value[b-hbvvktdk8r] {
        font-size: 13px;
    }
    
    .stats-grid[b-hbvvktdk8r] {
        padding: 12px 16px;
    }
    
    .stat-card[b-hbvvktdk8r] {
        padding: 12px;
        gap: 12px;
    }
    
    .stat-card-icon[b-hbvvktdk8r] {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .stat-card-value[b-hbvvktdk8r] {
        font-size: 18px;
    }
    
    .stat-card-label[b-hbvvktdk8r] {
        font-size: 13px;
    }
    
    .submissions-header[b-hbvvktdk8r] {
        padding: 12px 16px;
    }
    
    .header-left h5[b-hbvvktdk8r] {
        font-size: 16px;
    }
    
    .header-stats[b-hbvvktdk8r] {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .stat-item[b-hbvvktdk8r] {
        width: 100%;
        padding: 8px 12px;
    }
    
    .stat-divider[b-hbvvktdk8r] {
        width: 100%;
        height: 1px;
        margin: 8px 0;
    }
    
    .submissions-table th[b-hbvvktdk8r],
    .submissions-table td[b-hbvvktdk8r] {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .submissions-table[b-hbvvktdk8r] {
        font-size: 13px;
    }
    
    .student-name[b-hbvvktdk8r] {
        font-size: 14px;
    }
    
    .time-text[b-hbvvktdk8r] {
        font-size: 12px;
    }
    
    .status-badge[b-hbvvktdk8r],
    .result-badge[b-hbvvktdk8r] {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .action-cell[b-hbvvktdk8r] {
        justify-content: center;
    }
    
    .view-content-btn[b-hbvvktdk8r] {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .empty-state[b-hbvvktdk8r] {
        padding: 30px 15px;
    }
    
    .empty-icon[b-hbvvktdk8r] {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .empty-text h6[b-hbvvktdk8r] {
        font-size: 15px;
    }
    
    .empty-text p[b-hbvvktdk8r] {
        font-size: 12px;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .btn[b-hbvvktdk8r],
    .view-content-btn[b-hbvvktdk8r] {
        min-height: 44px;
        min-width: 44px;
    }
    
    .stat-card[b-hbvvktdk8r],
    .info-item[b-hbvvktdk8r] {
        min-height: 48px;
    }
    
    .submissions-table tr[b-hbvvktdk8r] {
        min-height: 48px;
    }
    
    .submissions-table th[b-hbvvktdk8r],
    .submissions-table td[b-hbvvktdk8r] {
        padding: 16px 12px;
    }
    
    .action-cell[b-hbvvktdk8r] {
        padding: 8px 0;
    }
}

/* 横向滚动优化 */
@media (max-width: 768px) {
    .table-responsive[b-hbvvktdk8r] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .submissions-table[b-hbvvktdk8r] {
        min-width: 600px;
    }
}

/* 空状态动画 */
.empty-icon[b-hbvvktdk8r] {
    animation: float-b-hbvvktdk8r 3s ease-in-out infinite;
}

@media (max-width: 576px) {
    .row.g-3[b-hbvvktdk8r] {
        padding: 10px;
    }
    
    .assignment-card-header[b-hbvvktdk8r] {
        padding: 12px 16px;
    }
    
    .header-icon[b-hbvvktdk8r] {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .assignment-card-header h5[b-hbvvktdk8r] {
        font-size: 16px;
    }
    
    .assignment-info-content[b-hbvvktdk8r] {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon[b-hbvvktdk8r] {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .info-label[b-hbvvktdk8r] {
        font-size: 11px;
    }
    
    .info-value[b-hbvvktdk8r] {
        font-size: 13px;
    }
    
    .submissions-header[b-hbvvktdk8r] {
        padding: 12px 16px;
    }
    
    .header-left h5[b-hbvvktdk8r] {
        font-size: 16px;
    }
    
    .header-stats[b-hbvvktdk8r] {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .stat-item[b-hbvvktdk8r] {
        width: 100%;
        padding: 8px 12px;
    }
    
    .stat-divider[b-hbvvktdk8r] {
        width: 100%;
        height: 1px;
        margin: 8px 0;
    }
    
    .stats-grid[b-hbvvktdk8r] {
        grid-template-columns: 1fr;
        padding: 12px 16px;
    }
    
    .stat-card[b-hbvvktdk8r] {
        padding: 12px;
        gap: 12px;
    }
    
    .stat-card-icon[b-hbvvktdk8r] {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .stat-card-value[b-hbvvktdk8r] {
        font-size: 18px;
    }
    
    .stat-card-label[b-hbvvktdk8r] {
        font-size: 13px;
    }
    
    .submissions-table th[b-hbvvktdk8r],
    .submissions-table td[b-hbvvktdk8r] {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .student-name[b-hbvvktdk8r] {
        font-size: 14px;
    }
    
    .time-text[b-hbvvktdk8r] {
        font-size: 12px;
    }
    
    .status-badge[b-hbvvktdk8r],
    .result-badge[b-hbvvktdk8r] {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .action-cell[b-hbvvktdk8r] {
        justify-content: center;
    }
    
    .view-content-btn[b-hbvvktdk8r] {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .empty-state[b-hbvvktdk8r] {
        padding: 30px 15px;
    }
    
    .empty-icon[b-hbvvktdk8r] {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .empty-text h6[b-hbvvktdk8r] {
        font-size: 15px;
    }
    
    .empty-text p[b-hbvvktdk8r] {
        font-size: 12px;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .btn[b-hbvvktdk8r],
    .view-content-btn[b-hbvvktdk8r] {
        min-height: 44px;
        min-width: 44px;
    }
    
    .stat-card[b-hbvvktdk8r],
    .info-item[b-hbvvktdk8r] {
        min-height: 48px;
    }
    
    .submissions-table tr[b-hbvvktdk8r] {
        min-height: 48px;
    }
    
    .submissions-table th[b-hbvvktdk8r],
    .submissions-table td[b-hbvvktdk8r] {
        padding: 16px 12px;
    }
    
    .action-cell[b-hbvvktdk8r] {
        padding: 8px 0;
    }
}

/* 横向滚动优化 */
@media (max-width: 768px) {
    .table-responsive[b-hbvvktdk8r] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .submissions-table[b-hbvvktdk8r] {
        min-width: 600px;
    }
}

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

@keyframes slideIn-b-hbvvktdk8r {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-b-hbvvktdk8r {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin-b-hbvvktdk8r {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float-b-hbvvktdk8r {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 卡片进入动画 */
.assignment-info-card[b-hbvvktdk8r] {
    animation: slideIn-b-hbvvktdk8r 0.6s ease forwards;
}

.stats-overview-card[b-hbvvktdk8r] {
    animation: slideIn-b-hbvvktdk8r 0.7s ease forwards;
}

.submissions-card[b-hbvvktdk8r] {
    animation: slideIn-b-hbvvktdk8r 0.8s ease forwards;
}

/* 统计卡片动画 */
.stat-card[b-hbvvktdk8r] {
    animation: fadeIn-b-hbvvktdk8r 0.5s ease forwards;
}

.stat-card:nth-child(1)[b-hbvvktdk8r] { animation-delay: 0.1s; }
.stat-card:nth-child(2)[b-hbvvktdk8r] { animation-delay: 0.2s; }
.stat-card:nth-child(3)[b-hbvvktdk8r] { animation-delay: 0.3s; }
.stat-card:nth-child(4)[b-hbvvktdk8r] { animation-delay: 0.4s; }

/* 表格行动画 */
.submissions-table tr[b-hbvvktdk8r] {
    animation: fadeIn-b-hbvvktdk8r 0.5s ease forwards;
}

.submissions-table tr:nth-child(1)[b-hbvvktdk8r] { animation-delay: 0.1s; }
.submissions-table tr:nth-child(2)[b-hbvvktdk8r] { animation-delay: 0.2s; }
.submissions-table tr:nth-child(3)[b-hbvvktdk8r] { animation-delay: 0.3s; }
.submissions-table tr:nth-child(4)[b-hbvvktdk8r] { animation-delay: 0.4s; }
.submissions-table tr:nth-child(5)[b-hbvvktdk8r] { animation-delay: 0.5s; }

/* 按钮悬停动画 */
.btn:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.3s ease;
}

/* 图标动画 */
.info-icon:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.5s ease;
}

.header-icon:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.5s ease;
}

.stat-card-icon:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.5s ease;
}

.student-avatar:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.3s ease;
}

/* 空状态动画 */
.empty-icon[b-hbvvktdk8r] {
    animation: float-b-hbvvktdk8r 3s ease-in-out infinite;
}

/* 横向滚动优化 */
.table-responsive[b-hbvvktdk8r] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive[b-hbvvktdk8r]::-webkit-scrollbar {
    height: 6px;
}

.table-responsive[b-hbvvktdk8r]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.table-responsive[b-hbvvktdk8r]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.table-responsive[b-hbvvktdk8r]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 微交互效果 */
.info-item[b-hbvvktdk8r] {
    transition: all 0.3s ease;
}

.info-item:hover[b-hbvvktdk8r] {
    transform: translateY(-2px);
}

.stat-card[b-hbvvktdk8r] {
    transition: all 0.3s ease;
}

.stat-card:hover[b-hbvvktdk8r] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.submissions-table tr[b-hbvvktdk8r] {
    transition: all 0.2s ease;
}

.submissions-table tr:hover[b-hbvvktdk8r] {
    background-color: #f8f9fa;
}

.view-content-btn[b-hbvvktdk8r] {
    transition: all 0.2s ease;
}

.view-content-btn:hover[b-hbvvktdk8r] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(74, 108, 247, 0.3);
}
    animation: pulse 0.5s ease;[b-hbvvktdk8r]
}

.student-avatar:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.3s ease;
}

/* 加载状态样式 */
.loading-overlay[b-hbvvktdk8r] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-spinner[b-hbvvktdk8r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.spinner-circle[b-hbvvktdk8r] {
    width: 48px;
    height: 48px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #4a6cf7;
    border-radius: 50%;
    animation: spin-b-hbvvktdk8r 1s linear infinite;
}

.spinner-text[b-hbvvktdk8r] {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.loading-content[b-hbvvktdk8r] {
    opacity: 0.6;
    pointer-events: none;
}

/* 学生信息卡片样式 */
.student-info-card[b-hbvvktdk8r] {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #4a6cf7;
}

.student-info-card h6[b-hbvvktdk8r] {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.student-info-item[b-hbvvktdk8r] {
    display: flex;
    margin-bottom: 8px;
}

.student-info-label[b-hbvvktdk8r] {
    font-size: 14px;
    color: #6c757d;
    width: 100px;
    font-weight: 500;
}

.student-info-value[b-hbvvktdk8r] {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

/* 提交状态样式 */
.submission-status[b-hbvvktdk8r] {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.submission-status.checked[b-hbvvktdk8r] {
    background-color: #d4edda;
    color: #155724;
}

.submission-status.unchecked[b-hbvvktdk8r] {
    background-color: #fff3cd;
    color: #856404;
}

/* 加载状态样式 */
.loading-overlay[b-hbvvktdk8r] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-spinner[b-hbvvktdk8r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.spinner-circle[b-hbvvktdk8r] {
    width: 48px;
    height: 48px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #4a6cf7;
    border-radius: 50%;
    animation: spin-b-hbvvktdk8r 1s linear infinite;
}

.spinner-text[b-hbvvktdk8r] {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.loading-content[b-hbvvktdk8r] {
    opacity: 0.6;
    pointer-events: none;
}

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

@keyframes slideIn-b-hbvvktdk8r {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-b-hbvvktdk8r {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin-b-hbvvktdk8r {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float-b-hbvvktdk8r {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 卡片进入动画 */
.assignment-info-card[b-hbvvktdk8r] {
    animation: slideIn-b-hbvvktdk8r 0.6s ease forwards;
}

.stats-overview-card[b-hbvvktdk8r] {
    animation: slideIn-b-hbvvktdk8r 0.7s ease forwards;
}

.submissions-card[b-hbvvktdk8r] {
    animation: slideIn-b-hbvvktdk8r 0.8s ease forwards;
}

/* 统计卡片动画 */
.stat-card[b-hbvvktdk8r] {
    animation: fadeIn-b-hbvvktdk8r 0.5s ease forwards;
}

.stat-card:nth-child(1)[b-hbvvktdk8r] { animation-delay: 0.1s; }
.stat-card:nth-child(2)[b-hbvvktdk8r] { animation-delay: 0.2s; }
.stat-card:nth-child(3)[b-hbvvktdk8r] { animation-delay: 0.3s; }
.stat-card:nth-child(4)[b-hbvvktdk8r] { animation-delay: 0.4s; }

/* 表格行动画 */
.submissions-table tr[b-hbvvktdk8r] {
    animation: fadeIn-b-hbvvktdk8r 0.5s ease forwards;
}

.submissions-table tr:nth-child(1)[b-hbvvktdk8r] { animation-delay: 0.1s; }
.submissions-table tr:nth-child(2)[b-hbvvktdk8r] { animation-delay: 0.2s; }
.submissions-table tr:nth-child(3)[b-hbvvktdk8r] { animation-delay: 0.3s; }
.submissions-table tr:nth-child(4)[b-hbvvktdk8r] { animation-delay: 0.4s; }
.submissions-table tr:nth-child(5)[b-hbvvktdk8r] { animation-delay: 0.5s; }

/* 按钮悬停动画 */
.btn:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.3s ease;
}

/* 图标动画 */
.info-icon:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.5s ease;
}

.header-icon:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.5s ease;
}

.stat-card-icon:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.5s ease;
}

.student-avatar:hover[b-hbvvktdk8r] {
    animation: pulse-b-hbvvktdk8r 0.3s ease;
}

/* 空状态动画 */
.empty-icon[b-hbvvktdk8r] {
    animation: float-b-hbvvktdk8r 3s ease-in-out infinite;
}

/* 横向滚动优化 */
.table-responsive[b-hbvvktdk8r] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive[b-hbvvktdk8r]::-webkit-scrollbar {
    height: 6px;
}

.table-responsive[b-hbvvktdk8r]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.table-responsive[b-hbvvktdk8r]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.table-responsive[b-hbvvktdk8r]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 微交互效果 */
.info-item[b-hbvvktdk8r] {
    transition: all 0.3s ease;
}

.info-item:hover[b-hbvvktdk8r] {
    transform: translateY(-2px);
}

.stat-card[b-hbvvktdk8r] {
    transition: all 0.3s ease;
}

.stat-card:hover[b-hbvvktdk8r] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.submissions-table tr[b-hbvvktdk8r] {
    transition: all 0.2s ease;
}

.submissions-table tr:hover[b-hbvvktdk8r] {
    background-color: #f8f9fa;
}

.view-content-btn[b-hbvvktdk8r] {
    transition: all 0.2s ease;
}

.view-content-btn:hover[b-hbvvktdk8r] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(74, 108, 247, 0.3);
}
    animation: pulse 0.5s ease;[b-hbvvktdk8r]
}
/* _content/School.Server/Components/Components/ProgrammingQuestionAnswerComponent.razor.rz.scp.css */
.programming-content-container[b-4qgfq8z2re] {
    margin-top: 1rem;
}

.problem-section[b-4qgfq8z2re] {
    margin-bottom: 1.5rem;
}

.section-header[b-4qgfq8z2re] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.content-box[b-4qgfq8z2re] {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
}

.samples-section[b-4qgfq8z2re] {
    background-color: #f8f9fa;
    border-left: 4px solid #17a2b8;
}

.samples-grid[b-4qgfq8z2re] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sample-item[b-4qgfq8z2re] {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    overflow: hidden;
}

.sample-header[b-4qgfq8z2re] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #e9ecef;
    font-weight: 500;
}

.sample-content[b-4qgfq8z2re] {
    padding: 1rem;
    background-color: #fff;
}

.sample-content pre[b-4qgfq8z2re] {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.9rem;
    line-height: 1.5;
}

.copy-button[b-4qgfq8z2re] {
    font-size: 0.875rem;
}

.code-drawer-content[b-4qgfq8z2re] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.drawer-header[b-4qgfq8z2re] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.drawer-title[b-4qgfq8z2re] {
    font-size: 1.1rem;
    font-weight: 600;
}

.drawer-actions[b-4qgfq8z2re] {
    display: flex;
    gap: 0.5rem;
}

.drawer-submit-btn[b-4qgfq8z2re] {
    font-weight: 500;
}

.code-editor-container[b-4qgfq8z2re] {
    flex: 1;
    min-height: 300px;
}

.io-panels[b-4qgfq8z2re] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.io-panel[b-4qgfq8z2re] {
    margin-bottom: 0;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.io-header[b-4qgfq8z2re] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f1f3f5;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #dee2e6;
    font-weight: 500;
    color: #495057;
}

.io-header span[b-4qgfq8z2re] {
    font-size: 0.875rem;
    font-weight: 600;
}

.io-textarea[b-4qgfq8z2re] {
    min-height: 150px;
    resize: vertical;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 1rem;
    border: none;
    background-color: #fff;
    color: #212529;
    width: 100%;
    outline: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.io-textarea:focus[b-4qgfq8z2re] {
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.io-textarea:read-only[b-4qgfq8z2re] {
    background-color: #f8f9fa;
    color: #495057;
}

.run-button[b-4qgfq8z2re] {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.run-button:hover[b-4qgfq8z2re] {
    background-color: #218838;
}

.run-status[b-4qgfq8z2re] {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
/* _content/School.Server/Components/Components/SubQuestionDisplay.razor.rz.scp.css */
.sub-question[b-1lutsqik3r] {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.375rem;
    background-color: var(--bs-body-bg);
}

.sub-question-header[b-1lutsqik3r] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.sub-question-number[b-1lutsqik3r] {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-primary);
    color: white;
    border-radius: 50%;
    font-weight: 500;
    font-size: 0.75rem;
    margin-top: 0.1rem;
}

.sub-question-content[b-1lutsqik3r] {
    flex: 1;
}

.sub-question-meta[b-1lutsqik3r] {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.sub-question-title[b-1lutsqik3r] {
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.sub-question-type[b-1lutsqik3r] {
    margin: 1rem 0;
}

.choice-question[b-1lutsqik3r] {
    margin-bottom: 1rem;
}

.question-text[b-1lutsqik3r] {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.question-options[b-1lutsqik3r] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.option-item[b-1lutsqik3r] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--bs-tertiary-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.25rem;
}

.option-label[b-1lutsqik3r] {
    font-weight: 500;
    color: var(--bs-primary-text-emphasis);
    min-width: 20px;
}

.option-content[b-1lutsqik3r] {
    flex: 1;
    line-height: 1.5;
}

.question-answer[b-1lutsqik3r] {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--bs-success-bg-subtle);
    border: 1px solid var(--bs-success-border-subtle);
    border-radius: 0.25rem;
}

.answer-label[b-1lutsqik3r] {
    font-weight: 600;
    color: var(--bs-success-text-emphasis);
    margin-bottom: 0.5rem;
}

.answer-content[b-1lutsqik3r] {
    color: var(--bs-success-text);
    font-family: 'Courier New', monospace;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #dee2e6;
    white-space: pre-wrap;
}
/* _content/School.Server/Components/Components/TeacherAssignHomework.razor.rz.scp.css */
.container-fluid[b-62y5kwv6ya] {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 课程信息部分样式 */
.course-info-section[b-62y5kwv6ya] {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4a6cf7;
}

.course-info-title[b-62y5kwv6ya] {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.course-info-title i[b-62y5kwv6ya] {
    margin-right: 10px;
    color: #4a6cf7;
}

.course-info-grid[b-62y5kwv6ya] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.course-info-item[b-62y5kwv6ya] {
    display: flex;
    flex-direction: column;
}

.course-info-label[b-62y5kwv6ya] {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}

.course-info-value[b-62y5kwv6ya] {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

/* 作业部分样式 */
.assignments-section[b-62y5kwv6ya] {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.assignments-title[b-62y5kwv6ya] {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.assignments-title i[b-62y5kwv6ya] {
    margin-right: 10px;
    color: #4a6cf7;
}

/* 表格样式优化 */
.table[b-62y5kwv6ya] {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}

.table th[b-62y5kwv6ya] {
    background-color: #f1f3f5;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    padding: 12px 15px;
}

.table td[b-62y5kwv6ya] {
    vertical-align: middle;
    padding: 12px 15px;
}

/* 按钮样式优化 */
.action-buttons[b-62y5kwv6ya] {
    display: flex;
    gap: 8px;
}

.btn[b-62y5kwv6ya] {
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.btn:hover[b-62y5kwv6ya] {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-success[b-62y5kwv6ya] {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover[b-62y5kwv6ya] {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-primary[b-62y5kwv6ya] {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-62y5kwv6ya] {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-sm[b-62y5kwv6ya] {
    padding: 6px 12px;
    font-size: 0.875rem;
}

/* 徽章样式优化 */
.badge[b-62y5kwv6ya] {
    padding: 6px 10px;
    font-weight: 500;
    border-radius: 6px;
}

/* 空状态样式 */
.empty-assignments[b-62y5kwv6ya] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.empty-assignments i[b-62y5kwv6ya] {
    font-size: 48px;
    color: #adb5bd;
    margin-bottom: 15px;
}

.empty-assignments p[b-62y5kwv6ya] {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* 表单底部样式 */
.form-footer[b-62y5kwv6ya] {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    position: sticky;
    bottom: 0;
    z-index: 10;
    border-radius: 0 0 10px 10px;
}

/* 工具栏样式 */
.table-toolbar[b-62y5kwv6ya] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container-fluid[b-62y5kwv6ya] {
        padding: 15px;
    }
    
    .course-info-grid[b-62y5kwv6ya] {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .course-info-section[b-62y5kwv6ya],
    .assignments-section[b-62y5kwv6ya] {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .action-buttons[b-62y5kwv6ya] {
        flex-direction: column;
    }
    
    .btn[b-62y5kwv6ya] {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .form-footer[b-62y5kwv6ya] {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-footer > div[b-62y5kwv6ya] {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .form-footer .btn[b-62y5kwv6ya] {
        width: auto;
        min-width: 120px;
    }
}

/* 动画效果 */
@keyframes fadeIn-b-62y5kwv6ya {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.course-info-section[b-62y5kwv6ya],
.assignments-section[b-62y5kwv6ya] {
    animation: fadeIn-b-62y5kwv6ya 0.5s ease forwards;
}

/* 状态指示器样式 */
.status-indicator[b-62y5kwv6ya] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-indicator.active[b-62y5kwv6ya] {
    background-color: #28a745;
}

.status-indicator.pending[b-62y5kwv6ya] {
    background-color: #ffc107;
}

.status-indicator.inactive[b-62y5kwv6ya] {
    background-color: #dc3545;
}
/* _content/School.Server/Components/Components/WeekSchedule.razor.rz.scp.css */
.week-schedule-card[b-4a6xpxokxm] {
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid #e2e8f0;
    margin: 0;
    max-width: 100vw;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-schedule-card:hover[b-4a6xpxokxm] {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card-header[b-4a6xpxokxm] {
    background: #f8fafb; /* 清新的浅灰蓝色背景 */
    border-radius: 1rem 1rem 0 0;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.card-header .fs-5[b-4a6xpxokxm] {
    color: #334155;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.card-header .btn-outline-primary[b-4a6xpxokxm],
.week-arrow-btn[b-4a6xpxokxm] {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.1rem;
    border: 2px solid #3b82f6; /* 项目标准蓝色 */
    color: #3b82f6;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 2px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.15);
}

.card-header .btn-outline-primary:hover[b-4a6xpxokxm],
.week-arrow-btn:hover[b-4a6xpxokxm] {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.week-date-picker[b-4a6xpxokxm] {
    width: 130px !important;
    min-width: 110px;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(148, 163, 184, 0.2);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    text-align: center;
    margin: 0 6px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.week-date-picker:focus[b-4a6xpxokxm] {
    border-color: #3b82f6; /* 项目标准蓝色 */
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    outline: none;
}

.week-schedule-table[b-4a6xpxokxm] {
    background: #fff;
    box-sizing: border-box;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.week-schedule-table th[b-4a6xpxokxm], .week-schedule-table td[b-4a6xpxokxm] {
    border: 1px solid #e5e7eb !important;
    padding: 0.5rem 0.2rem;
    text-align: center;
}

.week-schedule-table th[b-4a6xpxokxm] {
    background: #f8fafb;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
    border-bottom: 3px solid #3b82f6 !important; /* 项目标准蓝色 */
    padding: 1rem 0.5rem;
    position: relative;
}

.week-schedule-table th[b-4a6xpxokxm]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #3b82f6; /* 纯蓝色替代渐变 */
}

.week-schedule-table td[b-4a6xpxokxm] {
    background: #fff;
    transition: all 0.3s ease;
    min-width: 110px;
    height: 64px;
    vertical-align: middle;
    text-align: center;
    position: relative;
}

.week-schedule-table tr:hover td[b-4a6xpxokxm] {
    background: #f0f9ff;
    transform: scale(1.01);
}

.week-course-block[b-4a6xpxokxm] {
    position: relative;
    background: #3b82f6; /* 纯蓝色背景 */
    color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.2rem 0.75rem 0.9rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.week-course-block:hover[b-4a6xpxokxm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.35);
    background: #2563eb;
}

.week-course-block.green[b-4a6xpxokxm] {
    background: #10b981; /* 纯绿色背景 */
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
    color: #fff;
}

.week-course-block.green:hover[b-4a6xpxokxm] {
    background: #059669;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
}
.week-course-block .badge[b-4a6xpxokxm]{
    position:absolute;
    top:0;
    right:0;
    width:60px;
    height:60px;
    overflow:hidden;
    pointer-events:none;
    z-index:10;
}
.week-course-block .badge>span[b-4a6xpxokxm] {
    position: absolute;
    top: 12px;
    right: -15px;
    width: auto;
    padding: 3px 20px;
    background: #dc2626; /* 纯红色背景 */
    color: #fff;
    font-size: .65rem;
    font-weight: 600;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
    line-height: 1;
    border-radius: 2px;
}

.week-course-block .badge.green>span[b-4a6xpxokxm] {
    background: #16a34a; /* 纯绿色背景 */
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
}
.week-course-block .badge.green[b-4a6xpxokxm] {
    background: transparent;
}
.week-course-block .fw-bold[b-4a6xpxokxm] {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.week-course-block .small[b-4a6xpxokxm] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

/* ---- Hover attendance overlay ---- */
.overlay-mask[b-4a6xpxokxm] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.75rem;
}
.week-course-block:hover .overlay-mask[b-4a6xpxokxm] {
    opacity: 1;
}
.week-course-block:hover .overlay-btn[b-4a6xpxokxm] {
    display: inline-block;
}
.overlay-btn[b-4a6xpxokxm] {
    min-width: 80px;
    background: #3b82f6; /* 纯蓝色背景 */
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-btn:hover[b-4a6xpxokxm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    background: #2563eb;
}

/* 只读周显示样式 */
.week-display-readonly[b-4a6xpxokxm] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #f8fafb; /* 纯色背景 */
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    border: 2px solid #e2e8f0;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.week-display-readonly:hover[b-4a6xpxokxm] {
    background: #f0f9ff; /* 浅蓝色背景 */
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.08);
}

.week-display-readonly .fw-bold[b-4a6xpxokxm] {
    color: #3b82f6; /* 项目标准蓝色 */
    font-weight: 600;
    text-shadow: none;
}

@media (max-width: 1200px) {
    .week-schedule-card[b-4a6xpxokxm] {
        max-width: 100vw;
        border-radius: 0.75rem;
        margin: 0.5rem 0;
    }
    .card-header[b-4a6xpxokxm] {
        padding: 1rem 1rem 0.75rem 1rem;
        border-radius: 0.75rem 0.75rem 0 0;
    }
    .week-schedule-table[b-4a6xpxokxm] {
        border-radius: 0 0 0.75rem 0.75rem;
    }
    .week-course-block[b-4a6xpxokxm] {
        padding: 0.6rem 1rem 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    .week-course-block .fw-bold[b-4a6xpxokxm] {
        font-size: 0.95rem;
    }
    .week-date-picker[b-4a6xpxokxm] {
        width: 120px !important;
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 768px) {
    .week-schedule-card[b-4a6xpxokxm] {
        border-radius: 0.5rem;
        margin: 0.25rem 0;
    }
    .card-header[b-4a6xpxokxm] {
        padding: 0.75rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    .week-schedule-table th[b-4a6xpxokxm],
    .week-schedule-table td[b-4a6xpxokxm] {
        padding: 0.4rem 0.2rem;
        font-size: 0.85rem;
    }
    .week-schedule-table td[b-4a6xpxokxm] {
        height: 56px;
    }
    .week-course-block[b-4a6xpxokxm] {
        padding: 0.5rem 0.8rem 0.5rem 0.6rem;
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    .week-course-block .fw-bold[b-4a6xpxokxm] {
        font-size: 0.9rem;
    }
    .week-course-block .small[b-4a6xpxokxm] {
        font-size: 0.8rem;
    }
    .week-date-picker[b-4a6xpxokxm] {
        width: 110px !important;
        font-size: 0.85rem;
    }
    .week-arrow-btn[b-4a6xpxokxm] {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .week-course-block .badge[b-4a6xpxokxm] {
        width: 50px;
        height: 50px;
    }
    .week-course-block .badge>span[b-4a6xpxokxm] {
        top: 10px;
        right: -12px;
        padding: 2px 6px;
        font-size: .6rem;
    }
}

/* _content/School.Server/Components/Layout/LoginLayout.razor.rz.scp.css */
/* 登录页面布局样式 */

/* 重置和基础样式 */
html[b-a1yv4gilrv], body[b-a1yv4gilrv] {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 主容器样式 */
.main[b-a1yv4gilrv] {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

/* 全局样式重置 */
[b-a1yv4gilrv] p:last-child {
    margin-bottom: 0;
}

/* 移除不必要的侧边栏样式 */
.sidebar-title[b-a1yv4gilrv] {
    display: none;
}

.sidebar[b-a1yv4gilrv] {
    display: none;
}

.section[b-a1yv4gilrv] {
    display: block !important;
    width: 100%;
    height: 100%;
}

/* 确保登录页面居中显示 */
.modern-login-container[b-a1yv4gilrv] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .main[b-a1yv4gilrv] {
        padding: 20px;
    }
    
    .login-card[b-a1yv4gilrv] {
        width: 95% !important;
        max-width: 400px !important;
        padding: 30px 20px !important;
    }
}

@media (max-width: 480px) {
    .main[b-a1yv4gilrv] {
        padding: 10px;
    }
    
    .login-card[b-a1yv4gilrv] {
        width: 95% !important;
        padding: 20px 15px !important;
    }
}
/* _content/School.Server/Components/Pages/AccessDenied.razor.rz.scp.css */
/* 访问拒绝页面样式 - 简约清新风格 */

html[b-w8qt76n7q4], body[b-w8qt76n7q4], .access-denied-container[b-w8qt76n7q4] {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #f8fafb; /* 清新的浅灰蓝色背景 */
}

.access-denied-container[b-w8qt76n7q4] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;
}

.access-denied-card[b-w8qt76n7q4] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    padding: 48px 36px 36px 36px;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: fadeIn-b-w8qt76n7q4 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.access-denied-card:hover[b-w8qt76n7q4] {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

.access-denied-card h1[b-w8qt76n7q4] {
    font-size: 2.2rem;
    color: #3b82f6; /* 项目标准蓝色 */
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.access-denied-card h1[b-w8qt76n7q4]::before {
    content: '🚫';
    font-size: 2rem;
    background: #dbeafe;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.access-denied-card p[b-w8qt76n7q4] {
    color: #64748b; /* 次要文字色 */
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.access-denied-actions[b-w8qt76n7q4] {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.btn[b-w8qt76n7q4] {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary[b-w8qt76n7q4] {
    background: #3b82f6; /* 项目标准蓝色 */
    color: #fff;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover[b-w8qt76n7q4] {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.btn-primary:active[b-w8qt76n7q4] {
    transform: translateY(0);
}

.btn-secondary[b-w8qt76n7q4] {
    background: #ffffff;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover[b-w8qt76n7q4] {
    background: #f8fafb;
    color: #1e293b;
    border-color: #3b82f6;
    transform: translateY(-1px);
}

@keyframes fadeIn-b-w8qt76n7q4 {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.98);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}
/* _content/School.Server/Components/Pages/Admin/AutoJudgeManager.razor.rz.scp.css */
.auto-judge-manager[b-o7siejjvxy] {
    padding: 1rem;
}

.task-status-panel[b-o7siejjvxy] {
    padding: 1rem;
}

.status-card[b-o7siejjvxy],
.pending-card[b-o7siejjvxy] {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.status-card-success[b-o7siejjvxy] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.status-card-warning[b-o7siejjvxy] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: white;
}

.pending-card[b-o7siejjvxy] {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
}

.status-icon[b-o7siejjvxy],
.pending-icon[b-o7siejjvxy] {
    font-size: 3rem;
    margin-right: 1rem;
    opacity: 0.8;
}

.status-info h5[b-o7siejjvxy],
.pending-info h5[b-o7siejjvxy] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.status-info p[b-o7siejjvxy],
.pending-info p[b-o7siejjvxy] {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.info-item[b-o7siejjvxy] {
    margin-bottom: 0.5rem;
}

.info-item label[b-o7siejjvxy] {
    font-weight: 600;
    color: #6c757d;
    margin-right: 0.5rem;
}

.control-panel[b-o7siejjvxy] {
    padding: 1rem;
}

.judge-statistics[b-o7siejjvxy] {
    padding: 1rem;
}

.stat-card[b-o7siejjvxy] {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover[b-o7siejjvxy] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-card h4[b-o7siejjvxy] {
    margin: 0 0 0.5rem 0;
    color: #3b82f6;
    font-size: 2rem;
    font-weight: 700;
}

.stat-card p[b-o7siejjvxy] {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .status-card[b-o7siejjvxy],
    .pending-card[b-o7siejjvxy] {
        flex-direction: column;
        text-align: center;
    }
    
    .status-icon[b-o7siejjvxy],
    .pending-icon[b-o7siejjvxy] {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .stat-card h4[b-o7siejjvxy] {
        font-size: 1.5rem;
    }
}

/* 表格优化 */
.table td[b-o7siejjvxy] {
    vertical-align: middle;
}

.badge[b-o7siejjvxy] {
    font-size: 0.75rem;
}

/* 按钮状态 */
.btn:disabled[b-o7siejjvxy] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 加载状态 */
.loading[b-o7siejjvxy] {
    opacity: 0.7;
    pointer-events: none;
}

/* 卡片标题图标 */
.card-header i[b-o7siejjvxy] {
    color: #3b82f6;
}

/* 空状态 */
.empty-state[b-o7siejjvxy] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.empty-state i[b-o7siejjvxy] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
/* _content/School.Server/Components/Pages/Admin/NotificationTemplateManager.razor.rz.scp.css */
/* 通知模板管理页面样式 */

.notification-template-manager[b-7mo5psgytw] {
    padding: 1rem 0;
}

/* 页面头部 */
.page-header[b-7mo5psgytw] {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

/* 模板卡片 */
.template-card[b-7mo5psgytw] {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.template-card:hover[b-7mo5psgytw] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* 模板头部 */
.template-header h5[b-7mo5psgytw] {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.template-actions[b-7mo5psgytw] {
    position: relative;
}

/* 模板内容 */
.template-info[b-7mo5psgytw] {
    font-size: 0.875rem;
}

.info-item[b-7mo5psgytw] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.info-label[b-7mo5psgytw] {
    font-weight: 500;
    color: #6c757d;
    min-width: 80px;
    margin-right: 0.5rem;
}

.info-value[b-7mo5psgytw] {
    color: #495057;
    font-weight: 400;
}

/* 模板预览 */
.template-preview[b-7mo5psgytw] {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
}

.preview-title[b-7mo5psgytw] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.preview-content[b-7mo5psgytw] {
    font-size: 0.8rem;
}

.preview-item[b-7mo5psgytw] {
    margin-bottom: 0.25rem;
}

.preview-item:last-child[b-7mo5psgytw] {
    margin-bottom: 0;
}

.preview-item strong[b-7mo5psgytw] {
    color: #495057;
}

/* 对话框样式 */
.dialog-footer[b-7mo5psgytw] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

/* 接收方类型选择 */
.receiver-types[b-7mo5psgytw] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0;
}

.receiver-types .form-check-inline[b-7mo5psgytw] {
    margin-right: 0;
}

/* 测试通知样式 */
.test-notification .alert[b-7mo5psgytw] {
    margin-bottom: 1.5rem;
}

.test-preview h6[b-7mo5psgytw] {
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #495057;
}

.test-preview .border[b-7mo5psgytw] {
    background-color: #f8f9fa;
}

.test-preview .border h6[b-7mo5psgytw] {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.test-preview .border p[b-7mo5psgytw] {
    color: #6c757d;
    font-size: 0.875rem;
}

.test-actions[b-7mo5psgytw] {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-header[b-7mo5psgytw] {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .page-header .btn[b-7mo5psgytw] {
        width: 100%;
    }

    .template-card[b-7mo5psgytw] {
        margin-bottom: 1rem;
    }

    .receiver-types[b-7mo5psgytw] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .dialog-footer[b-7mo5psgytw] {
        flex-direction: column-reverse;
    }

    .dialog-footer .btn[b-7mo5psgytw] {
        width: 100%;
    }

    .test-actions[b-7mo5psgytw] {
        flex-direction: column-reverse;
    }

    .test-actions .btn[b-7mo5psgytw] {
        width: 100%;
    }
}

/* 动画效果 */
@keyframes fadeIn-b-7mo5psgytw {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.template-card[b-7mo5psgytw] {
    animation: fadeIn-b-7mo5psgytw 0.3s ease-out;
}

/* 徽章样式 */
.badge[b-7mo5psgytw] {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* 空状态样式 */
.template-list .text-center[b-7mo5psgytw] {
    padding: 3rem 1rem;
}

.template-list .text-center i[b-7mo5psgytw] {
    opacity: 0.5;
}

.template-list .text-center h5[b-7mo5psgytw] {
    font-weight: 400;
    color: #6c757d;
}

.template-list .text-center p[b-7mo5psgytw] {
    color: #adb5bd;
    font-size: 0.875rem;
}
/* _content/School.Server/Components/Pages/Admin/SettingsManager.razor.rz.scp.css */
/* SettingsManager.razor 样式文件 - 简约清新风格 */

/* 页面整体布局 */
.settings-manager[b-3i71txbqfl] {
    padding: 0;
    background: #f8fafb; /* 清新的浅灰蓝色背景 */
    min-height: 100vh;
}

/* 页面头部样式 - 纯蓝色设计 */
.page-header[b-3i71txbqfl] {
    background: #3b82f6; /* 项目标准蓝色 */
    color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-header:hover[b-3i71txbqfl] {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.page-title[b-3i71txbqfl] {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title[b-3i71txbqfl]::before {
    content: '⚙️';
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.breadcrumb[b-3i71txbqfl] {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item[b-3i71txbqfl] {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active[b-3i71txbqfl] {
    color: white;
}

.breadcrumb-item + .breadcrumb-item[b-3i71txbqfl]::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Logo预览容器样式 */
.logo-preview-container[b-3i71txbqfl] {
    text-align: center;
}

.logo-preview[b-3i71txbqfl] {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-preview:hover[b-3i71txbqfl] {
    border-color: #3b82f6; /* 项目标准蓝色 */
    background: #f0f9ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}

.logo-preview img[b-3i71txbqfl] {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.logo-info[b-3i71txbqfl] {
    text-align: center;
}

/* 上传区域样式 */
.upload-section .form-label[b-3i71txbqfl] {
    color: #495057;
    margin-bottom: 0.5rem;
}

.upload-tips[b-3i71txbqfl] {
    padding: 0.75rem;
    background: #dbeafe; /* 清新的浅蓝色背景 */
    border-radius: 0.5rem;
    border-left: 4px solid #3b82f6; /* 项目标准蓝色 */
    margin-top: 0.5rem;
    border: 1px solid #93c5fd;
}

.upload-tips .text-muted[b-3i71txbqfl] {
    color: #6c757d !important;
    font-size: 0.875rem;
}

/* Logo操作按钮样式 */
.logo-actions[b-3i71txbqfl] {
    margin-top: 1rem;
}

/* 会议设置样式 */
.meeting-settings[b-3i71txbqfl] {
    padding: 0;
}

.feature-toggle[b-3i71txbqfl] {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
}

.feature-toggle .form-label[b-3i71txbqfl] {
    color: #495057;
    font-size: 1rem;
}

.meeting-config[b-3i71txbqfl] {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
    margin-top: 1rem;
}

/* 通知设置样式 */
.notification-settings[b-3i71txbqfl] {
    padding: 0;
}

.notification-settings .form-text[b-3i71txbqfl] {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 0.375rem;
    padding: 0.75rem;
    color: #856404;
}

/* 通知系统设置样式 */
.notification-system-settings[b-3i71txbqfl] {
    padding: 0;
}

.notification-system-settings .feature-toggle[b-3i71txbqfl] {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.notification-system-settings .feature-toggle .form-label[b-3i71txbqfl] {
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
}

.notification-system-settings .feature-toggle .text-muted[b-3i71txbqfl] {
    color: #6c757d !important;
    font-size: 0.875rem;
}

/* 提醒类型卡片样式 */
.reminder-type-card[b-3i71txbqfl] {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.reminder-type-card:hover[b-3i71txbqfl] {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.reminder-type-card .form-label[b-3i71txbqfl] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reminder-type-card .text-muted[b-3i71txbqfl] {
    color: #6c757d !important;
    font-size: 0.8rem;
}

/* 通知渠道卡片样式 */
.channel-card[b-3i71txbqfl] {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.channel-card:hover[b-3i71txbqfl] {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.channel-card .form-label[b-3i71txbqfl] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.channel-card .text-muted[b-3i71txbqfl] {
    color: #6c757d !important;
    font-size: 0.8rem;
}

.channel-config[b-3i71txbqfl] {
    background: #f8f9fa;
    border-radius: 0.375rem;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
}

/* 通知设置中的表单文本样式 */
.notification-system-settings .form-text[b-3i71txbqfl] {
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 0.375rem;
    padding: 0.5rem;
    color: #1e40af;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.notification-system-settings .form-text i[b-3i71txbqfl] {
    color: #3b82f6;
    margin-right: 0.25rem;
}

/* 响应式设计调整 */
@media (max-width: 768px) {
    .reminder-type-card[b-3i71txbqfl],
    .channel-card[b-3i71txbqfl] {
        margin-bottom: 1rem;
    }
    
    .notification-system-settings .feature-toggle[b-3i71txbqfl] {
        padding: 1rem;
    }
    
    .channel-config[b-3i71txbqfl] {
        padding: 0.5rem;
    }
}

/* 表单操作区域样式 - 纯色设计 */
.form-actions[b-3i71txbqfl] {
    background: #ffffff; /* 纯白色背景 */
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    text-align: right;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-actions:hover[b-3i71txbqfl] {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.form-actions .btn[b-3i71txbqfl] {
    min-width: 100px;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-actions .btn-primary[b-3i71txbqfl] {
    background: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.form-actions .btn-primary:hover[b-3i71txbqfl] {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

/* 卡片样式增强 - 统一设计 */
[b-3i71txbqfl] .card {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

[b-3i71txbqfl] .card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

[b-3i71txbqfl] .card-header {
    background: #f8fafb; /* 清新的浅灰蓝色背景 */
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #1e293b;
    border-radius: 1rem 1rem 0 0;
    padding: 1.25rem 1.5rem;
}

[b-3i71txbqfl] .card-header i {
    color: #3b82f6; /* 项目标准蓝色 */
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

[b-3i71txbqfl] .card-body {
    padding: 1.5rem;
}

/* 确保卡片高度一致 */
.row .col-lg-6[b-3i71txbqfl]  .card.h-100 {
    height: 100% !important;
}

.row .col-lg-6[b-3i71txbqfl]  .card.h-100 .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.row .col-lg-6[b-3i71txbqfl]  .card.h-100 .card-body .d-flex {
    flex-grow: 1;
}

.row .col-lg-6[b-3i71txbqfl]  .card.h-100 .card-body .row {
    flex-grow: 1;
    align-items: center;
}

/* 分隔线样式 */
[b-3i71txbqfl] .divider {
    margin: 1rem 0;
}

[b-3i71txbqfl] .divider-text {
    background: #f8f9fa;
    color: #6c757d;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
}

/* 表单控件样式增强 */
[b-3i71txbqfl] .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

[b-3i71txbqfl] .form-control {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

[b-3i71txbqfl] .form-control:focus {
    border-color: #3b82f6; /* 项目标准蓝色 */
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* 切换开关样式 */
[b-3i71txbqfl] .toggle {
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-header[b-3i71txbqfl] {
        padding: 1rem;
    }
    
    .page-title[b-3i71txbqfl] {
        font-size: 1.5rem;
    }
    
    .logo-preview[b-3i71txbqfl] {
        min-height: 80px;
    }
    
    .logo-preview img[b-3i71txbqfl] {
        max-height: 60px;
    }
    
    .feature-toggle[b-3i71txbqfl],
    .meeting-config[b-3i71txbqfl] {
        padding: 1rem;
    }
    
    .form-actions[b-3i71txbqfl] {
        padding: 1rem;
        text-align: center;
    }
    
    .form-actions .btn[b-3i71txbqfl] {
        margin: 0.25rem;
        min-width: 80px;
    }
}

@media (max-width: 576px) {
    .settings-manager[b-3i71txbqfl] {
        padding: 0 0.5rem;
    }
    
    .page-header[b-3i71txbqfl] {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        border-radius: 0;
    }
    
    [b-3i71txbqfl] .card {
        border-radius: 0.25rem;
    }
    
    [b-3i71txbqfl] .card-body {
        padding: 1rem;
    }
}

/* 动画效果 */
.settings-manager[b-3i71txbqfl] {
    animation: fadeInUp-b-3i71txbqfl 0.5s ease-out;
}

@keyframes fadeInUp-b-3i71txbqfl {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 加载状态样式 */
.loading-overlay[b-3i71txbqfl] {
    position: relative;
}

.loading-overlay[b-3i71txbqfl]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    border-radius: 0.5rem;
}

/* 加载状态样式 - 统一设计 */
.loading-overlay[b-3i71txbqfl]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-top: 3px solid #3b82f6; /* 项目标准蓝色 */
    border-radius: 50%;
    animation: spin-b-3i71txbqfl 1s linear infinite;
    z-index: 11;
}

@keyframes spin-b-3i71txbqfl {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* _content/School.Server/Components/Pages/Admin/StudentDetail.razor.rz.scp.css */
/* 学生详情页面样式 - 现代化简约风格 */

/* 整体布局 */
.student-detail-container[b-314vabqvhm] {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafb 0%, #e2e8f0 100%); /* 渐变背景 */
    min-height: 100vh;
}

/* 页面标题区域 */
.page-header[b-314vabqvhm] {
    margin-bottom: 2rem;
}

.page-title[b-314vabqvhm] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b; /* 主要文字色 */
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-title[b-314vabqvhm]::before {
    content: '👨‍🎓';
    font-size: 1.5rem;
    background: #dbeafe;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.breadcrumb[b-314vabqvhm] {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

/* 学生信息头部卡片 - 现代化渐变设计 */
.student-header-card[b-314vabqvhm] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); /* 渐变蓝色 */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.student-header-card[b-314vabqvhm]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.student-header-card:hover[b-314vabqvhm] {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.student-header-content[b-314vabqvhm] {
    padding: 2rem;
    color: white;
}

.student-avatar-section[b-314vabqvhm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.student-avatar[b-314vabqvhm] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.student-avatar:hover[b-314vabqvhm] {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.student-name[b-314vabqvhm] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.student-username[b-314vabqvhm] {
    font-size: 1rem;
    opacity: 0.9;
}

.student-info-grid[b-314vabqvhm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item[b-314vabqvhm] {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover[b-314vabqvhm] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.info-label[b-314vabqvhm] {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.info-value[b-314vabqvhm] {
    font-size: 1rem;
    font-weight: 500;
}

/* 统计卡片组 */
.stats-container[b-314vabqvhm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-314vabqvhm] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.stat-card[b-314vabqvhm]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover[b-314vabqvhm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.stat-card:hover[b-314vabqvhm]::before {
    transform: scaleX(1);
}

.stat-header[b-314vabqvhm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-title[b-314vabqvhm] {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.stat-icon[b-314vabqvhm] {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-icon.primary[b-314vabqvhm] {
    background: #3b82f6; /* 项目标准蓝色 */
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.stat-icon.success[b-314vabqvhm] {
    background: #10b981; /* 清新绿色 */
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.stat-icon.warning[b-314vabqvhm] {
    background: #f59e0b; /* 纯黄色 */
    color: white;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
}

.stat-value[b-314vabqvhm] {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b; /* 主要文字色 */
    margin-bottom: 0.5rem;
}

.stat-description[b-314vabqvhm] {
    font-size: 0.875rem;
    color: #64748b; /* 次要文字色 */
}

.progress-bar-container[b-314vabqvhm] {
    margin-top: 1rem;
}

.progress[b-314vabqvhm] {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar[b-314vabqvhm] {
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* 主要内容区域 - 现代化设计 */
.main-content[b-314vabqvhm] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.main-content[b-314vabqvhm]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-content:hover[b-314vabqvhm] {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.main-content:hover[b-314vabqvhm]::before {
    opacity: 1;
}

/* 选项卡样式 - 统一设计 */
.custom-tabs .nav-tabs[b-314vabqvhm] {
    border-bottom: 1px solid #e2e8f0;
    background-color: #f8fafb;
    padding: 0 1rem;
}

.custom-tabs .nav-item[b-314vabqvhm] {
    margin-bottom: -1px;
}

.custom-tabs .nav-link[b-314vabqvhm] {
    border: none;
    border-radius: 0.5rem 0.5rem 0 0;
    color: #64748b;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-tabs .nav-link:hover[b-314vabqvhm] {
    background-color: #e2e8f0;
    color: #1e293b;
    transform: translateY(-1px);
}

.custom-tabs .nav-link.active[b-314vabqvhm] {
    background-color: white;
    color: #3b82f6; /* 项目标准蓝色 */
    border-bottom: 3px solid #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}

.tab-content[b-314vabqvhm] {
    padding: 2rem;
}

/* 表格样式 - 统一设计 */
.custom-table[b-314vabqvhm] {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.custom-table .table[b-314vabqvhm] {
    margin-bottom: 0;
}

.custom-table .table thead th[b-314vabqvhm] {
    background-color: #f8fafb;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
    color: #1e293b;
    padding: 1rem;
}

.custom-table .table tbody tr[b-314vabqvhm] {
    transition: background-color 0.2s ease;
}

.custom-table .table tbody tr:hover[b-314vabqvhm] {
    background-color: #f0f9ff; /* 浅蓝色悬停背景 */
}

.custom-table .table td[b-314vabqvhm] {
    padding: 1rem;
    vertical-align: middle;
}

/* 课程卡片视图 */
.course-cards[b-314vabqvhm] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.course-card[b-314vabqvhm] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover[b-314vabqvhm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* 班级卡片特殊样式 */
.class-card[b-314vabqvhm] {
    border-left: 4px solid #3b82f6; /* 项目标准蓝色 */
}

.class-card:hover[b-314vabqvhm] {
    border-left-color: #2563eb;
}

.class-info[b-314vabqvhm] {
    border-top: 1px solid #f1f3f4;
    padding-top: 1rem;
}

.class-description[b-314vabqvhm] {
    background-color: #f8fafb;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #e2e8f0;
}

.status-active[b-314vabqvhm] {
    background-color: #d1ecf1;
    color: #0c5460;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.course-header[b-314vabqvhm] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.course-title[b-314vabqvhm] {
    font-weight: 600;
    color: #1e293b; /* 主要文字色 */
    margin-bottom: 0.25rem;
}

.course-time[b-314vabqvhm] {
    font-size: 0.875rem;
    color: #64748b; /* 次要文字色 */
}

.course-status[b-314vabqvhm] {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-completed[b-314vabqvhm] {
    background-color: #d4edda;
    color: #155724;
}

.status-pending[b-314vabqvhm] {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-cancelled[b-314vabqvhm] {
    background-color: #f8d7da;
    color: #721c24;
}

/* 订单状态标识 */
.order-status[b-314vabqvhm] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-icon[b-314vabqvhm] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-paid[b-314vabqvhm] {
    background-color: #28a745;
}

.status-pending[b-314vabqvhm] {
    background-color: #ffc107;
}

.status-failed[b-314vabqvhm] {
    background-color: #dc3545;
}

/* 支付方式图标 */
.payment-method[b-314vabqvhm] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.payment-wechat[b-314vabqvhm] {
    background-color: #e8f5e8;
    color: #0d7e07;
}

.payment-alipay[b-314vabqvhm] {
    background-color: #e3f2fd;
    color: #1976d2;
}

.payment-cash[b-314vabqvhm] {
    background-color: #fff3e0;
    color: #f57c00;
}

/* 空状态样式 */
.empty-state[b-314vabqvhm] {
    text-align: center;
    padding: 3rem 2rem;
    color: #6c757d;
}

.empty-icon[b-314vabqvhm] {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.empty-title[b-314vabqvhm] {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.empty-description[b-314vabqvhm] {
    font-size: 0.875rem;
}

/* 统计卡片中的购买按钮 */
.stat-action[b-314vabqvhm] {
    margin-top: 1rem;
    text-align: center;
}

.buy-btn[b-314vabqvhm] {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    color: white;
}

.buy-btn[b-314vabqvhm]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.buy-btn:hover[b-314vabqvhm]::before {
    left: 100%;
}

.buy-btn:hover[b-314vabqvhm] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* 加载状态 - 统一设计 */
.loading-container[b-314vabqvhm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.loading-spinner[b-314vabqvhm] {
    width: 3rem;
    height: 3rem;
    border: 0.25rem solid #e2e8f0;
    border-top: 0.25rem solid #3b82f6; /* 项目标准蓝色 */
    border-radius: 50%;
    animation: spin-b-314vabqvhm 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-314vabqvhm {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 骨架屏样式 - 优化动画 */
.skeleton[b-314vabqvhm] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-314vabqvhm 1.5s infinite ease-in-out;
}

@keyframes loading-b-314vabqvhm {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text[b-314vabqvhm] {
    height: 1rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-text.short[b-314vabqvhm] {
    width: 60%;
}

.skeleton-text.medium[b-314vabqvhm] {
    width: 80%;
}

.skeleton-text.long[b-314vabqvhm] {
    width: 100%;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .student-detail-container[b-314vabqvhm] {
        padding: 1rem;
    }
    
    .student-header-content[b-314vabqvhm] {
        padding: 1.5rem;
    }
    
    .student-info-grid[b-314vabqvhm] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-container[b-314vabqvhm] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .course-cards[b-314vabqvhm] {
        grid-template-columns: 1fr;
    }
    
    .quick-actions[b-314vabqvhm] {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn[b-314vabqvhm] {
        width: 100%;
        justify-content: center;
    }
    
    .tab-content[b-314vabqvhm] {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .student-avatar[b-314vabqvhm] {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .student-name[b-314vabqvhm] {
        font-size: 1.25rem;
    }
    
    .stat-value[b-314vabqvhm] {
        font-size: 1.5rem;
    }
}

/* 过渡动画 */
.fade-in[b-314vabqvhm] {
    animation: fadeIn-b-314vabqvhm 0.5s ease-in;
}

@keyframes fadeIn-b-314vabqvhm {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in[b-314vabqvhm] {
    animation: slideIn-b-314vabqvhm 0.3s ease-out;
}

@keyframes slideIn-b-314vabqvhm {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* 工具提示 */
.tooltip-container[b-314vabqvhm] {
    position: relative;
    display: inline-block;
}

.tooltip-text[b-314vabqvhm] {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.875rem;
}

.tooltip-container:hover .tooltip-text[b-314vabqvhm] {
    visibility: visible;
    opacity: 1;
}

/* 徽章样式 - 统一配色 */
.badge-custom[b-314vabqvhm] {
    padding: 0.375rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge-primary[b-314vabqvhm] {
    background-color: #3b82f6; /* 项目标准蓝色 */
    color: white;
}

.badge-success[b-314vabqvhm] {
    background-color: #10b981; /* 清新绿色 */
    color: white;
}

.badge-warning[b-314vabqvhm] {
    background-color: #f59e0b;
    color: white;
}

.badge-danger[b-314vabqvhm] {
    background-color: #dc2626;
    color: white;
}

.badge-info[b-314vabqvhm] {
    background-color: #3b82f6;
    color: white;
}
/* _content/School.Server/Components/Pages/Index.razor.rz.scp.css */
/* 主页样式 - 简约清新风格 */

.index-loading-container[b-7nke7xf8af] {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafb; /* 清新的浅灰蓝色背景 */
}

.index-loading-content[b-7nke7xf8af] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    padding: 3rem 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    animation: fadeInUp-b-7nke7xf8af 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.index-loading-spinner[b-7nke7xf8af] {
    width: 3rem;
    height: 3rem;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #3b82f6; /* 项目标准蓝色 */
    border-radius: 50%;
    animation: spin-b-7nke7xf8af 1s linear infinite;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.index-loading-text[b-7nke7xf8af] {
    font-size: 1.5rem;
    color: #3b82f6; /* 项目标准蓝色 */
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.index-loading-text[b-7nke7xf8af]::before {
    content: '📚';
    font-size: 1.25rem;
    background: #dbeafe;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

@keyframes spin-b-7nke7xf8af {
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp-b-7nke7xf8af {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* _content/School.Server/Components/Pages/Login.razor.rz.scp.css */
/* 现代化登录界面样式 */
.modern-login-container[b-n760734cah] {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 背景动画效果 */
.background-animation[b-n760734cah] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-bg[b-n760734cah] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    opacity: 0.9;
}

.shapes[b-n760734cah] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape[b-n760734cah] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-b-n760734cah 15s infinite ease-in-out;
}

.shape-1[b-n760734cah] {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2[b-n760734cah] {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3[b-n760734cah] {
    width: 250px;
    height: 250px;
    top: 80%;
    left: -100px;
    animation-delay: 4s;
}

.shape-4[b-n760734cah] {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 6s;
}

@keyframes float-b-n760734cah {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* 登录卡片样式 */
.login-card[b-n760734cah] {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 420px;
    padding: 40px;
    animation: slideUp-b-n760734cah 0.5s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes slideUp-b-n760734cah {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 登录头部样式 */
.login-header[b-n760734cah] {
    text-align: center;
    margin-bottom: 30px;
}

.logo-section[b-n760734cah] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-icon[b-n760734cah] {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.system-name[b-n760734cah] {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.welcome-text[b-n760734cah] {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* 登录表单样式 */
.login-form[b-n760734cah] {
    margin-bottom: 30px;
}

.form-group[b-n760734cah] {
    margin-bottom: 20px;
}

.input-container[b-n760734cah] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon[b-n760734cah] {
    position: absolute;
    left: 15px;
    color: #6c757d;
    z-index: 1;
}

[b-n760734cah] .modern-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

[b-n760734cah] .modern-input:focus {
    border-color: #80bdff;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

/* 表单选项样式 */
.form-options[b-n760734cah] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me[b-n760734cah] {
    font-size: 14px;
    color: #333;
}

.forgot-password[b-n760734cah] {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover[b-n760734cah] {
    color: #0056b3;
    text-decoration: underline;
}

/* 登录按钮样式 */
.login-button[b-n760734cah] {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.login-button:hover[b-n760734cah] {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.login-button:active[b-n760734cah] {
    transform: translateY(0);
}

.login-button-full[b-n760734cah] {
    width: 100% !important;
    padding: 12px;
    background: #007bff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
    box-sizing: border-box;
}

.login-button-full:hover[b-n760734cah] {
    background: #0069d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.login-button-full:active[b-n760734cah] {
    transform: translateY(0);
    background: #0062cc;
}

[b-n760734cah] .login-button-full {
    width: 100% !important;
    padding: 12px !important;
    background: #007bff !important;
    border: none !important;
    border-radius: 8px !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2) !important;
    box-sizing: border-box !important;
}

[b-n760734cah] .login-button-full:hover {
    background: #0069d9 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3) !important;
}

.button-text[b-n760734cah] {
    flex: 1;
    text-align: center;
}

/* Logo 图片样式 */
.logo-img[b-n760734cah] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* 登录底部样式 */
.login-footer[b-n760734cah] {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.register-text[b-n760734cah] {
    margin-bottom: 10px;
}

.register-text a[b-n760734cah] {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.register-text a:hover[b-n760734cah] {
    color: #0056b3;
    text-decoration: underline;
}

.copyright[b-n760734cah] {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .login-card[b-n760734cah] {
        width: 90%;
        padding: 30px 20px;
    }
    
    .system-name[b-n760734cah] {
        font-size: 20px;
    }
    
    .welcome-text[b-n760734cah] {
        font-size: 14px;
    }
}
/* _content/School.Server/Components/Pages/Student/Courses.razor.rz.scp.css */
/* 学生课程页面样式 - 简约清新风格 */
.courses-page-container[b-l4iqny2kkb] {
    padding: 1.5rem;
    margin: 0 auto;
    min-height: 100vh;
    background: #f8fafb; /* 清新的浅灰蓝色背景 */
}

/* 页面头部区域 */
.courses-header[b-l4iqny2kkb] {
    margin-bottom: 2rem;
    position: relative;
}

.courses-title[b-l4iqny2kkb] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.courses-title[b-l4iqny2kkb]::before {
    content: '📚';
    font-size: 2rem;
    background: #dbeafe; /* 清新的浅蓝色背景 */
    color: #1d4ed8; /* 深蓝色图标 */
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.courses-subtitle[b-l4iqny2kkb] {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* 统计概览区域 - 纯蓝色设计 */
.courses-stats-summary[b-l4iqny2kkb] {
    background: #3b82f6; /* 清新的纯蓝色背景 */
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15); /* 清新的蓝色阴影 */
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.courses-stats-summary:hover[b-l4iqny2kkb] {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.stats-grid[b-l4iqny2kkb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stats-card[b-l4iqny2kkb] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.stats-card:hover[b-l4iqny2kkb] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.stats-number[b-l4iqny2kkb] {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-label[b-l4iqny2kkb] {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* 课程区域 */
.courses-section[b-l4iqny2kkb] {
    margin-bottom: 2rem;
}

.section-title[b-l4iqny2kkb] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title[b-l4iqny2kkb]::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background: #3b82f6; /* 使用项目标准蓝色 */
    border-radius: 2px;
}

/* 班级卡片网格布局 */
.class-cards-grid[b-l4iqny2kkb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

/* 大屏幕优化：最多2列 */
@media (min-width: 1400px) {
    .class-cards-grid[b-l4iqny2kkb] {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        max-width: none;
    }
}

/* 超大屏幕：限制最大列数为1 */
@media (min-width: 1800px) {
    .class-cards-grid[b-l4iqny2kkb] {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* 课程列表容器 */
.course-list-container[b-l4iqny2kkb] {
    padding: 1rem 1.5rem;
}

/* 课程网格布局 */
.course-grid[b-l4iqny2kkb] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

/* 课程卡片 */
.course-card[b-l4iqny2kkb] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.course-card:hover[b-l4iqny2kkb] {
    border-color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

/* 课程卡片头部 */
.course-card-header[b-l4iqny2kkb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.course-time[b-l4iqny2kkb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #1e293b;
    font-size: 0.9rem;
}

/* 课程卡片内容 */
.course-card-content[b-l4iqny2kkb] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.course-detail[b-l4iqny2kkb] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
}

.detail-label[b-l4iqny2kkb] {
    font-weight: 500;
    color: #475569;
}

.detail-value[b-l4iqny2kkb] {
    color: #1e293b;
}

/* 课程徽章容器 */
.course-badges[b-l4iqny2kkb] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

/* 无课程提示 */
.no-courses[b-l4iqny2kkb] {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-size: 0.9rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    border: 1px dashed #cbd5e1;
}

/* 课程类型徽章 */
.course-type-badge[b-l4iqny2kkb] {
    background: #3b82f6; /* 使用项目标准蓝色 */
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* 课程风格徽章 */
.course-style-badge[b-l4iqny2kkb] {
    background: #10b981; /* 清新的绿色 */
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* 状态徽章 */
.status-badge[b-l4iqny2kkb] {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-badge.completed[b-l4iqny2kkb] {
    background: #10b981; /* 清新的绿色 */
    color: white;
}

.status-badge.pending[b-l4iqny2kkb] {
    background: #f59e0b; /* 温暖的橙色 */
    color: white;
}

/* 空状态 */
.empty-state[b-l4iqny2kkb] {
    text-align: center;
    padding: 3rem 1rem;
    color: #64748b;
}

.empty-state-icon[b-l4iqny2kkb] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state-title[b-l4iqny2kkb] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state-description[b-l4iqny2kkb] {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* 加载状态 */
.loading-container[b-l4iqny2kkb] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    flex-direction: column;
    gap: 1rem;
}

.loading-spinner[b-l4iqny2kkb] {
    width: 3rem;
    height: 3rem;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-top-color: #3b82f6; /* 使用项目标准蓝色 */
    border-radius: 50%;
    animation: spin-b-l4iqny2kkb 1s linear infinite;
}

.loading-text[b-l4iqny2kkb] {
    color: #64748b;
    font-weight: 500;
}

@keyframes spin-b-l4iqny2kkb {
    to {
        transform: rotate(360deg);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .courses-page-container[b-l4iqny2kkb] {
        padding: 1rem;
    }
    
    .courses-title[b-l4iqny2kkb] {
        font-size: 2rem;
    }
    
    .courses-stats-summary[b-l4iqny2kkb] {
        padding: 1.5rem;
    }
    
    .stats-grid[b-l4iqny2kkb] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .stats-card[b-l4iqny2kkb] {
        padding: 1rem 0.75rem;
    }
    
    .stats-number[b-l4iqny2kkb] {
        font-size: 2rem;
    }
    
    .class-header[b-l4iqny2kkb] {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .class-stats[b-l4iqny2kkb] {
        align-self: flex-end;
    }
    
    .course-list-container[b-l4iqny2kkb] {
        padding: 1rem;
    }
    
    /* 移动端：单列显示 */
    .class-cards-grid[b-l4iqny2kkb] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .course-card[b-l4iqny2kkb] {
        padding: 0.75rem;
    }
    
    .course-card-header[b-l4iqny2kkb] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .course-badges[b-l4iqny2kkb] {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .courses-page-container[b-l4iqny2kkb] {
        padding: 0.75rem;
    }
    
    .courses-title[b-l4iqny2kkb] {
        font-size: 1.75rem;
    }
    
    .courses-stats-summary[b-l4iqny2kkb] {
        padding: 1rem;
    }
    
    .stats-grid[b-l4iqny2kkb] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .class-header[b-l4iqny2kkb] {
        padding: 0.75rem;
    }
    
    .course-list-container[b-l4iqny2kkb] {
        padding: 0.75rem;
    }
    
    .course-grid[b-l4iqny2kkb] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .course-card[b-l4iqny2kkb] {
        padding: 0.5rem;
    }
    
    .course-card-header[b-l4iqny2kkb] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .course-detail[b-l4iqny2kkb] {
        font-size: 0.8rem;
    }
    
    .course-badges[b-l4iqny2kkb] {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* 平板端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .courses-page-container[b-l4iqny2kkb] {
        padding: 1.25rem;
    }
    
    .stats-grid[b-l4iqny2kkb] {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .courses-title[b-l4iqny2kkb] {
        font-size: 2.25rem;
    }
    
    /* 平板端：双列显示 */
    .class-cards-grid[b-l4iqny2kkb] {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.25rem;
    }
}

/* 中等屏幕优化 */
@media (min-width: 1025px) and (max-width: 1399px) {
    .courses-page-container[b-l4iqny2kkb] {
        padding: 1.5rem;
    }
    
    .courses-title[b-l4iqny2kkb] {
        font-size: 2.5rem;
    }
    
    .class-cards-grid[b-l4iqny2kkb] {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 1.5rem;
    }
}
/* _content/School.Server/Components/Pages/Student/Exam.razor.rz.scp.css */
.exam-page-container[b-mcyikvmmd0] {
    padding: 1.5rem;
    margin: 0 auto;
    min-height: 100vh;
    background: #f8fafb;
}

/* 页面头部样式 */
.homework-header[b-mcyikvmmd0] {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.homework-title[b-mcyikvmmd0] {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.homework-subtitle[b-mcyikvmmd0] {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* 加载状态样式 */
.loading-container[b-mcyikvmmd0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

.loading-spinner[b-mcyikvmmd0] {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin-b-mcyikvmmd0 1s linear infinite;
}

.loading-text[b-mcyikvmmd0] {
    margin-top: 15px;
    font-size: 16px;
    color: #6c757d;
}

/* 空状态样式 */
.empty-state-container[b-mcyikvmmd0] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-height: 60vh;
}

.empty-state[b-mcyikvmmd0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.empty-state-icon[b-mcyikvmmd0] {
    font-size: 64px;
    color: #adb5bd;
    margin-bottom: 20px;
}

.empty-state-title[b-mcyikvmmd0] {
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.empty-state-description[b-mcyikvmmd0] {
    font-size: 16px;
    color: #6c757d;
    max-width: 500px;
}

/* 统计概览样式 */
.homework-stats-summary[b-mcyikvmmd0] {
    margin-bottom: 2rem;
}

.stats-grid[b-mcyikvmmd0] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stats-card[b-mcyikvmmd0] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.stats-card:hover[b-mcyikvmmd0] {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stats-number[b-mcyikvmmd0] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stats-label[b-mcyikvmmd0] {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* 考试列表区域样式 */
.homework-courses-section[b-mcyikvmmd0] {
    margin-bottom: 2rem;
}

.section-title[b-mcyikvmmd0] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-title[b-mcyikvmmd0]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #3b82f6;
    border-radius: 2px;
}

/* 考试卡片网格 */
.course-cards-grid[b-mcyikvmmd0] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .course-cards-grid[b-mcyikvmmd0] {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}

/* 考试详情样式 */
.exam-details[b-mcyikvmmd0] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exam-info[b-mcyikvmmd0] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exam-description h5[b-mcyikvmmd0],
.exam-settings h5[b-mcyikvmmd0] {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
}

.exam-description p[b-mcyikvmmd0] {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.setting-item[b-mcyikvmmd0] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.setting-item i[b-mcyikvmmd0] {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.exam-actions[b-mcyikvmmd0] {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* 可展开卡片样式 */
.class-meta[b-mcyikvmmd0] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.student-count[b-mcyikvmmd0] {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
}

.student-count i[b-mcyikvmmd0] {
    margin-right: 0.25rem;
    color: #3b82f6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .exam-page-container[b-mcyikvmmd0] {
        padding: 1rem;
    }
    
    .homework-title[b-mcyikvmmd0] {
        font-size: 1.75rem;
    }
    
    .stats-grid[b-mcyikvmmd0] {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .stats-number[b-mcyikvmmd0] {
        font-size: 2rem;
    }
    
    .stats-label[b-mcyikvmmd0] {
        font-size: 0.875rem;
    }
    
    .course-cards-grid[b-mcyikvmmd0] {
        gap: 1rem;
    }
    
    .class-meta[b-mcyikvmmd0] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .exam-page-container[b-mcyikvmmd0] {
        padding: 0.75rem;
    }
    
    .homework-title[b-mcyikvmmd0] {
        font-size: 1.5rem;
    }
    
    .stats-grid[b-mcyikvmmd0] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stats-card[b-mcyikvmmd0] {
        padding: 1rem;
    }
    
    .stats-number[b-mcyikvmmd0] {
        font-size: 1.75rem;
    }
    
    .stats-label[b-mcyikvmmd0] {
        font-size: 0.8rem;
    }
}

/* 动画效果 */
@keyframes spin-b-mcyikvmmd0 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn-b-mcyikvmmd0 {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stats-card[b-mcyikvmmd0] {
    animation: fadeIn-b-mcyikvmmd0 0.5s ease forwards;
}

.course-cards-grid > *[b-mcyikvmmd0] {
    animation: fadeIn-b-mcyikvmmd0 0.5s ease forwards;
}

.course-cards-grid > *:nth-child(1)[b-mcyikvmmd0] { animation-delay: 0.1s; }
.course-cards-grid > *:nth-child(2)[b-mcyikvmmd0] { animation-delay: 0.2s; }
.course-cards-grid > *:nth-child(3)[b-mcyikvmmd0] { animation-delay: 0.3s; }
.course-cards-grid > *:nth-child(4)[b-mcyikvmmd0] { animation-delay: 0.4s; }
/* _content/School.Server/Components/Pages/Student/ExamTaking.razor.rz.scp.css */
.exam-taking-container[b-wn03rlvnve] {
    padding: 1.5rem;
    margin: 0 auto;
    min-height: 100vh;
    background: #f8fafb;
}

/* 考试头部样式 */
.exam-header[b-wn03rlvnve] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.exam-title[b-wn03rlvnve] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exam-title h3[b-wn03rlvnve] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.exam-info[b-wn03rlvnve] {
    display: flex;
    gap: 0.75rem;
}

.exam-timer[b-wn03rlvnve] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #fcd34d;
}

.exam-timer span[b-wn03rlvnve] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #92400e;
}

/* 题目导航样式 */
.question-nav[b-wn03rlvnve] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.nav-title[b-wn03rlvnve] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.nav-items[b-wn03rlvnve] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.nav-item-button[b-wn03rlvnve] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-actions[b-wn03rlvnve] {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* 题目内容样式 */
.question-content[b-wn03rlvnve] {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.question-card[b-wn03rlvnve] {
    padding: 1.5rem;
}

.question-header[b-wn03rlvnve] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.question-number[b-wn03rlvnve] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.question-meta[b-wn03rlvnve] {
    display: flex;
    gap: 0.5rem;
}

.question-body[b-wn03rlvnve] {
    margin-bottom: 1.5rem;
}

.question-title h4[b-wn03rlvnve] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.question-description[b-wn03rlvnve] {
    color: #475569;
    line-height: 1.6;
}

/* 复合题样式 */
.composite-question[b-wn03rlvnve] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-content[b-wn03rlvnve] {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 1rem;
}

.sub-questions[b-wn03rlvnve] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sub-question[b-wn03rlvnve] {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.sub-question-number[b-wn03rlvnve] {
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.sub-question-content[b-wn03rlvnve] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sub-question-title[b-wn03rlvnve] {
    color: #475569;
    line-height: 1.6;
}

.sub-question-type[b-wn03rlvnve] {
    margin-bottom: 0.5rem;
}

.sub-question-answer[b-wn03rlvnve] {
    margin-top: 0.5rem;
}

/* 选择题样式 */
.choice-question[b-wn03rlvnve] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-text[b-wn03rlvnve] {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    line-height: 1.6;
    color: #475569;
}

.question-options[b-wn03rlvnve] {
    margin-top: 0.5rem;
}

/* 判断题样式 */
.true-false-question[b-wn03rlvnve] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 编程题样式 */
.programming-question[b-wn03rlvnve] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 填空题样式 */
.text-question[b-wn03rlvnve] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 题目底部导航 */
.question-footer[b-wn03rlvnve] {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.question-navigation[b-wn03rlvnve] {
    display: flex;
    gap: 1rem;
}

/* 徽章样式优化 */
.badge[b-wn03rlvnve] {
    padding: 6px 10px;
    font-weight: 500;
    border-radius: 6px;
}

/* 按钮样式优化 */
.btn[b-wn03rlvnve] {
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.btn:hover[b-wn03rlvnve] {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-success[b-wn03rlvnve] {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover[b-wn03rlvnve] {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-primary[b-wn03rlvnve] {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-wn03rlvnve] {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-info[b-wn03rlvnve] {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover[b-wn03rlvnve] {
    background-color: #138496;
    border-color: #117a8b;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .exam-taking-container[b-wn03rlvnve] {
        padding: 1rem;
    }
    
    .exam-header[b-wn03rlvnve] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .exam-info[b-wn03rlvnve] {
        justify-content: center;
    }
    
    .question-nav[b-wn03rlvnve] {
        padding: 1rem;
    }
    
    .nav-items[b-wn03rlvnve] {
        justify-content: center;
    }
    
    .nav-actions[b-wn03rlvnve] {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-actions .btn[b-wn03rlvnve] {
        width: 100%;
    }
    
    .question-card[b-wn03rlvnve] {
        padding: 1rem;
    }
    
    .question-header[b-wn03rlvnve] {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .question-navigation[b-wn03rlvnve] {
        flex-direction: column;
        width: 100%;
    }
    
    .question-navigation .btn[b-wn03rlvnve] {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .exam-taking-container[b-wn03rlvnve] {
        padding: 0.75rem;
    }
    
    .exam-header[b-wn03rlvnve] {
        padding: 1rem;
    }
    
    .exam-title h3[b-wn03rlvnve] {
        font-size: 1.25rem;
    }
    
    .nav-item-button[b-wn03rlvnve] {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .question-card[b-wn03rlvnve] {
        padding: 0.75rem;
    }
    
    .question-title h4[b-wn03rlvnve] {
        font-size: 1.125rem;
    }
}

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

.exam-header[b-wn03rlvnve],
.question-nav[b-wn03rlvnve],
.question-content[b-wn03rlvnve] {
    animation: fadeIn-b-wn03rlvnve 0.5s ease forwards;
}

.question-content[b-wn03rlvnve] {
    animation-delay: 0.2s;
}
/* _content/School.Server/Components/Pages/Student/HomeworkDetail.razor.rz.scp.css */
/* 作业详情页面主样式 */
.homework-detail-container[b-8az2f54h42] {
    min-height: 100vh;
    background: #f8fafb; /* 清新的浅灰蓝色背景 */
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* 粘性头部区域 */
.homework-detail-header[b-8az2f54h42] {
    position: sticky;
    top: 0;
    z-index: 10; /* 降低优先级，不遮挡弹出框 */
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08); /* 清新的蓝色阴影 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.homework-detail-header[b-8az2f54h42]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #3b82f6; /* 清新的蓝色顶部边框 */
}

.homework-detail-header:hover[b-8az2f54h42] {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.12);
    transform: translateY(-1px);
}

.header-content[b-8az2f54h42] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 标题区域 */
.homework-title-section[b-8az2f54h42] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.homework-title[b-8az2f54h42] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.homework-title[b-8az2f54h42]::before {
    content: '📝';
    font-size: 1.5rem;
    background: #dbeafe; /* 清新的浅蓝色背景 */
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

/* 限制信息徽章 */
.homework-limits[b-8az2f54h42] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.limit-badge[b-8az2f54h42] {
    background: #dbeafe; /* 清新的浅蓝色背景 */
    color: #1d4ed8; /* 深蓝色文字 */
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #93c5fd;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.limit-badge:hover[b-8az2f54h42] {
    background: #bfdbfe;
    transform: translateY(-1px);
}

.limit-badge[b-8az2f54h42]::before {
    font-size: 1rem;
}

.time-limit[b-8az2f54h42]::before {
    content: '⏱';
}

.memory-limit[b-8az2f54h42]::before {
    content: '💾';
}

/* 操作按钮区域 */
.homework-actions[b-8az2f54h42] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.submit-btn[b-8az2f54h42] {
    background: #3b82f6; /* 清新的蓝色背景 */
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.submit-btn:hover[b-8az2f54h42] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    background: #2563eb;
}

.submit-btn:active[b-8az2f54h42] {
    transform: translateY(0);
}

/* 内容区域 */
.homework-content-area[b-8az2f54h42] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.homework-content-area:hover[b-8az2f54h42] {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* 加载状态样式 */
.loading-container[b-8az2f54h42] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 1.5rem;
    color: #64748b;
}

.loading-spinner[b-8az2f54h42] {
    width: 3rem;
    height: 3rem;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-8az2f54h42 1s linear infinite;
}

.loading-text[b-8az2f54h42] {
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes spin-b-8az2f54h42 {
    to {
        transform: rotate(360deg);
    }
}

/* 错误状态样式 */
.error-container[b-8az2f54h42] {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #f87171;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: #dc2626;
}

.error-icon[b-8az2f54h42] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-message[b-8az2f54h42] {
    font-size: 1.1rem;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .homework-detail-container[b-8az2f54h42] {
        padding: 1rem;
    }
    
    .homework-detail-header[b-8az2f54h42] {
        margin-bottom: 1.5rem;
    }
    
    .header-content[b-8az2f54h42] {
        padding: 1rem;
    }
    
    .homework-title-section[b-8az2f54h42] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .homework-title[b-8az2f54h42] {
        font-size: 1.5rem;
    }
    
    .homework-limits[b-8az2f54h42] {
        width: 100%;
        justify-content: flex-start;
    }
    
    .homework-actions[b-8az2f54h42] {
        width: 100%;
        justify-content: stretch;
    }
    
    .submit-btn[b-8az2f54h42] {
        flex: 1;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .limit-badge[b-8az2f54h42] {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .homework-detail-container[b-8az2f54h42] {
        padding: 0.75rem;
    }
    
    .header-content[b-8az2f54h42] {
        padding: 0.75rem;
    }
    
    .homework-title[b-8az2f54h42] {
        font-size: 1.25rem;
    }
    
    .homework-limits[b-8az2f54h42] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .limit-badge[b-8az2f54h42] {
        justify-content: center;
        padding: 0.5rem;
    }
}

/* 平板端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .homework-detail-container[b-8az2f54h42] {
        padding: 1.25rem;
    }
    
    .homework-title[b-8az2f54h42] {
        font-size: 1.625rem;
    }
    
    .homework-actions[b-8az2f54h42] {
        gap: 1rem;
    }
}

/* 大屏幕优化 */
@media (min-width: 1400px) {
    .homework-detail-container[b-8az2f54h42] {
        max-width: 1600px;
    }
    
    .homework-title[b-8az2f54h42] {
        font-size: 2rem;
    }
    
    .header-content[b-8az2f54h42] {
        padding: 2rem;
    }
}

/* 动画和过渡效果 */
.homework-detail-header[b-8az2f54h42],
.homework-content-area[b-8az2f54h42],
.submit-btn[b-8az2f54h42],
.limit-badge[b-8az2f54h42] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 焦点状态 */
.submit-btn:focus[b-8az2f54h42] {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3), 0 8px 25px rgba(59, 130, 246, 0.35);
}

/* 无障碍支持 */
@media (prefers-reduced-motion: reduce) {
    *[b-8az2f54h42] {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 高对比度模式支持 */
@media (prefers-contrast: high) {
    .homework-detail-header[b-8az2f54h42] {
        border: 2px solid #000;
    }
    
    .submit-btn[b-8az2f54h42] {
        border: 2px solid #000;
    }
    
    .limit-badge[b-8az2f54h42] {
        border: 2px solid #667eea;
    }
}
/* _content/School.Server/Components/Pages/Student/Index.razor.rz.scp.css */
.student-page-container[b-ziribgsx75] {
    padding: 1.5rem;
    margin: 0 auto;
    min-height: 100vh;
    background: #f8fafb; /* 清新的浅灰蓝色背景 */
}

/* 课时统计区域 - 简约清新风格 */
.student-hours-summary[b-ziribgsx75] {
    background: #3b82f6; /* 清新的纯蓝色背景 */
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15); /* 清新的蓝色阴影 */
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.student-hours-summary:hover[b-ziribgsx75] {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.hours-card[b-ziribgsx75] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.hours-card:hover[b-ziribgsx75] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.hours-number[b-ziribgsx75] {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hours-label[b-ziribgsx75] {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* 最近课程信息区域 - 统一卡片设计 */
.next-course-info[b-ziribgsx75] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-course-info:hover[b-ziribgsx75] {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.info-header[b-ziribgsx75] {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.info-header i[b-ziribgsx75] {
    color: #3b82f6; /* 使用项目标准蓝色 */
    font-size: 1.1rem;
}

.info-content[b-ziribgsx75] {
    padding-left: 1.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

/* 课程表容器 */
.schedule-container[b-ziribgsx75] {
    margin-top: 1.5rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .student-page-container[b-ziribgsx75] {
        padding: 1rem;
    }
    
    .student-hours-summary[b-ziribgsx75] {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .hours-card[b-ziribgsx75] {
        padding: 1rem 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hours-number[b-ziribgsx75] {
        font-size: 2rem;
    }
    
    .hours-label[b-ziribgsx75] {
        font-size: 0.875rem;
    }
    
    .next-course-info[b-ziribgsx75] {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .info-header[b-ziribgsx75] {
        font-size: 0.95rem;
    }
    
    .info-content[b-ziribgsx75] {
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .student-page-container[b-ziribgsx75] {
        padding: 0.75rem;
    }
    
    .student-hours-summary[b-ziribgsx75] {
        padding: 0.75rem;
    }
    
    .hours-card[b-ziribgsx75] {
        padding: 0.75rem 0.5rem;
    }
    
    .hours-number[b-ziribgsx75] {
        font-size: 1.75rem;
    }
    
    .hours-label[b-ziribgsx75] {
        font-size: 0.8rem;
    }
    
    .next-course-info[b-ziribgsx75] {
        padding: 0.75rem;
    }
    
    .info-content[b-ziribgsx75] {
        padding-left: 1rem;
    }
}

/* 平板端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .student-page-container[b-ziribgsx75] {
        padding: 1.25rem;
    }
    
    .hours-number[b-ziribgsx75] {
        font-size: 2.25rem;
    }
    
    .schedule-container[b-ziribgsx75] {
        margin-top: 1.25rem;
    }
}
/* _content/School.Server/Components/Pages/Student/StudentHomework.razor.rz.scp.css */
/* 学生作业页面样式 - 简约清新风格 */
.homework-page-container[b-6jf2ofx77h] {
    padding: 1.5rem;
    margin: 0 auto;
    min-height: 100vh;
    background: #f8fafb; /* 清新的浅灰蓝色背景 */
}

/* 页面头部区域 */
.homework-header[b-6jf2ofx77h] {
    margin-bottom: 2rem;
    position: relative;
}

.homework-title[b-6jf2ofx77h] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.homework-title[b-6jf2ofx77h]::before {
    content: '📚';
    font-size: 2rem;
    background: #dbeafe; /* 清新的浅蓝色背景 */
    color: #1d4ed8; /* 深蓝色图标 */
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.homework-subtitle[b-6jf2ofx77h] {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* 统计概览区域 - 纯蓝色设计 */
.homework-stats-summary[b-6jf2ofx77h] {
    background: #3b82f6; /* 清新的纯蓝色背景 */
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15); /* 清新的蓝色阴影 */
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.homework-stats-summary:hover[b-6jf2ofx77h] {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.stats-grid[b-6jf2ofx77h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stats-card[b-6jf2ofx77h] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.stats-card:hover[b-6jf2ofx77h] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.stats-number[b-6jf2ofx77h] {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-label[b-6jf2ofx77h] {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* 课程作业区域 */
.homework-courses-section[b-6jf2ofx77h] {
    margin-bottom: 2rem;
}

.section-title[b-6jf2ofx77h] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title[b-6jf2ofx77h]::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background: #3b82f6; /* 使用项目标准蓝色 */
    border-radius: 2px;
}

/* 课程卡片网格布局 */
.course-cards-grid[b-6jf2ofx77h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

/* 大屏幕优化：最多2列 */
@media (min-width: 1400px) {
    .course-cards-grid[b-6jf2ofx77h] {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        max-width: none;
    }
}

/* 超大屏幕：限制最大列数为1 */
@media (min-width: 1800px) {
    .course-cards-grid[b-6jf2ofx77h] {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* 作业列表容器 */
.homework-list-container[b-6jf2ofx77h] {
    padding: 1rem 1.5rem;
}

.homework-list[b-6jf2ofx77h] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* 作业项 */
.homework-item[b-6jf2ofx77h] {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.homework-item:hover[b-6jf2ofx77h] {
    border-color: #3b82f6; /* 使用项目标准蓝色 */
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    transform: translateX(4px);
}

.homework-item-header[b-6jf2ofx77h] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.homework-badges[b-6jf2ofx77h] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.homework-type-badge[b-6jf2ofx77h] {
    background: #3b82f6; /* 使用项目标准蓝色 */
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.homework-content[b-6jf2ofx77h] {
    flex: 1;
    min-width: 0;
}

.homework-content h4[b-6jf2ofx77h] {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.homework-meta[b-6jf2ofx77h] {
    font-size: 0.8rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.homework-actions[b-6jf2ofx77h] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.btn-homework[b-6jf2ofx77h] {
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.btn-homework:hover[b-6jf2ofx77h] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-view[b-6jf2ofx77h] {
    background: #10b981; /* 清新的绿色 */
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view:hover[b-6jf2ofx77h] {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

/* 空状态 */
.empty-state[b-6jf2ofx77h] {
    text-align: center;
    padding: 3rem 1rem;
    color: #64748b;
}

.empty-state-icon[b-6jf2ofx77h] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state-title[b-6jf2ofx77h] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-state-description[b-6jf2ofx77h] {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* 加载状态 */
.loading-container[b-6jf2ofx77h] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    flex-direction: column;
    gap: 1rem;
}

.loading-spinner[b-6jf2ofx77h] {
    width: 3rem;
    height: 3rem;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-top-color: #3b82f6; /* 使用项目标准蓝色 */
    border-radius: 50%;
    animation: spin-b-6jf2ofx77h 1s linear infinite;
}

.loading-text[b-6jf2ofx77h] {
    color: #64748b;
    font-weight: 500;
}

@keyframes spin-b-6jf2ofx77h {
    to {
        transform: rotate(360deg);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .homework-page-container[b-6jf2ofx77h] {
        padding: 1rem;
    }
    
    .homework-title[b-6jf2ofx77h] {
        font-size: 2rem;
    }
    
    .homework-stats-summary[b-6jf2ofx77h] {
        padding: 1.5rem;
    }
    
    .stats-grid[b-6jf2ofx77h] {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .stats-card[b-6jf2ofx77h] {
        padding: 1rem 0.75rem;
    }
    
    .stats-number[b-6jf2ofx77h] {
        font-size: 2rem;
    }
    
    /* 移动端：单列显示 */
    .course-cards-grid[b-6jf2ofx77h] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .course-header[b-6jf2ofx77h] {
        padding: 1rem;
    }
    
    .homework-list-container[b-6jf2ofx77h] {
        padding: 1rem;
    }
    
    .homework-item[b-6jf2ofx77h] {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    
    .homework-content[b-6jf2ofx77h] {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .homework-content h4[b-6jf2ofx77h] {
        white-space: normal;
        margin-bottom: 0.25rem;
    }
    
    .homework-meta[b-6jf2ofx77h] {
        white-space: normal;
    }
    
    .homework-actions[b-6jf2ofx77h] {
        width: 100%;
        justify-content: stretch;
    }
    
    .btn-homework[b-6jf2ofx77h] {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .homework-page-container[b-6jf2ofx77h] {
        padding: 0.75rem;
    }
    
    .homework-title[b-6jf2ofx77h] {
        font-size: 1.75rem;
    }
    
    .homework-stats-summary[b-6jf2ofx77h] {
        padding: 1rem;
    }
    
    .stats-grid[b-6jf2ofx77h] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .course-cards-grid[b-6jf2ofx77h] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .course-homework-card[b-6jf2ofx77h] {
        margin-bottom: 0;
    }
    
    .homework-item-header[b-6jf2ofx77h] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .homework-badges[b-6jf2ofx77h] {
        order: -1;
    }
}

/* 平板端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    .homework-page-container[b-6jf2ofx77h] {
        padding: 1.25rem;
    }
    
    .stats-grid[b-6jf2ofx77h] {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .homework-title[b-6jf2ofx77h] {
        font-size: 2.25rem;
    }
    
    /* 平板端：双列显示 */
    .course-cards-grid[b-6jf2ofx77h] {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 1.25rem;
    }
}

/* 中等屏幕优化 */
@media (min-width: 1025px) and (max-width: 1399px) {
    .course-cards-grid[b-6jf2ofx77h] {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 1.5rem;
    }
}
/* _content/School.Server/Components/Pages/Teacher/HomeworkManager.razor.rz.scp.css */
.homework-manager-container[b-ui41cm9wym] {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-title[b-ui41cm9wym] {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.page-title i[b-ui41cm9wym] {
    font-size: 28px;
    margin-right: 12px;
    color: #4a6cf7;
}

.page-title span[b-ui41cm9wym] {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.loading-container[b-ui41cm9wym] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

.loading-text[b-ui41cm9wym] {
    margin-top: 15px;
    font-size: 16px;
    color: #6c757d;
}

.empty-state[b-ui41cm9wym] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.empty-icon[b-ui41cm9wym] {
    font-size: 64px;
    color: #adb5bd;
    margin-bottom: 20px;
}

.empty-text[b-ui41cm9wym] {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 20px;
}

.classes-container[b-ui41cm9wym] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 20px;
}

@media (min-width: 768px) {
    .classes-container[b-ui41cm9wym] {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}

.class-card[b-ui41cm9wym] {
    margin-bottom: 0;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.class-card:hover[b-ui41cm9wym] {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.class-header[b-ui41cm9wym] {
    padding: 20px;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.2s ease;
}

.class-header:hover[b-ui41cm9wym] {
    background-color: #f8f9fa;
}

.class-info[b-ui41cm9wym] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.class-name[b-ui41cm9wym] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.expand-icon[b-ui41cm9wym] {
    margin-left: 10px;
    font-size: 14px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.class-meta[b-ui41cm9wym] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-count[b-ui41cm9wym] {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
}

.student-count i[b-ui41cm9wym] {
    margin-right: 5px;
}

.courses-section[b-ui41cm9wym] {
    padding: 0 20px 20px;
    background-color: #f8f9fa;
}

.courses-header[b-ui41cm9wym] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-top: 15px;
}

.courses-title[b-ui41cm9wym] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #495057;
}

/* 表格样式优化 */
.table[b-ui41cm9wym] {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.table th[b-ui41cm9wym] {
    background-color: #f1f3f5;
    color: #495057;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.table td[b-ui41cm9wym] {
    vertical-align: middle;
    padding: 12px 15px;
}

/* 按钮样式优化 */
.btn[b-ui41cm9wym] {
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.btn:hover[b-ui41cm9wym] {
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-success[b-ui41cm9wym] {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover[b-ui41cm9wym] {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-primary[b-ui41cm9wym] {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover[b-ui41cm9wym] {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* 徽章样式优化 */
.badge[b-ui41cm9wym] {
    padding: 6px 10px;
    font-weight: 500;
    border-radius: 6px;
}

/* 盾牌徽章样式优化 */
.shield-badge[b-ui41cm9wym] {
    margin-right: 8px;
    font-size: 0.85em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .homework-manager-container[b-ui41cm9wym] {
        padding: 15px;
    }
    
    .page-title[b-ui41cm9wym] {
        margin-bottom: 20px;
    }
    
    .page-title span[b-ui41cm9wym] {
        font-size: 20px;
    }
    
    .class-info[b-ui41cm9wym] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .class-meta[b-ui41cm9wym] {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }
    
    .table-responsive[b-ui41cm9wym] {
        font-size: 0.9rem;
    }
    
    .btn[b-ui41cm9wym] {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

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

.class-card[b-ui41cm9wym] {
    animation: fadeIn-b-ui41cm9wym 0.5s ease forwards;
}

/* 状态指示器样式 */
.status-indicator[b-ui41cm9wym] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-indicator.active[b-ui41cm9wym] {
    background-color: #28a745;
}

.status-indicator.pending[b-ui41cm9wym] {
    background-color: #ffc107;
}

.status-indicator.inactive[b-ui41cm9wym] {
    background-color: #dc3545;
}
