/* ========================================
   伊人网 - 女性时尚生活门户
   柔和舒缓美学设计系统
   ======================================== */

/* CSS 变量定义 - 增强对比度配色 */
:root {
    /* 主色调 - 玫瑰粉（增强饱和度） */
    --primary: #E85A71;
    --primary-light: #F5A9B8;
    --primary-lighter: #FCE8EB;
    --primary-dark: #C73E54;
    
    /* 辅助色 - 更鲜明 */
    --secondary: #9B7ED9;
    --secondary-light: #C5B5F0;
    --accent: #F5A623;
    --accent-light: #FCE4C2;
    --mint: #5DBA9D;
    --mint-light: #B8E5D6;
    --peach: #F08A5D;
    --peach-light: #FAD4C4;
    --lavender: #B8A9E8;
    --lavender-light: #E8E3F5;
    
    /* 中性色 - 增强对比 */
    --white: #FFFFFF;
    --cream: #FAF7F5;
    --cream-dark: #F0E8E3;
    --warm-gray-50: #F8F5F2;
    --warm-gray-100: #EDE8E3;
    --warm-gray-200: #DDD5CC;
    --warm-gray-300: #C4B8AC;
    --warm-gray-400: #A8998A;
    --warm-gray-500: #8A7B6A;
    --warm-gray-600: #6B5D4F;
    --warm-gray-700: #4D4237;
    --warm-gray-800: #332A22;
    --warm-gray-900: #1A1612;
    
    /* 文字色 - 加深对比 */
    --text-primary: #2D2420;
    --text-secondary: #5A4D42;
    --text-muted: #8A7B6E;
    --text-light: #B0A396;
    
    /* 渐变 - 增强对比 */
    --gradient-primary: linear-gradient(135deg, #E85A71 0%, #9B7ED9 100%);
    --gradient-soft: linear-gradient(180deg, #FFFFFF 0%, #FAF7F5 100%);
    --gradient-warm: linear-gradient(135deg, #F08A5D 0%, #E85A71 100%);
    --gradient-cool: linear-gradient(135deg, #9B7ED9 0%, #5DBA9D 100%);
    
    /* 阴影 - 柔和扩散 */
    --shadow-soft: 0 4px 20px rgba(90, 77, 64, 0.06);
    --shadow-medium: 0 8px 32px rgba(90, 77, 64, 0.08);
    --shadow-heavy: 0 16px 48px rgba(90, 77, 64, 0.12);
    --shadow-inner: inset 0 2px 8px rgba(90, 77, 64, 0.04);
    
    /* 圆角 - 更圆润 */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* 间距 - 更宽松 */
    --space-xs: 3px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 20px;
    --space-xl: 20px;
    --space-2xl: 36px;
    --space-3xl: 42px;
    
    /* 字体 */
    --font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* 过渡 - 更舒缓 */
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--gradient-soft);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

ul {
    list-style: none;
}

/* 容器 */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* 三栏布局 */
.three-column {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.85fr;
    gap: var(--space-xl);
    align-items: start;
}

.column-main,
.column-center,
.column-side {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* ========================================
   头部导航 - 柔和玻璃效果
   ======================================== */
.header {
    background: rgba(255, 252, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--warm-gray-100);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-top {
    padding: var(--space-md) 0;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text{
    font-size: 36px !important;
    font-weight: 500 !important;
    color: var(--primary-dark) !important;
    letter-spacing: 2px !important;
    font-family: 'Noto Serif SC', serif !important;
}

.logo h1 {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-dark);
    letter-spacing: 8px;
    font-family: 'Noto Serif SC', serif;
}

.logo h1 span {
    font-weight: 500;
    color: var(--primary);
}

.logo p {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 6px;
    margin-top: -8px;
    text-transform: uppercase;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-md);
    width: 380px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.search-box:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.15);
}

.search-box input {
    border: none;
    background: transparent;
    flex: 1;
    outline: none;
    font-size: 14px;
    color: var(--text-primary);
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-box button {
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.search-box button svg {
    width: 20px;
    height: 20px;
}

.search-box button:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* 头部布局调整 - 搜索靠右 */
.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top .logo {
    flex-shrink: 0;
}

.header-top .search-box {
    margin-left: auto;
}

/* 主导航 */
.main-nav {
    padding: var(--space-sm) 0;
}

.nav-list {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: nowrap;
    /* overflow-x: auto; */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-list::-webkit-scrollbar {
    display: none;
}

.nav-list a {
    font-size: 18px;
    font-weight: 400;
    color: #391e07;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition-fast);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-dark);
    background: var(--primary-lighter);
}

/* ========================================
   区块通用样式 - 柔和卡片
   ======================================== */
.screen {
    padding: var(--space-3xl) 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--warm-gray-200);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 120px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.section-title h2::before {
    content: '';
    width: 6px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(232, 90, 113, 0.3);
}

/* 各栏目标题颜色区分 */
.fashion-beauty .section-title h2::before {
    background: linear-gradient(180deg, #E85A71 0%, #F5A9B8 100%);
}

.star-emotion .section-title h2::before {
    background: linear-gradient(180deg, #9B7ED9 0%, #C5B5F0 100%);
}

.health-career .section-title h2::before {
    background: linear-gradient(180deg, #5DBA9D 0%, #B8E5D6 100%);
}

.mom-home .section-title h2::before {
    background: linear-gradient(180deg, #F08A5D 0%, #FAD4C4 100%);
}

.travel-food .section-title h2::before {
    background: linear-gradient(180deg, #F5A623 0%, #FCE4C2 100%);
}

.more {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.section-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--warm-gray-200);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.section-header h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* ========================================
   第一屏：焦点图 + 热门资讯
   ======================================== */
.hero-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    padding-top: var(--space-2xl);
}

/* 轮播图 - 柔和风格 */
.hero-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.slider-container {
    position: relative;
    height: 446px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl);
    background: linear-gradient(transparent 0%, rgba(90, 77, 64, 0.7) 100%);
    color: var(--white);
}

.slide-content .tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 12px;
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.slide-content h2 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 16px;
    opacity: 0.9;
}

.slider-dots {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-xl);
    display: flex;
    gap: var(--space-sm);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background: var(--white);
    width: 32px;
    border-radius: var(--radius-full);
}

/* 今日热点 - 柔和卡片 */
.hot-news-list {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    list-style: none;
    counter-reset: none;
}

.hot-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--warm-gray-100);
    transition: var(--transition-fast);
}

.hot-item:last-child {
    border-bottom: none;
}

.hot-item:hover {
    padding-left: var(--space-sm);
}

.hot-item .rank {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.hot-item:nth-child(1) .rank {
    background: var(--gradient-warm);
    color: var(--white);
}

.hot-item:nth-child(2) .rank {
    background: var(--primary-light);
    color: var(--white);
}

.hot-item:nth-child(3) .rank {
    background: var(--secondary);
    color: var(--white);
}

.hot-item a {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    font-weight: 400;
}

.hot-item a:hover {
    color: var(--primary-dark);
}

/* 编辑推荐 */
/* .editor-picks {
    margin-bottom: var(--space-xl);
} */

.pick-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.pick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.pick-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0;
}

.pick-content {
    padding: var(--space-lg);
}

.pick-content h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pick-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* 跳过导航链接 */
.skip-link:focus {
    top: 0;
}

/* 子栏目标题统一 - h3用于article内标题 */
.hot-news-list h2,
.editor-picks h2,
.travel-list h3,
.star-timeline h3,
.emotion-small h3,
.horoscope-content h3,
.horoscope-list h3,
.beauty-list h3,
.career-list h3,
.food-list h3,
.mom-articles h3,
.tips-list h3,
.home-grid p,
.fashion-small p {
    /* 继承原有的h4样式 */
}

.beauty-item h3,
.travel-item h3,
.timeline-item h3,
.horo-item h3,

.food-item h3,
.mom-article h3,
.tip-card h3,
.star-card h3,
.horoscope-card h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.4;
}
.career-item h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 7px;
    color: var(--text-primary);
    line-height: 1.4;
}

.emotion-item h3{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.star-card h3,
.horoscope-card h3 {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.3;
}

.hot-news-list h2,
.editor-picks h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.pick-item h3 {
    font-size: 14px;
    font-weight: 400;
    padding: var(--space-sm) var(--space-md);
    color: #5a4d42;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 1px;
}
.pick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.pick-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.pick-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.pick-item img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 0;
}

/* ========================================
   第二屏：时尚穿搭 + 美妆护肤
   ======================================== */
.fashion-beauty {
    background: var(--white);
}

/* 时尚穿搭 */
.fashion-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fashion-large {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.fashion-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.fashion-item {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.fashion-item:hover,
.fashion-large:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.fashion-large {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.fashion-large .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent 0%, rgba(90, 77, 64, 0.6) 100%);
    color: var(--white);
}

.fashion-large .category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 11px;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fashion-large h3 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

.fashion-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.fashion-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.fashion-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
}

.fashion-item p {
    padding: 10px 10px;
    font-size: 16px;
    color: var(--text-secondary);
}

.fashion-list {
    margin-top: auto;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 6px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.fashion-list a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--warm-gray-200);
    transition: var(--transition-fast);
}

.fashion-list a:last-child {
    border-bottom: none;
}

.fashion-list a:hover {
    color: var(--primary-dark);
    padding-left: var(--space-sm);
}

/* 美妆护肤 */
.beauty-feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    margin-bottom: 10px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.beauty-feature:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.beauty-feature img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0;
}

.beauty-content {
    padding: 10px 20px;
}

.beauty-content h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.beauty-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.beauty-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.beauty-item {
    display: flex;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.beauty-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.beauty-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.beauty-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: 400;
}

.beauty-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 旅行列表 */
.travel-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.travel-item {
    display: flex;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.travel-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.travel-item img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.travel-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.2;
}

.travel-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 好物推荐 */
.product-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.product-card {
    display: flex;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-medium);
}

.product-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.product-info {
    flex: 1;
}

.product-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.product-info .price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.tag-hot,
.tag-new {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tag-hot {
    background: var(--peach-light);
    color: var(--primary-dark);
}

.tag-new {
    background: var(--mint-light);
    color: #5A8B7A;
}

/* ========================================
   第三屏：明星八卦 + 情感生活
   ======================================== */
.star-emotion {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

/* 明星时间线 */
.star-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.timeline-item {
    display: flex;
    gap: var(--space-md);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: -24px;
    width: 1px;
    background: var(--warm-gray-200);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item .time {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    min-width: 64px;
    text-align: center;
    background: var(--cream-dark);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    height: fit-content;
}

.timeline-item .content {
    display: flex;
    gap: var(--space-md);
    flex: 1;
    padding-bottom: var(--space-lg);
}

.timeline-item .content.no-padding-bottom {
    padding-bottom: 0;
}

.timeline-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.timeline-item h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.timeline-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 情感生活 */
.emotion-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.emotion-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.emotion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.emotion-card.featured {
    position: relative;
    height: 200px;
}

.emotion-card.featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.emotion-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent 0%, rgba(90, 77, 64, 0.6) 100%);
    color: var(--white);
}

.emotion-card .category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 11px;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.emotion-card h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.5px;
}

.emotion-card p {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 300;
}

.emotion-small {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.emotion-item {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-fast);
}

.emotion-item:hover {
    background: var(--cream);
    border-color: var(--primary-light);
}

.emotion-item h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.emotion-item .article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.emotion-item .date {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}

.emotion-item .views {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* 星座运势 */
.horoscope-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.today-date {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--warm-gray-100);
}

.today-date .date {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-dark);
    display: block;
    letter-spacing: 2px;
    font-family: 'Noto Serif SC', serif;
}

.today-date .week {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.horoscope-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: auto;
}

.horoscope-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.horoscope-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.horoscope-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.horoscope-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.star-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.star-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.star-card img {
    width: 100%;
    height: 122px;
    object-fit: cover;
    display: block;
}

.star-card .card-overlay,
.horoscope-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.star-card .card-overlay h3,
.horoscope-card .card-overlay h3 {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.3;
}

.horoscope-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.horo-item {
    display: flex;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.horo-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.horo-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.horo-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: 400;
}

.horo-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ========================================
   第四屏：健康养生 + 职场女性
   ======================================== */
.health-career {
    background: var(--white);
}

/* 健康养生 */
.health-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.health-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.health-video img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-medium);
}

.play-btn:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent 0%, rgba(90, 77, 64, 0.6) 100%);
    color: var(--white);
}

.video-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.video-info span {
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 1px;
}

.health-tips {
    background: var(--mint-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--mint);
}

.health-tips h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    color: #5A8B7A;
    letter-spacing: 1px;
}

.health-tips ul {
    list-style: none;
}

.health-tips li {
    padding: var(--space-sm) 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px dashed rgba(90, 139, 122, 0.2);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.health-tips li:last-child {
    border-bottom: none;
}

.health-tips li::before {
    content: '🌿';
}

/* 职场女性 */
.career-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.career-article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.career-article img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0;
}

.career-article h3 {
    font-size: 16px;
    font-weight: 500;
    padding: 6px 20px;
    padding-bottom: var(--space-xs);
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.career-article p {
    font-size: 14px;
    color: var(--text-muted);
    padding: 0 20px 10px;
}

.career-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.career-item {
    display: flex;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.career-item:hover {
    transform: translateX(4px);
    border-color: var(--secondary);
}

.career-item .icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender-light);
    border-radius: var(--radius-md);
}

.career-item h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.career-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* 测试专区 */
.quiz-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quiz-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.quiz-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.quiz-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
}

.quiz-info {
    padding: var(--space-lg);
}

.quiz-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.quiz-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}

.btn-quiz {
    width: 100%;
    padding: var(--space-sm);
    background: var(--gradient-cool);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.btn-quiz:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

/* ========================================
   第五屏：母婴育儿 + 家居生活
   ======================================== */
.mom-home {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

/* 母婴育儿 */
.mom-guide {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.age-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.age-tabs span {
    padding: var(--space-sm) var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-full);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.age-tabs span.active,
.age-tabs span:hover {
    background: var(--peach-light);
    color: var(--primary-dark);
    border-color: var(--peach);
}

.mom-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.mom-tab-content {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.mom-tab-content.active {
    display: flex;
}

.mom-article {
    display: flex;
    gap: var(--space-md);
    background: var(--cream);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mom-article:hover {
    background: var(--peach-light);
}

.mom-article img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.mom-article h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.mom-article p {
    font-size: 14px;
    color: var(--text-muted);
}

/* 家居生活 */
.home-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.home-feature {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 180px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.home-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.home-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.home-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(transparent 0%, rgba(90, 77, 64, 0.6) 100%);
    color: var(--white);
}

.home-overlay h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.5px;
}

.home-overlay p {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 300;
}

.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.home-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.home-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.home-item img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 0;
}

.home-item p {
    padding: 6px 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

/* 生活小技巧 */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: auto;
}

.tip-card {
    background: var(--white);
    padding: 16px 20px;
    padding-right: 50px;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
    overflow: hidden;
}

.tip-card:hover {
    transform: translateX(4px);
    border-color: var(--accent);
}

.tip-num {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: 36px;
    font-weight: 300;
    color: var(--warm-gray-200);
    font-family: 'Noto Serif SC', serif;
}

.tip-card h3 {
    font-size: 16px;
    font-weight: 400;
    /* margin-bottom: 6px; */
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tip-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ========================================
   第六屏：旅行美食 + 订阅
   ======================================== */
.travel-food {
    background: var(--white);
}

/* 旅行 */
.travel-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
}

.dest-card.large {
    height: 280px;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl);
    background: linear-gradient(transparent 0%, rgba(90, 77, 64, 0.7) 100%);
    color: var(--white);
}

.dest-info .location {
    font-size: 12px;
    opacity: 0.9;
    display: block;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dest-info h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: var(--space-xs);
    letter-spacing: 1px;
}

.dest-info p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
}

.dest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.dest-card.small {
    height: 140px;
}

.dest-card.small p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent 0%, rgba(90, 77, 64, 0.6) 100%);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* 美食 */
.food-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.food-recipe {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.food-recipe:hover {
    box-shadow: var(--shadow-medium);
}

.food-recipe img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0;
}

.recipe-info {
    padding: var(--space-lg);
}

.recipe-info .difficulty,
.recipe-info .time {
    font-size: 11px;
    color: var(--text-light);
    margin-right: var(--space-md);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.recipe-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin: var(--space-sm) 0 var(--space-xs);
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.recipe-info p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
}

.food-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.food-item {
    display: flex;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.food-item:hover {
    transform: translateX(4px);
    border-color: var(--accent);
}

.food-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.food-item h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.food-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 订阅 */
.subscribe-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.subscribe-box p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.subscribe-box input {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--warm-gray-200);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    font-size: 14px;
    outline: none;
    background: var(--white);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.subscribe-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(212, 165, 165, 0.2);
}

.subscribe-box input::placeholder {
    color: var(--text-light);
}

.btn-subscribe {
    width: 100%;
    padding: var(--space-md);
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-subscribe:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.social-links h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.social-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.social-icon {
    display: block;
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--warm-gray-100);
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary-lighter);
    color: var(--primary-dark);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* ========================================
   页脚 - 柔和深色
   ======================================== */
.footer {
    background: var(--warm-gray-800);
    color: var(--warm-gray-100);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: var(--space-sm);
    letter-spacing: 6px;
    font-family: 'Noto Serif SC', serif;
    color: var(--white);
}

.footer-brand h2 span {
    font-weight: 500;
    color: var(--primary-light);
}

.footer-brand p {
    font-size: 14px;
    color: var(--warm-gray-400);
    font-weight: 300;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.link-group h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.link-group a {
    display: block;
    font-size: 13px;
    color: var(--warm-gray-400);
    padding: var(--space-xs) 0;
    font-weight: 300;
    transition: var(--transition-fast);
}

.link-group a:hover {
    color: var(--primary-light);
    padding-left: var(--space-xs);
}

.footer-bottom {
    text-align: center;
    padding: 20px 16px;
    /* padding-top: var(--space-xl);
    border-top: 1px solid var(--warm-gray-700); */
}

.footer-bottom p {
    font-size: 13px;
    color: var(--warm-gray-500);
    /* letter-spacing: 1px;
    padding-bottom: 24px; */
}

/* ========================================
   回到顶部按钮 - 柔和风格
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 52px;
    height: 52px;
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--warm-gray-200);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-lighter);
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 1200px) {
    .three-column {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
    
    .column-side {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .pick-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .main-nav .container {
        overflow: hidden;
    }
    
    .nav-list {
        flex-wrap: nowrap !important;
        justify-content: space-between;
        gap: 2px;
        overflow-x: visible;
    }
    
    .nav-list a {
        font-size: clamp(10px, 1.5vw, 16px);
        padding: 4px 6px;
        white-space: nowrap;
        flex-shrink: 1;
        min-width: 0;
    }
}

@media (max-width: 992px) {
    .header-top .container {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .search-box {
        width: 100%;
        order: 3;
        margin-left: 0;
    }
    
    .main-nav .container {
        overflow: hidden;
    }
    
    .nav-list {
        flex-wrap: nowrap !important;
        justify-content: space-between;
        gap: 2px;
        overflow-x: visible;
    }
    
    .nav-list a {
        font-size: clamp(9px, 1.8vw, 14px);
        padding: 4px 4px;
        white-space: nowrap;
        flex-shrink: 1;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    /* 移动端隐藏桌面内容，显示信息流 */
    .hero-section,
    .fashion-beauty,
    .star-emotion,
    .health-career,
    .mom-home {
        display: none;
    }
    
    /* 显示移动端信息流 */
    .mobile-feed-section {
        display: block !important;
    }
    
    /* 移动端头部优化 - logo与搜索框同行 */
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--white);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }
    
    .header-top {
        padding: 10px 0;
    }
    
    .header-top .container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 40px;
        padding: 6px 12px;
    }
    .logo-text {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: var(--primary-dark) !important;
    letter-spacing: 2px !important;
    font-family: 'Noto Serif SC', serif !important;
    line-height: 1.4;
}
    .logo {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .logo h1 {
        font-size: 30px;
        letter-spacing: 6px;
        margin: 0;
        line-height: 1.4;
    }

    .logo p {
        display: block;
        font-size: 10px;
        letter-spacing: 3px;
        margin: 0;
        line-height: 1.4;
    }
    
    .search-box {
        flex: 1;
        width: auto;
        max-width: none;
        min-width: 0;
        order: 0;
        margin-left: 0;
        padding: 8px 12px;
        border-radius: 20px;
        margin: 10px 0px 0px 0px;
    }
    
    .search-box input {
        font-size: 14px;
        min-width: 0;
    }
    
    .search-box input::placeholder {
        font-size: 13px;
    }
    
    /* 移动端导航栏 - 固定尺寸，左右滑动 */
    .main-nav {
        background: var(--primary);
        padding: 0;
        position: relative;
        overflow: hidden;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
    }
    
    .main-nav .container {
        padding:0 10px;
        overflow: hidden;
    }
    
    .nav-list {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0;
        /* padding: 0 12px; */
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .nav-list::-webkit-scrollbar {
        display: none;
    }
    
    .nav-list li {
        flex: none;
    }
    
    .nav-list a {
        font-size: 15px;
        font-weight: normal;
        color: var(--white);
        padding: 2px 10px;
        margin: 8px 2px;
        white-space: nowrap;
        display: block;
        position: relative;
        -webkit-tap-highlight-color: transparent;
        border-radius: 20px;
        background: transparent;
        transition: all 0.2s ease;
    }

    .nav-list a:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-list a.active {
        color: #fd3a5a;
        background: #fce8eb;
        font-weight: 500;
    }
    
    /* 移动端信息流样式 */
    .mobile-feed {
        background: var(--white);
        min-height: 100vh;
        padding-bottom: 20px;
    }
    
    .mobile-feed-item {
        background: var(--white);
        padding: 16px 14px;
        position: relative;
    }
    
    .mobile-feed-item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 14px;
        right: 14px;
        height: 1px;
        background-color: var(--warm-gray-100);
    }
    
    .mobile-feed-item a {
        display: flex;
        gap: 14px;
    }
    
    .mobile-feed-image {
        width: 110px;
        height: 82px;
        flex-shrink: 0;
        border-radius: var(--radius-sm);
        overflow: hidden;
        order: 2;
    }
    
    .mobile-feed-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }
    
    .mobile-feed-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        order: 1;
        min-width: 0;
    }
    
    .mobile-feed-title {
        font-size: 16px;
        font-weight: normal;
        line-height: 1.4;
        color: var(--text-primary);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px;
    }
    
    .mobile-feed-meta {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-feed-tag {
        padding: 2px 8px;
        background: var(--primary-lighter);
        color: var(--primary-dark);
        font-size: 11px;
        border-radius: 40px;
        font-weight: normal;
    }
    
    .mobile-feed-time {
        font-size: 12px;
        color: var(--text-muted);
    }
    
    /* 加载更多样式 */
    .feed-load-more {
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .feed-load-more.hidden {
        display: none;
    }
    
    .loading-spinner {
        width: 24px;
        height: 24px;
        border: 2px solid var(--warm-gray-200);
        border-top-color: var(--primary);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    .load-more-text {
        font-size: 13px;
        color: var(--text-muted);
    }
    
    .load-fail {
        padding: 20px;
        text-align: center;
    }

    .load-fail.hidden {
        display: none;
    }
    
    .load-fail-text {
        font-size: 13px;
        color: var(--text-muted);
        margin-bottom: 10px;
    }
    
    .load-retry-btn {
        padding: 8px 20px;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: var(--radius-md);
        font-size: 13px;
        cursor: pointer;
        transition: var(--transition-fast);
    }
    
    .load-retry-btn:hover {
        background: var(--primary-dark);
    }
    
    .three-column {
        grid-template-columns: 1fr;
    }
    
    .column-side {
        grid-template-columns: 1fr;
    }
    
    .fashion-grid {
        gap: var(--space-md);
    }
    
    .fashion-large {
        height: 200px;
    }
    
    .fashion-small {
        grid-template-columns: 1fr;
    }
    
    .beauty-feature img {
        height: 140px;
    }
    
    .beauty-item {
        flex-direction: column;
    }
    
    .beauty-item img {
        width: 100%;
        height: 120px;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .slide-content p {
        font-size: 13px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* 移动端信息流默认隐藏 */
.mobile-feed-section {
    display: none;
}

/* ========================================
   舒缓动画效果
   ======================================== */
@keyframes gentleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.screen {
    animation: gentleFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 卡片悬停效果 - 增强层次感 */
.fashion-item,
.beauty-item,
.product-card,
.career-item,
.food-item,
.mom-article,
.emotion-item,
.tip-card,
.quiz-card,
.pick-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--warm-gray-200);
}

.fashion-item:hover,
.beauty-item:hover,
.product-card:hover,
.career-item:hover,
.food-item:hover,
.mom-article:hover,
.emotion-item:hover,
.tip-card:hover,
.quiz-card:hover,
.pick-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-light);
}

/* 屏幕区块背景交替 - 增加层次感 */
.screen:nth-child(odd) {
    background: var(--white);
}

.screen:nth-child(even) {
    background: var(--cream);
}

.hero-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%) !important;
}

/* 区块顶部装饰线 */
.screen {
    position: relative;
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

/* 焦点状态 */
button:focus,
input:focus,
a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.2);
}

/* 选择文本颜色 */
::selection {
    background: var(--primary-light);
    color: var(--text-primary);
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--warm-gray-300);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--warm-gray-400);
}
