    /* 新首页样式 */

    body {
        background: url('/static/images/bg3.jpg') no-repeat center center fixed;
        background-size: cover;
        margin: 0;
        padding: 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* 确保轮播图区域不被背景遮挡 */
    .hero-section {
        position: relative;
        z-index: 10;
        background: transparent;
    }

    /* 隐藏可能的加载动画 */
    .loading-modality {
        display: none !important;
    }

    .home-container {
        min-height: 100vh;
        background: transparent;
    }

    /* 头部 */
    .home-header {
        background: rgb(0, 0, 0);
        color: white;
        text-align: center;
        padding: 15px 0;
        font-size: 18px;
        font-weight: bold;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    /* 轮播图区域 */
    .hero-section {
        position: relative;
        margin: 0;
        padding: 0;
        height: auto;
        min-height: 200px;
        overflow: visible;
        z-index: 1;
    }

    /* 简单轮播图样式 */
    .simple-carousel {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 200px;
        overflow: visible;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .carousel-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: contain;
        object-position: top;
        opacity: 0;
        transition: opacity 0.6s ease;
        z-index: 1;
    }

    .carousel-image.active {
        opacity: 1;
    }

    .hero-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-text {
        color: white;
        font-size: 24px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }

/* 功能按钮区域 */
.action-buttons {
    display: flex;
    padding: 5px 15px 0 15px;
    gap: 12px;
    background: transparent;
}

.action-button {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 6px;
    padding: 15px 12px;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

    .action-button:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-2px);
    }

.action-icon {
    font-size: 20px;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.action-text {
    font-size: 12px;
    font-weight: 500;
}

/* 滚动公告 */
.scroll-notice {
    position: relative;
    margin: -10px 15px 10px 15px;
    height: 60px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.notice-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.notice-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 75%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 20px;
    box-sizing: border-box;
}

.notice-content marquee {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    width: 100%;
    color: #ff8c00;
}

.notice-content font {
    color: #ff8c00 !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

    /* 特别关注区域 */
    .special-focus {
        margin: 0 15px 20px 15px;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

.section-title {
    color: #daa520;
    font-size: 16px;
    font-weight: bold;
}

    .view-all-link {
        color: white;
        font-size: 12px;
        text-decoration: none;
        opacity: 0.8;
    }

    .view-all-link:hover {
        opacity: 1;
    }

    /* 产品卡片 */
    .product-cards {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }

    .product-card {
        flex: 1;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .product-card:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-2px);
    }

    .product-name {
        color: white;
        font-size: 12px;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .product-value {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .product-value.green {
        color: #67C23A;
    }

    .product-value.pink {
        color: #E91E63;
    }

    .product-percentage {
        font-size: 11px;
        opacity: 0.8;
    }

    .product-percentage.green {
        color: #007e3d;
    }

    .product-percentage.red {
        color: #F56C6C;
    }

    .product-name.green {
        color: #007e3d;
    }

    .product-name.red {
        color: #F56C6C;
    }

    .product-value.green {
        color: #007e3d;
    }

    .product-value.red {
        color: #F56C6C;
    }

    /* 新闻中心 */
    .news-center {
        margin: 0 15px 80px 15px;
    }

    /* 主图片区域 */
    .news-main-image {
        position: relative;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
    }

    .image-slider {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .main-news-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .main-news-img.active {
        opacity: 1;
    }

    .news-caption {
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 500;
        margin-top: 0;
        border-radius: 0 0 8px 8px;
    }

    /* 新闻列表 */
    .news-list {
        background: white;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .news-list-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    
    .news-list-item:hover {
        background-color: #f8f9fa;
    }
    
    .news-list-item:active {
        background-color: #e9ecef;
    }

    .news-list-item:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .news-bullet {
        width: 6px;
        height: 6px;
        background: #666;
        border-radius: 50%;
        margin-right: 12px;
        margin-top: 6px;
        flex-shrink: 0;
    }

    .news-text {
        flex: 1;
        font-size: 13px;
        color: #333;
        line-height: 1.4;
    }

    /* 响应式设计 */
    @media (max-width: 480px) {
        .hero-image {
            height: 150px;
        }
        
        .action-buttons {
            padding: 15px 10px;
            gap: 10px;
        }
        
        .action-button {
            padding: 15px 10px;
        }
        
        .announcement-bar {
            margin: 0 10px 15px 10px;
        }
        
        .special-focus {
            margin: 0 10px 15px 10px;
        }
        
        .news-center {
            margin: 0 10px 80px 10px;
        }
    }

