/* 网站A：女性向情感创业项目 - 柔美杂志风 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; background: #fdf6f9; color: #333; line-height: 1.8; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 顶部导航 */
.header { background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%); color: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(196,69,105,0.3); }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: bold; letter-spacing: 2px; }
.logo span { color: #ffe0ec; }
.nav { display: flex; gap: 30px; }
.nav a { color: #fff; font-size: 15px; opacity: 0.9; transition: all 0.3s; }
.nav a:hover { opacity: 1; transform: translateY(-2px); }
.nav .join-us { background: rgba(255,255,255,0.2); padding: 6px 16px; border-radius: 20px; font-size: 13px; }

/* Hero区域 */
.hero { background: linear-gradient(135deg, #fff0f5 0%, #ffe0ec 100%); padding: 60px 0; text-align: center; }
.hero h1 { font-size: 42px; color: #c44569; margin-bottom: 15px; font-weight: bold; }
.hero p { font-size: 18px; color: #8b5a6b; max-width: 700px; margin: 0 auto 25px; }
.hero .badge { display: inline-block; background: #ff6b9d; color: #fff; padding: 8px 24px; border-radius: 30px; font-size: 14px; margin-bottom: 20px; }
.hero .stats { display: flex; justify-content: center; gap: 60px; margin-top: 30px; }
.hero .stat-item { text-align: center; }
.hero .stat-num { font-size: 36px; font-weight: bold; color: #c44569; }
.hero .stat-label { font-size: 14px; color: #8b5a6b; margin-top: 5px; }

/* 文章列表 */
.section { padding: 50px 0; }
.section-title { font-size: 28px; color: #c44569; margin-bottom: 30px; text-align: center; font-weight: bold; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: #ff6b9d; margin: 10px auto 0; border-radius: 2px; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.article-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(196,69,105,0.1); transition: all 0.3s; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(196,69,105,0.2); }
.article-card .card-img { height: 180px; background: linear-gradient(135deg, #ffb6c1 0%, #ff69b4 100%); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.article-card .card-body { padding: 20px; }
.article-card .card-category { display: inline-block; background: #ffe0ec; color: #c44569; padding: 3px 12px; border-radius: 12px; font-size: 12px; margin-bottom: 10px; }
.article-card .card-title { font-size: 17px; font-weight: bold; color: #333; margin-bottom: 10px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-card .card-desc { font-size: 14px; color: #888; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-card .card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; padding-top: 12px; border-top: 1px solid #f5f5f5; font-size: 12px; color: #aaa; }

/* 文章详情页 */
.article-detail { background: #fff; border-radius: 12px; padding: 40px; margin: 30px 0; box-shadow: 0 4px 15px rgba(196,69,105,0.1); }
.article-detail .article-category { display: inline-block; background: #ffe0ec; color: #c44569; padding: 5px 16px; border-radius: 15px; font-size: 13px; margin-bottom: 15px; }
.article-detail h1 { font-size: 32px; color: #333; margin-bottom: 20px; line-height: 1.4; font-weight: bold; }
.article-detail .article-meta { display: flex; gap: 20px; color: #999; font-size: 14px; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.article-detail .article-content { font-size: 16px; line-height: 2; color: #444; }
.article-detail .article-content h2 { font-size: 24px; color: #c44569; margin: 35px 0 15px; font-weight: bold; padding-left: 12px; border-left: 4px solid #ff6b9d; }
.article-detail .article-content h3 { font-size: 20px; color: #c44569; margin: 25px 0 12px; font-weight: bold; }
.article-detail .article-content p { margin-bottom: 18px; text-indent: 2em; }
.article-detail .article-content blockquote { background: #fff5f8; border-left: 4px solid #ff6b9d; padding: 15px 20px; margin: 20px 0; color: #8b5a6b; font-style: italic; border-radius: 0 8px 8px 0; }
.article-detail .article-content ul, .article-detail .article-content ol { margin: 15px 0; padding-left: 30px; }
.article-detail .article-content li { margin-bottom: 10px; }
.article-detail .article-content strong { color: #c44569; }

/* 相关推荐 */
.related-section { background: #fff; border-radius: 12px; padding: 30px; margin-bottom: 30px; box-shadow: 0 4px 15px rgba(196,69,105,0.1); }
.related-section h3 { font-size: 22px; color: #c44569; margin-bottom: 20px; font-weight: bold; }
.related-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.related-item { display: flex; gap: 12px; padding: 12px; background: #fdf6f9; border-radius: 8px; transition: all 0.3s; }
.related-item:hover { background: #ffe0ec; }
.related-item .rel-num { font-size: 24px; font-weight: bold; color: #ff6b9d; min-width: 30px; }
.related-item .rel-title { font-size: 14px; color: #555; line-height: 1.5; }

/* CTA区域 */
.cta-section { background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%); color: #fff; padding: 50px 0; text-align: center; border-radius: 12px; margin: 30px 0; }
.cta-section h2 { font-size: 30px; margin-bottom: 15px; }
.cta-section p { font-size: 16px; opacity: 0.9; margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .cta-btn { display: inline-block; background: #fff; color: #c44569; padding: 12px 40px; border-radius: 30px; font-size: 16px; font-weight: bold; transition: all 0.3s; }
.cta-section .cta-btn:hover { transform: scale(1.05); box-shadow: 0 5px 20px rgba(0,0,0,0.2); }

/* 加入我们页面 */
.join-page { background: #fff; border-radius: 12px; padding: 50px; margin: 30px 0; box-shadow: 0 4px 15px rgba(196,69,105,0.1); }
.join-page h1 { font-size: 36px; color: #c44569; text-align: center; margin-bottom: 30px; }
.join-page .join-intro { text-align: center; color: #888; font-size: 16px; margin-bottom: 40px; }
.join-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 40px; }
.plan-card { border: 2px solid #ffe0ec; border-radius: 12px; padding: 30px; text-align: center; transition: all 0.3s; }
.plan-card:hover { border-color: #ff6b9d; transform: translateY(-5px); }
.plan-card.featured { border-color: #ff6b9d; background: linear-gradient(180deg, #fff5f8 0%, #fff 100%); position: relative; }
.plan-card.featured::before { content: '最火'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #ff6b9d; color: #fff; padding: 4px 20px; border-radius: 12px; font-size: 12px; }
.plan-card .plan-name { font-size: 20px; font-weight: bold; color: #c44569; margin-bottom: 10px; }
.plan-card .plan-price { font-size: 36px; font-weight: bold; color: #333; margin-bottom: 5px; }
.plan-card .plan-price span { font-size: 14px; color: #999; }
.plan-card .plan-desc { color: #888; font-size: 14px; margin-bottom: 20px; }
.plan-card .plan-features { text-align: left; margin-bottom: 25px; }
.plan-card .plan-features li { list-style: none; padding: 8px 0; color: #666; font-size: 14px; border-bottom: 1px dashed #f0f0f0; }
.plan-card .plan-features li::before { content: '✓ '; color: #ff6b9d; font-weight: bold; }
.plan-card .plan-btn { display: block; background: #ff6b9d; color: #fff; padding: 12px; border-radius: 8px; font-weight: bold; transition: all 0.3s; }
.plan-card .plan-btn:hover { background: #c44569; }

/* 页脚 */
.footer { background: #2c1a21; color: #aaa; padding: 40px 0 20px; margin-top: 50px; }
.footer .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer h4 { color: #fff; margin-bottom: 15px; font-size: 16px; }
.footer p, .footer li { font-size: 14px; line-height: 2; list-style: none; }
.footer a { color: #aaa; transition: color 0.3s; }
.footer a:hover { color: #ff6b9d; }
.footer-bottom { text-align: center; padding-top: 20px; margin-top: 30px; border-top: 1px solid #3d2830; font-size: 13px; }

/* 响应式 */
@media (max-width: 768px) {
    .article-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .hero .stats { gap: 30px; }
    .article-detail { padding: 20px; }
    .related-list { grid-template-columns: 1fr; }
    .join-plans { grid-template-columns: 1fr; }
    .footer .container { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
}
