/* 重置样式 */
* {
    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;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 顶部导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 100%;
}

.back-btn, .share-btn, .more-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover, .share-btn:hover, .more-btn:hover {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.header-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    gap: 8px;
}

/* 页面英雄区域 */
.page-hero {
    margin-top: 60px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* 故事容器 */
.stories-container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* 故事卡片 */
.story-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-header {
    position: relative;
}

.story-image {
    position: relative;
    height: auto;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.story-meta {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}

.story-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.tag:hover {
    transform: translateY(-2px);
}

/* 故事内容 */
.story-content {
    padding: 20px;
}

.story-quote {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.story-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.story-quote i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.story-quote p {
    font-size: 16px;
    font-weight: 700;
    color: #fff !important;
    margin: 0;
    position: relative;
    z-index: 1;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

/* 高亮区域 */
.story-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border-left: 4px solid #667eea;
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 成就展示 */
.story-achievement {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 12px;
}

.achievement-item {
    text-align: center;
    color: #667eea;
}

.achievement-item i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.achievement-item span {
    font-size: 14px;
    font-weight: 600;
}

/* 里程碑展示 */
.story-milestone {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border-radius: 12px;
}

.milestone-item {
    text-align: center;
}

.milestone-number {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

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

/* 对比展示 */
.story-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}

.comparison-item {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.comparison-item.before {
    background: linear-gradient(135deg, #ffe5e5 0%, #ffebeb 100%);
    border: 2px solid #ff6b6b;
}

.comparison-item.after {
    background: linear-gradient(135deg, #e5ffe5 0%, #ebffeb 100%);
    border: 2px solid #51cf66;
}

.comparison-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.comparison-item.before h4 {
    color: #ff6b6b;
}

.comparison-item.after h4 {
    color: #51cf66;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item li {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
    padding: 4px 0;
}

/* 故事结尾 */
.story-ending {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
}

.story-ending p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #fff !important;
    line-height: 1.6;
}

/* 激励区域 */
.inspiration-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.inspiration-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

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

.inspiration-stats {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
}

.inspiration-stat {
    text-align: center;
    margin: 10px;
}

.inspiration-stat i {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 8px;
    display: block;
}

.inspiration-stat span {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.inspiration-stat p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cta-button {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.cta-button:hover {
    transform: translateX(-50%) scale(1.04);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.cta-button i {
    font-size: 16px;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stories-container {
        padding: 16px;
    }
    
    .story-comparison {
        grid-template-columns: 1fr;
    }
    
    .inspiration-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .story-title {
        font-size: 18px;
    }
    
    .story-content {
        padding: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 20px;
        bottom: 16px;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.5);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.7);
}

.profit-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(102,126,234,0.08);
    padding: 28px 16px 20px 16px;
    margin: 32px 0;
    text-align: center;
}
.profit-title {
    font-size: 22px;
    font-weight: 700;
    color: #764ba2;
    margin-bottom: 10px;
}
.profit-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 18px;
}
.profit-img-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    margin-bottom: 10px;
}
.profit-img-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(102,126,234,0.10);
    background: #f8f9fa;
}
.profit-tip {
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}
@media (min-width: 700px) {
    .profit-img-list {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
    .profit-img-item img {
        max-width: 340px;
    }
} 