:root {
    /* 颜色变量 */
    --primary-blue: #1c4b79; /* 主蓝色，用于头部背景 */
    --light-blue: #366795; /* 略浅蓝色，用于按钮悬停等 */
    --text-dark: #333;
    --text-light: #fff;
    --read-more-color: #3e98f9; /* "Read more..." 链接颜色 */
    --card-border: #ddd;
    --section-divider: #ccc;
    --icon-bg: #e3e3e3;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif; /* Poppins 作为首选字体 */
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* 增加两侧内边距 */
}

/* ----------------------------------- */
/* 2. 头部 (Header) 样式 */
/* ----------------------------------- */
header{
    height: 55px;
    display: flex;
    align-items: center;
}
.hero-section {
    background-color: #3177BD;
    color: var(--text-light);
    padding: 10px 0 60px; /* 顶部和底部更大的间距 */
    text-align: center;
}

.hero-section .logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
    display: flex;
}

.hero-section h2 {
    font-size: 48px;
    font-weight: 700; /* 略细的字重 */
    margin-bottom: 30px;
    line-height: 1.2;
    padding-top: 40px;
}

.hero-section .hero-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    line-height: 30px;
    border-top: 1px solid #d9e2ff;
    padding: 25px 15px;
}

/* ----------------------------------- */
/* 3. 特色评论 (Featured Reviews) 样式 */
/* ----------------------------------- */
.featured-reviews-section {
    padding: 50px 0;
}

.featured-reviews-section h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 2px; /* 增加字母间距 */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 默认两列 */
    gap: 30px; /* 卡片间距 */
}

.review-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* 轻微阴影 */
    display: flex;
    flex-direction: column;
}

.card-image-placeholder {
    width: 100%;
    height: 200px; /* 设定高度 */
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--card-border);
}

/* 占位符图片（实际项目中需替换为真实图片） */
/* .top-pillows-image {
    background-image: url('../images/1.png');
}
.air-purifiers-image {
    background-image: url('placeholder-air-purifiers.jpg');
}
.barefoot-shoes-image {
    background-image: url('placeholder-barefoot-shoes.jpg');
}
.mice-repellents-image {
    background-image: url('placeholder-mice-repellents.jpg');
} */
/* 提示：此处仅为示例，您需要准备对应的图片文件并命名 */
.card-image-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.card-content {
    padding: 15px;
}

.card-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    margin-bottom: 15px;
    flex-grow: 1;
    color: #666;
}

.read-more-button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #838383;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s 
    ease-in-out, background-color 0.15s 
    ease-in-out, border-color 0.15s 
    ease-in-out, box-shadow 0.15s 
    ease-in-out;
    background: #3077BE;
    color: #ffffff;
    border-color: #3077BE;
    font-size: 18px;
    font-family: "Poppins-SemiBold";
    border-radius: 10px;
    padding: 14px 64px
}

.read-more-button:hover {
    background-color: var(--light-blue);
    color: #ffffff;
    text-decoration: none;
}

/* ----------------------------------- */
/* 4. 分隔线 */
/* ----------------------------------- */
.section-divider {
    border: none;
    border-top: 1px solid var(--section-divider);
    margin: 30px auto;
    width: calc(100% - 30px); /* 保持与容器宽度一致，减去padding */
    max-width: 1200px;
}

/* ----------------------------------- */
/* 5. 读者优先 (Readers-First) 样式 */
/* ----------------------------------- */
.readers-first-section {
    background-color: #f1f8ff; /* 实际 UI 中这部分背景是白色 */
    padding: 50px 0;
    text-align: center;
}

.readers-first-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--read-more-color); /* 蓝色 */
    margin-bottom: 5px;
}

.readers-first-subtitle {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.readers-first-text {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #666;
}

.trust-points-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 0;
}

.trust-point {
    flex: 1;
    padding: 0 15px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: var(--icon-bg); /* 灰色背景 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 实际项目中，这里会使用 SVG 或字体图标 */
    /* 示例：可以用文字或简单形状代替图标 */
    font-size: 24px;
}

.unbiased-icon::before { content: '💬'; }
.comparisons-icon::before { content: '📊'; }
.guide-icon::before { content: '📑'; }


.trust-point h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.trust-point p {
    font-size: 14px;
    color: #666;
}

/* ----------------------------------- */
/* 6. 移动端适配 (Media Queries) */
/* ----------------------------------- */
@media (max-width: 992px) {
    /* 平板和中等屏幕 */

    .hero-section h2 {
        font-size: 30px;
    }

    .reviews-grid {
        /* 在平板上仍然保持两列，但调整间距 */
        gap: 20px;
    }

    .trust-points-grid {
        /* 在平板上可能仍然保持三列，或调整间距 */
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* 移动设备 */
    .hero-section {
        padding: 30px 0 50px;
    }

    .hero-section h2 {
        font-size: 24px;
    }

    .hero-section .hero-text {
        font-size: 15px;
    }

    /* 特色评论改为单列布局 */
    .reviews-grid {
        grid-template-columns: 1fr; /* 单列 */
        gap: 25px;
    }

    /* 信任点改为堆叠布局 */
    .trust-points-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .trust-point {
        padding: 0;
    }

    .card-image-placeholder {
        height: 150px; /* 移动端图片可以略微缩小 */
    }
}

@media (max-width: 480px) {
    /* 极小屏幕 */
    .featured-reviews-section h3 {
        text-align: center;
    }

    .review-card {
        border: none; /* 在小屏幕上可以去掉边框，让设计更“流畅” */
        box-shadow: none;
        border-bottom: 1px solid var(--card-border);
        border-radius: 0;
    }
}

/* ----------------------------------- */
/* 7. 额外的页脚（非 UI 必须，但结构完整） */
/* ----------------------------------- */
/* ----------------------------------- */
/* 7. 主页脚 (Main Footer) 样式 */
/* ----------------------------------- */
.main-footer {
    background-color: #333333; /* 深灰色背景 */
    color: #cccccc; /* 浅灰色文字 */
    padding: 0;
    font-size: 14px;
}

/* 导航和 Logo 部分 */
.footer-nav-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444444; /* 分隔线 */
}

.footer-logo {
    font-size: 18px;
    font-weight: bold;
    color: #66ff66; /* 绿色 Logo (参考图片中的绿色字体) */
    margin: 0;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* 版权部分 */
.footer-copyright-section {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #444444; /* 分隔线 */
}

.footer-copyright-section p {
    font-size: 13px;
}

/* 免责声明部分 */
.footer-disclaimer {
    padding: 30px 15px;
    text-align: left;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.8;
    color: #999999;
    max-width: 900px; /* 控制文字宽度 */
    margin: 0 auto;
}
.mp0{
    margin: 0;
    padding: 0;
}

/* ----------------------------------- */
/* 8. 移动端适配 (Footer Media Queries) */
/* ----------------------------------- */
@media (max-width: 768px) {
    .footer-nav-section {
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap; /* 链接可换行 */
        justify-content: center;
    }

    .footer-links a {
        margin: 5px 10px; /* 调整移动端链接间距 */
    }

    .footer-disclaimer {
        padding: 20px 15px;
    }
}