        /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", Arial, sans-serif;
        }
         body {
            background-color: #ffffff;
            color: #333333;
        }
        /* 联系我们横幅容器 - 核心布局 */
        .contact-banner-container {
            position: relative; /* 为绝对定位的文字提供参考 */
            width: 100%;
            height: auto; /* 横幅高度，可根据需求调整 */
            overflow: hidden; /* 防止图片溢出 */
        }

        /* 横幅背景图片 */
        .contact-banner-bg {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持图片比例，铺满容器 */
            object-position: center; /* 图片居中显示 */
        }

        /* 单独添加的文字 - 可自由调整样式/位置 */
        .contact-banner-text {
            position: absolute; /* 脱离文档流，叠加在图片上 */
            left: 18%; /* 水平位置：距离左侧15%，可调整 */
            top: 50%; /* 垂直居中 */
            transform: translateY(-50%); /* 精准垂直居中 */
            font-size: 32px; /* 文字大小，可调整 */
            color: #333333; /* 文字颜色，可调整 */
            font-weight: 500;
            letter-spacing: 2px; /* 字间距，贴合参考图 */
            /* 可选：添加文字阴影增强可读性 */
            /* text-shadow: 0 1px 2px rgba(0,0,0,0.1); */
        }

        /* 响应式适配：小屏幕调整文字大小和位置 */
        @media (max-width: 768px) {
            .contact-banner-container {
                height: 150px;
            }
            .contact-banner-text {
                font-size: 24px;
                left: 10%;
            }
        }

        @media (max-width: 480px) {
            .contact-banner-container {
                height: 120px;
            }
            .contact-banner-text {
                font-size: 20px;
                left: 5%;
            }
        }

        /* 分类导航栏 - 顶部右侧分类 */
        .prod-top-nav {
            text-align: right;
            padding: 10px 20px;
            margin-bottom: 10px;
        }

        .prod-top-nav-item {
            display: inline-block;
            margin-left: 20px;
            font-size: 14px;
            color: #666666;
            text-decoration: none; /* 移除a标签默认下划线 */
            cursor: pointer;
        }

        .prod-top-nav-item.active {
            color: #333333;
            font-weight: 500;
        }

        /* 分类导航hover效果 */
        .prod-top-nav-item:hover {
            color: #333333;
        }

        /* 左侧分类标题 */
        .prod-left-title {
            font-size: 16px;
            color: #333333;
            padding: 0 20px 15px;
        }

        /* 更多按钮 */
        .prod-more-btn {
            float: right;
            font-size: 12px;
            color: #999999;
            cursor: pointer;
            margin-right: 20px;    margin-top: -34px;
        }

        /* 产品网格容器 */
        .prod-grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 固定4列布局 */
            gap: 15px 10px; /* 调整间距：行间距15px（给名称留空间），列间距10px */
            padding: 0 0px;
             margin-bottom: 33px;
        }

        /* 产品项外层容器（包裹图片卡片+名称） */
        .prod-item-wrapper {
            text-align: center; /* 让内部元素居中 */
        }

        /* 产品图片卡片（仅包含图片，无名称） */
        .prod-item-card {
            padding: 15px 10px;
            background-color: #f2f2f2;
            margin-bottom: 8px; /* 卡片和名称之间的间距 */
        }

        /* 产品链接样式 - 仅包裹图片卡片 */
        .prod-item-link {
            text-decoration: none; /* 移除下划线 */
            color: inherit;
            display: block; /* 点击区域覆盖整个图片卡片 */
        }

        /* 产品图片样式 */
        .prod-item-img {
            width: 100%;
            /*max-width: 120px;*/
            height: auto;
            margin: 0 auto;
            display: block;
            object-fit: contain;
        }

        /* 产品名称文本 - 独立在卡片外，白色背景 */
        .prod-item-name {
            font-size: 14px;
            color: #666666;
            line-height: 1.5;
            /* 名称无背景色，继承页面白色背景 */
            width: 100%;
        }

        /* 响应式适配 - 小屏幕调整列数 */
        @media (max-width: 992px) {
            .prod-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .prod-grid-container {
                grid-template-columns: 1fr;
            }
        }

        /* 页面容器 - 全屏背景+内容居中 */
        .global-container {
            width: 100vw;
            height: 100vh;
            /* 1. 替换为清晰的世界地图背景图（免费可商用） */
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            padding: 0 20px;
            position: relative;margin-top: 83px;
        }

      
        /* 内容容器（层级高于背景层） */
        .content-box {
            max-width: 800px;
            text-align: center;
            z-index: 2;
        }

        /* 主标题样式 */
        .main-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 2px;
            color: #ffffff;
        }

        /* 副标题样式 */
        .sub-title {
            font-size: 18px;
            color: #e0e0e0;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        /* 正文文本样式 */
        .desc-text {
            font-size: 16px;
            line-height: 1.8;
            color: #f0f0f0;
            text-align: justify;
            margin-bottom: 60px;
        }

        /* 按钮样式 */
        .explore-btn {
            display: inline-block;
            padding: 12px 36px;
            border: 1px solid #fff;
            border-radius: 30px;
            color: #fff;
            font-size: 14px;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .explore-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .main-title {
                font-size: 32px;
            }

            .sub-title {
                font-size: 16px;
            }

            .desc-text {
                font-size: 14px;
                text-align: left;
            }

            .explore-btn {
                padding: 10px 28px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 26px;
            }

            .desc-text {
                margin-bottom: 40px;
            }
        }
           /* 独立命名空间 - 所有类名以 pharma- 开头，避免冲突 */
        .pharma-container {
            width: 100%;
            height: 400px; /* 匹配原图高度比例 */
            background-size: cover;
            display: flex;
            align-items: center;
            padding: 0 80px;
            box-sizing: border-box;
            position: relative;
        }

        /* 文字容器 - 右对齐 */
        .pharma-text-box {
            margin-left: auto;
            max-width: 500px;
            z-index: 2;
        }

        /* 标题样式 - 蓝色 */
        .pharma-title {
            font-size: 24px;
            color: #0066cc;
            font-weight: bold;
            margin-bottom: 20px;
            font-family: "Microsoft Yahei", Arial, sans-serif;
        }

        /* 正文样式 */
        .pharma-desc {
            font-size: 16px;
            line-height: 1.7;
            color: #333;
            font-family: "Microsoft Yahei", Arial, sans-serif;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .pharma-container {
                height: auto;
                padding: 40px 20px;
                flex-direction: column;
                text-align: center;
            }
            .pharma-text-box {
                margin-left: 0;
                margin-top: 20px;
            }
            .pharma-title {
                font-size: 20px;
            }
            .pharma-desc {
                font-size: 14px;
            }
        }
         /* 独立命名空间 - 所有类名以 chem- 开头，避免与pharma-前缀冲突 */
        .chem-container {
            width: 100%;
            height: 400px; /* 匹配原图高度比例 */
            background-size: cover;
            display: flex;
            align-items: center;
            padding: 0 120px; /* 匹配原图文字左侧间距 */
            box-sizing: border-box;
            position: relative;
        }

        /* 文字容器 - 左对齐 */
        .chem-text-box {
            max-width: 450px; /* 匹配原图文字宽度 */
            z-index: 2;
        }

        /* 标题样式 - 蓝色（与原图一致） */
        .chem-title {
            font-size: 24px;
            color: #0066cc;
            font-weight: bold;
            margin-bottom: 20px;
            font-family: "Microsoft Yahei", Arial, sans-serif;
        }

        /* 正文样式 */
        .chem-desc {
            font-size: 16px;
            line-height: 1.7;
            color: #333;
            font-family: "Microsoft Yahei", Arial, sans-serif;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .chem-container {
                height: auto;
                padding: 40px 20px;
                flex-direction: column;
                text-align: center;
            }
            .chem-text-box {
                max-width: 100%;
            }
            .chem-title {
                font-size: 20px;
            }
            .chem-desc {
                font-size: 14px;
            }
        }
        
        /* 图片网格容器 - 重命名：img-grid → pic-gallery-container */
        .pic-gallery-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            padding: 10px;
        }

        /* 图片容器 - 重命名：img-container → pic-item-wrapper */
        .pic-item-wrapper {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.2s;
        }

        .pic-item-wrapper:hover {
            transform: scale(1.02);
        }

        /* 图片样式 - 重命名：clickable-img → pic-main-image */
        .pic-main-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        /* 悬停遮罩层 - 重命名：img-overlay → pic-hover-mask */
        .pic-hover-mask {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            opacity: 0;
            background-color: rgba(0, 0, 0, 0.7);
            transition: height 0.3s ease, opacity 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pic-item-wrapper:hover .pic-hover-mask {
            height: 80px;
            opacity: 1;
        }

        /* 图片名称 - 重命名：img-name → pic-title-text */
        .pic-title-text {
            color: white;
            font-size: 16px;
            text-align: center;
            padding: 0 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: opacity 0.2s ease;
            opacity: 0;
        }

        .pic-item-wrapper:hover .pic-title-text {
            opacity: 1;
        }

        /* 弹窗样式 - 重命名：img-modal → pic-preview-modal */
        .pic-preview-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.85);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        /* 弹窗内容 - 重命名：modal-content → pic-modal-image */
        .pic-modal-image {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            animation: pic-zoom-in 0.3s ease;
        }

        /* 关闭按钮 - 重命名：close-btn → pic-modal-close */
        .pic-modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s;
        }

        .pic-modal-close:hover {
            color: #ff4444;
        }

        /* 动画重命名：zoomIn → pic-zoom-in */
        @keyframes pic-zoom-in {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        /* 响应式适配（类名同步修改） */
        @media (max-width: 1200px) {
            .pic-gallery-container {
                max-width: 960px;
            }
        }
        @media (max-width: 900px) {
            .pic-gallery-container {
                max-width: 640px;
            }
        }
        @media (max-width: 600px) {
            .pic-gallery-container {
                grid-template-columns: 1fr;
            }
              .pic-main-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }
        }