/* ==========================================
   化妆品网站统一样式表
   - 主色和副色系统，便于快速调整整站色系
   - 适用于所有模板页面
   ========================================== */

/* ========== 色系变量配置 ========== */
:root {
    /* 主色系 - 玫瑰金色调 */
    --primary-color: #d4a5a5;           /* 主色 */
    --primary-light: #e8c4c4;           /* 主色-浅 */
    --primary-dark: #c9a87c;            /* 主色-深 */
    
    /* 副色系 - 粉色调 */
    --secondary-color: #f5e6e8;         /* 副色 */
    --secondary-light: #fef8f5;         /* 副色-浅 */
    --secondary-accent: #e8d5e8;        /* 副色-强调（薰衣草） */
    
    /* 中性色 */
    --neutral-bg: #faf7f5;              /* 背景色（奶油色） */
    --neutral-white: #ffffff;           /* 纯白 */
    --neutral-gray-light: #f8f8f8;      /* 浅灰 */
    
    /* 文字颜色 */
    --text-primary: #3d3433;            /* 主文字 */
    --text-secondary: #8b7e7d;          /* 次要文字 */
    --text-light: #666666;              /* 浅色文字 */
    --text-lighter: #888888;            /* 更浅文字 */
    --text-muted: #999999;              /* 静音文字 */
    
    /* 阴影效果 */
    --shadow-soft: 0 4px 20px rgba(212, 165, 165, 0.15);
    --shadow-medium: 0 8px 30px rgba(212, 165, 165, 0.25);
    --shadow-btn: 0 2px 8px rgba(212, 165, 165, 0.3);
    --shadow-btn-hover: 0 4px 12px rgba(212, 165, 165, 0.4);
    
    /* 边框 */
    --border-light: 1px solid rgba(212, 165, 165, 0.1);
    --border-medium: 1px solid rgba(212, 165, 165, 0.2);
    --border-strong: 2px solid rgba(212, 165, 165, 0.1);
}

/* ========== 全局重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: linear-gradient(135deg, var(--neutral-bg) 0%, var(--secondary-color) 100%);
    animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== 头部样式 ========== */
.beauty-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.header-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.beauty-header h1 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
}

.beauty-header h1 a {
    color: var(--neutral-white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.beauty-header h1 a:hover {
    transform: scale(1.02);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* ========== 导航栏样式 ========== */
.beauty-nav {
    background: var(--neutral-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 0;
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 18px 0;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.nav-toggle:hover {
    transform: rotate(90deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 18px 5px;
    display: block;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* ========== 容器样式 ========== */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 25px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== 标题样式 ========== */
.section-heading {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 2px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-accent), var(--primary-dark));
    border-radius: 2px;
}

/* ========== 文章卡片样式 ========== */
.post-card {
    background: var(--neutral-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: var(--border-light);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.post-card ul {
    list-style: none;
}

.post-card li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(212, 165, 165, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    animation: listItemFade 0.5s ease-out forwards;
}

.post-card li:nth-child(1) { animation-delay: 0.1s; }
.post-card li:nth-child(2) { animation-delay: 0.2s; }
.post-card li:nth-child(3) { animation-delay: 0.3s; }
.post-card li:nth-child(4) { animation-delay: 0.4s; }
.post-card li:nth-child(5) { animation-delay: 0.5s; }

@keyframes listItemFade {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.post-card li:last-child {
    border-bottom: none;
}

.post-card li:hover {
    padding-left: 15px;
    background: linear-gradient(90deg, rgba(212, 165, 165, 0.05), transparent);
}

.post-card a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.post-card a:hover {
    color: var(--primary-color);
}

.post-card a::before {
    content: '❀';
    color: var(--primary-color);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.post-card a:hover::before {
    transform: rotate(360deg) scale(1.2);
}

/* ========== 产品展示区域 ========== */
.showcase-section {
    background: var(--neutral-white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 35px;
    transition: all 0.4s ease;
}

.showcase-section:hover {
    box-shadow: var(--shadow-medium);
}

.showcase-section h2 {
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 45px;
    letter-spacing: 2px;
    position: relative;
}

.showcase-section h2::after {
    content: '✦';
    display: block;
    margin-top: 15px;
    font-size: 20px;
    color: var(--primary-color);
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ========== 产品卡片 ========== */
.product {
    margin: 20px 0;
    padding: 20px;
    border-radius: 16px;
    background: var(--neutral-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: var(--border-light);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product > a:first-child {
    position: relative;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.product img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--neutral-gray-light);
    display: block;
    transition: transform 0.3s ease;
}

.product:hover img {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product:hover .product-name {
    color: var(--primary-color);
}

.price-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.product-price::before {
    content: '¥';
    font-size: 14px;
    font-weight: 600;
}

.product-original-price {
    font-size: 13px;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 6px;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 10px;
    background: rgba(201, 168, 124, 0.1);
    border-radius: 12px;
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 600;
}

.product-rating::before {
    content: '★';
    color: var(--primary-dark);
    font-size: 13px;
}

.product-description {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== 按钮区域 ========== */
.timer-action {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 6px;
    justify-content: flex-end;
    max-width: 400px;
    margin-left: auto;
}

.countdown-timer {
    flex: 0 0 auto;
    min-width: 100px;
    background: var(--neutral-gray-light);
    border: var(--border-medium);
    border-radius: 20px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-lighter);
    font-weight: 600;
    transition: all 0.3s ease;
}

.countdown-timer::before {
    font-size: 13px;
}

.countdown-timer:hover {
    background: var(--neutral-white);
    border-color: var(--primary-color);
}

.countdown-timer #countdown {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.btn-buy {
    flex: 1;
    background: var(--primary-color);
    color: var(--neutral-white);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-buy:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-btn-hover);
}

/* ========== 信息模块（咨询模块）========== */
.info-module {
    background: linear-gradient(135deg, #fff 0%, var(--secondary-light) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.15);
    margin-bottom: 35px;
    transition: all 0.4s ease;
    text-align: center;
    border: var(--border-strong);
    position: relative;
    overflow: hidden;
}

.info-module::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 165, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.info-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 165, 165, 0.25);
    border-color: rgba(212, 165, 165, 0.3);
}

.consult-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.info-module .section-heading {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.consult-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.consult-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 165, 0.15);
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(212, 165, 165, 0.2);
}

.feature-icon {
    font-size: 24px;
    display: block;
}

.feature-item span:last-child {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.info-module p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* ========== 按钮样式 ========== */
.btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-elegant {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-accent));
    color: var(--neutral-white);
    text-decoration: none;
    border-radius: 35px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(212, 165, 165, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-elegant:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 165, 165, 0.4);
}

.btn-elegant:hover::before {
    left: 100%;
}

.btn-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-elegant:hover .btn-arrow {
    transform: translateX(5px);
}

/* ========== 链接模块 ========== */
.links-module {
    background: var(--neutral-white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(212, 165, 165, 0.08);
    margin-bottom: 25px;
}

.links-module .section-heading {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.links-module ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.links-module a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 5px 14px;
    border: 1px solid rgba(212, 165, 165, 0.2);
    border-radius: 18px;
    font-size: 12px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    background: rgba(212, 165, 165, 0.03);
}

.links-module a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 165, 165, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.links-module a:hover {
    color: var(--text-primary);
    border-color: rgba(212, 165, 165, 0.4);
    background: rgba(212, 165, 165, 0.06);
    transform: translateY(-1px);
}

.links-module a:hover::before {
    width: 150px;
    height: 150px;
}

/* ========== 文章块样式 ========== */
.article-block {
    background: var(--neutral-white);
    padding: 45px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 35px;
    border: var(--border-light);
}

.article-heading {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.5;
    position: relative;
    padding-bottom: 20px;
}

.article-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.article-meta {
    display: flex;
    gap: 25px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-content {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2,
.article-content h3 {
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.article-content h2 {
    font-size: 24px;
}

.article-content h3 {
    font-size: 20px;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* ========== 文章导航 ========== */
.nav-articles {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 165, 165, 0.2);
}

.nav-articles a {
    flex: 1;
    padding: 18px 25px;
    background: var(--neutral-gray-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    border: var(--border-light);
}

.nav-articles a:hover {
    background: var(--neutral-white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.nav-articles .prev::before {
    content: '←';
    font-size: 18px;
}

.nav-articles .next::after {
    content: '→';
    font-size: 18px;
}

/* ========== 相关文章 ========== */
.related-posts {
    background: var(--neutral-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.related-posts h4 {
    font-size: 22px;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 165, 165, 0.15);
}

.related-posts ul {
    list-style: none;
}

.related-posts li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 165, 165, 0.1);
}

.related-posts li:last-child {
    border-bottom: none;
}

.related-posts a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.related-posts a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* ========== 两栏布局 ========== */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 25px;
}

.main-column {
    min-width: 0;
}

.side-column {
    min-width: 0;
}

/* ========== 底部样式 ========== */
.beauty-footer {
    background: linear-gradient(135deg, #3d3433 0%, #5a4f4e 100%);
    color: #b8a8a7;
    padding: 50px 25px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.beauty-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-accent), var(--primary-dark));
}

.beauty-footer p {
    font-size: 14px;
    line-height: 2.2;
}

.beauty-footer a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 12px;
    transition: all 0.3s ease;
    position: relative;
}

.beauty-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.beauty-footer a:hover {
    color: var(--secondary-color);
}

.beauty-footer a:hover::after {
    width: 100%;
}

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    .beauty-header h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 15px 0;
        border-bottom: var(--border-light);
    }
    
    .content-wrapper {
        padding: 25px 15px;
    }
    
    .section-heading {
        font-size: 26px;
    }
    
    .post-card,
    .showcase-section {
        padding: 28px 22px;
    }
    
    .links-module {
        padding: 15px 18px;
    }
    
    .links-module .section-heading {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .links-module a {
        font-size: 11px;
        padding: 4px 12px;
        border-radius: 15px;
    }
    
    .showcase-section h2 {
        font-size: 26px;
    }
    
    .product {
        flex-direction: column;
        padding: 16px;
        margin: 15px 0;
    }
    
    .product > a:first-child {
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .product img {
        width: 100%;
        max-width: 280px;
        height: auto;
        aspect-ratio: 1;
    }
    
    .product-info {
        width: 100%;
    }
    
    .product-name {
        text-align: center;
        font-size: 15px;
    }
    
    .price-rating-row {
        justify-content: center;
        gap: 10px;
    }
    
    .product-price {
        font-size: 22px;
    }
    
    .product-description {
        text-align: left;
        font-size: 13px;
        display: block;
        overflow: visible;
        text-overflow: clip;
        max-height: none;
        min-height: auto;
        white-space: normal;
        -webkit-line-clamp: unset;
        -webkit-box-orient: unset;
    }
    
    .timer-action {
        flex-direction: column;
        gap: 8px;
        max-width: 100%;
        margin-left: 0;
        justify-content: stretch;
    }
    
    .countdown-timer,
    .btn-buy {
        width: 100%;
        min-width: 0;
    }
    
    .related-posts {
        padding: 28px 22px;
    }
    
    .info-module {
        padding: 35px 20px;
    }
    
    .consult-icon {
        font-size: 40px;
    }
    
    .consult-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px 15px;
        min-width: 90px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-item span:last-child {
        font-size: 13px;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        padding: 25px 15px;
    }
    
    .article-block {
        padding: 32px 22px;
    }
    
    .article-heading {
        font-size: 26px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .nav-articles {
        flex-direction: column;
    }
}

/* ========== 打印样式 ========== */
@media print {
    .beauty-header,
    .beauty-nav,
    .nav-articles,
    .related-posts,
    .info-module,
    .beauty-footer {
        display: none;
    }
    
    .article-content {
        font-size: 12pt;
        line-height: 1.6;
    }
}
