/*==================================================================================
    Custom Stylesheet (Any custom styling you want to apply should be defined here).
====================================================================================*/

/*=============================================================================
    全局溢出修复 - 防止移动端水平滚动
==============================================================================*/
html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1140px;  /* 恢复Bootstrap默认值，防止内容被拉宽全屏 */
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
}

/* 超大屏幕保持适当的最大宽度 */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/*=============================================================================
    项目二风格导航栏样式
==============================================================================*/

/* Header V2 容器 */
.header-v2 {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 1100px;
    padding-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 导航栏主体 */
.navbar-v2 {
    background: linear-gradient(135deg, 
        rgba(180, 170, 200, 0.5) 0%, 
        rgba(200, 195, 210, 0.55) 30%,
        rgba(220, 215, 225, 0.6) 60%,
        rgba(235, 230, 240, 0.65) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 50px;
    padding: 22px 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 100%;
}

.navbar-v2:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* 导航容器布局 */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Logo样式 */
.nav-logo {
    flex-shrink: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 58px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo a:hover img {
    transform: scale(1.05);
}

/* 导航链接 */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-left: 0;
}

.nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 0, 0, 0.08);
    color: #222;
    text-decoration: none;
}

/* 搜索框 */
.nav-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 6px 15px;
    min-width: 200px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #666;
    width: 150px;
    padding: 5px 0;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #4a7c59;
}

/* 积分区域 */
.nav-points {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 6px 6px 6px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.points-label {
    font-size: 10px;
    color: #666;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.points-value {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.points-btn {
    background: #444;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.points-btn:hover {
    background: #333;
    transform: scale(1.05);
}

/* 操作按钮 */
.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #c8e600;
    color: #333;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 230, 0, 0.3);
    white-space: nowrap;
}

.nav-action-btn:hover {
    background: #b8d600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 230, 0, 0.4);
    color: #333;
    text-decoration: none;
}

.nav-action-btn i {
    font-size: 12px;
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #444;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 悬浮效果 - 滚动时 */
.header-v2.scrolled .navbar-v2 {
    background: linear-gradient(135deg, 
        rgba(180, 170, 200, 0.6) 0%, 
        rgba(200, 195, 210, 0.65) 30%,
        rgba(220, 215, 225, 0.7) 60%,
        rgba(235, 230, 240, 0.75) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .header-v2 {
        width: calc(100% - 40px);  /* PC端中等屏幕自适应 */
        max-width: 1100px;
    }
    
    .navbar-v2 {
        padding: 18px 40px;  /* 适当减小内边距 */
    }
    
    .nav-container {
        gap: 25px;  /* 减小元素间距 */
    }
    
    .nav-search {
        min-width: 150px;
    }
    
    .search-input {
        width: 100px;
    }
    
    .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .header-v2 {
        top: 10px;
        width: calc(100% - 20px);
    }
    
    .nav-search,
    .nav-points {
        display: none;
    }
    
    .nav-links {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    /* 移动端首屏隐藏悬浮导航，滚动后显示 */
    .header-v2 {
        top: 10px;
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%) translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    /* 滚动后显示悬浮导航 */
    .header-v2.scrolled-show {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    
    .navbar-v2 {
        padding: 10px 15px;
        border-radius: 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-action-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* 调整页面内容顶部间距 */
.banner-area-inner,
.banner-inner-area {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 移除页面顶部多余空白 */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.header, .main-header {
    display: none !important;
}

/*=============================================================================
    移动端横幅上方图片
==============================================================================*/
/* PC端隐藏 */
.mobile-banner-top {
    display: none;
}

/*=============================================================================
    横幅区域 - 采用项目2规则：固定高度
==============================================================================*/
.banner-area-inner {
    margin-top: 0 !important;
    padding-top: 0 !important;
    height: 750px;  /* PC端固定高度750px */
    min-height: 750px;
    max-height: 750px;
    overflow: hidden;
}

/* Banner整体内容下移 */
.banner-text-inner {
    padding-top: 120px;
    position: relative;
    z-index: 5;  /* 确保文字在轮播图之上 */
}

/* Banner按钮下移 */
.banner-text-inner .btn {
    margin-top: 280px;
    position: relative;
    z-index: 5;  /* 确保按钮在轮播图之上 */
}

/* Banner小星星装饰物 - 保持原有随机分布（position: absolute + top/left定位） */
.banner-shape-inner {
    z-index: 3;  /* 确保装饰物在轮播图之上 */
    /* 不覆盖position，保持原有随机定位 */
}

/* 单个小星星 - 只添加z-index，不覆盖任何定位属性 */
.banner-shape-inner .shape {
    z-index: 3;
    /* position: absolute 和 top/left 保持style.css中的原有随机值 */
}

/* Banner内容容器整体下移 */
.banner-inner-area .row.align-items-center {
    padding-top: 80px;
}

/*=============================================================================
    轮播图背景样式 - 项目2规则
==============================================================================*/

/* 轮播图背景容器 */
.banner-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;  /* PC端固定高度750px */
    z-index: 0;
    overflow: hidden;
}

/* 单张轮播图 */
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;  /* PC端固定高度750px */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* 激活状态 - 显示当前图片 */
.banner-slide.active {
    opacity: 1;
}

/* 覆盖原有超出隐藏和定位 */
.banner-area-inner {
    position: relative;
    overflow: visible !important;  /* 允许内容超出显示（手机图片） */
    background: #1a1a1a; /* 默认深色背景 */
    height: 750px;  /* PC端固定高度 */
}

/* 轮播图存在时隐藏光斑背景 */
.banner-slider-bg ~ .banner-inner-area ~ .ambient-light {
    display: none;
}

/* 首页有轮播图时保持光斑背景显示 */
/* 注意：悬浮光斑应保持显示，不再隐藏 */

/* 保持内部内容在上层 */
.banner-inner-area.banner-area1 {
    position: relative;
    z-index: 2;  /* 确保内容容器在轮播图之上 */
    height: 750px;  /* PC端固定高度 */
    overflow: visible !important;  /* 允许内容超出显示 */
}

/* Banner内容行容器 */
.banner-inner-area .row.align-items-center {
    position: relative;
    z-index: 5;
    overflow: visible !important;  /* 允许内容超出显示 */
}

/* Banner文字区域 */
.banner-inner-area .col-md-8,
.banner-inner-area .col-lg-6,
.banner-inner-area .col-xl-5 {
    position: relative;
    z-index: 5;
}

/* Banner图片区域 */
.banner-inner-area .col-lg-5,
.banner-inner-area .col-md-4 {
    position: relative;
    z-index: 10;
}

/* 隐藏原有的背景图 */
.banner-inner-area.banner-area1:before {
    display: none !important;
}

/* 轮播图指示器 */
.banner-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.banner-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.banner-slider-dot.active,
.banner-slider-dot:hover {
    background: #FFD100;
    transform: scale(1.2);
}

/* Banner手机图片 - 允许超出容器显示 */
.banner-image {
    margin-top: 180px;
    transform: translateX(30px) translateY(80px);  /* 向右偏移30px */
    position: relative;
    z-index: 10;  /* 确保图片在最前端展示 */
    overflow: visible !important;
}

.banner-image img {
    position: relative;
    z-index: 10;
    overflow: visible !important;
}

/* 确保手机图片的父容器也允许超出显示 */
.banner-inner-area .col-lg-5,
.banner-inner-area .col-md-4,
.banner-inner-area .col-xl-6 {
    overflow: visible !important;
}

/*=============================================================================
    Features区块（抓住即时零售新机会）- 增加与横幅的间距
==============================================================================*/
#features {
    padding-top: 90px !important;  /* 加大与横幅的空白区域 */
    margin-top: 80px;  /* 额外的上边距 */
}

/* PC端默认隐藏移动端嵌入式导航栏和横幅上方图片 */
.mobile-embed-nav,
.mobile-banner-top {
    display: none !important;
}

/* 移动端横幅响应式适配 */
@media (max-width: 768px) {
    /* 移动端显示横幅上方图片 */
    .mobile-banner-top {
        display: block !important;
        width: 100%;
        overflow: hidden;
    }
    
    .mobile-banner-img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* 移动端横幅高度调整 */
    .banner-area-inner,
    .banner-inner-area.banner-area1 {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
    
    .banner-slider-bg,
    .banner-slide {
        height: 300px !important;
    }
    
    /* 移动端重置下移值 */
    .banner-text-inner {
        padding-top: 20px !important;
    }
    
    /* 移动端隐藏Banner按钮（Download App 和 Discover More） */
    .banner-text-inner .btn {
        display: none !important;
    }
    
    .banner-shape-inner {
        transform: translateY(20px) !important;
    }
    
    .banner-inner-area .row.align-items-center {
        padding-top: 20px !important;
    }
    
    /* 移动端隐藏Banner手机图片 */
    .banner-image {
        display: none !important;
    }
    
    /* 确保轮播图背景在移动端正常显示 */
    .banner-slider-bg {
        display: block !important;
    }
    
    .banner-slide {
        background-size: cover !important;
    }
    
    /* 移动端嵌入式导航栏 */
    .mobile-embed-nav {
        display: flex !important;
        justify-content: space-around;
        align-items: center;
        background: #FFD100;
        padding: 12px 10px;
        width: 100%;
    }
    
    .mobile-nav-item {
        color: #333;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        padding: 6px 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .mobile-nav-item:hover,
    .mobile-nav-item:active {
        background: rgba(0, 0, 0, 0.1);
        color: #000;
        text-decoration: none;
    }
}

/* 移动端菜单激活状态 */
@media (max-width: 768px) {
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, 
            rgba(200, 195, 215, 0.98) 0%, 
            rgba(220, 215, 230, 0.98) 50%,
            rgba(235, 230, 245, 0.98) 100%);
        border-radius: 20px;
        margin-top: 10px;
        padding: 15px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .nav-links.mobile-active .nav-link {
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-links.mobile-active .nav-link:last-child {
        border-bottom: none;
    }
    
    /* 移动端下拉菜单 */
    .nav-links.mobile-active .nav-dropdown {
        width: 100%;
    }
    
    .nav-links.mobile-active .nav-dropdown-toggle {
        justify-content: center;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-links.mobile-active .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.03);
        padding: 5px 0;
    }
    
    .nav-links.mobile-active .nav-dropdown-item {
        padding: 10px 30px;
        font-size: 13px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* 导航链接悬浮动画 */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #666;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 30px;
}

/* 按钮点击效果 */
.nav-action-btn:active,
.points-btn:active {
    transform: scale(0.95);
}

/* 下拉菜单样式 */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 10px 0;
    min-width: 140px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #222;
    text-decoration: none;
}

/* 搜索框焦点效果 */
.nav-search:focus-within {
    box-shadow: 0 0 0 3px rgba(100, 100, 120, 0.2);
}

.search-input:focus {
    width: 180px;
}

/*=============================================================================
    新闻卡片样式 - 项目2风格
==============================================================================*/

/* 新闻列表网格布局 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* 首页新闻网格 - 3列布局 */
.home-news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home-news-grid {
        grid-template-columns: 1fr;
    }
}

/* 新闻卡片容器 */
.news-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(204, 255, 0, 0.4);
}

/* 卡片图片区域 */
.news-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

/* 卡片内容区域 */
.news-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-title a:hover {
    color: #7F00FF;
}

.news-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 日期样式 */
.news-card-date {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

.news-card-btn {
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.news-card-btn:hover {
    background: #CCFF00;
    color: #000;
    transform: scale(1.05);
}

/* 页面标题区域调整 */
.page-title-wrap {
    margin-top: 100px;
}

/*=============================================================================
    侧边栏样式 - 项目2风格
==============================================================================*/

.single-sidebar-widget {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.search-bar-widget {
    padding: 20px;
}

.search-bar-widget input {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 14px;
}

.search-bar-widget input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-title {
    padding: 20px 20px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-title h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.sidebar-body.latest-post {
    padding: 15px 20px 20px;
}

.sidebar-body.latest-post ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-body.latest-post li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-body.latest-post li:last-child {
    border-bottom: none;
}

.latest-post-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
}

.latest-post-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.latest-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-post-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-post-body a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
}

.latest-post-body a:hover {
    color: #7F00FF;
}

/*=============================================================================
    Features区块标题样式覆盖 - 与banner保持一致
==============================================================================*/

#features {
    padding-top: 35px;
    padding-bottom: 35px;
}

#features .section-title {
    margin-bottom: 30px;
}

#features .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #4a3728;
    margin-bottom: 25px;
    line-height: 1.4;
}

#features .section-title p {
    font-size: 18px;
    color: #6b5a4a;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    #features {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    #features .section-title h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    #features .section-title p {
        font-size: 15px;
    }
}

/*=============================================================================
    数据统计区块样式
==============================================================================*/

.data-stats-section {
    background: linear-gradient(180deg, 
        rgba(255, 235, 150, 0.3) 0%, 
        rgba(255, 220, 100, 0.5) 50%,
        rgba(255, 210, 80, 0.4) 100%);
    overflow: hidden;
}

.stats-header {
    margin-bottom: 40px;
}

.stats-indicator {
    display: inline-block;
    width: 8px;
    height: 24px;
    background: #FFD700;
    margin-right: 12px;
    vertical-align: middle;
}

.stats-title {
    font-size: 36px;
    font-weight: 700;
    color: #4a3728;
    vertical-align: middle;
}

.stats-cards-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stats-card {
    flex: 1;
    text-align: center;
    padding: 25px 15px;
}

.stats-card.highlight {
    border: 2px solid #FFD700;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.05);
}

.stats-value {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 10px;
}

.stats-card.highlight .stats-value {
    color: #DAA520;
}

.arrow-up {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #FFD700;
    margin-left: 5px;
    vertical-align: middle;
}

.stats-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.stats-source {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
}

/* 即时零售市场规模区块 */
.market-scale-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.market-scale-header {
    margin-bottom: 10px;
}

.market-scale-title {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    vertical-align: middle;
}

.market-scale-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 30px;
    padding-left: 20px;
}

.market-scale-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

/* 柱状图区域 */
.chart-area {
    flex: 1.5;
    max-width: 100%;
    overflow: hidden;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 280px;
    padding-bottom: 40px;
    position: relative;
    max-width: 100%;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bar-item .bar {
    width: 35px;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.bar-item:hover .bar {
    transform: scaleY(1.05);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.bar-item.highlight-bar .bar {
    background: linear-gradient(180deg, #FFD700 0%, #FF8C00 100%);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.bar-value {
    font-size: 12px;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
    position: absolute;
    top: -25px;
}

.bar-year {
    font-size: 12px;
    color: #666;
    position: absolute;
    bottom: -25px;
    white-space: nowrap;
}

/* 引用区域 */
.quote-area {
    flex: 1;
    padding: 30px;
    max-width: 100%;
    overflow: hidden;
}

.quote-content {
    position: relative;
    padding: 20px 30px;
}

.quote-mark {
    font-size: 60px;
    color: #DAA520;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
}

.quote-mark.left {
    top: -10px;
    left: 0;
}

.quote-mark.right {
    bottom: -30px;
    right: 0;
}

.quote-text {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
    margin: 0;
    padding: 10px 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.quote-text .highlight-number {
    font-size: 36px;
    font-weight: 700;
    color: #FF4500;
}

.quote-source {
    font-size: 14px;
    color: #666;
    text-align: right;
    margin-top: 20px;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .market-scale-content {
        flex-direction: column;
    }
    
    .chart-area {
        width: 100%;
    }
    
    .quote-area {
        width: 100%;
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .bar-chart {
        height: 200px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 50px;
    }
    
    .bar-item .bar {
        width: 25px;
    }
    
    .bar-value {
        font-size: 10px;
    }
    
    .bar-year {
        font-size: 10px;
    }
    
    .quote-text {
        font-size: 16px;
    }
    
    .quote-text .highlight-number {
        font-size: 28px;
    }
    
    .chart-area {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .market-scale-content {
        overflow: hidden;
    }
    
    .quote-area {
        overflow: hidden;
    }
}

/* 响应式适配 */
@media (max-width: 992px) {
    .stats-cards-row {
        flex-wrap: wrap;
    }
    
    .stats-card {
        flex: 0 0 calc(33.33% - 15px);
    }
}

@media (max-width: 768px) {
    .stats-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .stats-value {
        font-size: 28px;
    }
    
    .stats-title {
        font-size: 20px;
    }
    
    .stats-cards-row {
        gap: 10px;
    }
    
    .stats-header {
        padding: 0 10px;
    }
    
    .stats-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-card {
        flex: 0 0 100%;
        padding: 15px 10px;
    }
    
    .stats-value {
        font-size: 24px;
    }
    
    .stats-title {
        font-size: 18px;
    }
    
    /* 柱状图调整 */
    .bar-chart {
        min-width: 500px;
    }
    
    .bar-item .bar {
        width: 20px;
    }
    
    /* 引用区域 */
    .quote-content {
        padding: 10px 15px;
    }
    
    .quote-text {
        font-size: 14px;
    }
    
    .quote-text .highlight-number {
        font-size: 24px;
    }
    
    .quote-mark {
        font-size: 40px;
    }
}

/*=============================================================================
    Banner 图片区块样式
==============================================================================*/

.banner-image-section {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.banner-section-header {
    background: #fff;
    padding: 80px 0 50px;
    margin-bottom: 0;
    width: 100%;
}

.banner-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #4a3728;
    margin-bottom: 25px;
    line-height: 1.4;
}

.banner-section-desc {
    font-size: 18px;
    color: #6b5a4a;
    line-height: 1.8;
    margin: 0;
}

.banner-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.banner-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.banner-img-wrapper:hover img {
    transform: scale(1.02);
}

/* 响应式适配 */
@media (max-width: 768px) {
    .banner-section-header {
        padding: 50px 0 30px;
    }
    
    .banner-section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .banner-section-desc {
        font-size: 15px;
    }
}

/*=============================================================================
    行业案例区块样式 - 美团闪购风格
==============================================================================*/

.industry-cases-section {
    background: #f5f5f5;
    overflow-x: hidden;
}

.industry-cases-section .container {
    max-width: 1140px;  /* 保持与全局container一致，防止内容拉宽全屏 */
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1400px) {
    .industry-cases-section .container {
        max-width: 1320px;
    }
}

.industry-cases-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.industry-cases-section .section-title p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* 轮播容器 */
.cases-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* 轮播轨道 */
.cases-carousel-track {
    position: relative;
    flex: 1;
    max-width: 100%;
    overflow: hidden;
}

/* 导航按钮 */
.case-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.case-nav-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.case-nav-btn i {
    font-size: 18px;
    color: #333;
}

/* 案例卡片 */
.case-card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.case-card.active {
    display: block;
    opacity: 1;
}

.case-card-inner {
    display: flex;
    height: 520px;
    position: relative;
    background: #fff;
}

/* 左侧内容区域 - 黄色背景 */
.case-content {
    flex: 0 0 55%;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #FFB300 100%);
    padding: 55px 50px;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.4;
}

.case-subtitle {
    font-weight: 400;
    font-size: 24px;
}

.case-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* 标签 */
.case-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.case-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
}

.tag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #FF6A00, #FF8C33);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    font-style: normal;
}

/* 数据统计 */
.case-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.case-stats .stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.case-stats .stat-unit {
    font-size: 18px;
    font-weight: 400;
    margin-left: 2px;
}

.case-stats .stat-label {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

/* 按钮 */
.case-btn {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.case-btn:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* 右侧图片区域 */
.case-image {
    width: 50%;
    height: 520px;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    z-index: 1;
}

.case-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

/* 分页指示器 */
.cases-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.cases-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cases-pagination .dot.active {
    background: #333;
    transform: scale(1.2);
}

.cases-pagination .dot:hover {
    background: #999;
}

/* 查看更多按钮 */
.btn-view-more {
    display: inline-block;
    padding: 16px 50px;
    border: 2px solid #333;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-view-more:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* 响应式适配 */
@media (max-width: 992px) {
    .case-card-inner {
        flex-direction: column;
        height: auto;
    }
    
    .case-content {
        flex: 1;
        clip-path: none;
        padding: 40px 30px;
    }
    
    .case-image {
        position: relative;
        width: 100%;
        height: 320px;
    }
    
    .case-image img {
        height: 320px;
    }
    
    .case-stats {
        gap: 25px;
    }
    
    .case-stats .stat-value {
        font-size: 32px;
    }
    
    .case-nav-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .industry-cases-section .section-title h2 {
        font-size: 26px;
    }
    
    .case-title {
        font-size: 20px;
    }
    
    .case-subtitle {
        font-size: 18px;
    }
    
    .case-tags {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .case-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 45%;
    }
    
    .case-stats .stat-value {
        font-size: 28px;
    }
    
    .case-image {
        height: 250px;
    }
    
    .case-image img {
        height: 250px;
    }
    
    .btn-view-more {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/*=============================================================================
    公司简介页面样式
==============================================================================*/

.about-section {
    background: #f5f5f5;
    min-height: 50vh;
    padding-top: 50px;
}

/* 左侧侧边栏 */
.about-sidebar {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-title-bar {
    background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%);
    padding: 18px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-image {
    padding: 0;
}

.sidebar-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右侧内容区 */
.about-content {
    background: #fff;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 面包屑导航 */
.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.about-breadcrumb .dot {
    width: 8px;
    height: 8px;
    background: #FFB300;
    border-radius: 50%;
}

.about-breadcrumb .breadcrumb-text {
    font-size: 13px;
    color: #999;
}

.about-breadcrumb .breadcrumb-text a {
    color: #999;
    text-decoration: none;
}

.about-breadcrumb .breadcrumb-text a:hover {
    color: #FFB300;
}

/* 内容主体 */
.about-body {
    padding: 0;
}

.about-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #FFB300;
    display: inline-block;
}

.about-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text strong {
    color: #333;
}

/* 响应式 */
@media (max-width: 768px) {
    .about-section {
        padding-top: 100px;
    }
    
    .about-sidebar {
        margin-bottom: 20px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-title {
        font-size: 20px;
    }
}


