/*
 * Index Page Styles
 * 徐州全思福首页样式
 * 所有自定义类和ID使用 zh_ 前缀
 */

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

/* ========== Buttons ========== */
.zh_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 8px;
}

.zh_btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
}

.zh_btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.zh_btn-outline {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
}

.zh_btn-outline:hover {
    background: #ff6b35;
    color: #fff;
}

.zh_btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* ========== Section Headers ========== */
.zh_section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.zh_section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
}

.zh_section-desc {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

.zh_title-group {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.zh_section-subtitle {
    color: #999;
    font-size: 14px;
    letter-spacing: 2px;
}

.zh_section-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zh_nav-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.zh_nav-arrow:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
}

.zh_nav-dots {
    display: flex;
    gap: 10px;
}

.zh_dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zh_dot.active,
.zh_dot:hover {
    background: #ff6b35;
    color: #fff;
}

/* ========== Banner Service Section (from banner.lbi) ========== */
.hwg-pc-banner {
    width: 100%;
    overflow: hidden;
}

.hwg-pc-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.proces {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.proces .icon_box {
    width: 100%;
}

.proces .icon_box .item {
    width: 100%;
}

.proces .icon_box .item ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.proces .icon_box .item ul li.promise_list {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 40px !important;
    float: none !important;
    height: auto !important;
}

.proces .icon_box .item ul li.promise_list img.iconimg {
    height: 40px;
    width: auto;
}

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

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ========== Hero Section ========== */
.zh_hero {
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
    padding: 60px 0;
    overflow: hidden;
    clear: both;
    width: 100%;
    display: block;
}

.zh_hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.zh_hero-content {
    flex: 1;
    min-width: 0;
}

.zh_hero-image {
    flex: 1;
    min-width: 0;
}

.zh_hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.zh_hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.zh_hero-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.zh_hero-buttons {
    display: flex;
    gap: 15px;
}

.zh_hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
}

/* ========== Process Section ========== */
.zh_process {
    padding: 80px 0;
    background: #fff;
}

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

.zh_process-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.zh_process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.zh_process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.zh_process-icon i {
    font-size: 28px;
    color: #fff;
}

.zh_process-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.zh_process-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.zh_process-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
}

/* ========== Features Section ========== */
.zh_features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.zh_feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.zh_feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.zh_feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.zh_feature-icon i {
    font-size: 32px;
    color: #fff;
}

.zh_feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.zh_feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== Deals Section ========== */
.zh_deals {
    padding: 80px 0;
    background: #fff;
}

.zh_deals-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.zh_deal-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.zh_deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.zh_deal-large {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.zh_deal-image {
    position: relative;
    overflow: hidden;
}

.zh_deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.zh_deal-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zh_deal-header {
    margin-bottom: 20px;
}

.zh_deal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.zh_deal-rating {
    color: #ffc107;
    font-size: 14px;
}

.zh_deal-features {
    margin-bottom: 20px;
}

.zh_deal-features li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zh_deal-features li i {
    color: #28a745;
    font-size: 14px;
}

.zh_deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

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

.zh_deal-price strong {
    color: #ff6b35;
    font-size: 24px;
}

.zh_deal-small .zh_deal-image {
    height: 200px;
}

.zh_deal-small .zh_deal-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

/* ========== Best Sellers Section ========== */
.zh_bestsellers {
    padding: 80px 0;
    background: #f8f9fa;
}

.zh_products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.zh_product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.zh_product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.zh_product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.zh_product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.zh_product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.zh_product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zh_product-card:hover .zh_product-image img {
    transform: scale(1.1);
}

.zh_product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    transition: bottom 0.3s ease;
}

.zh_product-card:hover .zh_product-actions {
    bottom: 0;
}

.zh_action-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.zh_action-btn:hover {
    background: #ff6b35;
    color: #fff;
}

.zh_product-info {
    padding: 20px;
}

.zh_product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.zh_product-title a {
    color: #1a1a2e;
    display: block;
}

.zh_product-title a:hover {
    color: #ff6b35;
}

.zh_product-info a {
    cursor: pointer;
}

.zh_product-shop {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.zh_product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.zh_price-current {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
}

.zh_price-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* ========== Category Section ========== */
.zh_category-section {
    padding: 80px 0;
    background: #fff;
}

.zh_category-section.zh_category-alt {
    background: #f8f9fa;
}

.zh_category-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.zh_category-sidebar {
    position: relative;
}

.zh_sidebar-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.zh_sidebar-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.zh_sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zh_sidebar-tags li a {
    display: block;
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.zh_sidebar-tags li a:hover {
    background: #ff6b35;
    color: #fff;
}

.zh_category-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.zh_product-mini {
    border: 1px solid #eee;
}

.zh_product-mini .zh_product-image {
    height: 160px;
}

.zh_product-mini .zh_product-info {
    padding: 15px;
}

.zh_product-mini .zh_product-title {
    font-size: 14px;
}

.zh_product-mini .zh_price-current {
    font-size: 16px;
}

/* ========== Testimonials Section ========== */
.zh_testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
}

.zh_testimonials-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.zh_testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.zh_testimonial-featured {
    padding: 40px;
}

.zh_testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.zh_testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.zh_testimonial-featured .zh_testimonial-avatar {
    width: 80px;
    height: 80px;
}

.zh_testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zh_testimonial-user h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}

.zh_testimonial-user span {
    font-size: 14px;
    color: #999;
}

.zh_testimonial-rating {
    margin-left: auto;
    color: #ffc107;
}

.zh_testimonial-content {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.zh_testimonial-featured .zh_testimonial-content {
    font-size: 16px;
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
    .zh_products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .zh_category-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .zh_hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zh_hero-buttons {
        justify-content: center;
    }

    .zh_hero-image {
        display: none;
    }

    .zh_process-grid {
        grid-template-columns: 1fr;
    }

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

    .zh_deals-grid {
        grid-template-columns: 1fr;
    }

    .zh_deal-large {
        grid-template-columns: 1fr;
    }

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

    .zh_category-content {
        grid-template-columns: 1fr;
    }

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

    .zh_testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zh_hero-title {
        font-size: 32px;
    }

    .zh_section-title {
        font-size: 26px;
    }

    .zh_section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .zh_features-grid {
        grid-template-columns: 1fr;
    }

    .zh_products-grid,
    .zh_category-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .zh_product-image {
        height: 180px;
    }

    .zh_product-mini .zh_product-image {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .zh_hero {
        padding: 40px 0;
    }

    .zh_hero-title {
        font-size: 28px;
    }

    .zh_hero-desc {
        font-size: 16px;
    }

    .zh_hero-buttons {
        flex-direction: column;
    }

    .zh_btn {
        width: 100%;
    }

    .zh_products-grid,
    .zh_category-products {
        grid-template-columns: 1fr;
    }

    .zh_title-group {
        flex-direction: column;
        gap: 5px;
    }
}