/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
    min-height: 100vh;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 头部样式 */
.header {
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 40px;
}

.title {
    font-size: 2.8em;
    color: #ff6b9d;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.1em;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* 进度条样式 */
.progress-bar-container {
    margin-top: 20px;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 5%;
    background: linear-gradient(90deg, #ff6b9d, #ff8fab);
    transition: width 0.3s ease;
}

.progress-text {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 0.9em;
}

/* 主要内容区域 */
.main-content {
    flex: 1;
}

.intro-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.intro-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.intro-card h2 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.intro-card p {
    color: #555;
    line-height: 1.8;
}

.professional-list {
    list-style: none;
    padding: 0;
}

.professional-list li {
    padding: 10px 0;
    color: #555;
    font-size: 1.05em;
}

/* 测试入口区域 */
.test-entry-section {
    margin-bottom: 50px;
}

.test-code-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ffe0e8;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.1);
}

.test-code-card h2 {
    color: #ff6b9d;
    margin-bottom: 10px;
    font-size: 1.5em;
    font-weight: 600;
}

.card-hint {
    color: #888888;
    margin-bottom: 25px;
    font-size: 0.95em;
}

.test-code-form {
    margin-top: 25px;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.test-code-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 1em;
    background: #ffffff;
    border: 2px solid #ff6b9d;
    border-radius: 6px;
    color: #333333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.test-code-input::placeholder {
    color: #bbbbbb;
}

.test-code-input:focus {
    outline: none;
    border-color: #ff8fab;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.verify-button {
    padding: 12px 30px;
    font-size: 1em;
    background: #ff6b9d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    font-weight: 600;
    white-space: nowrap;
}

.verify-button:hover {
    background: #ff8fab;
    transform: translateY(-1px);
}

.verify-button:active {
    transform: translateY(0);
}

.no-code-link {
    display: inline-block;
    color: #ff6b9d;
    font-size: 0.9em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.no-code-link:hover {
    color: #ff8fab;
}

/* 测试页面样式 */
.test-page {
    padding: 20px;
}

/* 顶部导航栏 */
.test-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(255, 107, 157, 0.1);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95em;
}

.prev-btn {
    background: #f5f5f5;
    color: #666666;
}

.prev-btn:hover {
    background: #eeeeee;
}

.next-btn {
    background: #ff6b9d;
    color: white;
}

.next-btn:hover {
    background: #ff8fab;
    transform: translateY(-1px);
}

.nav-icon {
    font-size: 1.2em;
    font-weight: bold;
}

.nav-text {
    font-size: 0.95em;
}

.progress-info {
    color: #333333;
    font-size: 1em;
    font-weight: 500;
}

/* 问题卡片 */
.test-content {
    margin-bottom: 30px;
}

.question-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.1);
}

.question-category {
    color: #ff6b9d;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-text {
    font-size: 1.3em;
    color: #333333;
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 500;
}

.options-list {
    list-style: none;
    padding: 0;
}

.option-item {
    margin-bottom: 15px;
}

.option-label {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: #fff5f7;
    border: 2px solid #ffe0e8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-label:hover {
    background: #ffe0e8;
    border-color: #ff6b9d;
    transform: translateX(5px);
}

.option-label input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ff6b9d;
}

.option-label input[type="radio"]:checked + .option-letter {
    color: #ff6b9d;
    font-weight: 700;
}

.option-label:has(input[type="radio"]:checked) {
    background: #ffe0e8;
    border-color: #ff6b9d;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.2);
}

.option-letter {
    font-weight: 700;
    font-size: 1.1em;
    color: #ff6b9d;
    margin-right: 12px;
    min-width: 25px;
}

.option-text {
    flex: 1;
    font-size: 1.05em;
    color: #555555;
    line-height: 1.6;
}

.option-label:has(input[type="radio"]:checked) .option-text {
    color: #333333;
    font-weight: 500;
}

/* 底部进度指示器 */
.progress-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px;
    margin-bottom: 20px;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.progress-dot.active {
    background: #ff6b9d;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 8px rgba(255, 107, 157, 0.4);
}

.progress-dot.answered {
    background: #ffb3d1;
}

/* 提交按钮容器 */
.submit-container {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    padding: 15px 50px;
    font-size: 1.1em;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 结果页面样式 */
.result-content {
    flex: 1;
}

.result-summary {
    margin-bottom: 30px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.summary-card h2 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.completion-message {
    color: #555;
    font-size: 1.1em;
}

.chart-section {
    margin-bottom: 30px;
}

.chart-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.chart-card h2 {
    color: #667eea;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5em;
}

.chart-container {
    position: relative;
    height: 400px;
    margin: 20px 0;
}

.statistics-section {
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-card h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.stat-value {
    font-size: 2.5em;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
}

.stat-bar {
    width: 100%;
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 1s ease;
}

.analysis-section {
    margin-bottom: 30px;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.analysis-card h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.analysis-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.05em;
}

.analysis-content p {
    margin-bottom: 15px;
}

.analysis-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.analysis-content li {
    margin-bottom: 10px;
}

.action-section {
    text-align: center;
    margin-bottom: 30px;
}

.restart-button {
    padding: 15px 40px;
    font-size: 1.2em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-weight: 600;
}

.restart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* 特性卡片区域 */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #ffe0e8;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 157, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b9d;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.15);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ff6b9d;
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 600;
}

.feature-card p {
    color: #666666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* 页脚样式 */
.footer {
    text-align: center;
    padding: 20px;
    color: #999999;
    font-size: 0.9em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header {
        padding: 40px 15px 30px;
    }

    .title {
        font-size: 2em;
    }

    .intro-text p {
        font-size: 1em;
    }

    .features-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .test-code-card {
        padding: 30px 20px;
    }

    .input-group {
        flex-direction: column;
    }

    .verify-button {
        width: 100%;
    }

    /* 测试页面响应式 */
    .test-nav {
        padding: 12px 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-btn {
        padding: 8px 15px;
        font-size: 0.85em;
    }

    .nav-text {
        display: none;
    }

    .progress-info {
        font-size: 0.9em;
        width: 100%;
        text-align: center;
        order: 3;
        margin-top: 5px;
    }

    .question-card {
        padding: 25px 20px;
    }

    .question-text {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    .option-label {
        padding: 15px;
    }

    .option-text {
        font-size: 0.95em;
    }

    .progress-dots {
        gap: 6px;
        padding: 15px 10px;
    }

    .progress-dot {
        width: 8px;
        height: 8px;
    }

    .progress-dot.active {
        width: 10px;
        height: 10px;
    }

    .test-content {
        padding: 20px;
    }

    .chart-container {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.6em;
    }

    .intro-text p {
        font-size: 0.95em;
    }

    .test-code-card {
        padding: 25px 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    /* 测试页面小屏幕 */
    .test-nav {
        padding: 10px 12px;
    }

    .nav-btn {
        padding: 8px 12px;
        font-size: 0.8em;
    }

    .question-card {
        padding: 20px 15px;
    }

    .question-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .option-label {
        padding: 12px;
    }

    .option-letter {
        font-size: 1em;
        min-width: 20px;
    }

    .option-text {
        font-size: 0.9em;
    }

    .progress-dots {
        gap: 5px;
    }

    .progress-dot {
        width: 7px;
        height: 7px;
    }

    .progress-dot.active {
        width: 9px;
        height: 9px;
    }

    .chart-container {
        height: 250px;
    }
}

/* 结果页面样式 */
.result-page {
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
}

.result-header {
    text-align: center;
    padding: 40px 20px 30px;
    margin-bottom: 30px;
}

.result-title {
    font-size: 2.5em;
    color: #ff6b9d;
    font-weight: 700;
    margin: 0;
}

.section-title {
    font-size: 1.5em;
    color: #ff6b9d;
    margin-bottom: 20px;
    font-weight: 600;
}

/* 测试概览部分 */
.overview-section {
    margin-bottom: 40px;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.overview-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
    border: 1px solid #ffe0e8;
}

.overview-rank {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.overview-dimension {
    font-size: 1.2em;
    color: #ff6b9d;
    font-weight: 600;
    margin-bottom: 15px;
}

.overview-score {
    font-size: 2.5em;
    color: #ff6b9d;
    font-weight: 700;
}

.overview-main-card {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
    color: white;
}

.overview-main-rank {
    font-size: 1em;
    opacity: 0.9;
    margin-bottom: 10px;
}

.overview-main-dimension {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
}

.overview-main-score {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 15px;
}

.overview-main-level {
    font-size: 1.2em;
    opacity: 0.9;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: inline-block;
}

/* 雷达图部分 */
.chart-section {
    margin-bottom: 40px;
}

.chart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

.chart-wrapper-with-lollipop {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.chart-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}


.chart-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.12);
    border: 1px solid #ffe0e8;
    transition: box-shadow 0.3s ease;
    
}

.chart-card:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.18);
}

.chart-container {
    position: relative;
    height: 500px;
    margin: 10px 0;
}

/* 雷达图分析卡片 */
.chart-analysis-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    
    
}

.analysis-card-top,
.analysis-card-bottom,
.analysis-card-index {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.1);
    border: 1px solid #ffe0e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    
}

.analysis-card-top:hover,
.analysis-card-bottom:hover,
.analysis-card-index:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.15);
}

.analysis-card-top {
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
    border-left: 4px solid #ff6b9d;
}

.analysis-card-bottom {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
    border-left: 4px solid #ffb3d1;
}

.analysis-card-index {
    background: linear-gradient(135deg, #ffe0e8 0%, #fff5f7 100%);
    border-left: 4px solid #ff6b9d;
    flex: 1;
    min-height: 0;
    
}

.analysis-card-top .analysis-card-content,
.analysis-card-bottom .analysis-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    
}

.analysis-card-index .analysis-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    
}

.analysis-card-icon {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 15px;
    
}

.analysis-card-title {
    font-size: 1.1em;
    color: #ff6b9d;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.analysis-card-content {
    text-align: center;
    
}

.analysis-dimension-name {
    font-size: 1.4em;
    color: #ff6b9d;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffe0e8;
}

.analysis-score-info,
.analysis-percentage-info {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.analysis-score-label,
.analysis-percentage-label {
    color: #888;
    font-size: 0.95em;
}

.analysis-score-value,
.analysis-percentage-value {
    color: #ff6b9d;
    font-size: 1.3em;
    font-weight: 700;
}

.analysis-population-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #ffe0e8;
}

.analysis-population-text {
    color: #666;
    font-size: 0.9em;
}

.analysis-population-value {
    color: #ff6b9d;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 5px;
}

/* 涩涩指数卡片样式 */
.index-statement {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.index-value {
    color: #ff6b9d;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 5px;
}

.index-description {
    font-size: 1.05em;
    color: #ff6b9d;
    font-weight: 600;
    line-height: 1.8;
    padding: 15px;
    background: rgba(255, 107, 157, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

/* 棒棒糖图卡片 */
.lollipop-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.12);
    border: 1px solid #ffe0e8;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.lollipop-card:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.18);
}

.lollipop-title {
    font-size: 1.2em;
    color: #ff6b9d;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.lollipop-container {
    flex: 1;
    min-height: 300px;
}

.lollipop-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.lollipop-label {
    width: 100px;
    font-size: 0.95em;
    color: #666;
    font-weight: 500;
    text-align: right;
    padding-right: 15px;
    flex-shrink: 0;
}

.lollipop-bar-container {
    flex: 1;
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
}

.lollipop-bar {
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #ff8fab);
    border-radius: 2px;
    position: relative;
    transition: width 1s ease, opacity 0.5s ease;
    opacity: 0;
}

.lollipop-dot {
    width: 16px;
    height: 16px;
    background: #ff6b9d;
    border: 3px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.lollipop-item:hover .lollipop-dot {
    width: 20px;
    height: 20px;
    right: -10px;
    box-shadow: 0 3px 12px rgba(255, 107, 157, 0.4);
}

.lollipop-value {
    width: 80px;
    text-align: left;
    padding-left: 15px;
    font-size: 1.1em;
    color: #ff6b9d;
    font-weight: 700;
    flex-shrink: 0;
}

/* 详细维度分析部分 */
.dimensions-section {
    margin-bottom: 40px;
}

.dimensions-list {
    display: grid;
    gap: 20px;
}

.dimension-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
    border: 1px solid #ffe0e8;
}

.dimension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dimension-name {
    font-size: 1.3em;
    color: #ff6b9d;
    font-weight: 600;
}

.dimension-score-info {
    text-align: right;
}

.dimension-score {
    font-size: 1.8em;
    color: #ff6b9d;
    font-weight: 700;
}

.dimension-level {
    font-size: 0.9em;
    color: #999;
    margin-top: 5px;
}

.dimension-bar {
    width: 100%;
    height: 12px;
    background: #ffe0e8;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.dimension-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #ff8fab);
    border-radius: 6px;
    transition: width 1s ease;
}

.dimension-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.dimension-suggestion {
    color: #888;
    line-height: 1.8;
    font-size: 0.95em;
    padding-left: 15px;
    border-left: 3px solid #ff6b9d;
}

/* 综合分析与建议部分 */
.comprehensive-section {
    margin-bottom: 40px;
}

.comprehensive-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.1);
    border: 1px solid #ffe0e8;
}

.comprehensive-content {
    color: #666;
    line-height: 1.8;
    font-size: 1.05em;
}

.comprehensive-content h3 {
    color: #ff6b9d;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.comprehensive-content h3:first-child {
    margin-top: 0;
}

.comprehensive-content p {
    margin-bottom: 15px;
}

.comprehensive-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.comprehensive-content li {
    margin-bottom: 10px;
}

/* 响应式设计 - 结果页面 */
@media (max-width: 768px) {
    .result-title {
        font-size: 2em;
    }

    .overview-cards {
        grid-template-columns: 1fr;
    }

    .overview-main-card {
        padding: 30px 20px;
    }

    .overview-main-score {
        font-size: 3em;
    }

    .chart-wrapper,
    .chart-wrapper-with-lollipop {
        grid-template-columns: 1fr;
    }

    .chart-left-column {
        order: 2;
    }

    .chart-analysis-cards {
        order: 1;
    }

    .lollipop-container {
        min-height: 300px;
    }

    .chart-container {
        height: 350px;
    }

    .dimension-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dimension-score-info {
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .result-title {
        font-size: 1.6em;
    }

    .overview-main-score {
        font-size: 2.5em;
    }

    .chart-container {
        height: 300px;
    }

    .analysis-card-icon {
        font-size: 2em;
    }

    .analysis-dimension-name {
        font-size: 1.2em;
    }
}

.disclaimer {
    text-align: center;
    margin-top: 40px;
    padding: 15px 20px;
    font-size: 12px;
    color: #888;
    border-top: 1px solid #eee;
    line-height: 1.5;
}

.disclaimer p {
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

