/* 巧米乐数字科技首页样式 - 按照Figma深色系设计风格 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

.zh_wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section 02: Hero区域 - 参考Figma左右分栏 */
.zh_hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2b2520 0%, #3a3129 100%);
    padding: 80px 0;
}

.zh_hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.zh_hero_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.zh_hero_content {
    color: #F0F0F0;
}

.zh_hero_title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #F0F0F0;
}

.zh_hero_desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(240,240,240,0.8);
}

.zh_hero_btn {
    display: inline-block;
    background: #FA7D09;
    color: #F0F0F0;
    padding: 16px 48px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #FA7D09;
    margin-bottom: 40px;
}

.zh_hero_btn:hover {
    background: transparent;
    color: #FA7D09;
    transform: translateY(-2px);
}

.zh_hero_features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.zh_hero_feature_item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(240,240,240,0.9);
    font-size: 14px;
}

.zh_hero_feature_item i {
    color: #FA7D09;
    font-size: 20px;
}

.zh_hero_image {
    position: relative;
}

.zh_hero_image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.zh_hero_testimonial {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.zh_testimonial_stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.zh_testimonial_stars i {
    color: #FA7D09;
    font-size: 14px;
}

.zh_hero_testimonial p {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Section 03: 产品展示区 - 横向卡片 */
.zh_products_showcase {
    padding: 100px 0;
    background: #f8f9fa;
}

.zh_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.zh_section_title {
    font-size: 40px;
    font-weight: 700;
    color: #2b2520;
    margin-bottom: 12px;
}

.zh_section_subtitle {
    font-size: 16px;
    color: #666;
}

.zh_products_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.zh_product_showcase_card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.zh_product_showcase_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(250,125,9,0.2);
    border-color: #FA7D09;
}

.zh_product_showcase_image {
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.zh_product_showcase_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.zh_product_showcase_card:hover .zh_product_showcase_image img {
    transform: scale(1.1);
}

.zh_product_showcase_info {
    padding: 24px;
}

.zh_product_showcase_info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.zh_product_showcase_info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.zh_product_showcase_info h3 a:hover {
    color: #FA7D09;
}

.zh_product_showcase_desc {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.zh_product_showcase_price {
    margin-bottom: 15px;
}

.zh_price {
    font-size: 24px;
    font-weight: 700;
    color: #FA7D09;
}

.zh_view_btn {
    display: inline-block;
    background: transparent;
    color: #FA7D09;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #FA7D09;
    transition: all 0.3s;
}

.zh_view_btn:hover {
    background: #FA7D09;
    color: #fff;
}

.zh_view_more_wrapper {
    text-align: center;
}

.zh_view_more_btn {
    display: inline-block;
    background: transparent;
    color: #2b2520;
    padding: 14px 48px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #2b2520;
    transition: all 0.3s;
}

.zh_view_more_btn:hover {
    background: #2b2520;
    color: #fff;
    transform: translateY(-2px);
}

/* Section 04: 左右分栏特性展示 */
.zh_features_section {
    padding: 100px 0;
    background: #fff;
}

.zh_features_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zh_features_image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.zh_features_title {
    font-size: 40px;
    font-weight: 700;
    color: #2b2520;
    margin-bottom: 12px;
}

.zh_features_subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.zh_feature_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.zh_feature_list_item {
    display: flex;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s;
}

.zh_feature_list_item:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(250,125,9,0.15);
    transform: translateX(8px);
}

.zh_feature_check {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FA7D09 0%, #e56d00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zh_feature_check i {
    color: #fff;
    font-size: 18px;
}

.zh_feature_text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.zh_feature_text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Section 05: 用户评价/新品推荐 */
.zh_testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #2b2520 0%, #3a3129 100%);
}

.zh_testimonials .zh_section_title {
    color: #F0F0F0;
}

.zh_testimonial_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zh_testimonial_card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.zh_testimonial_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(250,125,9,0.3);
    border-color: #FA7D09;
    background: rgba(255,255,255,0.12);
}

.zh_testimonial_image {
    height: 200px;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.zh_testimonial_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.zh_testimonial_card:hover .zh_testimonial_image img {
    transform: scale(1.1);
}

.zh_testimonial_content {
    padding: 24px;
}

.zh_testimonial_content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.zh_testimonial_content h3 a {
    color: #F0F0F0;
    text-decoration: none;
    transition: color 0.3s;
}

.zh_testimonial_content h3 a:hover {
    color: #FA7D09;
}

.zh_testimonial_text {
    font-size: 14px;
    color: rgba(240,240,240,0.7);
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
}

.zh_testimonial_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.zh_testimonial_price {
    font-size: 20px;
    font-weight: 700;
    color: #FA7D09;
}

/* Section 06: 促销横幅 */
.zh_promo_banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #3a3129 0%, #2b2520 100%);
    overflow: hidden;
    padding: 80px 20px;
}

.zh_promo_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1527864550417-7fd91fc51a46?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.zh_promo_container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.zh_promo_title {
    font-size: 48px;
    font-weight: 700;
    color: #F0F0F0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.zh_promo_desc {
    font-size: 16px;
    color: rgba(240,240,240,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.zh_promo_btn {
    display: inline-block;
    background: #FA7D09;
    color: #F0F0F0;
    padding: 16px 60px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #FA7D09;
}

.zh_promo_btn:hover {
    background: transparent;
    color: #FA7D09;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(250,125,9,0.3);
}

/* Section 07: 商家入驻 CTA */
.zh_merchant_cta {
    padding: 100px 0;
    background: #f8f9fa;
}

.zh_merchant_cta_content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.zh_merchant_cta_text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2b2520;
    margin-bottom: 20px;
}

.zh_merchant_cta_text > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.zh_merchant_cta_contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zh_contact_item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #eee;
    transition: all 0.3s;
}

.zh_contact_item:hover {
    border-color: #FA7D09;
    transform: translateX(8px);
}

.zh_contact_item i {
    font-size: 24px;
    color: #FA7D09;
}

.zh_contact_item div {
    display: flex;
    flex-direction: column;
}

.zh_contact_label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.zh_contact_item a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.zh_contact_item a:hover {
    color: #FA7D09;
}

.zh_merchant_cta_image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .zh_hero_title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .zh_hero_container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .zh_hero {
        min-height: auto;
        padding: 60px 0;
    }

    .zh_hero_title {
        font-size: 48px;
    }

    .zh_products_row,
    .zh_testimonial_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zh_features_layout,
    .zh_merchant_cta_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zh_promo_title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .zh_hero_title {
        font-size: 36px;
    }

    .zh_hero_desc {
        font-size: 14px;
    }

    .zh_hero_desc br {
        display: none;
    }

    .zh_hero_features {
        flex-direction: column;
        gap: 15px;
    }

    .zh_hero_testimonial {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
    }

    .zh_products_row,
    .zh_testimonial_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zh_section_title {
        font-size: 32px;
    }

    .zh_features_title {
        font-size: 32px;
    }

    .zh_promo_title {
        font-size: 28px;
    }

    .zh_merchant_cta_text h2 {
        font-size: 28px;
    }

    .zh_products_showcase,
    .zh_features_section,
    .zh_testimonials,
    .zh_merchant_cta {
        padding: 60px 0;
    }

    .zh_section_header {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .zh_hero_title {
        font-size: 28px;
    }

    .zh_hero_btn,
    .zh_promo_btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }

    .zh_section_title {
        font-size: 24px;
    }

    .zh_features_title {
        font-size: 24px;
    }

    .zh_promo_title {
        font-size: 24px;
    }

    .zh_promo_title br {
        display: none;
    }

    .zh_merchant_cta_text h2 {
        font-size: 24px;
    }

    .zh_merchant_cta_text > p br {
        display: none;
    }

    .zh_feature_list_item {
        flex-direction: column;
        gap: 15px;
    }
}
