/* ======================================= */
/*  移动端专属响应式CSS - 仅在≤768px生效  */
/*  生成时间: 2026-01-18 22:50:00         */
/*  特点:不影响桌面端布局                  */
/* ======================================= */

/* ========== 桌面端（>768px）保持原样，不做任何修改 ========== */

/* ========== 平板和手机端（≤768px） ========== */
@media (max-width: 768px) {
    
    /* ========== 基础布局 ========== */
    
    /* 修复body的min-width - 必须覆盖 style.css 的 min-width: 1230px */
    body {
        min-width: 320px !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    /* 修复容器 - 减小右侧间隙到最小 */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    /* section 减小padding */
    .section {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
    
    /* ========== Banner区域 ========== */
    
    /* 修复.sec-first - 覆盖 style.css 的 min-width: 1230px */
    .sec-first {
        width: 100% !important;
        max-width: 100% !important;
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
        position: relative !important;
        min-width: 320px !important;
    }
    
    /* Banner - 覆盖JavaScript动态设置的宽度 */
    #homeBanner {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        background: #000 !important;
    }
    
    /* Banner列表项 */
    #homeBanner ul li {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }
    
    #homeBanner ul li .figure {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        z-index: 5 !important;
        left: 0 !important;
        top: 0 !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-size: cover !important;
        background-color: rgba(0,0,0,0.4) !important;
    }
    
    /* Banner文字调整 */
    #homeBanner .cont {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        opacity: 1 !important;
        background: none !important;
        padding: 20px 15px !important;
        text-align: center !important;
        bottom: auto !important;
        left: auto !important;
        top: auto !important;
    }
    
    #homeBanner .article {
        width: 100% !important;
        height: auto !important;
        padding: 15px !important;
        margin: 0 auto !important;
        min-height: auto !important;
        border-left-width: 4px !important;
    }
    
    #homeBanner .cont .ban-tit {
        font-size: 24px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
    
    #homeBanner .cont .ban-text {
        font-size: 16px !important;
        height: auto !important;
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-height: 1.6 !important;
        font-family: "Microsoft YaHei", sans-serif !important;
    }
    
    #homeBanner .cont .more-box {
        margin-top: 10px !important;
        font-size: 13px !important;
        line-height: 30px !important;
        cursor: pointer !important;
    }
    
    #homeBanner .control {
        position: absolute !important;
        left: 0 !important;
        bottom: 10px !important;
        width: 100% !important;
        text-align: center !important;
        z-index: 10 !important;
    }
    
    #homeBanner .control .dot {
        display: inline-block !important;
        width: 18px !important;
        height: 18px !important;
        border: 1px solid transparent !important;
        border-radius: 50% !important;
        background: transparent !important;
        padding: 2px !important;
        margin: 0 5px !important;
        cursor: pointer !important;
    }
    
    /* ========== 4列数据块区域 ========== */
    
    /* 在移动端隐藏统计数据区域 */
    .index-waper-box {
        display: none !important;
    }
    
    .index-back-box {
        display: none !important;
    }
    
    .single-box {
        display: none !important;
    }
    
    .col-4 {
        display: none !important;
    }
    
    .single-item {
        display: none !important;
    }
    
    /* ========== 头部导航 ========== */
    
    .header .brand {
        padding-left: 10px !important;
        padding-right: 10px !important;
        width: auto !important;
    }
    
    .header .brand a img {
        max-width: 100px !important;
        height: auto !important;
        display: block !important;
    }
    
    /* 移动端汉堡菜单按钮 */
    .mobile-menu-btn {
        display: block !important;
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 36px !important;
        height: 28px !important;
        cursor: pointer !important;
        z-index: 1000 !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
    }
    
    /* 汉堡菜单线条 */
    .mobile-menu-btn .btn-line {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background: #D2232A !important;
        border-radius: 2px !important;
        margin: 5px 0 !important;
        transition: all 0.3s ease !important;
    }
    
    /* 汉堡菜单打开状态 */
    .mobile-menu-btn.active .btn-line:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px) !important;
    }
    
    .mobile-menu-btn.active .btn-line:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-menu-btn.active .btn-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px) !important;
    }
    
    /* 侧边导航菜单 */
    .header .navbar {
        display: block !important;
        position: fixed !important;
        right: -300px !important;
        top: 0 !important;
        width: 280px !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.99) !important;
        margin: 0 !important;
        padding: 80px 20px 20px !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2) !important;
        backdrop-filter: blur(20px) !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999 !important;
        overflow-y: auto !important;
        border-radius: 12px 0 0 12px !important;
    }
    
    /* 导航菜单打开状态 */
    .header .navbar.active {
        right: 0 !important;
    }
    
    /* 导航项样式 */
    .header .navbar .category-item {
        float: none !important;
        display: block !important;
        margin: 0 0 12px !important;
        border-bottom: 1px solid rgba(210, 35, 42, 0.15) !important;
        padding-bottom: 12px !important;
        transition: all 0.3s ease !important;
    }
    
    /* 导航项悬停效果 */
    .header .navbar .category-item:hover {
        transform: translateX(3px) !important;
    }
    
    /* 导航链接样式 */
    .header .navbar .category-a {
        display: block !important;
        padding: 15px 20px !important;
        color: #333 !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        background: linear-gradient(135deg, rgba(210, 35, 42, 0.1), rgba(210, 35, 42, 0.05)) !important;
        border-radius: 10px !important;
        margin-bottom: 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid rgba(210, 35, 42, 0.1) !important;
    }
    
    /* 导航链接悬停效果 */
    .header .navbar .category-a:hover {
        background: linear-gradient(135deg, rgba(210, 35, 42, 0.95), rgba(180, 25, 30, 0.9)) !important;
        color: white !important;
        transform: translateX(8px) !important;
        box-shadow: 0 4px 15px rgba(210, 35, 42, 0.3) !important;
        border-color: rgba(210, 35, 42, 0.5) !important;
    }
    
    /* 下拉菜单样式 */
    .header .navbar .dropdown-menu {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 8px 0 0 !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    /* 下拉菜单容器 */
    .header .navbar .dropdown-container {
        width: 100% !important;
        padding: 0 !important;
    }
    
    /* 下拉菜单内容 */
    .header .navbar .dropdown-warp {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 0 !important;
    }
    
    /* 产品图片隐藏 */
    .header .navbar .product-img {
        display: none !important;
    }
    
    /* 下拉菜单链接样式 */
    .header .navbar .product_img {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* 子导航项样式 */
    .header .navbar .nav-item {
        display: block !important;
        padding: 12px 15px 12px 35px !important;
        margin: 0 !important;
        color: #555 !important;
        background: linear-gradient(135deg, rgba(210, 35, 42, 0.08), rgba(210, 35, 42, 0.03)) !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        border-left: 3px solid rgba(210, 35, 42, 0.2) !important;
    }
    
    /* 子导航项悬停效果 */
    .header .navbar .nav-item:hover {
        background: linear-gradient(135deg, rgba(210, 35, 42, 0.85), rgba(210, 35, 42, 0.7)) !important;
        color: white !important;
        transform: translateX(12px) !important;
        border-left-color: white !important;
        box-shadow: 0 3px 10px rgba(210, 35, 42, 0.25) !important;
    }
    
    /* 滚动条美化 */
    .header .navbar::-webkit-scrollbar {
        width: 6px !important;
    }
    
    .header .navbar::-webkit-scrollbar-track {
        background: rgba(210, 35, 42, 0.1) !important;
        border-radius: 3px !important;
    }
    
    .header .navbar::-webkit-scrollbar-thumb {
        background: rgba(210, 35, 42, 0.5) !important;
        border-radius: 3px !important;
    }
    
    .header .navbar::-webkit-scrollbar-thumb:hover {
        background: rgba(210, 35, 42, 0.8) !important;
    }
    
    /* ========== 温馨提示按钮美化 ========== */
    
    /* 温馨提示容器样式 */
    .tbs {
        background: rgba(210, 35, 42, 0.05) !important;
        border-radius: 12px !important;
        padding: 20px !important;
        margin: 20px 0 !important;
        border: 1px solid rgba(210, 35, 42, 0.15) !important;
    }
    
    /* 温馨提示标题 */
    .tbs span {
        color: #D2232A !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        margin-bottom: 12px !important;
        display: block !important;
    }
    
    /* 温馨提示内容 */
    .tbs p {
        color: #555 !important;
        font-size: 14px !important;
        line-height: 1.8 !important;
        margin-bottom: 18px !important;
    }
    
    /* 按钮容器 */
    .tbs a {
        display: block !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto 12px !important;
        padding: 15px 20px !important;
        background: linear-gradient(135deg, #D2232A, #B81E23) !important;
        color: white !important;
        text-align: center !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 15px rgba(210, 35, 42, 0.3) !important;
        transition: all 0.3s ease !important;
        border: none !important;
    }
    
    /* 按钮悬停效果 */
    .tbs a:hover {
        background: linear-gradient(135deg, #B81E23, #A01A1F) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 6px 20px rgba(210, 35, 42, 0.4) !important;
    }
    
    /* 按钮活跃状态 */
    .tbs a:active {
        transform: translateY(0) !important;
        box-shadow: 0 2px 10px rgba(210, 35, 42, 0.3) !important;
    }
    
    /* 按钮间距 */
    .tbs a:last-child {
        margin-bottom: 0 !important;
    }
    
    /* ========== 面包屑导航美化 ========== */
    
    /* 面包屑容器 */
    .breadcrumb {
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 12px 16px !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        margin: 15px 0 !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    
    /* 面包屑链接 */
    .breadcrumb a {
        color: #666 !important;
        font-size: 14px !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
    }
    
    /* 首页图标 */
    .breadcrumb a.nvhm {
        background: url(../images/icon-home.png) no-repeat left center !important;
        color: white !important;
        width: 30px !important;
        height: 24px !important;
        display: inline-block !important;
        vertical-align: middle !important;
        overflow: hidden !important;
    }
    
    /* 首页图标悬停样式 */
    .breadcrumb a.nvhm:hover {
        background: url(../images/icon-home.png) no-repeat left center !important;
        transform: none !important;
    }
    
    /* 面包屑分隔符 */
    .breadcrumb em {
        color: #ccc !important;
        font-size: 16px !important;
        font-style: normal !important;
        margin: 0 !important;
    }
    
    /* 当前页面文本 */
    .breadcrumb .current-page {
        color: #D2232A !important;
        font-weight: 600 !important;
    }
    
    /* 链接悬停效果 */
    .breadcrumb a:hover {
        color: #D2232A !important;
        background: rgba(210, 35, 42, 0.08) !important;
        transform: translateY(-1px) !important;
    }
    
    /* 隐藏右侧工具栏 */
    .header-right {
        display: none !important;
    }
    
    /* 导航背景遮罩 */
    .navbar-overlay {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 998 !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
    }
    
    /* 遮罩显示状态 */
    .navbar-overlay.active {
        display: block !important;
        opacity: 1 !important;
    }
    
    /* ========== 工厂局部展示区域 ========== */
    
    .sec-project {
        padding: 30px 0 !important;
    }
    
    .section-title {
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .section-title h1,
    .section-title h3 {
        font-size: 24px !important;
    }
    
    .section-title .en {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    /* 项目列表容器 - 移除桌面端的负margin */
    .home-project {
        width: 100% !important;
        overflow-x: hidden !important;
        margin-left: 0 !important;  /* 移除 -40px */
        margin-right: 0 !important;
    }
    
    /* 单个网格项 */
    .h-proj {
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    
    /* 项目链接项 - 移除桌面端的40px margin-left */
    .h-project-item {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
        margin: 0 0 20px 0 !important;
        margin-left: 0 !important;  /* 移除 40px */
        padding: 6px !important;
        box-sizing: border-box !important;
        float: none !important;
        display: block !important;
        overflow: visible !important;
        position: relative !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        border-radius: 8px !important;
        text-align: center !important;
    }
    
    /* 项目图片 */
    .h-project-item img {
        width: 100% !important;
        max-width: 100% !important;
        height: 200px !important;
        display: block !important;
        margin: 0 auto !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    /* 项目标题 */
    .h-project-item .tit {
        position: static !important;
        background: rgba(0,0,0,0.7) !important;
        padding: 10px 15px !important;
        color: #fff !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        transform: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
    }
    
    /* 隐藏"more"图标 */
    .h-project-item .more {
        display: none !important;
    }
    
    /* ========== 新闻中心 ========== */
    
    .sec-news {
        padding: 30px 0 !important;
    }
    
    .h-news {
        width: 100% !important;
    }
    
    /* 新闻分类 */
    .classify {
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 20px !important;
    }
    
    .classify li {
        float: none !important;
        margin: 0 10px !important;
    }
    
    .classify li a {
        font-size: 16px !important;
        padding: 8px 15px !important;
        border-radius: 5px !important;
    }
    
    /* 新闻容器 - 移除桌面端的负margin */
    .news-tabs,
    .news-box {
        width: 100% !important;
        margin: 0 !important;  /* 移除 -10px */
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* 新闻项 - 覆盖 style.css */
    .news-item {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        display: block !important;
        margin: 0 0 20px 0 !important;
        padding: 10px 12px !important;
        box-sizing: border-box !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        border-radius: 8px !important;
    }
    
    .h-news .news-item {
        width: 100% !important;
        margin: 0 0 20px 0 !important;
        padding: 10px 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        border-radius: 8px !important;
    }
    
    /* 新闻图片容器 */
    .news-item .pic {
        width: 100% !important;
        height: auto !important;
        min-height: 150px !important;
        margin-bottom: 15px !important;
        overflow: hidden !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .news-item .pic img {
        width: 100% !important;
        max-width: 100% !important;
        height: 150px !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* 新闻内容 */
    .news-item .cont {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .news-item .tit {
        font-size: 16px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        color: #333 !important;
    }
    
    .news-item .des {
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: #666 !important;
        height: auto !important;
        overflow: hidden !important;
    }
    
    .news-item .more-box {
        margin-top: 10px !important;
        font-size: 13px !important;
        color: #999 !important;
    }
    
    /* ========== 合作伙伴 ========== */
    
    .sec-partner {
        padding: 30px 0 !important;
    }
    
    .section-title03 h3 {
        font-size: 24px !important;
    }
    
    .h-partner {
        width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }
    
    .partner-slide {
        width: 100% !important;
        position: static !important;
        overflow: visible !important;
    }
    
    .partner-slide ul {
        display: flex !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        left: 0 !important;
        position: static !important;
    }
    
    .partner-slide ul li {
        flex: 0 0 50% !important;
        width: 50% !important;
        padding: 10px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        float: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;  /* 移除桌面端的 24px */
        margin-left: 0 !important;
    }
    
    .partner-slide ul li a img {
        max-width: 100% !important;
        height: auto !important;
        max-height: 60px !important;
        margin: 0 auto !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* 隐藏左右箭头 */
    .arrow-left,
    .arrow-right {
        display: none !important;
    }
    
    /* ========== 图片通用 ========== */
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* ========== 文字大小调整 ========== */
    
    h1 { font-size: 28px !important; line-height: 1.3 !important; }
    h2 { font-size: 24px !important; line-height: 1.3 !important; }
    h3 { font-size: 20px !important; line-height: 1.3 !important; }
    h4 { font-size: 18px !important; line-height: 1.3 !important; }
    h5 { font-size: 16px !important; line-height: 1.3 !important; }
    h6 { font-size: 14px !important; line-height: 1.3 !important; }
    
    p { font-size: 14px !important; line-height: 1.6 !important; }
    
    /* ========== 按钮和链接触摸优化 ========== */
    
    a, button, input[type="button"], input[type="submit"] {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 10px 15px !important;
        display: inline-block !important;
    }
    
    /* ========== Section 通用 ========== */
    
    .section {
        width: 100% !important;
        overflow: hidden !important;
        padding: 30px 0 !important;
    }
    
    /* 给section之间添加间距 */
    .sec-project,
    .sec-news,
    .sec-partner {
        margin-top: 20px !important;
        padding: 30px 0 !important;
    }
    
    /* ========== 幻灯片缩略图区域美化 ========== */

@media (max-width: 768px) {
    /* 外层容器 */
    #projectSlide .smallBg {
        width: 100% !important;
        padding: 20px 15px !important;
        background: #fff !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        margin-top: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* 滚动容器 */
    #projectSlide .smallScroll {
        width: 100% !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* 图片容器 */
    #projectSlide .smallImg {
        overflow: hidden !important;
        width: 100% !important;
    }
    
    /* 缩略图项 */
    #projectSlide .smallImg li {
        float: left !important;
        width: calc(25% - 10px) !important;
        height: auto !important;
        margin: 0 5px !important;
        cursor: pointer !important;
        overflow: hidden !important;
        border-radius: 6px !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }
    
    /* 图片链接 */
    #projectSlide .smallImg li a {
        display: block !important;
        border: 2px solid transparent !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        border-radius: 4px !important;
    }
    
    /* 缩略图 */
    #projectSlide .smallImg li img {
        width: 100% !important;
        height: 80px !important;
        object-fit: cover !important;
        transition: all 0.5s ease !important;
        display: block !important;
    }
    
    /* 激活和悬停状态 */
    #projectSlide .smallImg li.on a,
    #projectSlide .smallImg li:hover a {
        border-color: #D2232A !important;
        box-shadow: 0 0 0 2px rgba(210,35,42,0.2) !important;
    }
    
    #projectSlide .smallImg li:hover img {
        transform: scale(1.1) !important;
    }
    
    /* 前后箭头 - 移动端隐藏 */
    #projectSlide .sPrev,
    #projectSlide .sNext {
        display: none !important;
    }
    
    /* 调整tempWrap样式 */
    #projectSlide .smallImg .tempWrap {
        width: 100% !important;
    }
    
    #projectSlide .smallImg ul {
        width: auto !important;
        left: 0 !important;
    }
}

/* 小屏幕手机优化 */
@media (max-width: 576px) {
    #projectSlide .smallImg li {
        width: calc(33.333% - 8px) !important;
        margin: 0 4px !important;
    }
    
    #projectSlide .smallImg li img {
        height: 70px !important;
    }
}

/* 超小屏幕手机优化 */
@media (max-width: 480px) {
    #projectSlide .smallBg {
        padding: 15px 10px !important;
    }
    
    #projectSlide .smallImg li {
        width: calc(50% - 6px) !important;
        margin: 0 3px !important;
        margin-bottom: 8px !important;
    }
    
    #projectSlide .smallImg li img {
        height: 90px !important;
    }
}

/* ========== 清除浮动 ========== */

.clearfix::after,
.clearfix::before {
    display: table !important;
    content: " " !important;
}

.clearfix::after {
        clear: both !important;
    }
    
    /* ========== 项目卡片文字颜色优化 ========== */
    
    /* 卡片容器样式优化 */
    .cont {
        color: white !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    /* 标题文字颜色 */
    .cont .tit {
        color: white !important;
    }
    
    /* 描述文字颜色 */
    .cont .des {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    /* 查看详情文字颜色 */
    .cont .more-box {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    /* 查看详情按钮图标颜色 */
    .cont .more-box .btn-more {
        background-color: rgba(255, 255, 255, 0.8) !important;
        color: white !important;
    }
    
    /* 查看详情文字 */
    .cont .more-box span {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    /* 悬停效果 */
    .cont .more-box:hover {
        color: white !important;
    }
    
    .cont .more-box:hover span {
        color: white !important;
    }
    
    /* ========== 禁用一些桌面端特效 ========== */
    
    .wow {
        animation: none !important;
        -webkit-animation: none !important;
        visibility: visible !important;
    }
}

/* ========== 小屏幕手机（≤576px） ========== */
@media (max-width: 576px) {
    
    /* Banner高度更小 */
    .sec-first {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
    
    /* 字体进一步缩小 */
    #homeBanner .cont .ban-tit {
        font-size: 20px !important;
    }
    
    #homeBanner .cont .ban-text {
        font-size: 14px !important;
    }
    
    #homeBanner .article {
        padding: 10px !important;
    }
    
    /* Padding调整 */
    .container {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
    
    .section {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
    
    .col-4 {
        padding: 10px 4px !important;
        margin-bottom: 15px !important;
    }
    
    .h-project-item {
        padding: 4px !important;
        margin-bottom: 15px !important;
    }
    
    .news-item {
        padding: 8px 10px !important;
        margin-bottom: 15px !important;
    }
    
    /* 标题字体 */
    h1 { font-size: 24px !important; }
    h2 { font-size: 20px !important; }
    h3 { font-size: 18px !important; }
    
    .section-title h1,
    .section-title h3 {
        font-size: 20px !important;
    }
    
    /* 合作伙伴 - 3列 */
    .partner-slide ul li {
        flex: 0 0 33.333% !important;
        width: 33.333% !important;
    }
}

/* ========== 超小屏幕手机（≤480px） ========== */
@media (max-width: 480px) {
    
    /* Banner最小高度 */
    .sec-first {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
    
    #homeBanner ul li .figure {
        height: 250px !important;
    }
    
    /* 字体最小 */
    #homeBanner .cont .ban-tit {
        font-size: 18px !important;
    }
    
    #homeBanner .cont .ban-text {
        font-size: 13px !important;
    }
    
    /* 最小padding */
    .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    .section {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
    
    .col-4 {
        padding: 8px 3px !important;
    }
    
    .h-project-item {
        padding: 3px !important;
    }
    
    .news-item {
        padding: 6px 8px !important;
    }
    
    /* 项目图片高度 */
    .h-project-item img {
        height: 180px !important;
    }
    
    /* 新闻图片高度 */
    .news-item .pic img {
        height: 200px !important;
    }
    
    .news-item .pic {
        min-height: 150px !important;
    }
}

/* ========== 最小屏幕（≤360px） ========== */
@media (max-width: 360px) {
    
    /* 确保最小宽度 */
    body {
        min-width: 320px !important;
    }
    
    /* Banner最小高度 */
    .sec-first {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
    
    /* 合作伙伴 - 2列 */
    .partner-slide ul li {
        flex: 0 0 50% !important;
        width: 50% !important;
    }
}
"" 
