/* 全局样式重置和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    overflow: hidden;
    width: 1920px;
    height: 100vh;
    background: url('../images/f151b0c2aaf3e4d13c032b089c9a6eaf.png.jpg') no-repeat center center;
    background-size: 100% 100%;
    /* 图片加载优化 */
    background-attachment: fixed;
}

/* 图片加载优化样式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* 防止图片加载时的布局重排 */
    aspect-ratio: attr(width) / attr(height);
}

/* 图片加载占位符 */
.ai-work-placeholder-image,
.work-placeholder-image {
    position: relative;
    background: linear-gradient(90deg, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
    overflow: hidden;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 图片加载完成后的样式 */
img[data-loaded="true"] {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 图片错误处理样式 */
.image-error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
    font-size: 14px;
    border-radius: 8px;
    min-height: 150px;
    border: 2px dashed #ddd;
}

/* 图片容器优化 */
.ai-work-image-container,
.work-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* 优化背景图片加载 */
.system-title {
    background: url('../images/header_bg.png') no-repeat center center;
    background-size: 100% 100%;
    /* 优化背景图片加载 */
    background-attachment: fixed;
}

#app {
    width: 100%;
    height: 100vh;
    position: relative;
    background: linear-gradient(180deg,rgba(8,18,48,.2),rgba(8,18,48,.1));
}

/* 页面切换样式 */
.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    padding: 20px;
}

.page.active {
    opacity: 1;
    transform: translateX(0);
}

/* 封面页样式 */
.cover-container {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    height: 100%;
    padding: 60px;
}

.system-title {
    width: 100%;
    text-align: center;
    margin-bottom: 90px;
    color: white;
    background: url('../images/header_bg.png') no-repeat center center;
    background-size: 100% 100%;
}

.system-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    /* 间距 */
    letter-spacing: 0.1em;
    padding: 7px 0;
}

.system-title h2 {
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* 导航网格布局 */
.nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.nav-card {
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.5));
    position: relative;
    overflow: hidden;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(0, 247, 255, 0.7));
    }
}

.nav-card::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.6s ease;
}

.nav-card:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 0 30px rgba(0, 247, 255, 0.8));
    border-color: rgba(0, 247, 255, 0.8);
}

.nav-card:hover::before {
    left: 100%;
}

.nav-card:hover .nav-icon {
    transform: scale(1.1) rotate(5deg);
}

.nav-card:hover h3 {
    color: #00f7ff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.6);
}

.nav-card:hover p {
    color: #e6f7ff;
}

.nav-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.ai-icon { color: #1890ff; }
.resource-icon { color: #52c41a; }
.emotion-icon { color: #faad14; }
.profile-icon { color: #722ed1; }

.nav-card h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.nav-card p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/* 内容页面样式 */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(2, 106, 188, 0.1);
    padding: 8px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(2, 106, 188, 0.1);
}

.page-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.back-btn {
    background: linear-gradient(45deg, #1890ff, #9bc6e9);
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
}

.back-btn:hover {
    background: linear-gradient(45deg, #40a9ff, #69c0ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(24, 144, 255, 0.4);
}

/* 内容网格布局 */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    height: calc(100vh - 120px);
}

.chart-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.chart-container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.chart-container > div:last-child {
    height: calc(100% - 50px);
    min-height: 300px;
}

/* 数据表格样式 */
.data-table {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.data-table h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th,
.data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.data-table th {
    background: linear-gradient(45deg, #fafafa, #f5f5f5);
    font-weight: 600;
    color: #333;
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table tbody tr {
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover {
    background-color: #f8f9fa;
}

.data-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* ECharts图表样式优化 */
.echarts-container {
    width: 100%;
    height: 100%;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-card {
    animation: fadeInUp 0.6s ease forwards, breathe 3s ease-in-out infinite;
}

.nav-card:nth-child(1) { 
    animation-delay: 0.1s, 0s; 
}
.nav-card:nth-child(2) { 
    animation-delay: 0.2s, 0.5s; 
}
.nav-card:nth-child(3) { 
    animation-delay: 0.3s, 1s; 
}
.nav-card:nth-child(4) { 
    animation-delay: 0.4s, 1.5s; 
}

/* 滚动条样式 */
.data-table::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.data-table::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.data-table::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.data-table::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 加载动画 */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    font-size: 1.1rem;
    color: #666;
}

.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1890ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 主题墙AI识图评价页面特殊样式 */
.ai-works-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 8px 20px;
}

.ai-work-item {
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: url('../images/huakuang.png') no-repeat center center;
    background-size: 100% 100%;
}

.ai-work-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.ai-work-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

.ai-work-image-container {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.ai-work-placeholder-image {
    width: 100%;
    height: 290px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ai-work-placeholder-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-work-score {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: rgba(24, 144, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    border: 2px solid rgba(24, 144, 255, 0.3);
}

/* AI墙评价弹窗样式 */
.ai-wall-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 500%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    /* align-items: center; */
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.ai-wall-modal.show {
    display: flex;
}

.ai-wall-modal .modal-content {
    /* background: white; */
    border-radius: 20px;
    width: 90%;
    max-width: 1400px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 0 50px rgba(2, 106, 188, 0.3);
    border: 2px solid rgba(2, 106, 188, 0.5);
    margin-top: 50px;
}

.ai-wall-modal .modal-body {
    padding: 0 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* AI墙弹窗数据分析区域样式 */
.analysis-section-modal {
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    /* backdrop-filter: blur(10px); */
    /* background: url('../images/shuju.png') no-repeat center center; */
    background-size: 100% 100%;
}

.analysis-section-modal h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.analysis-grid-modal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.analysis-card-modal {
    border-radius: 10px;
    padding: 20px;
    /* border-left: 4px solid #1890ff; */
    background: url('../images/shuju.png') no-repeat center center;
    background-size: 100% 100%;
}

.analysis-card-modal h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

/* AI墙弹窗AI报告区域样式 */
.ai-report-section-modal {
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(10px); */
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(2, 106, 188, 0.5);
    text-align: center;
}

/* 数据分析区域样式 */
.analysis-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.analysis-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.analysis-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #1890ff;
}

.analysis-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.bar-chart-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bar-label {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.bar-wrapper {
    position: relative;
    height: 25px;
    background: #8f8f8f;
    border-radius: 12px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1890ff, #40a9ff);
    border-radius: 12px;
    transition: width 0.8s ease;
    position: relative;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bar-value {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

/* AI报告生成区域样式 */
.ai-report-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.ai-report-btn {
    background: linear-gradient(45deg, #1890ff, rgba(2, 106, 188, 0.8));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 106, 188, 0.3);
}

.ai-report-btn:hover {
    background: linear-gradient(45deg, #1890ff, rgba(2, 106, 188, 0.8));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 106, 188, 0.4);
}

.ai-report-btn:active {
    transform: translateY(0);
}

.ai-report-content {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1890ff;
    animation: fadeInUp 0.5s ease;
}

.ai-report-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.ai-report-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 线上学习资源完成情况页面特殊样式 */
.resources-section {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.resources-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.gauges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gauge-item {
    text-align: center;
    background: url('../images/shuju1.png') no-repeat center center;
    background-size: 100% 100%;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gauge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gauge-chart {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}

.gauge-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.gauge-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: rgba(2, 106, 188, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* 三维评价区域样式 */
.evaluation-section {
    background: url('../images/shuju2.png') no-repeat center center;
    background-size: 100% 100%;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.evaluation-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.evaluation-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.pie-chart {
    width: 100%;
    height: 350px;
    max-width: 800px;
}

/* 情绪管理互动墙饰评价页面特殊样式 */
.works-showcase {
    display: flex;
    height: calc(100vh - 120px);
    gap: 20px;
    padding: 0 20px;
}

.work-showcase-item {
    flex: 1;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 3px solid transparent;
    background: url('../images/huakuang1.png') no-repeat center center;
    background-size: 100% 100%;
}

.work-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2, 106, 188, 0.2);
    border-color: #1890ff;
}

.work-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.work-image-container {
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-placeholder-image {
    width: 92%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.work-placeholder-image img{
    width: 100%;
}

/* 评价弹窗样式 */
.evaluation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.evaluation-modal.show {
    display: flex;
}

.modal-content {
    /* background: white; */
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 0 50px rgba(2, 106, 188, 0.3);
    border: 2px solid rgba(2, 106, 188, 0.5);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    color: white;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    display: flex;
    overflow: hidden;
}

.evaluation-left {
    flex: 1;
    padding: 30px;
    border-right: 1px solid #f0f0f0;
    overflow-y: auto;
}

.evaluation-right {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 维度评价样式 */
.dimensions-title h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.dimensions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.dimension-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1890ff;
}

.dimension-name {
    font-weight: 600;
    color: #333;
    flex: 1;
}

.dimension-total {
    color: #666;
    font-size: 0.9rem;
}

/* 评价表格样式 */
.evaluation-table-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    overflow-x: auto;
}

.evaluation-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.evaluation-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.evaluation-table td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
    background: white;
}

.evaluation-table tbody tr:hover {
    background: #f0f9ff;
}

.total-score {
    font-weight: 700;
    color: #1890ff;
    background: rgba(24, 144, 255, 0.1) !important;
}

/* 幼儿评价样式 */
.children-evaluation {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #fff7e6 0%, #fff2cc 100%);
    border-radius: 15px;
    margin-bottom: 20px;
}

.children-evaluation h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.stars-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.star {
    font-size: 2rem;
    transition: transform 0.2s ease;
    opacity: 0.3;
    filter: grayscale(100%);
}

.star.filled {
    animation: starTwinkle 2s infinite;
    opacity: 1;
    filter: none;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stars-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #faad14;
}

/* 综合得分样式 */
.comprehensive-score {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
    border-radius: 15px;
    margin-bottom: 20px;
}

.comprehensive-score h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.score-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.score-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1890ff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.score-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

/* AI报告样式 */
.ai-report-section-modal {
    text-align: center;
}

.ai-report-btn-modal {
    background: linear-gradient(45deg, #1890ff, #40a9ff);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 106, 188, 0.3);
    width: 100%;
}

.ai-report-btn-modal:hover {
    background: linear-gradient(45deg, #1890ff, #40a9ff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 106, 188, 0.4);
}

/* 按钮组样式 */
.button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.score-btn-modal {
    background: linear-gradient(45deg, #52c41a, #73d13d);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.score-btn-modal:hover {
    background: linear-gradient(45deg, #52c41a, #73d13d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 196, 26, 0.4);
}

/* 分数隐藏样式 */
.score-hidden {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.score-visible {
    opacity: 1;
}

/* 星星填充状态 */
.star.filled {
    animation: starTwinkle 2s infinite;
    opacity: 1;
    filter: none;
}

.ai-report-content-modal {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1890ff;
    text-align: left;
    animation: fadeInUp 0.5s ease;
}

.ai-report-content-modal h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.ai-report-content-modal p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}