/* 行业资讯列表页样式 - 暖棕色家具风格 */
:root {
    --bg-main: #FAF8F5;
    --bg-alt: #ffffff;
    --bg-warm: #FDF9F3;
    --text-primary: #2D1F14;
    --text-secondary: #6B5344;
    --text-muted: #9C8B7E;
    --primary: #B4846C;
    --primary-light: #D4A574;
    --primary-dark: #8B6B50;
    --accent: #C19A6B;
    --success: #7B9E6D;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-soft: 0 10px 40px rgba(45, 31, 20, 0.08);
    --shadow-strong: 0 20px 60px rgba(45, 31, 20, 0.12);
    --gradient-primary: linear-gradient(135deg, #B4846C 0%, #D4A574 100%);
    --gradient-secondary: linear-gradient(135deg, rgba(180, 132, 108, 0.1) 0%, rgba(212, 165, 116, 0.08) 100%);
    --gradient-warm: linear-gradient(135deg, #FAF8F5 0%, #FDF9F3 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.zh_container {
    width: min(1200px, 92%);
    margin: 0 auto;
    position: relative;
}

/* 面包屑导航 */
.zh_breadcrumb_section {
    background: var(--gradient-warm);
    padding: 24px 0;
    border-bottom: 1px solid rgba(180, 132, 108, 0.1);
}

.zh_breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.zh_breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.zh_breadcrumb a:hover {
    color: var(--primary-dark);
}

.zh_breadcrumb_separator {
    color: var(--text-muted);
    font-weight: 300;
}

.zh_breadcrumb_current {
    color: var(--text-secondary);
    font-weight: 600;
}

/* 页面标题区域 */
.zh_page_header {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.zh_page_header::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.zh_page_header_content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.zh_page_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.zh_page_badge i {
    color: #ffffff;
}

.zh_page_title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zh_page_subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* 资讯列表区域 */
.zh_news_section {
    padding: 80px 0;
    background: var(--bg-main);
}

.zh_news_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.zh_news_header_left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zh_news_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--gradient-secondary);
    color: var(--primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: fit-content;
}

.zh_news_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.zh_view_all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    background: var(--gradient-secondary);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.zh_view_all:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: translateX(4px);
}

/* 资讯列表 */
.zh_news_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.zh_news_item {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(180, 132, 108, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.zh_news_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zh_news_item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary);
}

.zh_news_item:hover::before {
    opacity: 1;
}

.zh_news_link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 28px 32px;
}

.zh_news_content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.zh_news_icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.zh_news_item:hover .zh_news_icon {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: scale(1.1);
}

.zh_news_body {
    flex: 1;
    min-width: 0;
}

.zh_news_item_title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.zh_news_item:hover .zh_news_item_title {
    color: var(--primary);
}

.zh_news_excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zh_news_meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.zh_news_category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--gradient-secondary);
    color: var(--primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.zh_read_more {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.zh_news_item:hover .zh_read_more {
    transform: translateX(4px);
}

.zh_read_more i {
    font-size: 11px;
}

/* 热门标签 */
.zh_hot_badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #E07B39, #D4A574);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* 空状态 */
.zh_empty_state {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-muted);
}

.zh_empty_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
}

.zh_empty_title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.zh_empty_text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.zh_empty_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zh_empty_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(180, 132, 108, 0.3);
}

/* 分页样式 */
.zh_pagination_section {
    background: var(--bg-alt);
    padding: 50px 0;
    border-top: 1px solid rgba(180, 132, 108, 0.1);
}

.zh_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.zh_pagination a,
.zh_pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(180, 132, 108, 0.2);
}

.zh_pagination a:hover {
    background: var(--gradient-secondary);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.zh_pagination .current {
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(180, 132, 108, 0.3);
}

.zh_pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* 底部特性区域 */
.zh_features_section {
    padding: 60px 0;
    background: var(--bg-warm);
    border-top: 1px solid rgba(180, 132, 108, 0.1);
}

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

.zh_feature_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid rgba(180, 132, 108, 0.1);
    transition: all 0.3s ease;
}

.zh_feature_item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.zh_feature_icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.zh_feature_item:hover .zh_feature_icon {
    background: var(--gradient-primary);
    color: #ffffff;
}

.zh_feature_text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.zh_feature_text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .zh_page_title {
        font-size: 32px;
    }

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

    .zh_news_content {
        gap: 16px;
    }

    .zh_news_icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .zh_page_header {
        padding: 60px 0;
    }

    .zh_page_title {
        font-size: 28px;
    }

    .zh_news_section {
        padding: 60px 0;
    }

    .zh_news_header {
        flex-direction: column;
        align-items: flex-start;
    }

    .zh_news_content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .zh_news_link {
        padding: 24px 20px;
    }

    .zh_news_meta {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .zh_read_more {
        margin-left: 0;
    }

    .zh_features_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .zh_container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .zh_page_title {
        font-size: 24px;
    }

    .zh_page_subtitle {
        font-size: 14px;
    }

    .zh_news_item_title {
        font-size: 16px;
    }

    .zh_news_excerpt {
        font-size: 13px;
    }

    .zh_news_icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .zh_pagination a,
    .zh_pagination span {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }

    .zh_hot_badge {
        top: 12px;
        right: 12px;
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zh_news_item {
    animation: fadeInUp 0.6s ease-out;
}

.zh_news_item:nth-child(2) { animation-delay: 0.1s; }
.zh_news_item:nth-child(3) { animation-delay: 0.2s; }
.zh_news_item:nth-child(4) { animation-delay: 0.3s; }
.zh_news_item:nth-child(5) { animation-delay: 0.4s; }
.zh_news_item:nth-child(6) { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
