/* 首页样式 - zh_ 前缀 - 基于Figma约会网站设计 */

/* 全局样式 */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FFF4EE;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.zh_main_wrapper {
    min-height: 100vh;
}

.zh_container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
}

/* 英雄横幅区域 */
.zh_hero_banner {
    position: relative;
    height: 794px;
    background: linear-gradient(135deg, rgba(107, 71, 57, 0.9) 0%, rgba(90, 58, 46, 0.9) 100%);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 80px;
}

.zh_hero_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?w=1920&h=800&fit=crop') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.zh_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 200px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.zh_hero_title {
    font-family: 'Raleway', 'Poppins', sans-serif;
    font-size: 69px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.zh_hero_description {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.zh_hero_button {
    background: #ED1C24;
    color: #fff;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.zh_hero_button:hover {
    background: #C71820;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.4);
}

/* 特色图标块 */
.zh_icon_block_section {
    margin: 80px 0;
}

.zh_icon_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.zh_icon_card {
    background: #fff;
    border: 1px solid rgba(237, 28, 36, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.zh_icon_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ED1C24;
}

.zh_icon_card_icon {
    width: 144px;
    height: 144px;
    margin: 0 auto 30px;
    background: rgba(237, 28, 36, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zh_icon_card_icon i {
    font-size: 64px;
    color: #ED1C24;
}

.zh_icon_card_title {
    font-family: 'Raleway', 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

.zh_icon_card_description {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
}

/* 分类区域标题 */
.zh_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.zh_section_title {
    font-family: 'Raleway', 'Poppins', sans-serif;
    font-size: 49px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    margin-bottom: 15px;
}

.zh_section_description {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

/* 产品网格 */
.zh_products_section {
    margin: 80px 0;
}

.zh_products_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.zh_product_card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(237, 28, 36, 0.1);
    position: relative;
}

.zh_product_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #ED1C24;
}

.zh_product_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.zh_product_image_wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: #f5f5f5;
}

.zh_product_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.zh_product_card:hover .zh_product_image {
    transform: scale(1.1);
}

.zh_product_badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ED1C24;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.zh_product_info {
    padding: 25px;
}

.zh_product_title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #000;
    line-height: 1.4;
}

.zh_product_shop {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
}

.zh_product_price_wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.zh_price_current {
    font-size: 24px;
    font-weight: 600;
    color: #ED1C24;
}

.zh_price_market {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: line-through;
}

/* 统计数据区域 */
.zh_stats_section {
    background: linear-gradient(135deg, #6B4739 0%, #5A3A2E 100%);
    border-radius: 40px;
    padding: 80px 60px;
    margin: 80px 0;
}

.zh_stats_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.zh_stat_card {
    color: #fff;
}

.zh_stat_value {
    font-size: 49px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFF4EE;
}

.zh_stat_label {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 244, 238, 0.9);
}

/* 内容区块 */
.zh_content_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 100px 0;
}

.zh_content_block.zh_reverse {
    direction: rtl;
}

.zh_content_block.zh_reverse > * {
    direction: ltr;
}

.zh_content_image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
}

.zh_content_text h2 {
    font-family: 'Raleway', 'Poppins', sans-serif;
    font-size: 49px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #000;
}

.zh_content_text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
}

.zh_content_button {
    background: #ED1C24;
    color: #fff;
    padding: 14px 30px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.zh_content_button:hover {
    background: #C71820;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
}

/* 博客/新闻区域 */
.zh_blog_section {
    margin: 80px 0;
}

.zh_blog_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.zh_blog_card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(237, 28, 36, 0.1);
    transition: all 0.4s ease;
}

.zh_blog_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.zh_blog_image {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.zh_blog_content {
    padding: 30px;
}

.zh_blog_date {
    background: rgba(237, 28, 36, 0.08);
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}

.zh_blog_title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #000;
}

.zh_blog_excerpt {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.zh_blog_link {
    color: #ED1C24;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.zh_blog_link:hover {
    gap: 12px;
}

/* 加载动画 */
.zh_loading {
    animation: zh_fadeInUp 0.6s ease-out;
}

@keyframes zh_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1400px) {
    .zh_container {
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .zh_hero_title,
    .zh_section_title,
    .zh_content_text h2 {
        font-size: 42px;
    }

    .zh_stat_value {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .zh_container {
        padding: 0 30px;
    }

    .zh_products_grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .zh_content_block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zh_blog_grid {
        grid-template-columns: 1fr;
    }

    .zh_hero_title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .zh_hero_banner {
        height: 500px;
    }

    .zh_hero_content {
        padding: 100px 20px;
    }

    .zh_hero_title {
        font-size: 32px;
    }

    .zh_section_title {
        font-size: 32px;
    }

    .zh_content_text h2 {
        font-size: 28px;
    }

    .zh_products_grid {
        grid-template-columns: 1fr;
    }

    .zh_icon_grid {
        grid-template-columns: 1fr;
    }

    .zh_stats_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .zh_stats_section {
        padding: 50px 30px;
    }
}
