* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

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

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

.container {
    max-width: 414px;
    margin: 0 auto;
    padding: 20px;
}

/* 首页样式 */
.home-page {
    text-align: center;
    padding: 40px 0;
}

.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.main-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sub-title {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.5;
}

.features-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    flex: 1;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.user-count {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 30px;
}

.deep-test-count {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    margin-top: -20px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

.deep-test-count .count-number {
    color: #ffd700;
    font-weight: 700;
    font-size: 15px;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.action-btn {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.action-btn.secondary {
    border-color: #764ba2;
    color: #764ba2;
}

.action-btn.secondary:hover {
    background: #764ba2;
    color: white;
}

.action-btn-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.action-btn-text {
    font-size: 14px;
    font-weight: bold;
}

.stats {
    background: white;
    border-radius: 20px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.promo-section {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(255, 71, 87, 0.3);
}

.promo-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.promo-desc {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.promo-price {
    margin: 20px 0;
}

.promo-current {
    font-size: 36px;
    font-weight: bold;
    color: #ff4757;
}

.promo-original {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.promo-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 10px;
}

.urgency {
    font-size: 14px;
    margin-top: 15px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.wechat-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.wechat-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.wechat-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wechat-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.wechat-qr {
    width: 150px;
    height: 150px;
    border: 2px solid #667eea;
    border-radius: 10px;
    object-fit: contain;
    background: #f8f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wechat-info {
    flex: 1;
}

.wechat-id {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
    border: 2px dashed #667eea;
    text-align: center;
}

.copy-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
}

.wechat-tips {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6e8ff 100%);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

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

.benefits {
    text-align: left;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.benefit-icon {
    margin-right: 10px;
    color: #28a745;
}

/* 深度体验测试页面 */
.deep-test-page {
    text-align: center;
    padding: 40px 0;
}

.deep-test-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.deep-test-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.deep-test-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.deep-test-features {
    text-align: left;
    margin-bottom: 30px;
}

.deep-test-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.deep-test-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    color: white;
}

.deep-test-price {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.current {
    font-size: 36px;
    font-weight: bold;
}

.original {
    font-size: 18px;
    text-decoration: line-through;
    opacity: 0.8;
    margin-top: 5px;
}

.saving {
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

.deep-test-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step-item {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.step-text {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.payment-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

/* 手诊页面 */
.hand-diagnosis-page {
    text-align: center;
    padding: 40px 0;
}

.hand-diagnosis-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hand-diagnosis-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.hand-diagnosis-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hand-image-container {
    width: 100%;
    height: 300px;
    border: 2px dashed #667eea;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.hand-image-container:hover {
    background: #f8f9ff;
    border-color: #764ba2;
}

.hand-image-placeholder {
    font-size: 64px;
    margin-bottom: 10px;
}

.hand-image-text {
    font-size: 16px;
    color: #666;
}

.analyze-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.analyze-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hand-diagnosis-tips {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6e8ff 100%);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    text-align: left;
}

.hand-diagnosis-tip {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.hand-diagnosis-tip-icon {
    margin-right: 15px;
    font-size: 18px;
    color: #667eea;
    margin-top: 2px;
}

/* 手诊loading页面 */
.hand-loading-page {
    text-align: center;
    padding: 60px 20px;
}

.hand-loading-card {
    background: white;
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.loading-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.loading-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.loading-progress-container {
    width: 100%;
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 40px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
    width: 0%;
    transition: width 0.3s ease;
}

.loading-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.progress-percent {
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
}

.analysis-step {
    font-size: 14px;
    color: #666;
}

.loading-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-dot {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #667eea;
    border-color: #667eea;
}

.step-label {
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.step-label.active {
    color: #667eea;
    font-weight: bold;
}

.loading-tips {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6e8ff 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
}

.tip-item {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.tip-highlight {
    font-weight: bold;
    color: #667eea;
}

/* 手诊结果页面 */
.hand-result-page {
    text-align: center;
    padding: 40px 0;
}

.hand-result-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hand-result-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.result-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.chart-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.chart-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.chart-value {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.chart-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.chart-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

.health-indicators {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.indicator-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.indicator-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.indicator-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.indicator-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.indicator-score {
    font-size: 20px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.indicator-status {
    font-size: 12px;
    color: #666;
}

.detailed-analysis {
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
}

.analysis-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.analysis-header-icon {
    margin-right: 10px;
    color: #667eea;
    font-size: 20px;
}

.analysis-grid {
    display: grid;
    gap: 15px;
}

.analysis-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.analysis-item-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.analysis-item-icon {
    margin-right: 10px;
    font-size: 20px;
}

.analysis-item-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.analysis-item-score {
    font-size: 13px;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.score-high {
    color: #28a745;
    background: #d4edda;
}

.score-medium {
    color: #ffc107;
    background: #fff3cd;
}

.score-low {
    color: #dc3545;
    background: #f8d7da;
}

.recommendation-section {
    margin-bottom: 30px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.recommendation-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.recommendation-list {
    text-align: left;
}

.recommendation-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.recommendation-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.recommendation-content {
    flex: 1;
}

.recommendation-title-text {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 15px;
}

.recommendation-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 用户信息收集表单 */
.user-info-form {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #667eea;
    outline: none;
}

.form-note {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.form-btn.secondary {
    background: #f0f0f0;
    color: #666;
}

/* 问卷页面 */
.quiz-page {
    text-align: center;
    padding: 40px 0;
}

.quiz-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.quiz-progress {
    font-size: 14px;
    color: #666;
}

.quiz-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

.quiz-options {
    text-align: left;
    margin-bottom: 30px;
}

.quiz-option {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
}

.quiz-option:hover {
    border-color: #667eea;
    background: #f8f9ff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.quiz-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.quiz-option.selected:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* 进度条 */
.progress-bar {
    width: 80%;
    max-width: 600px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 0 auto 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* 进度条容器 */
.progress-container {
    width: 80%;
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

/* 百分比文字 */
.progress-text {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-top: 15px;
    text-align: center;
}

.progress-text span {
    font-size: 28px;
    color: #764ba2;
}

/* 问题编号 */
.question-number {
    font-size: 18px;
    color: #764ba2;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.question-number span {
    color: #667eea;
    font-size: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 问题文本 */
.question-text {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
    padding: 0 20px;
}

/* 导航按钮 */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn.prev {
    background: #f0f0f0;
    color: #666;
}

/* 问卷选项容器 */
.options {
    text-align: left;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-option-checkbox {
    display: flex;
    align-items: center;
}

.checkbox-input {
    margin-right: 15px;
    transform: scale(1.2);
}

.quiz-actions {
    display: flex;
    justify-content: space-between;
}

.quiz-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 结果页面 */
.result-page {
    text-align: center;
    padding: 40px 0;
}

.result-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.result-header {
    margin-bottom: 30px;
}

.score-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 36px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.result-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.result-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlights {
    margin-bottom: 30px;
    text-align: left;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.highlight-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.highlight-icon.good {
    background: #28a745;
}

.highlight-icon.warning {
    background: #ffc107;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .health-indicators {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
    }
    
    .indicator-item {
        padding: 15px 10px;
    }
    
    .indicator-icon {
        font-size: 20px;
    }
    
    .indicator-name {
        font-size: 12px;
    }
    
    .indicator-score {
        font-size: 16px;
    }
    
    .result-charts {
        grid-template-columns: 1fr;
    }
    
    .deep-test-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-item {
        display: flex;
        align-items: center;
        text-align: left;
    }
    
    .step-number {
        margin: 0 15px 0 0;
    }
    
    .wechat-content {
        flex-direction: column;
        text-align: center;
    }
    
    .wechat-qr {
        margin-bottom: 20px;
    }
}
/* 手诊结果页面样式 */
.analysis-details {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.details-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.analysis-item {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.analysis-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.health-recommendations {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.recommendations-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.recommendation-item {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

/* 深度测试特性样式 */
.deep-test-features {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 15px;
}

.deep-test-feature {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.deep-test-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.deep-test-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* 手诊结果页面样式优化 */
.analysis-item {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.analysis-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.analysis-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.analysis-icon {
    font-size: 24px;
    margin-right: 10px;
}

.analysis-system {
    font-size: 18px;
    font-weight: bold;
    flex: 1;
}

.analysis-status {
    font-weight: bold;
}

.analysis-description {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.recommendation-item {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.recommendation-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.recommendation-icon {
    font-size: 24px;
    margin-right: 10px;
}

.recommendation-title {
    font-size: 16px;
    font-weight: bold;
}

.recommendation-description {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
