/* 注意力测评样式 */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
}

.ae-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.ae-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ae-card h2,
.ae-card h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.ae-user-info p {
    margin: 8px 0;
    font-size: 16px;
}

.ae-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ae-empty {
    color: #999;
    text-align: center;
    padding: 40px 20px;
    font-style: italic;
}

.ae-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.ae-table th,
.ae-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.ae-table th {
    background: #667eea;
    color: white;
    font-weight: 500;
}

.ae-table tr:hover {
    background: #f5f5f5;
}

.ae-form-group {
    margin-top: 20px;
}

.ae-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ae-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.ae-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ae-btn-small {
    padding: 6px 12px;
    font-size: 14px;
}

.ae-icon {
    margin-right: 5px;
}

/* 测评页面样式 */
.game-container {
    display: flex;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.game-area {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.game-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.game-content {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.game-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.info-panel {
    width: 300px;
    background: white;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.info-card {
    margin-bottom: 20px;
}

.info-title {
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}

.result-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.result-header {
    text-align: center;
    margin-bottom: 40px;
}

.result-score {
    font-size: 72px;
    font-weight: bold;
    color: #667eea;
}

.result-actions {
    text-align: center;
    margin-top: 40px;
}
