/* 移动端响应式样式 - v3.0 - 全面响应式适配 */

/* 默认隐藏移动端元素 */
/* .mobile-menu-toggle,
.mobile-close,
.mobile-menu-title,
.mobile-overlay {
    display: none;
} */

/* 移动端首页图标 - 默认隐藏，只在移动端显示 */
.mobile-home-icon {
    display: none;
    color: #333;
    position: fixed;
    top: 50%;
    right: 4vw;
    z-index: 1001;
    padding: 2.5vw;
    transform: translateY(-50%);
    width: 6vw;
    height: 6vw;
    max-width: 24px;
    max-height: 24px;
}

/* 移动端快捷导航 - 默认隐藏，只在移动端显示 */
.mobile-quick-nav {
    display: none;
}

.mobile-home-icon svg {
    width: 6vw;
    height: 6vw;
    max-width: 24px;
    max-height: 24px;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    /* 为固定导航栏添加body顶部内边距 */
    body {
        padding-top: min(10vh, 50px) !important;
    }
    
    /* 详情页面使用header-v1时的特殊处理 */
    body:has(.header-v1) {
        padding-top: 80px !important;
    }
    
    /* 导航栏移动端适配 */
    .main-tabs-box {
        height: 10vh !important;
        max-height: 50px !important;
        min-height: 45px !important;
        padding: 0 5vw !important;
        box-sizing: border-box !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
    }
    
    .main-tabs-box img {
        margin: 0 !important;
        width: 30vw !important;
        max-width: 120px !important;
        min-width: 80px !important;
        height: auto !important;
        display: block !important;
    }
    
    /* 隐藏桌面端导航菜单 */
    .main-tabs {
        display: none !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 80vw !important;
        max-width: 300px !important;
        height: 100vh !important;
        background-color: #fff !important;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1) !important;
        z-index: 999 !important;
        padding: 6vh 5vw 3vh 5vw !important;
        box-sizing: border-box !important;
        transition: left 0.3s ease !important;
        overflow-y: auto !important;
        justify-content: flex-start !important;
    }
    
    /* 显示移动端菜单 */
    .main-tabs.show {
        left: 0 !important;
        display: flex !important;
    }
    
    /* 移动端菜单项样式 */
    .main-tabs .nav-item {
        margin: 0 !important;
        padding: 1.5vh 0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
        text-align: left !important;
        border-radius: 0 !important;
        width: 100% !important;
    }
    
    .main-tabs .nav-item:last-child {
        border-bottom: none !important;
    }
    
    .main-tabs .nav-active {
        border-bottom: 1px solid #e0e0e0 !important;
        background-color: transparent !important;
        border-radius: 0 !important;
        padding: 1.5vh 0 !important;
        margin: 0 !important;
    }
    
    .main-tabs .nav-item a {
        font-size: 4.5vw !important;
        font-weight: bold !important;
        color: #333 !important;
        text-decoration: none !important;
        display: block !important;
        padding: 0.5vh 0 !important;
    }
    
    .main-tabs .nav-active a {
        color: #274AFF !important;
        font-weight: bold !important;
    }
    
    /* 移动端汉堡菜单按钮 */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        position: absolute !important;
        left: 4vw !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 6vw !important;
        height: 6vw !important;
        max-width: 24px !important;
        max-height: 24px !important;
        cursor: pointer !important;
        z-index: 997 !important;
        margin: 0 !important;
        padding: 2.5vw !important;
    }
    
    .mobile-menu-toggle img {
        display: block !important;
        width: 3vw !important;
        height: 3vw !important;
        max-width: 24px !important;
        max-height: 24px !important;
        object-fit: contain !important;
        transition: 0.3s !important;
        margin-left: -6vw !important;
        margin-top: -0.5vh !important;
    }
    
    /* 导航菜单打开时隐藏菜单按钮 */
    body:has(.main-tabs.show) .mobile-menu-toggle {
        display: none !important;
    }
    
    /* 移动端遮罩层 */
    .mobile-overlay {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-color: rgba(0, 0, 0, 0.5) !important;
        z-index: 998 !important;
        transition: opacity 0.3s ease !important;
    }
    
    .mobile-overlay.show {
        display: block !important;
    }
    
    /* 移动端菜单标题 */
    .mobile-menu-title {
        display: block !important;
        font-size: 18px !important;
        font-weight: bold !important;
        margin: 5px 0 -15px !important;
        text-align: center !important;
    }
    
    /* 显示首页图标 */
    .mobile-home-icon {
        display: block !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        padding: 10px !important;
    }
    
    /* 添加返回箭头在导航顶部 */
    .nav-back-arrow {
        display: block !important;
        position: absolute !important;
        top: 15px !important;
        left: 15px !important;
        width: 24px !important;
        height: 24px !important;
        cursor: pointer !important;
        z-index: 1001 !important;
    }
    
    .nav-back-arrow:before {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        left: 5px !important;
        width: 14px !important;
        height: 14px !important;
        border-left: 2px solid #333 !important;
        border-bottom: 2px solid #333 !important;
        transform: translateY(-50%) rotate(45deg) !important;
    }
    
    /* 汉堡菜单动画效果 */
    /* 导航图标点击效果 */
    .mobile-menu-toggle.active img {
        transform: scale(0.9) !important;
        opacity: 0.7 !important;
    }
    
    /* 移动端导航触摸优化 */
    .mobile-menu-toggle:active {
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    /* 移动端菜单项触摸效果 */
    .main-tabs .nav-item:active {
        background-color: #f5f5f5 !important;
    }
    
    /* 滚动条优化 */
    .main-tabs::-webkit-scrollbar {
        width: 4px !important;
    }
    
    .main-tabs::-webkit-scrollbar-track {
        background: #f1f1f1 !important;
    }
    
    .main-tabs::-webkit-scrollbar-thumb {
        background: #ccc !important;
        border-radius: 2px !important;
    }
    
    .main-tabs::-webkit-scrollbar-thumb:hover {
        background: #999 !important;
    }
    
    /* 轮播图移动端适配 */
    #swiper-box {
        width: 100%;
        padding: 0;
        overflow: hidden;
        background-color: #f0f8ff;
    }
    
    .swiper {
        width: 100%;
        height: auto;
        min-height: auto;
        padding-bottom: 0px;
        overflow: hidden;
    }
    
    .swiper-wrapper {
        width: 100%;
        height: 100%;
    }
    
    .swiper-slide {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }
    
    .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    /* 轮播图分页器样式 */
    .swiper-pagination {
        bottom: 10px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(0, 0, 0, 0.2);
        margin: 0 4px;
    }
    
    .swiper-pagination-bullet-active {
        width: 16px;
        border-radius: 4px;
        background: #274AFF;
    }
    
    /* 移动端快捷导航样式 */
    .mobile-quick-nav {
        display: flex !important;
        justify-content: space-around;
        align-items: center;
        padding: 0vh 2vw;
        background-color: transparent;
        margin: 0;
    }
    
    .mobile-quick-nav .nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .mobile-quick-nav .nav-item a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #333;
        padding: 1vw;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-quick-nav .nav-item a:hover {
        color: #274AFF;
    }
    
    /* 圆形图标容器 */
    .mobile-quick-nav .nav-item .icon-container {
        width: 15vw;
        height: 15vw;
        max-width: 60px;
        max-height: 60px;
        min-width: 45px;
        min-height: 45px;
        background-color: #4AA4EA;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5vw;
        box-shadow: 0 4px 12px rgba(74, 164, 234, 0.3);
        transition: all 0.3s ease;
    }
    
    .mobile-quick-nav .nav-item:hover .icon-container,
    .mobile-quick-nav .nav-item.active .icon-container {
        background-color: #274AFF;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(39, 74, 255, 0.4);
    }
    
    .mobile-quick-nav .nav-item img {
        width: 8vw;
        height: 8vw;
        max-width: 32px;
        max-height: 32px;
        min-width: 24px;
        min-height: 24px;
        object-fit: contain;
        filter: brightness(0) invert(1); /* 将图标变为白色 */
    }
    
    .mobile-quick-nav .nav-item span {
        font-size: 3vw;
        max-font-size: 14px;
        min-font-size: 10px;
        font-weight: 500;
        color: #333;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    /* 小屏幕设备优化 */
    @media screen and (max-width: 480px) {
        .mobile-quick-nav {
            padding: 3vh 1vw;
        }
        
        .mobile-quick-nav .nav-item .icon-container {
            width: 12vw;
            height: 12vw;
            max-width: 50px;
            max-height: 50px;
            min-width: 40px;
            min-height: 40px;
            margin-bottom: 1vw;
        }
        
        .mobile-quick-nav .nav-item img {
            width: 6vw;
            height: 6vw;
            max-width: 26px;
            max-height: 26px;
            min-width: 20px;
            min-height: 20px;
        }
        
        .mobile-quick-nav .nav-item span {
            font-size: 2.5vw;
            max-font-size: 12px;
            min-font-size: 9px;
        }
    }
    
    /* 核心业务移动端适配 */
    .core-business {
        height: auto;
        min-height: auto;
        padding: 0 5vw;
    }
    
    .core-business .business-title {
        font-size: 7vw;
        padding-top: 5vh;
        margin-bottom: 7.5vh;
        display: none;
    }
    
    .core-business .business-item-box {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 3.75vh;
        padding-top: 3.75vh;
        margin-left: -5.0vw;
    }
    
    .core-business .business-item {
        height: 30vh;
        max-height: 150px;
        min-height: 100px;
        margin: 0 1.25vw;
        border-radius: 0;
    }
    
    .core-business .business-item .index {
        font-size: 15vw;
        /* max-font-size: 60px; */
        top: 1.5vh;
        left: 5vw;
    }
    
    .core-business .business-item .title {
        font-size: 3.5vw;
        bottom: 3.5vh;
        left: 1.2vw;
    }
    
    .core-business .business-item .content {
        font-size: 3.5vw;
        bottom: 0.5vh;
        left: 1.2vw;
    }
    
    .core-business .business-item img {
        width: 10vw;
        height: 10vw;
        max-width: 40px;
        max-height: 40px;
        right: 5vw;
        bottom: 10vh;
    }
    
    /* 移动端触摸友好的交互 - 已禁用所有动效 */
    .core-business .business-item:hover {
        background: linear-gradient(to bottom right, #E1F1FF, #FFF, #E8F9FF) !important;
        color: inherit !important;
    }
    
    .core-business .business-item:hover .content-show {
        visibility: hidden !important;
    }
    
    .core-business .business-item:hover .title {
        font-size: 3.5vw !important;
        bottom: 3.5vh !important;
        left: 1.2vw !important;
        color: inherit !important;
    }
    
    .core-business .business-item:hover .content {
        visibility: visible !important;
        font-size: 3.5vw !important;
        bottom: 0.5vh !important;
        left: 1.2vw !important;
    }
    
    .core-business .business-item:hover .index {
        visibility: visible !important;
    }
    
    /* 产品服务移动端适配 */
    .product-service {
        padding: 10px 20px;
        overflow: visible !important;
    }
    
    .product-service .img-box {
        width: 100%;
        height: 180px;
        border-radius: 0;
        left: -20px;
        top: 0;
        background-color: #F1F6FF;
        position: relative;
        overflow: visible;
        margin-top: 16px !important;
        text-align: center !important;
    }
    
    .product-service .img-box .box {
        /* width: 100% !important;
        height: 200px !important; */
        margin-left: 15px !important;
        background-size: contain !important;
        /* background-position: center; */  
        position: relative !important; /* 确保position属性存在 */
        background-repeat: no-repeat !important; /* 防止背景图重复 */
        transform: translateY(0) !important; /* 恢复正常位置 */
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        overflow: visible !important; /* 确保机器人完整显示 */
        margin-top: 24px !important;
    }
    
    .product-service .img-box .box .robot {
        width: 80px;
        height: 100px;
        top: -6px;
        left: 11%;
        transform: translateX(-50%);
        position: absolute;
    }
    
    .product-service .img-box .box .light {
        width: 80px;
        height: 96px;
        /* top: 25px; */
        left: 12%;
        transform: translateX(-50%);
        position: absolute;
    }
    
    .product-service .product {
        height: 152px;
        min-height: auto;
        padding: 20px;
        text-align: center;
        position: relative; /* 确保position属性存在 */
        background-color: transparent; /* 确保背景透明 */
    }
    
    .product-service .product-content,
    .product-service .product-content *,
    .product-service .product-content::before,
    .product-service .product-content::after {
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        /* background-color: transparent !important; */
    }
    
    /* 移除产品内容中所有span元素的背景色 */
    .product-service .product .product-content p span {
        background-color: transparent !important;
    }
    
    .product-service .product-content {
        position: relative !important;
        top: -160px !important;
        left: calc(40% - 10vw) !important;
        width: 55% !important;
        margin-top: 0 !important;
        max-width: none !important;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 7.5px;
        padding: 15px;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        border: 1px solid #274AFF;
        text-align: center !important;
    }

    /* 桌面端不显示直角矩形 - 加强隐藏 */
    .product-service .product-content::before,
    .product-service .product .product-content::before {
        display: none !important;
        content: none !important;
        background: none !important;
        width: 0 !important;
        height: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* 确保文字在直角矩形上方 */
    .product-service .product-content p {
        position: relative;
        z-index: 2;
    }
    .product-service .product .product-content {
        margin-top: 4% !important;
    }

    .product-service .product{
        margin-bottom: -70px !important;
    }
    
    .product-service .product-content p {
        font-size: 1.5vw !important;
        line-height: 0.8 !important;
        margin-bottom: 0.3vw !important;
        text-align: left !important;
        margin-top: -1vw !important;
    }
    
        .product-service .product-content p:not(:first-child) span {
        font-size: 1.8vw !important;
        line-height: 0.8 !important;
    }
    
    .product-service .product-content p:first-child {
        font-size: 3.2vw !important;
        line-height: 1.0 !important;
        margin-bottom: 1vw !important;
        text-align: left !important;
    }
    
    .product-service .product-content p:first-child span {
        font-size: 3.2vw !important;
        line-height: 1.0 !important;
    }
    
    /* 调整描述文字内部的行间距 */
    .product-service .product-content p:nth-child(2) {
        line-height: 0.8 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        font-size: 1.8vw !important;
    }
    
    .product-service .product-content p:nth-child(2) span {
        line-height: 0.8 !important;
        white-space: nowrap !important;
        font-size: 1.8vw !important;
    }
    
    .product-service .service {
        height: calc(200px - 30px);
        min-height: 170px;
        padding: 15px;
        flex-direction: column;
        transform: translateY(-120px);
        margin-bottom: -120px;
        margin-left: -20px;
        overflow: visible;
    }
    
    /* 更大屏幕的调整 */
    @media screen and (min-width: 480px) and (max-width: 768px) {
        .product-service .product-content p:first-child {
            font-size: 3.2vw !important;
        }
        .product-service .product-content p:first-child span {
            font-size: 3.2vw !important;
        }
        .product-service .product-content p:nth-child(2) {
            font-size: 1.8vw !important;
        }
        .product-service .product-content p:nth-child(2) span {
            font-size: 1.8vw !important;
        }
        .product-service .product-content p:not(:first-child) span {
            font-size: 1.8vw !important;
        }
        
        /* Service content 字体缩小 */
        .product-service .service .service-content span[style*="font-size: 40px"] {
            font-size: 3.5vw !important;
        }
        
        .product-service .service .service-content span[style*="font-size: 20px"] {
            font-size: 2vw !important;
        }
        
        /* Service content 蓝色卡片样式，挡住右边图标 */
        .product-service .service .service-content {
            background-color: #3A78DF !important;
            color: #ffffff !important;
            border-radius: 6px !important;
            padding: 18px 25px !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
            margin-left: -20px !important;
            width: 80% !important;
            position: relative !important;
            z-index: 10 !important;
        }
        
        /* 确保service-content内的文字颜色为白色 */
        .product-service .service .service-content p,
        .product-service .service .service-content span {
            color: #ffffff !important;
        }
    }

    /* 小屏幕的调整 */
    @media screen and (max-width: 480px) {
        .product-service .product-content {
            width: 60% !important;
            height: 80px !important;
            left: calc(35% - 15vw) !important;
            top: -200px !important;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 15px;
            box-shadow: none !important;
            -webkit-box-shadow: none !important;
            -moz-box-shadow: none !important;
            border: 1px solid #274AFF;
        }
        .product-service .product-content p:first-child {
            font-size: 4.5vw !important;
        }
        .product-service .product-content p:first-child span {
            font-size: 4.5vw !important;
        }
        .product-service .product-content p:nth-child(2) {
            font-size: 2.3vw !important;
        }
        .product-service .product-content p:nth-child(2) span {
            font-size: 2.3vw !important;
        }
        .product-service .product-content p:not(:first-child) span {
            font-size: 2.3vw !important;
        }
        
        /* Service content 字体缩小 */
        .product-service .service .service-content span[style*="font-size: 40px"] {
            font-size: 4.5vw !important;
        }
        
        .product-service .service .service-content span[style*="font-size: 20px"] {
            font-size: 2.8vw !important;
        }
        
            /* Service content 蓝色卡片样式，挡住右边图标 */
    .product-service .service .service-content {
        background-color: #3A78DF !important;
        color: #ffffff !important;
        border-radius: 6px !important;
        padding: 15px 20px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
        margin-left: -15px !important;
        width: 80% !important;
        position: relative !important;
        z-index: 10 !important;
        text-align: center !important;
    }
        
        /* 确保service-content内的文字颜色为白色 */
        .product-service .service .service-content p,
        .product-service .service .service-content span {
            color: #ffffff !important;
        }
    }

    .product-service .service .service-container {
        width: 100%;
        height: auto;
        margin: 0;
        margin-bottom: 30px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 20px;
        position: relative;
    }
    
    /* 只对没有内联样式的段落设置默认字体大小 */
    .product-service .service .service-content .service-text-box p {
        line-height: 1.2;
        margin: 5px 0;
    }
    
    /* 对于没有内联font-size的span，设置默认大小 */
    .product-service .service .service-content .service-text-box p span:not([style*="font-size"]) {
        font-size: 12px !important;
    }
    
    /* 针对描述文字，覆盖内联的20px样式 */
    .product-service .service .service-content .service-text-box p span[style*="font-size: 20px"] {
        font-size: 8px !important;
    }
    
    /* 针对标题文字，覆盖内联的40px样式 */
    .product-service .service .service-content .service-text-box p span[style*="font-size: 40px"] {
        font-size: 12px !important;
    }
    
    /* Service标题样式 */
    .product-service .service-title {
        font-size: 20px !important;
    }
    
    .product-service .service .service-content .service-text-box {
        border: 1px solid #ffffff;
        border-radius: 15px;
        padding: 10px 20px;
        margin: 12px 0 20px -45px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        width: 82%;
        max-width: 380px;
        text-align: center;
        position: relative;
        z-index: 2;
        height: auto;
        min-height: 80px;
    }
    
    /* 确保service-content区域的所有文字都缩小 */
    .product-service .service .service-content {
        font-size: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 12px !important;
        padding: 15px 20px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .product-service .service .service-content p {
        font-size: 12px !important;
    }
    
    .product-service .service .service-content span {
        font-size: inherit !important;
    }
    
    .product-service .service .service-img {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        margin: 0;
        z-index: 1;
    }
    
    .product-service .service .service-img .box {
        width: 160px;
        height: 160px;
        margin: 0;
        transform: scale(0.7);
        transform-origin: center;
        position: relative;
    }
    
    .product-service .service .service-img .box .rice,
    .product-service .service .service-img .box .flashlight {
        width: 120px;
        height: 160px;
        top: -30px;
        left: 25px;
    }
    
    .product-service .service .service-img .box .ball {
        left: 10px;
        top: 40px;
        animation: animX-mobile 9s cubic-bezier(0.36, 0, 0.64, 1) -4.5s infinite alternate,
                   animY-mobile 9s cubic-bezier(0.36, 0, 0.64, 1) 0s infinite alternate,
                   scale-mobile 18s cubic-bezier(0.36, 0, 0.64, 1) 0s infinite alternate;
    }
    
    /* 移动端球体动画关键帧 - 减少运动范围 */
    @keyframes animX-mobile {
        0% { left: 10px; }
        100% { left: 150px; }
    }
    
    @keyframes animY-mobile {
        0% { top: 60px; }
        100% { top: 145px; }
    }
    
    @keyframes scale-mobile {
        0% { transform: scale(0.5); }
        50% { transform: scale(0.8); }
        100% { transform: scale(0.5); }
    }
    
    /* 统计数据移动端适配 - 横向排列 */
    .statistics-box .statistics,
    .statistics {
        width: 98%;
        height: 8vh;
        min-height: 60px;
        flex-direction: row;
        padding: 0 1vw;
        gap: 0;
        border-radius: 0px;
        background-color: #274AFF;
        justify-content: space-between;
        align-items: center;
        margin-left: -2vh;
        margin-top: 1.5vh;
    }
    
    .statistics-box .statistics-item,
    .statistics .statistics-item {
        width: 18%;
        text-align: center;
        padding: 1vh 0;
        flex-shrink: 0;
    }
    
    /* .statistics-box .statistics-item .label p {
        margin: 0 !important;
        line-height: 1.2 !important;
    } */
    
    /* 重置所有文字样式，强制统一 */
    .statistics-box .statistics-item .label p,
    .statistics-box .statistics-item .label p *,
    .statistics-box .statistics-item .label p span,
    .statistics-box .statistics-item .label p span span,
    .statistics .statistics-item .label p,
    .statistics .statistics-item .label p *,
    .statistics .statistics-item .label p span,
    .statistics .statistics-item .label p span span {
        font-size: 2.5vw !important; /* 从2.5vw减少到一半 */
        font-weight: normal !important;
        color: #fff !important;
        display: inline !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* 重新定义p标签的基础样式 */
    .statistics-box .statistics-item .label p,
    .statistics .statistics-item .label p {
        text-align: center !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    /* 只针对数字部分设为大号字体 */
    /* 第1项：3项 - 需要特殊处理 */
    .statistics-box .statistics-item:nth-child(1) .label p:first-child span {
        font-size: 3.5vw !important;
        font-weight: bold !important;
    }
    .statistics-box .statistics-item:nth-child(1) .label p:first-child span span {
        font-size: 2.5vw !important;
        font-weight: normal !important;
    }
    
    /* 第2-4项：28项、2项、5项 - 只有数字变大 */
    .statistics-box .statistics-item:nth-child(2) .label p span span:first-child {
        font-size: 3.5vw !important;
        font-weight: bold !important;
    }
    
    .statistics-box .statistics-item:nth-child(3) .label p span span:first-child {
        font-size: 3.5vw !important;
        font-weight: bold !important;
    }
    
    .statistics-box .statistics-item:nth-child(4) .label p span span:first-child {
        font-size: 3.5vw !important;
        font-weight: bold !important;
    }
    
    /* 第5项：1项 - 让"1"和"项"在第一行，"团体标准"在第二行 */
    .statistics-box .statistics-item:nth-child(5) .label p span:nth-child(1) {
        font-size: 3.5vw !important;
        font-weight: bold !important;
        margin-right: 0.5vw !important;
        display: inline-block !important;
        margin-bottom: 0.5vh !important;
    }
    .statistics-box .statistics-item:nth-child(5) .label p span:nth-child(1)::after {
        content: "项" !important;
        font-size: 2.5vw !important;
        font-weight: normal !important;
        margin-left: 0.5vw !important;
    }
    .statistics-box .statistics-item:nth-child(5) .label p span:nth-child(2) {
        display: none !important;
    }
    
    /* 确保第5项的br标签有效，让团体标准换行，并增加间距 */
    .statistics-box .statistics-item:nth-child(5) .label p br {
        display: block !important;
        margin-bottom: 0.5vh !important;
    }
    
    /* 强制前4项的br标签不换行，改为小间距 */
    .statistics-box .statistics-item:nth-child(1) .label br,
    .statistics-box .statistics-item:nth-child(2) .label br,
    .statistics-box .statistics-item:nth-child(3) .label br,
    .statistics-box .statistics-item:nth-child(4) .label br {
        display: none !important;
    }
    
    /* 第二行描述文字 */
    .statistics-box .statistics-item .label p:last-child {
        margin-top: 0.5vh !important;
        display: block !important;
    }
    
    .statistics-box .statistics-item .label p:last-child span {
        font-size: 2.2vw !important;
        /* display: block !important; */
    }
    
    /* 第2项特殊处理：软著在同一个span内 */
    .statistics-box .statistics-item:nth-child(2) .label p span span:last-child {
        font-size: 2.2vw !important;
        display: block !important;
        margin-top: 0.5vh !important;
    }
    
    .statistics-box .statistics-top {
        height: 8vh;
        min-height: auto;
        padding: 10vh 5vw;
        flex-direction: row;
        background-color: white;
        align-items: center;
        margin-left: -2vh;
    }
    
    .statistics-box .statistics-top .box {
        width: 50px;
        height: 50px;
        max-width: 75px;
        max-height: 75px;
        margin-right: 3vw;
        margin-bottom: 0;
    }
    
    /* 移动端专用样式 - 头部元素 */
    .statistics-box .statistics-top .box .head {
        width: 8.67vw;  /* 40px ÷ 375px × 100 = 10.67vw */
        height: 4.4vh;   /* 48px ÷ 750px × 100 = 6.4vh */
        position: absolute;
        top: 9.9vh;    /* 100px ÷ 750px × 100 = 13.33vh */
        left: 9.8vw;   /* 110px ÷ 375px × 100 = 29.33vw */
        transform-origin: 50% 100%;
        animation: init 12s infinite;
        /* background-image: url('/upload/1/cms/content/rt.svg'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 2;
    }
    
    /* 移动端专用样式 - 中心支撑元素 */
    .statistics-box .statistics-top .box .l0 {
        width: 10.8vw;   /* 48px ÷ 375px × 100 = 12.8vw */
        height: 9.67vh; /* 80px ÷ 750px × 100 = 10.67vh */
        position: absolute;
        top: 6.2vh;     /* 26px ÷ 750px × 100 = 3.47vh */
        left: 9.7vw;   /* 80px ÷ 375px × 100 = 21.33vw */
        transform-origin: 50% 100%;
        background-image: url('/upload/1/cms/content/zd.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 2;
    }
    
    /* 移动端专用样式 - 流光线条1 */
    .statistics-box .statistics-top .box .l1 {
        width: 6.8vw;   /* 48px ÷ 375px × 100 = 12.8vw */
        height: 5.67vh; /* 80px ÷ 750px × 100 = 10.67vh */
        position: absolute;
        top: 4vh;    /* -34px ÷ 750px × 100 = -4.53vh */
        left: 11.33vw;   /* 110px ÷ 375px × 100 = 29.33vw */
        transform-origin: 50% 100%;
        background-image: url('/upload/1/cms/content/l1.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 3;
        animation: appear-disappear 3s infinite;
    }
    
    /* 移动端专用样式 - 流光线条2 */
    .statistics-box .statistics-top .box .l2 {
        width: 5.8vw;   /* 48px ÷ 375px × 100 = 12.8vw */
        height: 4.67vh; /* 80px ÷ 750px × 100 = 10.67vh */
        position: absolute;
        top: 6.9vh;      /* 21px ÷ 750px × 100 = 2.8vh */
        left: 3.8vw;       /* 15px ÷ 375px × 100 = 4vw */
        transform-origin: 50% 100%;
        background-image: url('/upload/1/cms/content/l2.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 3;
        animation: appear-disappear 4s infinite;
    }
    
    /* 移动端专用样式 - 流光线条3 */
    .statistics-box .statistics-top .box .l3 {
        width: 5.8vw;   /* 48px ÷ 375px × 100 = 12.8vw */
        height: 4.67vh; /* 80px ÷ 750px × 100 = 10.67vh */
        position: absolute;
        top: 11.13vh;    /* 121px ÷ 750px × 100 = 16.13vh */
        left: 4.67vw;    /* 25px ÷ 375px × 100 = 6.67vw */
        transform-origin: 50% 100%;
        background-image: url('/upload/1/cms/content/l3.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 3;
        animation: appear-disappear 5s infinite;
    }
    
    /* 移动端专用样式 - 流光线条4 */
    .statistics-box .statistics-top .box .l4 {
        width: 5.8vw;   /* 48px ÷ 375px × 100 = 12.8vw */
        height: 4.67vh; /* 80px ÷ 750px × 100 = 10.67vh */
        position: absolute;
        top: 11.8vh;     /* 126px ÷ 750px × 100 = 16.8vh */
        left: 20vw;   /* 200px ÷ 375px × 100 = 53.33vw */
        transform-origin: 50% 100%;
        background-image: url('/upload/1/cms/content/l4.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 3;
        animation: appear-disappear 6s infinite;
    }
    
    /* 移动端专用样式 - 流光线条5 */
    .statistics-box .statistics-top .box .l5 {
        width: 5.8vw;   /* 48px ÷ 375px × 100 = 12.8vw */
        height: 4.67vh; /* 80px ÷ 750px × 100 = 10.67vh */
        position: absolute;
        top: 6.9vh;      /* 21px ÷ 750px × 100 = 2.8vh */
        left: 20vw;   /* 205px ÷ 375px × 100 = 54.67vw */
        transform-origin: 50% 100%;
        background-image: url('/upload/1/cms/content/l5.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 3;
        animation: appear-disappear 7s infinite;
    }
    
    .statistics-box .statistics-top .title-content {
        width: 90vw;
        height: 60px;
        text-align: left;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 10px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid #274AFF;
        margin-right: 8vw;
        margin-left: -8vw;
        /* margin-top: -80px; */
    }
    
    .statistics-box .statistics-top .title-content .content p,
    .statistics-box .statistics-top .title-content .content p span,
    .statistics-box .statistics-top .title-content .content p strong,
    .statistics-box .statistics-top .title-content .content p strong span {
        font-size: 8px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* 放大"自主区块链"字体 - 针对40px的span元素 */
    .statistics-box .statistics-top .title-content .content p strong span[style*="font-size: 40px"] {
        font-size: 14px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        display: inline !important;
        white-space: nowrap !important;
    }
    
    .statistics-box .statistics-top .title-content .content p strong span span[style*="font-size: 40px"] {
        font-size: 14px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        display: inline !important;
        white-space: nowrap !important;
    }
    
    /* 确保包含"自主区块链"的段落居中对齐 */
    .statistics-box .statistics-top .title-content .content p strong {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin-top: -16px !important;
        padding-top: 0 !important;
        margin-bottom: -8px !important;
        padding-bottom: 0 !important;
    }
    
    .statistics-box .statistics-bottom {
        height: 80px;
        min-height: auto;   
        padding: 40px 5vw;
        flex-direction: row;
        margin-left: -48px;
        background-color: white !important;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 10vh;
    }
    
    .statistics-box .statistics-bottom .box {
        width: 200px;
        height: 200px;
        transform: scale(0.7);
        position: relative;
        margin-left: 0;
        margin-top: 0;
        flex-shrink: 0;
    }
    
    /* 移动端图标整体缩放并居中，保持相对位置和动效 */
    .statistics-box .statistics-bottom .box {
        transform: scale(0.6) translateX(-50%) !important;
        transform-origin: center top !important;
        left: 13% !important;
        position: relative !important;
        top: 8vh !important;
    }
    
    .statistics-box .statistics-bottom .box .left-circle {
        animation: cir_p 5s linear 0s infinite !important;
        left: 60px !important;
        top: -30px !important;
    }
    
    .statistics-box .statistics-bottom .box .right-circle {
        animation: cir_p 5s linear 0s infinite !important;
        left: 60px !important;
        top: -30px !important;
    }
    
    .statistics-box .statistics-bottom .box .center-circle {
        animation: cir_p 5s linear 0s infinite !important;
        left: 40px !important;
        top: -20px !important;
    }
    
    .statistics-box .statistics-bottom .box .light {
        left: 38px !important;
        top: -55px !important;
    }
    
    .statistics-box .statistics-bottom .box .ball {
        left: 100px !important;
        top: 10px !important;
    }
    
    .statistics-box .statistics-bottom .title-content {
        width: 180%;
        height: auto;
        text-align: left;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 2px 9px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid #274AFF;
        margin-bottom: 20px;
        margin-left: -20%;
        margin-top: 16px;
    }
    
    .statistics-box .statistics-bottom .title-content .content p,
    .statistics-box .statistics-bottom .title-content .content p span {
        font-size: 9px !important;
        line-height: 1.2 !important;
    }
    
    /* 客户和合作伙伴移动端适配 */
    .custom .custom-title,
    .partner .partner-title {
        font-size: 3.5vw !important;
        padding: 5vh 0;
    }
    
    .custom img {
        width: 100% !important;
    }
    
    .partner .partner-content {
        width: 90%;
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: -5vh;
        padding: -5vh;
    }
    
    .partner .partner-content img {
        width: 20vw !important;
        margin-top: -10vh;
    }
    
    /* 动态移动端适配 - 每个动态内容独立的圆角矩形容器 */
    .trends {
        background: #FFFFFF;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    /* 每个动态项目都有独立的圆角矩形蓝色边框容器 */
    .trends .trends-item {
        display: flex;
        flex-direction: column;
        width: 90%;
        height: 42vh; /* 固定高度，不因内容改变 */
        border: 1px solid #4285f4;
        border-radius: 10px;
        overflow: hidden;
        background: #ffffff;
        text-decoration: none;
        color: inherit;
        box-shadow: 0 2px 8px rgba(66, 133, 244, 0.1);
        margin: 0.5vh 2.1vh;
    }
    
    .trends .trends-item img {
        width: 75%;
        height: 24vh;
        object-fit: cover;
        display: block;
        border-radius: 9px 9px 0 0;
        flex-shrink: 0;
        margin-top: 2vh;
        margin-bottom: 2vh;
        margin-left: 4.9vh;
    }
    
    .trends .trends-item .trends-content {
        display: flex;
        flex-direction: column;
        height: 160px; /* 增加内容区域高度，给标题更多空间 */
        padding: 15px;
        position: relative;
        overflow: hidden; /* 防止内容溢出 */
    }

    .trends .trends-item .trends-title {
        font-size: 18px; /* 稍微减小字体避免过大 */
        font-weight: bold;
        color: #333;
        line-height: 1.4;
        margin: 0 0 10px 0; /* 恢复底部间距 */
        background: #ffffff;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 56px; /* 增加标题高度：18px * 1.4 * 2行 ≈ 50px + 余量 */
        flex-shrink: 0; /* 防止收缩 */
        margin-left: 7.5vw; /* 减少左右边距 */
        margin-right: 7.5vw; /* 减少左右边距 */
    }
    .trends .trends-title{
        font-size: 2vh; /* 稍微减小字体避免过大 */
        margin-left: -3.5vw; /* 减少左右边距 */
        margin-top: -5vh; /* 减少左右边距 */
        margin-bottom: -3vh; /* 减少左右边距 */
    }
    
    .trends .trends-item .trends-box {
        display: flex;
        margin: 0 0 8px 0; /* 减少底部间距 */
        background: #ffffff;
        height: 22px; /* 稍微减少标签区域高度 */
        align-items: center;
        flex-shrink: 0; /* 防止收缩 */
        margin-left: 7.5vw; /* 与标题对齐，向右移动 */
        margin-right: -6vw; /* 与标题对齐 */
    }
    
    .trends .trends-item .trends-icon-one {
        font-size: 12px;
        color: #4285f4;
        background: #e8f0fe;
        padding: 4px 8px;
        border-radius: 6px;
        display: inline-block;
        margin-bottom: 8px;
    }
    
    .trends .trends-item .trends-text {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        background: #ffffff;
        height: 42px; /* 固定正文高度 */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-bottom: -8px; /* 减少底部间距 */
        flex-shrink: 0; /* 防止收缩 */
        margin-left: 7.5vw; /* 与标题对齐 */
        margin-right: 2vw; /* 与标题对齐 */
    }
    
    .trends .trends-item .trends-time {
        font-size: 12px;
        color: #999;
        text-align: left;
        background: #ffffff;
        height: 18px; /* 固定时间区域高度 */
        line-height: 18px;
        flex-shrink: 0; /* 防止收缩 */
        margin-left: 2vw; /* 与标题对齐 */
        margin-right: 2vw; /* 与标题对齐 */
    }

    .trends .more{
        margin-left: 35vw !important;
    }
    
    /* 移动端首页动态卡片宽度设置 */
    .trends .trends-content .trends-item {
        width:85% !important;
        /* margin: 0 auto !important; */
        left: -3.2vw !important;
    }
    .trends .trends-content .trends-item img{
        width: 75% !important;
        height: 24vh !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 9px 9px 0 0 !important;
    }
    
    /* 移动端首页动态区域只显示第一个动态项 */
    .trends .trends-content .trends-item:nth-child(n+2) {
        display: none !important;
    }
    
    /* 隐藏页脚的定位、理念等文本内容和logo */
    .foot .left .text-item {
        display: none !important;
    }
    
    .foot .left img {
        display: none !important;
    }
    
    /* 移动端页脚样式调整 */
    .foot {
        padding: 10px 20px 20px 20px !important;
        flex-direction: column !important;
        background: #f5f5f5 !important;
        position: relative !important;
        z-index: 1 !important;
        display: flex !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .foot .left {
        display: none; /* 隐藏左侧内容 */
    }
    
    .foot .right {
        width: 100% !important;
        margin-top: 0 !important;
        flex-direction: column !important;
        display: flex !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .foot .right .link {
        display: none; /* 隐藏快捷链接 */
    }
    
    /* 移动端联系方式白色直角矩形容器 */
    .foot .right .contact {
        width: 20vh !important;
        background: #ffffff !important;
        /* border: 1px solid #e0e0e0 !important; */
        border-radius: 0 !important; /* 直角矩形 */
        /* padding: 25px 20px !important;
        margin: 20px 15px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important; */
        position: relative !important;
        z-index: 3 !important;
        /* width: calc(100% - 30px) !important;
        display: block !important; */
        top: -10vh !important;
        left: -9vw !important;
    }
    
    /* 联系方式标题样式 - 居中显示 */
    .foot .right .contact .contact-text p:first-child {
        text-align: center !important;
        margin-bottom: 25px !important;
        padding: 0 !important;
        border-bottom: none !important;
    }
    
    .foot .right .contact .contact-text p:first-child strong span {
        font-size: 12px !important;
        font-weight: bold !important;
        color: #000000 !important;
    }
    
    /* 隐藏空行 */
    .foot .right .contact .contact-text p:nth-child(2) {
        display: none !important;
    }
    
    /* 联系方式内容区域 */
    .foot .right .contact .contact-text {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
        display: block !important;
        width: 100% !important;
        position: relative !important;
        z-index: 4 !important;
    }
    
    /* 联系电话和地址样式 - 左对齐 */
    .foot .right .contact .contact-text p:nth-child(3) {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 0 15px 0 !important;
        font-size: 9px !important;
        color: #000000 !important;
        line-height: 2.2 !important;
        text-align: left !important;
        border: none !important;
        margin-left: 17vw !important;
        margin-right: 17vw !important;
    }
    
    /* 联系电话和地址内的span样式 */
    .foot .right .contact .contact-text p:nth-child(3) span {
        font-size: 9px !important;
        color: #000000 !important;
        line-height: 2.2 !important;
        display: inline !important;
    }
    
    /* 公众号样式 - 左对齐 */
    .foot .right .contact .contact-text p:last-child {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 0 20px 0 !important;
        font-size: 9px !important;
        color: #000000 !important;
        line-height: 2.2 !important;
        text-align: left !important;
        border: none !important;
        margin-top: -1.5vh !important;
    }
    
    /* 公众号内的span样式 */
    .foot .right .contact .contact-text p:last-child span {
        font-size: 9px !important;
        color: #000000 !important;
        
        margin-left: 17vw !important;
    }
    
    /* 确保移动端联系方式正确显示 */
    @media screen and (max-width: 768px) {
        .foot .right .contact {
            background: #ffffff !important;
            /* 保留您设置的宽度 */
            width: 105% !important;
            top: -70px !important;
            left: -9vw !important;
            /* 其他样式 */
            border: none !important;
            border-radius: 0 !important;
            padding: 25px 20px !important;
            margin: 0 !important;
            box-shadow: none !important;
            position: relative !important;
            z-index: 3 !important;
        }
        
        .foot .right .contact .contact-text p:first-child strong span {
            font-size: 12px !important;
            color: #000000 !important;
            /* font-weight: bold !important; */
            margin-left: -50vw !important;
        }
        
        .foot .right .contact .contact-text p:nth-child(3) span {
            font-size: 9px !important;
            color: #000000 !important;
        }
        
        .foot .right .contact .contact-text p:last-child span {
            font-size: 9px !important;
            color: #000000 !important;
        }
    }
    
    /* 二维码图片样式 - 居中显示 */
    .foot .right .contact img {
        width: 60px !important;
        height: 60px !important;
        margin: 10px auto 0 auto !important;
        display: block !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        object-fit: contain !important;
        margin-left: 16vw !important;
    }
    
    
    /* 底部移动端适配 - 已合并到上面的样式中 */
    
    .foot .bottom-line {
        width: 105% !important;
        text-align: center;
        padding: 5vh;
        font-size: 2.0vw;
        margin-top: -90px !important;
        /* margin-bottom: 2vh !important; */
        color: #333333 !important;
        display: flex;
        flex-direction: column; /* 在移动端改为纵向排列 */
        align-items: center;
        flex-wrap: nowrap; /* 确保不会在同一行 */
    }
    
    /* 在移动端，底部链接块都是块级元素，不再是行内块 */
    .foot .bottom-line > div {
        display: block;
        margin: 5px 0;
        width: 100%;
    }
    
    /* 版权信息单独一行 */
    .foot .bottom-line .copyright-line {
        display: block;
        font-size: 2.0vw;
        color: #333333 !important;
        margin: 5px auto;
        text-align: center;
    }
    
    /* 备案信息并排一行 */
    .foot .bottom-line .beian-line {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 5px auto;
    }
    
    .foot .bottom-line .beian-line a {
        display: inline-block;
        font-size: 2.0vw;
        color: #333333 !important;
        margin: 0 5px;
        white-space: nowrap;
    }
    
    /* 政策链接并排一行 */
    .foot .bottom-line .policy-line {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: -2.3vh !important;
        /* margin: 5px auto; */
    }
    
    .foot .bottom-line .policy-line a {
        display: inline-block;
        font-size: 2.0vw;
        color: #333333 !important;
    }
}

/* 超小屏幕适配 */
@media screen and (max-width: 480px) {
    .core-business .business-item {
        height: 26vh;
        max-height: 105px;
        width: 47.5vw;
        max-width: 190px;
        border-radius: 0;
    }
    
    .core-business .business-item .index {
        font-size: 7.5vw;
    }
    
    .core-business .business-item .title {
        font-size: 3.0vw;
    }
    
    .core-business .business-item .content {
        font-size: 2vw;
    }
    
    .product-service .img-box .box {
        height: 37.5vh;
        max-height: 150px;
    }
    
    /* .product-service .img-box .box .robot,
    .product-service .img-box .box .light {
        width: 20vw;
        height: 25vh;
    } */
    
    .statistics-box .statistics-top .box,
    .statistics-box .statistics-bottom .box {
        width: 50.5vw;
        height: 50.5vh;
        max-width: 250px;
        max-height: 250px;
    }
    
    .partner .partner-content {
        grid-template-columns: 1fr;
    }
    
    /* Service content 蓝色卡片样式，挡住右边图标 */
    .product-service .service .service-content {
        background-color: #3A78DF !important;
        color: #ffffff !important;
        border-radius: 10px !important;
        padding: 12px 18px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
        margin-left: -10px !important;
        width: 55% !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* 确保service-content内的文字颜色为白色 */
    .product-service .service .service-content p,
    .product-service .service .service-content span {
        color: #ffffff !important;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .core-business .business-item {
        cursor: default;
        transition: none;
    }
    
    .core-business .business-item:active {
        transform: none;
    }
    
    .nav-item a:active {
        opacity: 0.7;
    }
    
    /* 移动端导航触摸优化 */
    .mobile-menu-toggle:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .main-tabs .nav-item:active {
        background-color: #f5f5f5;
        opacity: 0.8;
    }
}

/* 横屏模式优化 */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .core-business .business-item-box {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 10px;
        padding-top: 10px;
    }
    
    .swiper {
        height: 40vh;
        min-height: 200px;
    }
    
    .product-service .img-box {
        height: 150px;
    }
    
    .product-service .img-box .box {
        height: 150px;
    }
} 

/* 平板端适配 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* 为固定导航栏添加body顶部内边距 */
    body {
        padding-top: min(17.5vh, 70px) !important;
    }
    
    .main-tabs-box {
        height: 17.5vh !important;
        max-height: 70px !important;
        padding: 0 7.5vw !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    .main-tabs-box img {
        width: 35vw !important;
        max-width: 140px !important;
    }
    
    .main-tabs .nav-item a {
        font-size: 4vw !important;
        padding: 0 3.75vw !important;
    }
}

/* 中等屏幕适配 (481px - 600px) */
@media screen and (min-width: 481px) and (max-width: 600px) {
    .main-tabs-box img {
        width: 25vw !important;
    }
    
    .core-business .business-item .index {
        font-size: 12vw;
    }
    
    .core-business .business-item .title {
        font-size: 2.5vw;
    }
    
    .core-business .business-item .content {
        font-size: 3.5vw;
    }
    
    .statistics-box .statistics-item .label p,
    .statistics-box .statistics-item .label p span {
        font-size: 9px !important;
    }
}

/* 大屏移动设备适配 (601px - 768px) */
@media screen and (min-width: 601px) and (max-width: 768px) {
    .main-tabs-box img {
        width: 20vw !important;
    }
    
    .core-business .business-item .index {
        font-size: 10vw;
    }
    
    .core-business .business-item .title {
        font-size: 2vw;
    }
    
    .core-business .business-item .content {
        font-size: 3vw;
    }
    
    .statistics-box .statistics-item .label p,
    .statistics-box .statistics-item .label p span {
        font-size: 9px !important;
    }
    
    .trends .trends-item-title {
        font-size: 3.5vw;
    }
}

/* 大平板和小笔记本适配 */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    /* 为固定导航栏添加body顶部内边距 */
    body {
        padding-top: 80px !important;
    }
    
    .main-tabs-box {
        height: 80px !important;
        padding: 0 40px !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    .main-tabs-box img {
        width: 160px !important;
    }
    
    .main-tabs .nav-item a {
        font-size: 18px !important;
        padding: 0 20px !important;
    }
}

/* 移动端产品内容适配 */
.product-service .product-content .product-title {
    font-size: 6vw;
    margin-bottom: 3.75vh;
}

.product-service .product-content .product-info {
    font-size: 4vw;
    line-height: 1.5;
}

/* 确保产品内容在移动端正确显示 */
@media screen and (max-width: 768px) {
    /* .product-service .product-content {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        padding: 5vh;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        margin: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
    } */

    /* 图标旋转动画 */
    @keyframes cir_p {
        0% {
            transform: rotateZ(0deg);
        }
        100% {
            transform: rotateZ(-360deg);
        }
    }

    /* ================== 公司介绍页面移动端样式 ================== */
    
    /* 默认隐藏移动端专用内容 */
    .enterprise-culture,
    .enterprise-certificates,
    .team-introduction,
    .main-clients,
    .partners,
    .enterprise-news,
    .contact-info,
    .copyright {
        display: none !important;
    }
    
    /* 头部导航适配 */
    .header-v1 {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #fff !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
    }
    
    .header-v1 .top-main {
        padding: 15px 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
    }
    
    .header-v1 .logo1 {
        flex: 1 !important;
        text-align: center !important;
    }
    
    .header-v1 .logo1 img {
        max-width: 150px !important;
        height: auto !important;
    }
    
    /* 隐藏桌面端导航 */
    .header-v1 .navBar {
        display: none !important;
    }
    
    /* 移动端汉堡菜单按钮 */
    .mobile-menu-toggle {
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 30px !important;
        height: 30px !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 5px 0 !important;
        box-sizing: border-box !important;
    }
    
    .mobile-menu-toggle img {
        width: 100% !important;
        height: auto !important;
        max-width: 24px !important;
        max-height: 24px !important;
        object-fit: contain !important;
        transition: all 0.3s ease !important;
    }
    
    /* 页面头部banner */
    .o_big {
        position: relative !important;
        height: 200px !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    }
    
    .o_big img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1 !important;
        opacity: 0.8 !important;
    }
    
    .o_big h1 {
        position: relative !important;
        z-index: 2 !important;
        color: white !important;
        font-size: 28px !important;
        font-weight: bold !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
        margin: 0 !important;
    }
    
    /* 子导航栏 */
    .wrap .product_a {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 15px 20px !important;
        background: #f8f9fa !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    
    .wrap .product_a a {
        padding: 8px 16px !important;
        background: white !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 20px !important;
        color: #666 !important;
        text-decoration: none !important;
        font-size: 14px !important;
        transition: all 0.3s ease !important;
    }
    
    .wrap .product_a a.csel {
        background: #4285f4 !important;
        color: white !important;
        border-color: #4285f4 !important;
    }
    
    /* 产品页面导航栏样式 - 根据原型图设计 */
    .product-tabs,
    .trends-tabs {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 0 !important;
        background: white !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        border: 1px solid #4285f4 !important;
        border-radius: 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        height: 36px !important;
        margin: 10px 8px !important;
        width: 95vw !important;
        margin-top: -6vh !important;
    }
    
    .product-tabs::-webkit-scrollbar,
    .trends-tabs::-webkit-scrollbar {
        display: none !important;
    }
    
    .product-item,
    .trends-item {
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        position: relative !important;
    }
    
    .product-item:not(:last-child)::after,
    .trends-item:not(:last-child)::after {
        content: '' !important;
        position: absolute !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 1px !important;
        background-color: #4285f4 !important;
        z-index: 1 !important;
    }
    
    .product-item:first-child a,
    .trends-item:first-child a {
        border-top-left-radius: 7px !important;
        border-bottom-left-radius: 7px !important;
    }
    
    .product-item:last-child a,
    .trends-item:last-child a {
        border-top-right-radius: 7px !important;
        border-bottom-right-radius: 7px !important;
    }
    
    .product-item a,
    .trends-item a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 12px !important;
        background: white !important;
        border: none !important;
        border-radius: 0 !important;
        color: #4285f4 !important;
        text-decoration: none !important;
        font-size: 13px !important;
        font-weight: 400 !important;
        transition: all 0.2s ease !important;
        white-space: nowrap !important;
        text-align: center !important;
        height: 25px !important;
        box-sizing: border-box !important;
    }
    
    .product-item a:hover,
    .trends-item a:hover {
        background: #f0f4ff !important;
        color: #4285f4 !important;
    }
    
    .product-active,
    .product-item.active,
    .trends-active,
    .trends-item.active {
        background: #4285f4 !important;
        border-radius: 0 !important;
    }
    
    /* 只有第一个和最后一个导航项保持圆角 */
    .product-item:first-child.active,
    .product-item:first-child.product-active,
    .trends-item:first-child.active,
    .trends-item:first-child.trends-active {
        border-top-left-radius: 7px !important;
        border-bottom-left-radius: 7px !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    .product-item:last-child.active,
    .product-item:last-child.product-active,
    .trends-item:last-child.active,
    .trends-item:last-child.trends-active {
        border-top-right-radius: 7px !important;
        border-bottom-right-radius: 7px !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
    
    .product-active a,
    .product-item a.active,
    .product-item.active a,
    .trends-active a,
    .trends-item a.active,
    .trends-item.active a {
        background: #4285f4 !important;
        color: white !important;
        font-weight: 500 !important;
        height: 25px !important;
        border-radius: 0 !important;
    }
    
    /* 选中状态下，只有第一个和最后一个保持圆角 */
    .product-item:first-child a.active,
    .product-item:first-child.active a,
    .product-item:first-child.product-active a,
    .trends-item:first-child a.active,
    .trends-item:first-child.active a,
    .trends-item:first-child.trends-active a {
        border-top-left-radius: 7px !important;
        border-bottom-left-radius: 7px !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    .product-item:last-child a.active,
    .product-item:last-child.active a,
    .product-item:last-child.product-active a,
    .trends-item:last-child a.active,
    .trends-item:last-child.active a,
    .trends-item:last-child.trends-active a {
        border-top-right-radius: 7px !important;
        border-bottom-right-radius: 7px !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
    
    .product-active a:hover,
    .product-item a.active:hover,
    .product-item.active a:hover,
    .trends-active a:hover,
    .trends-item a.active:hover,
    .trends-item.active a:hover {
        background: #3367d6 !important;
        color: white !important;
        border-radius: 0 !important;
    }
    
    /* hover状态下的圆角规则 */
    .product-item:first-child a.active:hover,
    .product-item:first-child.active a:hover,
    .product-item:first-child.product-active a:hover,
    .trends-item:first-child a.active:hover,
    .trends-item:first-child.active a:hover,
    .trends-item:first-child.trends-active a:hover {
        border-top-left-radius: 7px !important;
        border-bottom-left-radius: 7px !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    .product-item:last-child a.active:hover,
    .product-item:last-child.active a:hover,
    .product-item:last-child.product-active a:hover,
    .trends-item:last-child a.active:hover,
    .trends-item:last-child.active a:hover,
    .trends-item:last-child.trends-active a:hover {
        border-top-right-radius: 7px !important;
        border-bottom-right-radius: 7px !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
    
    .product-active:hover,
    .product-item.active:hover {
        background: #3367d6 !important;
        border-radius: 0 !important;
    }
    
    /* hover状态下第一个和最后一个的圆角 */
    .product-item:first-child.active:hover,
    .product-item:first-child.product-active:hover {
        border-top-left-radius: 7px !important;
        border-bottom-left-radius: 7px !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    .product-item:last-child.active:hover,
    .product-item:last-child.product-active:hover {
        border-top-right-radius: 7px !important;
        border-bottom-right-radius: 7px !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
    
    /* 产品页面背景 */
    .app {
        background-color: #ffffff !important;
    }
    
    .product-detail {
        background-color: #ffffff !important;
    }
    
    /* 强制修正产品详情页banner背景图片比例 */
    .product-detail .nav {
        height: max(200px, 30vh) !important; /* 确保最小高度200px，或30%视口高度，取较大值 */
        min-height: 200px !important; /* 设置最小高度保证背景图片完整显示 */
        background-position: center center !important; /* 背景图片居中显示 */
        background-size: cover !important; /* 确保背景图片覆盖整个区域 */
    }
    
    /* 移动端banner文字内容位置调整 - 使用百分比定位适应不同高度 */
    .product-detail .nav .title {
        top: 60% !important; /* 使用百分比定位，适应不同高度 */
        font-size: 24px !important;
        right: 10% !important;
        max-width: 80% !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .product-detail .nav .date {
        top: 75% !important; /* 使用百分比定位 */
        font-size: 14px !important;
    }
    
    .product-detail .nav .prompt {
        top: 85% !important; /* 使用百分比定位 */
        font-size: 14px !important;
        left: 10% !important;
    }
    
    /* 针对极小屏幕（高度小于500px）的特殊适配 */
    @media screen and (max-height: 500px) {
        .product-detail .nav {
            height: 180px !important; /* 在极小屏幕上使用固定高度 */
            min-height: 180px !important;
        }
        
        .product-detail .nav .title {
            top: 100px !important; /* 在极小屏幕上使用固定位置 */
            font-size: 20px !important; /* 稍微缩小字体 */
        }
        
        .product-detail .nav .date {
            top: 130px !important;
            font-size: 12px !important;
        }
        
        .product-detail .nav .prompt {
            top: 150px !important;
            font-size: 12px !important;
        }
    }
    
    /* 内容区域 */
    .news_bg {
        background: white !important;
        padding: 20px 0 !important;
    }
    
    .news_bg .wrap {
        max-width: none !important;
        padding: 0 20px !important;
    }
    
    .about_x {
        background: white !important;
        border-radius: 15px !important;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05) !important;
        padding: 25px 20px !important;
        margin: 0 !important;
    }
    
    .about_x .show_t {
        font-size: 24px !important;
        font-weight: bold !important;
        color: #333 !important;
        text-align: center !important;
        margin-bottom: 25px !important;
        position: relative !important;
        padding-bottom: 15px !important;
    }
    
    .about_x .show_t:after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 50px !important;
        height: 3px !important;
        background: linear-gradient(90deg, #4285f4, #34a853) !important;
        border-radius: 2px !important;
    }
    
    .about_x .con_id {
        line-height: 1.8 !important;
        font-size: 16px !important;
        color: #555 !important;
        text-align: left !important;
        padding: 0 !important;
    }
    
    .about_x .con_id p {
        margin-bottom: 15px !important;
        text-indent: 2em !important;
    }
    
    .about_x .con_id strong {
        color: #333 !important;
        font-weight: bold !important;
    }
    
    /* 在移动端显示专用内容 */
    .enterprise-culture,
    .enterprise-certificates,
    .team-introduction,
    .main-clients,
    .partners,
    .enterprise-news,
    .contact-info,
    .copyright {
        display: block !important;
    }
    
    /* 企业文化部分样式 */
    .culture {
        background: #ffffff !important;
        padding: 40px 20px !important;
        margin: 30px 0 !important;
        /* border-radius: 20px !important; */
        text-align: center !important;
        border: 1px solid #e0e0e0 !important;
        margin-top: -7vh !important;
        height: 45vh !important;
    }
    
    .culture-title {
        font-size: 20px !important;
        font-weight: bold !important;
        color: #333 !important;
        margin-left: -40px !important;
        /* margin-bottom: 30px !important; */
        /* position: relative !important; */
    }
    
    .culture-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }

    .culture-content img {
        width: 65% !important;
        height: 65% !important;
        margin-left: -60% !important;
    }
    .culture-content .label-value-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0px !important; /* 进一步减少到0px */
        margin-left: 90% !important;
        margin-top: -32vh !important;
    }
    .culture .culture-content .label-value-box .label-value-item{
        width: 105% !important;
        margin-top: 6vh !important;
    }
    .culture .culture-content .label-value-box {
        margin-top: -82% !important;
    }
    .culture-content .label-value-box .label-value-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important; /* 减少图标和文字之间的间距到10px */
        margin-bottom: 5px !important; /* 减少底部间距到5px */
    }
    .culture-content .label-value-box .label-value-item img {
        width: 15% !important;
        height: 15% !important;
        margin-left: -4vh !important;
        margin-top: -8.5vh !important;
    }
    .culture-content .label-value-box .label-value-item .item-right {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important; /* 进一步减少标题和描述之间的间距到2px */
    }
    .culture-content .label-value-box .label-value-item .item-right .label {
        font-size: 12px !important;
        font-weight: bold !important;
        color: #333 !important;
        margin-bottom: 1px !important; /* 减少到1px */
        margin-left: -2vh !important;
        margin-top: -5vh !important;
    }
    .culture-content .label-value-box .label-value-item .item-right .value { 
        font-size: 8px !important;
        color: #666 !important;
        line-height: 1.2 !important; /* 进一步减少行高 */
        margin-left: -4vh !important;
        margin-top: -1vh !important; /* 减少顶部间距到-1vh */
        margin-right: 9vw !important;
        align-items: left !important;
        text-align: left !important;
    }

    .qualifications-title{
        font-size: 20px !important;
        font-weight: bold !important;
        color: #333 !important;
        text-align: center !important;
        margin-bottom: 10px !important;
        margin-top: -32px !important;
    }
    .qualifications-content{
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        margin-top: -16px !important;
    }
    .expert{
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important; /* 改为居中对齐，让图片垂直居中 */
        gap: 15px !important;
        margin-top: -16px !important;
        padding: 0 10px !important; /* 减少左右内边距，给内容更多空间 */
        min-height: 200px !important; /* 设置最小高度，确保有足够空间居中 */
        overflow: visible !important; /* 允许内容显示，不裁剪 */
    }
    
    .expert img {
        width: 45% !important; /* 进一步增大图片尺寸，从35%增加到45% */
        height: auto !important;
        flex-shrink: 0 !important;
        border-radius: 10px !important;
        align-self: center !important; /* 确保图片垂直居中 */
        margin-right: -40px !important;
    }
    
    .expert-right{
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
        margin-top: 0 !important;
        flex: 1 !important;
        align-self: center !important; /* 确保文字区域也垂直居中 */
        min-width: 0 !important; /* 允许弹性收缩 */
        overflow: visible !important; /* 允许内容显示，不裁剪 */
    }
    
    .expert-text {
        background: #ffffff !important; /* 白色背景 */
        border: 1px solid #4285f4 !important; /* 蓝色1px边框 */
        border-radius: 12px !important; /* 圆角 */
        padding: 6px !important; /* 从15px减少到8px，减少内边距 */
        box-shadow: 0 2px 8px rgba(66, 133, 244, 0.1) !important; /* 轻微阴影 */
        margin-left: -100px !important; /* 减少负边距，从-100px改为-20px，避免被裁剪 */
        height: 184px !important;
        margin-top: 24px !important;
        margin-bottom: 32px !important;
    }
    
    /* 专家介绍文字样式调整 */
    .expert-text p {
        margin: 1px 0 !important; /* 从3px减少到1px，减少段落间距 */
        text-align: left !important;
        line-height: 1.2 !important; /* 从1.4减少到1.2，减少行高 */
    }
    
    /* 标题文字 - 改为和正文一样的样式 */
    .expert-text p:first-child strong span {
        font-size: 8px !important;
        font-weight: normal !important;
        color: #666 !important;
        line-height: 1.2 !important; /* 从1.3减少到1.2 */
    }
    
    /* 列表项文字保持不变 */
    .expert-text p:not(:first-child):not(:nth-child(2)) span {
        font-size: 8px !important;
        color: #666 !important;
        line-height: 1.0!important; /* 从1.3减少到1.2 */
    }
    
    .expert-text p:nth-child(2) {
        display: none !important; /* 隐藏空白段落 */
    }
    
    .expert-text p:last-child {
        display: none !important; /* 隐藏最后的空白段落 */
    }

    .culture-diagram {
        width: 100% !important;
        max-width: 350px !important;
        position: relative !important;
        margin: 20px auto !important;
    }
    
    .culture-items {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 400px !important;
    }
    
    .culture-item {
        background: white !important;
        border-radius: 15px !important;
        padding: 20px 15px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    
    .culture-item:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
    }
    
    .culture-item-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto 15px !important;
        background: linear-gradient(135deg, #4285f4, #34a853) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: white !important;
        font-size: 24px !important;
    }
    
    .culture-item-title {
        font-size: 18px !important;
        font-weight: bold !important;
        color: #333 !important;
        margin-bottom: 8px !important;
    }
    
    .culture-item-desc {
        font-size: 14px !important;
        color: #666 !important;
        line-height: 1.6 !important;
    }
    
    /* 企业资质部分 */
    .enterprise-certificates {
        padding: 40px 20px !important;
        background: #f8f9fa !important;
        margin: 30px 0 !important;
    }
    
    .certificates-title {
        font-size: 28px !important;
        font-weight: bold !important;
        color: #333 !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .certificates-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .certificate-item {
        background: white !important;
        border-radius: 15px !important;
        padding: 20px !important;
        text-align: center !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        transition: transform 0.3s ease !important;
    }
    
    .certificate-item:hover {
        transform: translateY(-3px) !important;
    }
    
    .certificate-icon {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 15px !important;
        background: linear-gradient(135deg, #ff9a56, #ffad56) !important;
        border-radius: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 30px !important;
        color: white !important;
    }
    
    .certificate-name {
        font-size: 14px !important;
        font-weight: bold !important;
        color: #333 !important;
        line-height: 1.4 !important;
    }
    
    /* 团队介绍部分 */
    .team-introduction {
        padding: 40px 20px !important;
        background: white !important;
        margin: 30px 0 !important;
    }
    
    .team-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    .team-info {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        padding: 25px 20px !important;
        border-radius: 20px !important;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3) !important;
    }
    
    .team-info ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .team-info li {
        padding: 8px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    .team-info li:last-child {
        border-bottom: none !important;
    }
    
    .team-locations {
        background: #f8f9fa !important;
        padding: 25px 20px !important;
        border-radius: 15px !important;
        position: relative !important;
    }
    
    .team-locations h4 {
        font-size: 18px !important;
        font-weight: bold !important;
        color: #333 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .locations-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .location-item {
        display: flex !important;
        align-items: center !important;
        padding: 15px !important;
        background: white !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    }
    
    .location-dot {
        width: 12px !important;
        height: 12px !important;
        border-radius: 50% !important;
        margin-right: 15px !important;
        flex-shrink: 0 !important;
    }
    
    .location-dot.beijing { background: #4285f4 !important; }
    .location-dot.tianjin { background: #34a853 !important; }
    .location-dot.wuxi { background: #fbbc04 !important; }
    
    .location-name {
        font-size: 14px !important;
        color: #333 !important;
        font-weight: 500 !important;
    }
    
    .team-stats {
        display: flex !important;
        justify-content: space-around !important;
        padding: 20px 0 !important;
        background: white !important;
        border-radius: 15px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        margin-top: 20px !important;
    }
    
    .stat-item {
        text-align: center !important;
    }
    
    .stat-number {
        font-size: 24px !important;
        font-weight: bold !important;
        color: #4285f4 !important;
    }
    
    .stat-label {
        font-size: 12px !important;
        color: #666 !important;
        margin-top: 5px !important;
    }
    
    /* 主要客户部分 */
    .main-clients {
        padding: 40px 20px !important;
        background: #f8f9fa !important;
        margin: 30px 0 !important;
    }
    
    .clients-title {
        font-size: 28px !important;
        font-weight: bold !important;
        color: #333 !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .clients-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .client-item {
        background: white !important;
        border-radius: 15px !important;
        padding: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        transition: transform 0.3s ease !important;
    }
    
    .client-item:hover {
        transform: translateY(-3px) !important;
    }
    
    .client-logo {
        width: 50px !important;
        height: 50px !important;
        border-radius: 10px !important;
        margin-bottom: 10px !important;
        background: #f0f0f0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .client-name {
        font-size: 12px !important;
        color: #333 !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
    }
    
    /* 合作伙伴部分 */
    .partners {
        padding: 40px 20px !important;
        background: white !important;
        margin: 30px 0 !important;
    }
    
    .partners-title {
        font-size: 28px !important;
        font-weight: bold !important;
        color: #333 !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .partners-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .partner-item {
        background: #f8f9fa !important;
        border-radius: 10px !important;
        padding: 15px 10px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        transition: transform 0.3s ease !important;
    }
    
    .partner-item:hover {
        transform: translateY(-2px) !important;
        background: white !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }
    
    .partner-logo {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 8px !important;
        background: white !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        color: #666 !important;
    }
    
    .partner-name {
        font-size: 11px !important;
        color: #666 !important;
        font-weight: 500 !important;
        line-height: 1.2 !important;
    }
    
    /* 企业动态部分 */
    .enterprise-news {
        padding: 40px 20px !important;
        background: #f8f9fa !important;
        margin: 30px 0 !important;
    }
    
    .news-title {
        font-size: 28px !important;
        font-weight: bold !important;
        color: #333 !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .news-item {
        background: white !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        margin-bottom: 25px !important;
    }
    
    .news-image {
        width: 100% !important;
        height: 200px !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    .news-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .news-content {
        padding: 20px !important;
    }
    
    .news-content h3 {
        font-size: 18px !important;
        font-weight: bold !important;
        color: #333 !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }
    
    .news-excerpt {
        font-size: 14px !important;
        color: #666 !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    
    .news-date {
        font-size: 12px !important;
        color: #999 !important;
    }
    
    .news-more-btn {
        text-align: center !important;
        padding: 20px 0 !important;
    }
    
    .news-more-btn a {
        display: inline-block !important;
        padding: 12px 30px !important;
        background: linear-gradient(135deg, #4285f4, #34a853) !important;
        color: white !important;
        border-radius: 25px !important;
        text-decoration: none !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    
    .news-more-btn a:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3) !important;
    }
    
    /* 联系方式部分 */
    .contact-info {
        background: white !important;
        padding: 30px 20px !important;
        margin: 30px 0 !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .contact-title {
        font-size: 24px !important;
        font-weight: bold !important;
        color: #333 !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }
    
    .contact-item {
        display: block !important;
        width: 100% !important;
        padding: 15px 0 !important;
        border-bottom: none !important;
        margin-bottom: 10px !important;
    }
    
    .contact-item:last-child {
        border-bottom: none !important;
    }
    
    .contact-icon {
        width: 20px !important;
        height: 20px !important;
        color: #4285f4 !important;
        display: inline-block !important;
        vertical-align: middle !important;
        margin-right: 10px !important;
        margin-bottom: 5px !important;
    }
    
    .contact-text {
        font-size: 14px !important;
        color: #555 !important;
        line-height: 1.6 !important;
        display: inline-block !important;
        vertical-align: middle !important;
        width: calc(100% - 35px) !important;
        margin-top: 0 !important;
    }
    
    .contact-qr {
        text-align: center !important;
        padding-top: 20px !important;
    }
    
    .contact-qr img {
        width: 120px !important;
        height: 120px !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    }
    
    /* 确保移动端联系方式垂直排列 */
    @media screen and (max-width: 768px) {
        .contact-info {
            padding: 20px 15px !important;
            margin: 20px 0 !important;
        }
        
        .contact-item {
            display: block !important;
            width: 100% !important;
            padding: 12px 0 !important;
            margin-bottom: 8px !important;
            /* 防止任何可能的横向排列 */
            clear: both !important;
            float: none !important;
        }
        
        .contact-icon,
        .contact-text {
            display: block !important;
            width: 100% !important;
            margin: 0 0 5px 0 !important;
            text-align: left !important;
        }
        
        .contact-icon {
            margin-bottom: 8px !important;
        }
        
        .contact-text {
            margin-left: 25px !important;
            margin-top: -25px !important;
        }
    }
    
    .qr-text {
        font-size: 12px !important;
        color: #666 !important;
        margin-top: 10px !important;
    }
    
    /* 版权信息 */
    .copyright {
        background: #f8f9fa !important;
        padding: 20px !important;
        text-align: center !important;
        font-size: 12px !important;
        color: #666 !important;
        line-height: 1.6 !important;
    }
    
    /* 响应式调整 */
    @media screen and (max-width: 480px) {
        .culture-items {
            grid-template-columns: 1fr !important;
        }
        
        .certificates-grid {
            grid-template-columns: 1fr !important;
        }
        
        .clients-grid {
            grid-template-columns: 1fr !important;
        }
        
        .partners-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
        
        .team-stats {
            flex-direction: column !important;
            gap: 15px !important;
        }
        
        .o_big h1 {
            font-size: 24px !important;
        }
        
        .culture-title,
        .certificates-title,
        .clients-title,
        .partners-title,
        .news-title {
            font-size: 24px !important;
        }
        
        /* 小屏幕下专家文本区域特殊适配 */
        
        .expert {
            padding: 0 5px !important; /* 小屏幕下减少更多内边距 */
        }
    }

        /* 团队介绍部分样式 */
    .team {
        background-color: #FFFFFF !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        /* gap: 15px !important; */
        padding: 0 20px !important;
        /* margin: 20px 0 !important; */
        min-height: 200px !important;
        /* 设置相对定位，作为绝对定位的参考 */
        position: relative !important;
        justify-content: flex-end !important; /* 让图片靠右对齐 */
        height: 240px !important;
    }
    
    .team-left {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* 改为居中对齐 */
        justify-content: center !important; /* 添加垂直居中 */
        /* 圆角矩形边框 */
        border: 1px solid #4285f4 !important;
        border-radius: 15px !important;
        padding: 14px !important; /* 增加padding让直角矩形上下间距更大 */
        box-sizing: border-box !important;
        width: 240px !important;
        /* 定位设置，让内容覆盖图片 */
        position: absolute !important;
        z-index: 999 !important;
        left: 7px !important;
        top: 50% !important;
        transform: translateY(-50%) !important; /* 向上移动5vh */
    }
    
    .team-text {
        width: 224px !important; /* 恢复原来的宽度，保持直角矩形大小不变 */
        /* 直角矩形背景 */
        background-color: #E6F1FD !important;
        padding: 2px 4px !important; /* 保持文字内边距 */
        border-radius: 0 !important; /* 直角矩形 */
        box-sizing: border-box !important;
        z-index: 1002 !important; /* 比.team-left更高的层级 */
        position: relative !important;
        display: flex !important; /* 添加flex布局 */
        flex-direction: column !important;
        justify-content: center !important; /* 垂直居中内容 */
        align-items: flex-start !important; /* 水平左对齐 */
        margin: 0 !important; /* 确保没有外边距 */
    }
    
    /* 团队介绍文字样式 - 缩小字体 */
    .team-text p {
        margin: 0 !important; /* 完全去除段落间距 */
        text-align: left !important;
        line-height: 1.0 !important; /* 进一步减少行高到1.0 */
        padding: 0 !important; /* 去除内边距 */
        display: block !important;
        /* vertical-align: top !important; 顶部对齐 */
    }
    
    /* 第一个段落特殊处理，确保贴顶 */
    .team-text p:first-child {
        margin-top: -3.5vh !important;
        padding-top: 0 !important;
        line-height: 1.0 !important;
    }
    
    /* 标题"团队介绍"字体缩小 */
    .team-text p strong span[style*="font-size: 36px"] {
        font-size: 16px !important; /* 从18px再缩小4px到14px */
        line-height: 1.1 !important; /* 与其他文字保持一致的行高 */
        margin: 0 !important; /* 去除间距 */
        padding: 0 !important; /* 去除内边距 */
    }
    
    /* 公司名称字体缩小 - 确保所有公司名称大小一致 */
    .team-text p span[style*="font-size: 20px"],
    .team-text p strong span[style*="font-size: 20px"],
    .team-text p span strong[style*="font-size: 20px"],
    .team-text p strong[style*="font-size: 20px"] span,
    .team-text p strong span {
        font-size:10px !important; /* 从12px再缩小4px到8px */
        line-height: 0.1 !important; /* 统一行高 */
        margin: 0 !important; /* 去除间距 */
        padding: 0 !important; /* 去除内边距 */
    }
    
    /* 描述文字缩小 */
    .team-text p span[style*="font-size: 18px"] {
        font-size: 8px !important; /* 从10px再缩小4px到6px */
        line-height: 1.1 !important; /* 与段落行高保持一致 */
    }
    
    /* 彩色方块大小调整 */
    .team-text p span[style*="background-color"] {
        width: 8px !important;
        height: 8px !important;
        display: inline-block !important;
        border-radius: 2px !important;
        margin-right: 5px !important;
    }
    
    /* 右侧图片正常比例 */
    .team img {
        width: 70% !important; /* 设置合适的宽度比例 */
        height: auto !important; /* 保持图片原始比例 */
        flex-shrink: 0 !important;
        border-radius: 10px !important;
        object-fit: contain !important; /* 确保图片完整显示 */
        max-width: 200px !important; /* 设置最大宽度 */
        /* 确保图片在左侧内容下方 */
        position: relative !important;
        z-index: 500 !important;
        margin-top: 8vh !important;
    }
    .statistics{
        width: 102.5% !important;
        margin-top: -0.3vh !important;
    }
    .statistics .statistics-item{
        /* width: 12vw !important; */
        margin-left: 0.9vh !important;
    }
    
    /* 产品列表移动端样式 - 蓝色圆角边框 */
    .product-list-item {
        border: 1px solid #274AFF !important;
        border-radius: 10px !important;
        margin: 10px !important;
        box-shadow: 0 2px 8px rgba(39, 74, 255, 0.1) !important;
        flex-direction: column !important;
        height: auto !important;
        width: 95% !important;
    }
    
    .product-list-item img {
        width: calc(100% - 80px) !important;
        height: 180px !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 8px !important;
        margin: 10px 40px 0 40px !important;
    }
    
    .product-list-item-right {
        margin-left: 0 !important;
        padding: 15px !important;
        flex: 1 !important;
    }
    
    /* 移动端产品内容区域使用flex布局控制顺序 */
    .product-list-item-right {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-list-item-right .label {
        margin: 0 0 5px 26px !important;
        text-align: left !important;
        font-size: 18px !important;
        order: 1 !important;
    }
    
    /* 移动端产品分类样式调整 - 紧跟在产品名称后面 */
    .product-list-item .type-box {
        position: static !important;
        display: flex !important;
        flex-wrap: wrap !important;
        margin: 0 26px 10px 26px !important;
        justify-content: flex-start !important;
        top: auto !important;
        right: auto !important;
        order: 2 !important;
    }
    
    .product-list-item .type-one,
    .product-list-item .type-two,
    .product-list-item .type-three,
    .product-list-item .type-four {
        margin: 2px 5px 2px 0 !important;
        font-size: 9px !important;
        padding: 2px 6px !important;
    }
    
    .product-list-item-right .value {
        text-align: justify !important;
        margin: 0 23px 10px 26px !important;
        line-height: 1.5 !important;
        font-size: 10px !important;
        order: 3 !important;
    }
    
    /* 案例容器移动端布局 - 确保一行只显示一个 */
    .case,
    .cases,
    .case-list,
    .case-container {
        display: block !important;
        width: 80% !important;
        padding: 0 10px !important;
        grid-template-columns: 1fr !important;
        grid-row-gap: 10px !important;
        column-count: 1 !important;
    }
    
    /* 强制案例容器使用单列网格布局 */
    .case {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: -6vh !important;
    }
    
    /* 案例列表移动端样式 - 蓝色圆角边框 */
    .case-item {
        border: 1px solid #274AFF !important;
        border-radius: 10px !important;
        margin: 5px 0 !important;
        box-shadow: 0 2px 8px rgba(39, 74, 255, 0.1) !important;
        background-color: #fff !important;
        overflow: hidden !important;
        width: 100% !important;
        display: block !important;
        flex: none !important;
        grid-column: 1 / -1 !important;
    }
    
    .case-item .image-box {
        background-color: #ffffff !important;
        padding: 10px !important;
        position: relative !important;
        margin: 0 !important;
    }
    
    .case-item .image-box img {
        width: 80% !important;
        height: auto !important;
        border-radius: 8px !important;
        margin-left: 10% !important;
    }
    
    .case-item .image-box .image-title {
        background: none !important;
        position: static !important;
        padding: 0 !important;
        border-radius: 0 !important;
        color: #333 !important;
        font-size: 14px !important;
        font-weight: bold !important;
        margin-left: 40% !important;
        margin-top: 10px !important;
        display: block !important;
        text-shadow: none !important;
        width: auto !important;
    }
    
    .case-item .text {
        background-color: #fff !important;
        padding: 15px !important;
        font-size: 10px !important;
        line-height: 1.5 !important;
        text-align: justify !important;
        color: #333 !important;
        margin-left: 9% !important;
        margin-right: 9% !important;
        margin-top: -15px !important;
    }
    
    /* ===========================================
       联系我们页面移动端样式优化
       =========================================== */
    
    /* 联系我们页面app容器 - 去除背景图片 */
    .app {
        background: #ffffff !important;
        background-image: none !important;
    }
    
    /* 联系我们主容器 - 改为垂直单列布局 */
    .callme {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        padding: 20px 15px !important;
        gap: 20px !important;
        grid-row-gap: 0 !important;
        grid-column-gap: 0 !important;
        margin-top: -6vh !important;
    }
    
    /* 联系方式卡片 */
    .callme .callme-item {
        width: 100% !important;
        margin-bottom: 20px !important;
        background: url('/upload/1/cms/content/lxwm.svg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        border-radius: 15px !important;
        padding: 0 !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    /* 移动端卡片覆盖层 */
    .callme .callme-item::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-color: rgba(197, 222, 252, 0.85) !important;
        border-radius: 15px !important;
        z-index: 1 !important;
    }
    
    /* 公司名称标题 */
    .callme-item .name {
        font-size: 20px !important;
        font-weight: bold !important;
        padding: 15px 20px 10px 20px !important;
        margin: 0 !important;
        text-align: left !important;
        border-bottom: none !important;
        position: relative !important;
        margin-top: 2vh !important;
        z-index: 2 !important;
    }
    
    /* 联系方式每个小项 */
    .callme-item .item-small {
        display: block !important;
        padding: 12px 20px !important;
        margin: 8px 0 !important;
        border-bottom: none !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .callme-item .item-small:last-child {
        border-bottom: none !important;
        margin-bottom: 15px !important;
    }
    
    /* 图标样式 */
    .callme-item .item-small img {
        width: 16px !important;
        height: 16px !important;
        margin: 0 8px 0 0 !important;
        vertical-align: middle !important;
        display: inline-block !important;
    }
    
    /* 文本容器 */
    .callme-item .item-small .text {
        display: inline-block !important;
        vertical-align: middle !important;
        width: calc(100% - 30px) !important;
    }
    
    /* 标签文字 */
    .callme-item .item-small .text .label {
        font-size: 14px !important;
        color: #5D6987 !important;
        margin-bottom: 4px !important;
    }
    
    /* 值文字 */
    .callme-item .item-small .text .value {
        font-size: 14px !important;
        font-weight: bold !important;
        color: #6C7A98 !important;
        margin-top: 2px !important;
        line-height: 1.4 !important;
    }
    
    /* 二维码图片特殊处理 */
    .callme-item .item-small .text img {
        width: 80px !important;
        height: 80px !important;
        margin: 10px 0 !important;
        display: block !important;
        margin-left: 6vw !important;
        margin-top: -16px !important;
        margin-right: auto !important;
    }
    
    /* 公众号项目特殊样式 */
    .callme-item .item-small:nth-last-child(2) {
        text-align: left !important;
    }
    
    .callme-item .item-small:last-child {
        text-align: left !important;
        padding: 5px 20px 15px 20px !important;
    }
    .nav{
        margin-top: -80px !important;
    }
}

/* 桌面端样式 - 隐藏移动端元素 */
@media screen and (min-width: 700px) and (max-width: 768px) {
    /* 隐藏移动端菜单按钮 */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* 隐藏移动端首页图标 */
    .mobile-home-icon {
        display: none !important;
    }
    
    /* 隐藏移动端菜单标题 */
    .mobile-menu-title {
        display: none !important;
    }
    
    /* 隐藏移动端返回箭头 */
    .nav-back-arrow {
        display: none !important;
    }
    
    /* 粮食供应链可信智能产品圆角矩形调小一半 - 仅在移动端显示 */
    .product-service .product-content {
        border-radius: 7.5px !important;
    }
}

/* 桌面端样式 - 隐藏所有移动端元素 */
@media screen and (min-width: 769px) {
    /* 隐藏移动端菜单按钮 */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* 隐藏移动端首页图标 */
    .mobile-home-icon {
        display: none !important;
    }
    
    /* 隐藏移动端菜单标题 */
    .mobile-menu-title {
        display: none !important;
    }
    
    /* 隐藏移动端返回箭头 */
    .nav-back-arrow {
        display: none !important;
    }
    
    /* 隐藏移动端遮罩层 */
    .mobile-overlay {
        display: none !important;
    }
} 