CINXE.COM

Interfoam China 2025 上海国际发泡材料技术工业展览会

<!DOCTYPE html> <html lang="zh" style="--main-group-color1: #073190;--main-group-color2: #e8453e;--on-main-group-color: #fff;--secondary-group-color1: #EA5550;--secondary-group-color2: #FAC03D;--on-secondary-group-color: #fff;"> <head> <meta charset="UTF-8"> <meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" name="viewport"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta name="format-detection" content="telephone=no"> <meta name="csrf-token" content="DQuwC15ftFyqhyfMZ9EAlQXOCut7z3WvN6Fu0NBP"> <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> <title>Interfoam China 2025 上海国际发泡材料技术工业展览会</title> <meta name="keywords" content="Interfoam, Intefoam expo, Interfoam Expo China, 发泡材料展, 泡沫材料展, 发泡技术展, 工业发泡展, 胶粘带展, 新材料展, 上海发泡展, 深圳发泡展, 上海发泡材料展, 深圳发泡材料展, 中国发泡材料展"/> <meta name="description" content="Interfoam Expo 发泡材料展是亚太地区唯一的专业发泡材料产业展览会,集中展示发泡材料、发泡技术、发泡设备、发泡原料、发泡助剂、发泡制品、胶粘带等的新性能、新技术、新趋势、新应用,为发泡材料产业上下游及应用企业打造贸易、交流、品牌展示为一体的专业平台。"/> <meta property="og:title" content="Interfoam China 2025 上海国际发泡材料技术工业展览会"/> <meta property="og:description" content="Interfoam Expo 发泡材料展是亚太地区唯一的专业发泡材料产业展览会,集中展示发泡材料、发泡技术、发泡设备、发泡原料、发泡助剂、发泡制品、胶粘带等的新性能、新技术、新趋势、新应用,为发泡材料产业上下游及应用企业打造贸易、交流、品牌展示为一体的专业平台。"/> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="Interfoam China 2025 上海国际发泡材料技术工业展览会"> <meta name="twitter:description" content="Interfoam Expo 发泡材料展是亚太地区唯一的专业发泡材料产业展览会,集中展示发泡材料、发泡技术、发泡设备、发泡原料、发泡助剂、发泡制品、胶粘带等的新性能、新技术、新趋势、新应用,为发泡材料产业上下游及应用企业打造贸易、交流、品牌展示为一体的专业平台。"> <link rel="stylesheet" href="https://interfoam.cn/modulesassets/comofrontend/dist/css/app.min.css?v=2023.04.11"> <link rel="shortcut icon" href="https://interfoam.cn/modulesassets/comofrontend/dist/favicon/favicon-hjtexpo.ico?v=2023.04.11"/> <meta name="msapplication-TileColor" content="#da532c"> <meta name="theme-color" content="#ffffff"> <script> window.AESKey = ''; // 判断浏览器是否支持placeholder属性 function isSupportPlaceholder() { var input = document.createElement('input'); return 'placeholder' in input; }; //判断是否是IE浏览器,包括Edge浏览器 function IEVersion() { //取得浏览器的userAgent字符串 var userAgent = navigator.userAgent; //判断是否IE浏览器 var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; if (isIE) { var reIE = new RegExp("MSIE (\\d+\\.\\d+);"); reIE.test(userAgent); var fIEVersion = parseFloat(RegExp["$1"]); if (fIEVersion < 10 || !isSupportPlaceholder()) { return true; } } else { return false; } } if (IEVersion()) { // console.log('小于IE10'); location.href = 'https://interfoam.cn/cn/browser-upgrade'; } else { // console.log('大于等于IE10') } </script> <script src="https://interfoam.cn/modulesassets/comofrontend/assets/js/plugins/jquery.min.js?v=2023.04.11"></script> <script src="https://interfoam.cn/vendor/jsvalidation/js/jsvalidation.js"></script> <script> $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }, beforeSend: function () { if (this.data && this.data.indexOf('disableShowLoading') == -1) { $.showLoading(); } }, complete: function () { if (this.data && this.data.indexOf('disableShowLoading') == -1) { $.hideLoading(); } } }); $.isEmpty = function (obj) { if (is_numeric(obj)) { return false; } return _.isEmpty(obj); }; $.showLoading = function () { $('.ajax-loader').addClass('in'); }; $.hideLoading = function () { $('.ajax-loader').removeClass('in'); }; $.fn.showModal = function () { $(this).modal({backdrop: 'static', keyboard: false}); }; $.fn.hideModal = function () { $(this).modal('hide'); }; // 动画返回顶部,不传参直接返回顶部 $.aniRollToTop = function (ele) { toTop = function () { var st = document.scrollingElement.scrollTop, speed = st / 3 < 600 ? st / 3 : 600; $('html, body').animate({ scrollTop: 0 }, speed); }; if (typeof (ele) == 'undefined') { toTop(); } else { $(ele).click(function (e) { e.preventDefault(); toTop(); }) } }; </script> <script> // 禁止 出现自动完成 $('input[type=text]').attr('autocomplete', 'off'); function filter_params(filter_name, filter_val) { var query = window.location.search.substring(1); var vars = query.split("&"); var isAdd = false; for (var i = 0; i < vars.length; i++) { if (vars[i].search(filter_name) > -1) { isAdd = true; } } for (var i = 0; i < vars.length; i++) { var pair = vars[i].split("="); if (pair[0] === filter_name) { pair[1] = filter_val; vars[i] = pair.join("="); } else if (!isAdd) { vars.push(filter_name + "=" + filter_val); isAdd = true; } else if (pair[0] === 'page') { vars[i] = ''; } if (pair[1] === 'none' || pair[1] === '') { vars[i] = ''; } vars = vars.filter(function (item) { return (item !== '') && (item !== 'undefined'); }); var filter_params = vars.join("&"); } return filter_params; } //删除参数值 function delQueStr(url, ref) { var str = ""; if (url.indexOf('?') != -1) str = url.substr(url.indexOf('?') + 1); else return url; var arr = ""; var returnurl = ""; var setparam = ""; if (str.indexOf('&') != -1) { arr = str.split('&'); for (i in arr) { if (arr[i].split('=')[0] != ref) { returnurl = returnurl + arr[i].split('=')[0] + "=" + arr[i].split('=')[1] + "&"; } } return url.substr(0, url.indexOf('?')) + "?" + returnurl.substr(0, returnurl.length - 1); } else { arr = str.split('='); if (arr[0] == ref) return url.substr(0, url.indexOf('?')); else return url; } } location_push_state = function (type, id) { var parmas = "?type=" + type + "&id=" + id; window.history.pushState({type: type, id: id}, "Open Modal", parmas); }; location_clear_state = function () { var names = ["type", "id"]; var url = location.href; names.forEach(function (name, index) { url = delQueStr(url, name); }); window.history.pushState({}, "Close Modal", url); }; function show_loading() { $('.full-loading-box').show(); } function hide_loading() { setTimeout(function () { $('.full-loading-box').fadeOut(); }, 100); if ($(window).width() < 769) { $("#full-gallery-box iframe").css({width: '98%'}); setTimeout(function () { $("#full-gallery-box iframe").css({width: '100%'}); }, 100); } } $.xEndLoad = function (callback, offset) { var $this = this; if (!offset) { offset = 700; } function page_bottom() { var scrollTop = 0; var clientHeight = 0; var scrollHeight = 0; if (document.documentElement && document.documentElement.scrollTop) { scrollTop = document.documentElement.scrollTop; } else if (document.body) { scrollTop = document.body.scrollTop; } if (document.body.clientHeight && document.documentElement.clientHeight) { clientHeight = (document.body.clientHeight < document.documentElement.clientHeight) ? document.body.clientHeight : document.documentElement.clientHeight; } else { clientHeight = (document.body.clientHeight > document.documentElement.clientHeight) ? document.body.clientHeight : document.documentElement.clientHeight; } scrollHeight = Math.max(document.body.scrollHeight, document.documentElement.scrollHeight); if (scrollTop + clientHeight >= scrollHeight - offset) { return true; } else { return false; } }; $(window).bind("scroll.show_next_page", function () { if (page_bottom()) { callback && callback.call(); } }); }; </script> </head> <body class=""> <!-- 警告框 --> <div class="como-warning-box hide"> <style> .como-warning-box { display: block; position: fixed; width: 100%; height: 30px; line-height: 30px; text-align: center; font-size: 14px; font-weight: 600; top:0px; left: 0; color: #fff; background: rgba(231, 28, 36, 0.8); z-index: 10000; -moz-transition: transform .5s ease-out; -webkit-transition: transform .5s ease-out; -ms-transition: transform .5s ease-out; transition: transform .5s ease-out; -moz-transform: translate(0, -30px); -webkit-transform: translate(0, -30px); -ms-transform: translate(0, -30px); transform: translate(0, -30px); } .como-warning-box.in { -moz-transform: translate(0, 0); -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); transform: translate(0, 0); } .como-warning-box i { display: inline-block; position: relative; width: 14px; height: 14px; top: 8px; left: 0; margin-right: 6px; vertical-align: top; -webkit-background-size: 14px 14px; background-size: 14px 14px; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkQ2RjZGMTFFM0FGODExRTdCNzdCQzAzQTg2QUFEREMyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkQ2RjZGMTFGM0FGODExRTdCNzdCQzAzQTg2QUFEREMyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RDZGNkYxMUMzQUY4MTFFN0I3N0JDMDNBODZBQUREQzIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RDZGNkYxMUQzQUY4MTFFN0I3N0JDMDNBODZBQUREQzIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz44VzR6AAAB0ElEQVR42tyWvy9DURTH+6oGg58dCRJNF0wSiYZESImfs0kII43RRGIrM5PF4kckkrKWf4B0EKykky4VA0lLPd8r59XJcV/TvvZ1cJJPX+/5cb/vvnvezTNM0/RU07yeapuTFaKmETQ50ipVEPnTIAOyYMJVQeTWgaT5a0/K56bgpvnXNlwRRF4beNcIvqmYG4JHTOSTsOywooLICYlV7YI94QtVRBBxL7hhE6eBn3hh/muVWwnBRbGSCItFRGyhLEHEGsAzm/AeBMEB2Aet4IHFVW59OYJRsYJxsM7G8+TjFnUkCH+AThTLzsk/x3zD5LtgPlUTcCIYY5NkrUlw7WZ+P/mClGNZrCRB+MbEY9pmsVrwofZL1OyImnBRghj7qDksS6nmETm34FLTYCnRYL5iBFfFnS5p7nQLrGn8y6J2paAgvcxpVpDQvcy0j0GbQyIhDomWQoK74g4HNZP2UywHOjXxIXkMagVx7RUH8rFNpw1Q/At02eSciIO+xxI0fn4MQw3i8I1STQ6MgKTNO9wHMuDOJt4OrkANjePQCOdXCGZM921WaVkNMVWF77VJ/pl4CrIuiqnHf6b+8D1sxrjDJcFHaLzmm+Zff3l/CzAAB57vm2SYVf0AAAAASUVORK5CYII='); } .como-warning-box span { display: inline-block; margin-right: 6px; } </style> </div> <style> html { --bgDesktop: url("https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/11/02/2021110210050236fa3aba.jpg?imageView2/2/format/webp"); } </style> <style> html { --bgMobile: url("https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/22/2021122213574620803eb5.png?imageView2/2/format/webp"); } </style> <a href="javascript:;" class="site-top-logo"> <div class="img-src"> <img src="https://hjtexpo-storage.www.comocloud.net/local/2021/10/12/202110121737378764202a.png?imageView2/2/format/webp" alt="hjt-logo"> </div> <div class="expand-btn"></div> </a><header id="header"> <div class="header-top"> <div class="header-top__background"></div> <div class="countdown-text hide" id="countdown_text_438584"> 距开幕仅剩 <span>_NA_</span> 天 </div> <script> (function(){ var date = new Date(); var date_time = date.getTime() / 1000; var intDiff = parseInt(1751418000) - date_time;//倒计时总秒数量 var day = 0; if(intDiff > 0){ day = Math.floor(intDiff / (60 * 60 * 24)); } if(day > 0){ var countdown_dom = $('#countdown_text_438584'); var countdown_text = countdown_dom.html(); countdown_dom.html(countdown_text.replace('_NA_', day)); countdown_dom.removeClass('hide'); } })(); </script> </div> <div class="header-content"> <div class="header-layout"> <div class="header-layout__left"> <div class="d-flex"> <a href="https://interfoam.cn/cn" target="" class="header-logo"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/04/14/2022041417440364b47a0b.png?imageView2/2/format/webp" alt="PNG"></a> <div class="header-logo-msg"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/10/28/202410281831042e04a8ac.png?imageView2/2/format/webp"> </div> </div> <div class="mobile-tool-bar"> <a href="https://interfoam.cn/en/" class="language"> EN </a> <div class="mbile-toggle-menu-btn"> <div class="line"> <span></span> <span></span> <span></span> </div> </div> </div> </div> <div class="header-layout__right collapse"> <div class="header-layout__right-content"> <div class="header-menu"> <ul class="header-menu-list"> <li class="header-menu-item no-expand "> <a class="header-menu-link" target="_self" href="https://www.interfoam.cn/">首页</a> </li> <li class="header-menu-item "> <a class="header-menu-link no-link" target="_self" href="javascript:;">行业</a> </li> <li class="header-menu-item "> <a class="header-menu-link no-link" target="_self" href="javascript:;">展会</a> </li> <li class="header-menu-item "> <a class="header-menu-link no-link" target="_self" href="javascript:;">展商</a> </li> <li class="header-menu-item "> <a class="header-menu-link no-link" target="_self" href="javascript:;">观众</a> </li> <li class="header-menu-item "> <a class="header-menu-link no-link" target="_self" href="javascript:;">会议</a> </li> <li class="header-menu-item no-expand "> <a class="header-menu-link" target="_self" href="https://virtualexpo.interfoam.cn/zh-cn/platform">线上展会</a> </li> <li class="header-menu-item "> <a class="header-menu-link no-link" target="_self" href="javascript:;">联系&商旅</a> </li> <li class="header-menu-item "> <a class="header-menu-link" target="_self" href="https://interfoam.cn/cn/index/news">新闻</a> </li> <li class="header-menu-item "> <a class="header-menu-link no-link" target="_self" href="javascript:;">Interfoam展会</a> </li> <li class="header-menu-item language no-expand"> <a href="https://interfoam.cn/en/" class="header-menu-link"> EN </a> </li> </ul> </div> <div class="header-expand-menu-wrap"> <div class="container"> <div class="header-expand-menu"> <div class="header-expand-menu-item"> <div class="header-second-menu-list"> <div class="return-previous"> <a href="javascript:;"> <i class="i i-leftarrow"></i> <span>返回上一级</span> </a> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">发泡创新奖</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">奖项介绍</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">专家委员会</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">申报细则</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">评选办法</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">发泡者联盟</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/industry/union/aboutunion">联盟介绍</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/industry/union/teams">主编&团队</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/industry/union/unioncooperation">合作</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/industry/union/Logos-KV-union">Logo & KV</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">行业专家</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/industry/experts/expertlist">专家库(学术)</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/industry/experts/expert-industry">专家库(产业)</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_blank" href="https://e.interfoam.cn/hjtexpo/form/Interfoam6/formperma/Nr4Ynp1S9W3K_etLJ9W2JJ3NnI0EbhnkO_yRPpBHywQ">专家库申报</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://hjtexpobj.mikecrm.com/RPSENW1">产学研对接</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_blank" href="http://hjtexpobj.mikecrm.com/p8FrOla">技术咨询</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">快速链接</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://bj.infosalons.com.cn/reg/INTERFOAMSH24ON/registercn/start">观众购票</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q">展位预订</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/industry/fl-industry/fl-tour-industry">商旅服务</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/news?year=none&type=40cn7">线上研讨会</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">发泡创新奖</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://www.interfoam.cn/en/index/industry/union/aboutunion">发泡者联盟</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/industry/fl-industry/fl-brochure-industry">下载宣传册</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/category/page/detail!downloadcenter">Logo&KV</a> </li> </ul> </div> </div> </div> <div class="header-expand-menu-item"> <div class="header-second-menu-list"> <div class="return-previous"> <a href="javascript:;"> <i class="i i-leftarrow"></i> <span>返回上一级</span> </a> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">展会简介</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/introduction/about">关于Interfoam</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/introduction/hottopic">Interfoam热点话题</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/introduction/cooperates">组织架构</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/introduction/highlights">展会亮点</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://southchina.interfoam.cn/cn/">深圳展</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoamvietnam.com/en/">越南展</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">展会信息</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/exhibition-info/xianchangzhinan">现场指南</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/exhibition-info/basicinfo">基本信息</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/exhibition-info/manual">宣传册</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/exhibition-info/floorplan">展位平面图</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/exhibition-info/exposite">展馆信息</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">往届回顾</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/reviews/postshowreport">展后报告</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/reviews/review-2023">Interfoam China 2023</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/reviews/previousphotos">Interfoam China 2021</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">媒体中心</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/mediacenter/LOGO-KV">Logo&KV</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/mediacenter/brochure-press">宣传册</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/mediacenter/exbitor-manual">展商手册</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/mediacenter/exhibitor-mediacenter">展商名单&展商结构名单</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">快速链接</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://u.pme.cn/foam2024">观众购票</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q">展位预订</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/overview/quick-link-top-1/tour-fl">商旅服务</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/news?year=none&type=40cn7">线上研讨会</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">发泡创新奖</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/industry/union/aboutunion">发泡者联盟</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/overview/mediacenter/brochure-press">下载宣传册</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/category/page/detail!downloadcenter">Logo&KV</a> </li> </ul> </div> </div> </div> <div class="header-expand-menu-item"> <div class="header-second-menu-list"> <div class="return-previous"> <a href="javascript:;"> <i class="i i-leftarrow"></i> <span>返回上一级</span> </a> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">为何参展</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/whyexhibit/exhibits-1">参展范围</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/whyexhibit/highlights-1">展会亮点</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/whyexhibit/visitoroverview">观众概况</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="http://hjtexpobj.mikecrm.com/NiddI40">报名参展</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_blank" href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q">展位预定</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/exhibitorapply/becomespeaker">成为演讲人</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/exhibitorapply/onsitepromotion">品牌推广计划</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="https://virtualexpo.interfoam.cn/zh-cn/platform/">展商&展品</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/previousexhibitorlist/interfoam2024-exhibitors-list">发泡材料</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://virtualexpo.interfoam.cn/zh-cn/platform/institutions?filter_quick_searchSearchBy=match_query&filter_head_countSearchBy=term_query&filter_business_natureSearchBy=term_query&filter_product_category=62529%2C62530%2C62534%2C62532%2C62535&filter_product_categorySearchBy=term_query&filter_application_fieldsSearchBy=term_query&filter_geographySearchBy=term_query&filter_pavilionSearchBy=term_query&filter_space_room_codeSearchBy=term_query&filter_booth_numberSearchBy=match_query">发泡原料</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://virtualexpo.interfoam.cn/zh-cn/platform/institutions?filter_quick_searchSearchBy=match_query&filter_head_countSearchBy=term_query&filter_business_natureSearchBy=term_query&filter_product_category=62537%2C62538%2C62543%2C62541%2C62539&filter_product_categorySearchBy=term_query&filter_application_fieldsSearchBy=term_query&filter_geographySearchBy=term_query&filter_pavilionSearchBy=term_query&filter_space_room_codeSearchBy=term_query&filter_booth_numberSearchBy=match_query">发泡剂/助剂</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://virtualexpo.interfoam.cn/zh-cn/platform/institutions?filter_quick_searchSearchBy=match_query&filter_head_countSearchBy=term_query&filter_business_natureSearchBy=term_query&filter_product_category=62497%2C62525%2C62527%2C62526%2C62524%2C62528%2C62506%2C62521%2C62520%2C62510%2C62509%2C62508%2C62507%2C62501%2C62498%2C62500%2C62499%2C62505&filter_product_categorySearchBy=term_query&filter_application_fieldsSearchBy=term_query&filter_geographySearchBy=term_query&filter_pavilionSearchBy=term_query&filter_space_room_codeSearchBy=term_query&filter_booth_numberSearchBy=match_query">发泡设备</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">展商服务</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/exhibitorservice/Transportation">展品运输</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/exhibitorservice/recommendsupplier">搭建商推荐</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/exhibitorservice/exbitormanual">展商手册</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">快速链接</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://u.pme.cn/foam2024">观众购票</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q">展位预订</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-exhibitors/fl-exhibitor/fl-tour-exhibitor">商旅服务</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/news?year=none&type=40cn7">线上研讨会</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">发泡创新奖</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/industry/union/aboutunion">发泡者联盟</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/overview/mediacenter/brochure-press">下载宣传册</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/category/page/detail!downloadcenter">Logo&KV</a> </li> </ul> </div> </div> </div> <div class="header-expand-menu-item"> <div class="header-second-menu-list"> <div class="return-previous"> <a href="javascript:;"> <i class="i i-leftarrow"></i> <span>返回上一级</span> </a> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">为何参观</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/whyvisit/exhibits-2">展品类别</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/whyvisit/highlights-2">展会亮点</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/whyvisit/exhibitorlist-2">展商展品</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/whyvisit/boothmap1">展位图</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">门票</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://bj.infosalons.com.cn/reg/INTERFOAMSH24ON/registercn/start">个人购票</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/visitorpreregister/groupvisitor">团体购票</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/visitorpreregister/visitorcontact">购票咨询</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">TOP买家计划</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/topbuyer/topbuyerprogram">关于TOP买家</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://hjtexpobj.mikecrm.com/WHClSCp">成为TOP买家</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/topbuyer/businessneeds">供需对接</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/topbuyer/vipservice">VIP客服</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">观众服务</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/visitorservice/tourismservice">商旅服务</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/visitorservice/bizmatch">供需对接</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">快速链接</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://u.pme.cn/foam2024">观众购票</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q">展位预订</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/for-visitors/fl-visitor/fl-tour-visitor">商旅服务</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/news?year=none&type=40cn7">线上研讨会</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">发泡创新奖</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/industry/union/aboutunion">发泡者联盟</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/overview/mediacenter/brochure-press">下载宣传册</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/overview/mediacenter/LOGO-KV">Logo&KV</a> </li> </ul> </div> </div> </div> <div class="header-expand-menu-item"> <div class="header-second-menu-list"> <div class="return-previous"> <a href="javascript:;"> <i class="i i-leftarrow"></i> <span>返回上一级</span> </a> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="https://interfoam.cn/cn/index/conference/conferences">“重新定义发泡材料” 发泡材料及应用国际高峰论坛</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/conference/conferences/aboutconf">论坛介绍</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://u.pme.cn/foam2024">购票</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/conference/conferences/conferencespeaker">成为演讲人</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/conference/conferences/conferencecooperator">合作伙伴</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/conference/conferences/downloadagenda">下载会议日程</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">Interfoam线上研讨会</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/conference/Interfoamwebinars/aboutwebinar">关于线上研讨会</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://formscn.zohopublic.com.cn/hjtexpo/form/Interfoam20221/formperma/9_ZLlUCinJub25y8uxPWTzc83vDAHJt1URnoRKyJFog">成为演讲人</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">回顾</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/news?year=none&type=40cn7">线上研讨会</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/category/event/detail!redefinefoamsm2">高峰论坛</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">快速链接</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://u.pme.cn/foam2024">观众购票</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q">展位预订</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/conference/fl-conference/fl-tour-conf">商旅服务</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/news?year=none&type=40cn7">线上研讨会</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">发泡创新奖</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/industry/union/aboutunion">发泡者联盟</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/overview/mediacenter/brochure-press">下载宣传册</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/overview/mediacenter/LOGO-KV">Logo&KV</a> </li> </ul> </div> </div> </div> <div class="header-expand-menu-item"> <div class="header-second-menu-list"> <div class="return-previous"> <a href="javascript:;"> <i class="i i-leftarrow"></i> <span>返回上一级</span> </a> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">联系我们</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/contact-and-travel/contactus/contactusvisitors">观众联系</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/contact-and-travel/contactus/contactusexhibitors">展商联系</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/contact-and-travel/contactus/contactusmedias">媒体联系</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">商旅服务</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/contact-and-travel/travel/hotel">酒店预订</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/contact-and-travel/travel/visaservice">签证服务</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">展馆交通</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/contact-and-travel/exposite-1/expovenue">展馆简介</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/contact-and-travel/exposite-1/howtoarrive">如何到达</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">畅游上海</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/contact-and-travel/travelinsh/tourism">景点推荐</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://mp.weixin.qq.com/s/U99wklwmgAxOsmi2zt9lDA">《畅游上海城市通票》</a> </li> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class=" no-link" target="_self" href="javascript:;">快速链接</a></h3> <ul class="header-three-menu"> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://u.pme.cn/foam2024">观众购票</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q">展位预订</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/news?year=none&type=40cn7">线上研讨会</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="https://interfoam.cn/cn/index/contact-and-travel/fl-contact/fl-tour-contact">商旅服务</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link no-link" target="_self" href="javascript:;">发泡创新奖</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/industry/union/aboutunion">发泡者联盟</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/overview/mediacenter/brochure-press">下载宣传册</a> </li> <li class="header-three-menu-item"> <a class="header-three-menu-link" target="_self" href="http://www.interfoam.cn/cn/index/overview/mediacenter/LOGO-KV">Logo&KV</a> </li> </ul> </div> </div> </div> <div class="header-expand-menu-item"> <div class="header-second-menu-list"> <div class="return-previous"> <a href="javascript:;"> <i class="i i-leftarrow"></i> <span>返回上一级</span> </a> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="https://interfoam.cn/cn/index/news/exponews">展会新闻</a></h3> <ul class="header-three-menu"> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="https://interfoam.cn/cn/index/news/industrynews">行业新闻</a></h3> <ul class="header-three-menu"> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="https://interfoam.cn/cn/index/news/companynews">企业新闻</a></h3> <ul class="header-three-menu"> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="https://interfoam.cn/cn/index/news/medercooperation">媒体合作</a></h3> <ul class="header-three-menu"> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="http://www.ifaxin.com/subInvite/subscriptionInvite.do?invitecode=f8b83484-3c1f-4351-827b-52c01717d40f">订阅</a></h3> <ul class="header-three-menu"> </ul> </div> </div> </div> <div class="header-expand-menu-item"> <div class="header-second-menu-list"> <div class="return-previous"> <a href="javascript:;"> <i class="i i-leftarrow"></i> <span>返回上一级</span> </a> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="https://southchina.interfoam.cn/">Interfoam深圳</a></h3> <ul class="header-three-menu"> </ul> </div> <div class="header-second-menu"> <h3 class="header-second-menu-title"><a class="" target="_self" href="https://interfoamvietnam.com/en/">Interfoam东南亚</a></h3> <ul class="header-three-menu"> </ul> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </header> <script> function showErrorData(data) { for (var field in data.data) { var error_field = $('[name="' + field + '"]'); if (error_field.length) { var ele_errors_arr = {}; ele_errors_arr[field] = []; if (typeof data.data[field] == 'string') { ele_errors_arr[field].push(data.data[field]); } else { ele_errors_arr[field].push(data.data[field][0]); } error_field.closest('form').validate().showErrors(ele_errors_arr); error_field.focus(); break; } else { if (typeof data.data[field] == 'object') { for (var vv in data.data[field]) { error += data.data[field][vv] + '\n'; } } else { error += data.data[field] + '\n'; } } } } function show_warning_box(warning_html) { if ($('.como-warning-box.in').length > 0) { $('.como-warning-box p').remove(); $('.como-warning-box').removeClass('in'); } $('.como-warning-box').prepend(warning_html); setTimeout(function () { $('.como-warning-box').addClass('in'); $('.como-warning-box').removeClass('hide'); }, 1000); $('.como-warning-box').click(function () { $(this).removeClass('in'); $('.como-warning-box').addClass('hide'); }); } function full_search_change(e) { if (event.keyCode == 13) { full_search(); } } function full_search() { var search_text = $('.search-wrap-desktop input').val(); var target = "https://interfoam.cn/cn/full-search"; location.href = target + '/' + search_text; } function full_search_change_mobile(e) { if (event.keyCode == 13) { full_search(); } } function full_search_mobile() { var search_text = $('.search-wrap-mobile input').val(); var target = "https://interfoam.cn/cn/full-search"; location.href = target + '/' + search_text; } </script> <main id="main"> <section class="page-kv page-kv--multiple"> <div class="page-kv-content"> <div class="page-kv__swiper"> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <div class="page-kv__swiper-item"> <div class="kv-pic"> <picture> <source srcset="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/11/29/20241129172755dc51f650.jpg?imageView2/2/format/webp" media="(max-width: 768px)"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/11/29/202411291727395b62adb3.jpg?imageView2/2/format/webp" alt=""> </picture> </div> <div class="container"> <div class="kv-descript"> <h3 class="kv-descript__title">Interfoam发泡材料展</h3> <p class="kv-descript__desc">2025年7月2-4日在上海新国际博览中心E4馆盛大举办,共同探索行业最新趋势、技术创新与市场机遇。一场不容错过的专业展会,一个信息与技术交流与合作的平台。</p> <a href="http://u.pme.cn/foam2024" target="_blank" class="btn">立即购票</a> </div> </div> </div> </div> <div class="swiper-slide"> <div class="page-kv__swiper-item"> <div class="kv-pic"> <picture> <source srcset="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/11/29/202411291729034d76b5e6.jpg?imageView2/2/format/webp" media="(max-width: 768px)"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/11/29/202411291728376c67e309.jpg?imageView2/2/format/webp" alt=""> </picture> </div> <div class="container"> <div class="kv-descript"> <h3 class="kv-descript__title">“重新定义发泡材料”</h3> <p class="kv-descript__desc">第五届发泡材料及应用国际高峰论坛继续围绕”重新定义发泡材料”为主题,从和谐共生、应用创新、技术变革几个维度探讨发泡材料及其垂直应用的创新与发展,议题数量将超过100个。</p> <a href="https://www.interfoam.cn/cn/index/conference/conferences" target="_blank" class="btn">了解更多</a> </div> </div> </div> </div> </div> </div> </div> </div> </section> <!-- layout 12 --> <article class="" > <!-- block:Countdown --> <section id="block674ff3c3f105b390003316" class="cms-block section-block section-padding-top-loose section-padding-bottom-0 section-background-white section-block--center cms-section-7e0j" > <div class="section-block__clip-path" id="countdown-block674ff3c3f105b390003316"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <header class="section-block-title">距Interfoam China 2024上海开幕仅剩</header> <div class="section__cutdown-block opacity0"> <div class="cutdown-item day_show"> <time>00</time> <span>天</span> </div> <div class="cutdown-item hour_show"> <time>00</time> <span>时</span> </div> <div class="cutdown-item minute_show"> <time>00</time> <span>分</span> </div> <div class="cutdown-item second_show"> <time>00</time> <span>秒</span> </div> </div> </div> <div class="section-block__read-more"> <a href="http://u.pme.cn/foam2024" target="_blank" class="btn">立即购票</a> </div> </div> </div> </div> <script> $(function() { var date = new Date(); var date_time = date.getTime() / 1000; var intDiff = parseInt(1725292800) - date_time;//倒计时总秒数量 var Timer; var timeReady = false; function timer(intDiff){ Timer = setInterval(function(){ var day=0, hour=0, minute=0, second=0;//时间默认值 if(intDiff > 0){ day = Math.floor(intDiff / (60 * 60 * 24)); hour = Math.floor(intDiff / (60 * 60)) - (day * 24); minute = Math.floor(intDiff / 60) - (day * 24 * 60) - (hour * 60); second = Math.floor(intDiff) - (day * 24 * 60 * 60) - (hour * 60 * 60) - (minute * 60); } if (day <= 9) day = '0' + day; if (hour <= 9) hour = '0' + hour; if (minute <= 9) minute = '0' + minute; if (second <= 9) second = '0' + second; $('#block674ff3c3f105b390003316 .day_show time').html(day); $('#block674ff3c3f105b390003316 .hour_show time').html(hour); $('#block674ff3c3f105b390003316 .minute_show time').html(minute); $('#block674ff3c3f105b390003316 .second_show time').html(second); if(!timeReady){ $('#block674ff3c3f105b390003316 .section__cutdown-block').removeClass('opacity0'); timeReady = true; } intDiff--; if (intDiff < 0) { clearInterval(Timer) } }, 1000); } if (intDiff > 0) { timer(intDiff); } else { $('#main #block674ff3c3f105b390003316').remove(); } }) </script> </section> <!-- block:Text with video --> <section id="block674ff3c3f3f79630530727" class="cms-block section-block section-padding-top-default section-padding-bottom-0 section-background-white section-block--center this-graphic--left this-graphic--not-surround cms-section-e84n0" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <header class="section-block-title">展会简介</header> <div class="section-block-graphic-video"> <div class="pull-media"> <div class="this-video-item"> <div class="video-wrap"> <div class="iframe-video"> <iframe src="https://wx.vzan.com/live/m/vzliveplayer?type=live&vid=1477852402&liveId=1630938441" ></iframe> </div> </div> </div> </div> <div class="section-block-graphic__info"> <div class="ckediter"> <p style="text-align: justify;">聚合物发泡材料是新材料中的新生力量。通过不同的发泡工艺,赋予了聚合物全新的优异性能。聚合物发泡材料凭借其轻量化、减震降噪、保温隔热、过滤等独特性能,在不同的垂直应用领域发挥着关键作用。<br /> <br /> Interfoam是发泡材料全产业链的国际化专业展览会,是发泡材料专业人士不容错过的国际盛会。<br /> <br /> Interfoam上海展将集中展示发泡材料的前沿生产技术、设备及发泡材料的新技术、新趋势、新应用等,竭力为发泡材料产业上下游及垂直应用行业打造技术、贸易、品牌展示、学术交流为一体的专业平台,赋能行业可持续发展!</p> </div> </div> </div> </div> </div> </div> </div> </section> <!-- block:Link List --> <section id="block674ff3c4027ba855970784" class="cms-block section-block section-padding-top-0 section-padding-bottom-default section-background-white section-block--center this-links-center cms-section-13ff1e" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="section-block-links"> <ul class="section-block-links__list"> <li><a href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q" target="_blank"> <i class="i i-Link"></i><span>申请展位→</span> </a> </li> <li><a href="https://work.weixin.qq.com/ca/cawcde6414cfcd18f6" target="_blank"> <i class="i i-Link"></i><span>微信客服→</span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <!-- block:Tease boxes(2 columns) --> <section id="block674ff3c405244509188009" class="cms-block section-block section-padding-top-default section-padding-bottom-default section-gradients-background-main section-block--center cms-section-f99f9a" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <header class="section-block-title">Interfoam2024热点话题</header> <div class="section-block__two-column-box"> <div class="section-block__two-column-item"> <div class="content"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/11/29/202111291748338bc5bd4e.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <div class="top"> <h4 class="title">“和谐共生”</h4> <p class="desc"> 在“碳达峰”“碳中和”战略框架下,积极应对机遇与挑战,推动发泡技术与应用更注重绿色、高效、无害等可持续理念。 </p> </div> </div> </div> </div> <div class="section-block__two-column-item"> <div class="content"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/03/20211203111434b53030ad.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <div class="top"> <h4 class="title">“技术变革”</h4> <p class="desc"> 紧扣时代发展命题,鼓励、探讨和推广发泡材料上下游产业链的创新技术研发以及传统工艺升级迭代。创建发泡材料积极的“产学研”交流平台,推动前沿技术在发泡材料产业的落地转化。 </p> </div> </div> </div> </div> <div class="section-block__two-column-item"> <div class="content"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/03/202112031141023bff6f45.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <div class="top"> <h4 class="title">“应用创新”</h4> <p class="desc"> 聚焦发泡材料在垂直应用领域的创新解决方案。以技术创新为驱动,以市场需求为导向,使发泡新技术、新产品、新方案为各细分应用领域创造更高价值。持续创新动能,探索发泡材料无限应用可能。 </p> </div> </div> </div> </div> <div class="section-block__two-column-item"> <div class="content"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/03/202112031141252c25d2f5.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <div class="top"> <h4 class="title">“高质量发展”</h4> <p class="desc"> 双循环格局下,是国内发泡材料产业结构调整、加速自主创新以及拓展国际合作的必然要求,也是全球企业不断深耕中国市场的巨大机遇。发泡材料定能满足人民群众对美好生活的向往,也必是人类迈向更高质量发展道路上最关键性、最亲密可靠的一环。 </p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <!-- block:Link List --> <section id="block674ff3c410c7f897697165" class="cms-block section-block section-padding-top-0 section-padding-bottom-default section-background-white section-block--center this-links-center cms-section-fcff8g" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="section-block-links"> <ul class="section-block-links__list"> <li><a href="https://www.interfoam.cn/cn/index/overview/introduction/2022hottopic" target="_blank"> <i class="i i-Link"></i><span>查看更多</span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <!-- block:Facts --> <section id="block674ff3c41265b294650831" class="cms-block section-block section-padding-top-default section-padding-bottom-default section-background-image this-valuePresentation-color2 this-valuePresentation-layout1 cms-section-5f7l8" > <div class="section-block__clip-path"> <picture class="section-background__image"> <source srcset="" media="(max-width: 768px)"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/08/03/20230803174536e7b5ba1e.jpg?imageView2/2/format/webp" alt=""> </picture> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="value-presentation"> <div class="value-presentation__description"> <h3 class="value-presentation__description__title">蓬勃发展的亚洲发泡材料市场</h3> <p class="value-presentation__description__desc">聚合物发泡材料是新材料中的新生力量。通过不同的发泡工艺,赋予了聚合物全新的优异性能。聚合物发泡材料凭借其轻量化、减震降噪、保温隔热、过滤等独特性能,在不同的垂直应用领域发挥着关键作用。</p> <a href="https://www.baidu.com" target="_blank" class="btn">了解更多</a> </div> </div> </div> </div> </div> </div> <div class="value-presentation__block"> <div class="value-presentation__block__content"> <div class="value-presentation__item"> <div class="value-presentation__item__title"> 11,500 <sup>㎡</sup> </div> <span class="value-presentation__item__text">展览面积</span> </div> <div class="value-presentation__item"> <div class="value-presentation__item__title"> 300 <sup>+</sup> </div> <span class="value-presentation__item__text">展商数量</span> </div> <div class="value-presentation__item"> <div class="value-presentation__item__title"> 100 <sup>+</sup> </div> <span class="value-presentation__item__text">专业会议</span> </div> <div class="value-presentation__item"> <div class="value-presentation__item__title"> 10000 <sup>+</sup> </div> <span class="value-presentation__item__text">观众数量</span> </div> </div> </div> </section> <!-- block:Rich text --> <section id="block674ff3c416416562642608" class="cms-block section-block section-padding-top-default section-padding-bottom-default section-background-grey section-block--center section-compact cms-section-a49m4h" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="ckediter"> <h3 style="text-align: center;">知名展商</h3> </div> </div> </div> </div> </div> <script> $(function() { $('#block674ff3c416416562642608 .table-response').each(function () { var $table = $(this), isColspan = $table.find('[colspan]').attr('colspan') > 1, isRowspan = $table.find('[rowspan]').attr('rowspan') > 1, isSpan = isColspan || isRowspan; if (isSpan) { $table.toggleClass('table-response table-response-wrap'); if (isRowspan) { $table.removeClass('table-striped').addClass('table-bordered'); } } else { var $tr = $table.find('tbody tr'), td = $tr.find('td').wrapInner('<div class="table-response-td"></div>'), th = $table.find('thead th').wrapInner('<div class="table-response-th"></div>'), $td = td.find('.table-response-td'), $th = th.find('.table-response-th'), rowCont = th.length; $td.each(function (i) { $(this).before($th.eq(i % rowCont).clone()); }) } }); $('#block674ff3c416416562642608 .table-response-wrap').wrap('<div class="table-responsive-md">') }) </script> </section> <!-- block:Small image gallery --> <section id="block674ff3c418667675560517" class="cms-block section-block section-padding-top-0 section-padding-bottom-default section-background-grey section-block--center section-block--images-ratio-2x1 cms-section-83bf6" > <div class="section-block__clip-path" id="block674ff3c418667675560517"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="section-block__images"> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.recticel.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/2024080810223711416051.png?imageView2/2/format/webp" alt="可彭特海绵 (上海) 有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808114948489738c2.png?imageView2/2/format/webp" alt="浙江杰上杰新材料股份有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/2024080811500537c8b768.png?imageView2/2/format/webp" alt="浙江上和塑胶材料有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/202408081006089dff2578.png?imageView2/2/format/webp" alt="SUNPOR" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/202408081151215b3bf4aa.jpg?imageView2/2/format/webp" alt="佐德风 Zotefoams plc" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://virtualexpo.interfoam.cn/zh-cn/platform/institutions/c57b0" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/10/15/2021101513565783f651cc.png?imageView2/2/format/webp" alt="4" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/202408081023284732f9ca.png?imageView2/2/format/webp" alt="南京天诗蓝盾生物科技有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/2024091014162074fa7477.jpg?imageView2/2/format/webp" alt="常州广裕橡塑科技有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808114638ac5f19aa.jpg?imageView2/2/format/webp" alt="泰安实力机电设备有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/202408081144460a7cce25.jpg?imageView2/2/format/webp" alt="石家庄启宏新材料制品有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/07/25/20230725094809066660dc.jpg?imageView2/2/format/webp" alt="2-南京创博机械设备有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808102426d40259f4.jpg?imageView2/2/format/webp" alt="诺力昂化学品(宁波)有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/2024080811423452ea8af3.jpg?imageView2/2/format/webp" alt="上海菁石塑料制品有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/202409101445285bc7e0e0.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c418667675560517" data-caption="" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910144524824aceff.jpg?imageView2/2/format/webp" alt="万凯高分子材料宿迁有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/202408081020209b87065f.png?imageView2/2/format/webp" alt="江苏越升科技股份有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808101301bea9b408.jpg?imageView2/2/format/webp" alt="都利新材料(海安)有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/202408081015547e3e3107.png?imageView2/2/format/webp" alt="合肥普力先进材料科技有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808114203323e9c5a.jpg?imageView2/2/format/webp" alt="上海畅坤智能科技有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/07/202408071028467ae4e3f6.png?imageView2/2/format/webp" alt="abbda948ced5760ff4cf7e3c878a3d74__fallback_source=1&amp;height=1280&amp;mount_node_token=KQn3dZsnwoEZ7mxLcepcBEA4nUB&amp;mount_point=docx_image&amp;policy=equal&amp;width=1280" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/07/25/20230725094851fb269ac4.jpg?imageView2/2/format/webp" alt="3-金纬化工成套设备有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/2024080810230120fc9bdc.jpg?imageView2/2/format/webp" alt="梅特勒托利多科技(中国)有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910142314427f826f.png?imageView2/2/format/webp" alt="绍兴培扬化工科技有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/2024080811434497e959fb.png?imageView2/2/format/webp" alt="上海润河纳米材料科技有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/202409101445253a638814.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c418667675560517" data-caption="" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910144522ea2dbc54.jpg?imageView2/2/format/webp" alt="沃特世科技(上海)有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/2024080810150662db46cd.jpg?imageView2/2/format/webp" alt="广州市本奇新材料有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://virtualexpo.interfoam.cn/zh-cn/platform/institutions/0eeb8" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808102110b7cb0cff.jpg?imageView2/2/format/webp" alt="江苏诚丰新材料股份有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808114907a15049c6.jpg?imageView2/2/format/webp" alt="玉环比得宝气阀有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910144842c18b9351.png?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c418667675560517" data-caption="" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/202409101448407e36594c.png?imageView2/2/format/webp" alt="江苏诚兴新材料有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910144844804e2e71.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c418667675560517" data-caption="" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910144841baa38255.jpg?imageView2/2/format/webp" alt="浙江凌志新能源科技有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.micro-foam.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/12/20240812171226794a2dc9.jpg?imageView2/2/format/webp" alt="宁波致微" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808102212a06d102f.jpg?imageView2/2/format/webp" alt="晋江市石达塑胶精细有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808115047a1331d04.png?imageView2/2/format/webp" alt="中嘉橡塑科技(江苏)有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://virtualexpo.interfoam.cn/zh-cn/platform/institutions/fe0f6" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/03/202112031849014265f4c2.jpg?imageView2/2/format/webp" alt="微信图片_20211203184710" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/20240808101440d2468e96.jpg?imageView2/2/format/webp" alt="佛山市普加化工有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910145223c66142dc.png?imageView2/2/format/webp" alt="7f97903b503bb0931ac5b442e3347df9" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910143754dadbe29d.png?imageView2/2/format/webp" alt="广州市矽博化工科技有限公司-01" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/2024091014452687a2f641.png?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c418667675560517" data-caption="" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910144523452f5037.png?imageView2/2/format/webp" alt="常州市汉昌缓冲材料有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/202408081145038ae0af0c.jpg?imageView2/2/format/webp" alt="寿光诺盟化工有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/08/2024080811485049f3170d.png?imageView2/2/format/webp" alt="宜兴市玛斯特新型材料有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910144527fe07f4f3.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c418667675560517" data-caption="" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/20240910144523ef104bd5.jpg?imageView2/2/format/webp" alt="江苏恒茂新材料科技有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/202409101448437f29918b.png?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c418667675560517" data-caption="" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/202409101448411d3ec27c.png?imageView2/2/format/webp" alt="天津斯坦利新型材料有限公司" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/202409101445265b49504a.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c418667675560517" data-caption="" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/09/10/202409101445228ac39087.jpg?imageView2/2/format/webp" alt="浙江雅康橡塑有限公司" /> </a> </div> </div> </div> </div> </div> </div> </div> </section> <!-- block:Link List --> <section id="block674ff3c45ac4c749883186" class="cms-block section-block section-padding-top-0 section-padding-bottom-default section-background-grey section-block--center this-links-center cms-section-bc4m50" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="section-block-links"> <ul class="section-block-links__list"> <li><a href="https://www.interfoam.cn/cn/index/for-visitors/whyvisit/exhibitorlist-2" target="_blank"> <i class="i i-Link"></i><span>查看更多</span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <!-- block:Rich text --> <section id="block674ff3c45c698239004571" class="cms-block section-block section-padding-top-loose section-padding-bottom-0 section-gradients-background-main section-block--center cms-section-535f7g" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="ckediter"> <h2 style="text-align: center;">&ldquo;重新定义发泡材料&rdquo; 第四届发泡材料及应用国际高峰论坛</h2> <p>第四届发泡材料及应用国际高峰论坛I继续围绕&rdquo;重新定义发泡材料&rdquo;为主题,从和谐共生、应用创新、技术变革几个维度探讨发泡材料及其垂直应用的创新与发展,议题数量将超过100个,论坛将线上线下同步进行。</p> </div> </div> </div> </div> </div> <script> $(function() { $('#block674ff3c45c698239004571 .table-response').each(function () { var $table = $(this), isColspan = $table.find('[colspan]').attr('colspan') > 1, isRowspan = $table.find('[rowspan]').attr('rowspan') > 1, isSpan = isColspan || isRowspan; if (isSpan) { $table.toggleClass('table-response table-response-wrap'); if (isRowspan) { $table.removeClass('table-striped').addClass('table-bordered'); } } else { var $tr = $table.find('tbody tr'), td = $tr.find('td').wrapInner('<div class="table-response-td"></div>'), th = $table.find('thead th').wrapInner('<div class="table-response-th"></div>'), $td = td.find('.table-response-td'), $th = th.find('.table-response-th'), rowCont = th.length; $td.each(function (i) { $(this).before($th.eq(i % rowCont).clone()); }) } }); $('#block674ff3c45c698239004571 .table-response-wrap').wrap('<div class="table-responsive-md">') }) </script> </section> <!-- block:Single Image --> <section id="block674ff3c45dfb1610376340" class="cms-block section-block this-block-full section-padding-top-0 section-padding-bottom-0 section-gradients-background-main section-block--center cms-section-02af7f" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="secion-block-image"> <div class="img-src"> <a class="img-src cur-default" href="javascript:;" target="_self"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/08/03/202308031006549a47503c.jpg?imageView2/2/format/webp"> </a> </div> </div> </div> </div> </div> </div> </section> <!-- block:Link List --> <section id="block674ff3c461396034763648" class="cms-block section-block section-padding-top-default section-padding-bottom-default section-gradients-background-main section-block--center this-links-center cms-section-8d1m4a" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <header class="section-block-title">“重新定义发泡材料”第四届发泡材料及应用国际高峰论坛</header> <div class="section-block-links"> <ul class="section-block-links__list"> <li><a target="_blank" href="https://www.interfoam.cn/download/media/64barY3fWwL0xAK7Ord9rY6mNpfdKfBqXGG9LsimfnQ25DqZ8DnuRczSxdq_kUzy35BFi36oDvAy2s6XoR29n9jQT4odxAJx8WVF_l86LgprooS9LvednjbA3doHiCBrEtnGFsNMlRtTHIBORf-_VlFhzxWxN5zai6KD4Hwghk_FcWmYDHMa8ZH59pypzi_jOzor9-RV_2tZCggMeYN_Hb0u5_mO2pkv2na3p_LuicVef1VTBPuFHHN_FELZJn85FfGTmKy90wmVL21pPzbsf_RHPVSl"> <i class="i i-Download"></i><span>请下载PDF文件</span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <!-- block:Teaser box slide --> <section id="block674ff3c464319914376051" class="cms-block section-block section-padding-top-0 section-padding-bottom-0 section-gradients-background-main section-block--center section-block--images-ratio-1x1 cms-section-302f40" > <div class="section-block__clip-path" id="info-card-block674ff3c464319914376051"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <header class="section-block-title">专家库</header> <div class="section-block__images-swiper"> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!expert-zhaoling" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/02/17/20230217131851fff1472f.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">赵玲</h4> <p class="line-1"> 教授<br /> 华东理工大学 </p> <p class="line-2"> 超临界二氧化碳微孔发泡 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!heyadong" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/04/12/20220412141215a7ac0c97.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">何亚东</h4> <p class="line-1"> 教授<br /> 北京化工大学 </p> <p class="line-2"> 物理发泡设备及工艺 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!liaoxia" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/202112021818218fa333f2.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">廖霞</h4> <p class="line-1"> 研究员<br /> 四川大学 </p> <p class="line-2"> 超临界发泡/硅橡胶 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!yanxiang" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202182337f592551f.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">燕翔</h4> <p class="line-1"> 声学室主任/副教授<br /> 清华大学建筑学院 </p> <p class="line-2"> 室内音质设计、隔声隔振设计、噪声治理、声学材料检测,现场声学测量,声学模型测量,计算机模拟等 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!pangyongyan" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202181920d7d02a8d.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">庞永艳</h4> <p class="line-1"> 研究员<br /> 中国科学院宁波材料技术与工程研究所 </p> <p class="line-2"> PS/PMMA共混体系相分离驱动的形态演化对发泡行为和发泡窗口的影响研究 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!mihaoyang" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/2021120218185031af9553.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">米皓阳</h4> <p class="line-1"> 特聘教授<br /> 郑州大学 </p> <p class="line-2"> 超疏水油水分离泡沫的绿色制备 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!hudongdong" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202181639603580f2.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">胡冬冬</h4> <p class="line-1"> 特聘副研究员<br /> 华东理工大学 </p> <p class="line-2"> 主要从事超临界CO2与聚合物的相互作用、超临界流体发泡聚合物、超临界CO2乳液/微乳液等研究 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!wufei" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/202112021820007b5659e3.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">吴飞</h4> <p class="line-1"> 正高级工程师<br /> 中国科学院宁波材料技术与工程研究所 </p> <p class="line-2"> 连续挤出以及间歇式发泡技术/聚丙烯釜压发泡 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!zhangyingzeng" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/202112021822533aa6baf7.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">张迎增 </h4> <p class="line-1"> 秘书长 <br /> 中关村汇智抗菌新材料产业技术创新联盟/全国卫生产业企业管理协会抗菌产业分会 </p> <p class="line-2"> 专注于抗菌产业研究,擅长产业宏观分析和企业微观战略研究 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!dongqingyin" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202182400c6cc2b57.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">董庆银</h4> <p class="line-1"> 区域废物管理室主任<br /> 清华大学/巴塞尔公约亚太区域中心 </p> <p class="line-2"> 电子废物管理和资源化、危险废物治理与资源化技术、动力电池回收处理、有害垃圾治理政策、绿色工厂评价等 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!zhouhongfu" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/202112021825145801860b.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">周洪福 </h4> <p class="line-1"> 教授、博导 <br /> 北京工商大学 </p> <p class="line-2"> 聚合物改性和聚合物发泡材料的功能化研究 </p> </div> </a> </div> <div class="swiper-slide"> <a href="http://www.interfoam.cn/cn/category/page/detail!shaoliang" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/202112021826041c4165a1.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">邵亮</h4> <p class="line-1"> 院长助理、副教授、博士、硕导<br /> 陕西科技大学 </p> <p class="line-2"> 丁苯橡胶(SBR) 基纳米复合发泡材料的尺寸稳定性研究 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-zhaiwentao" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/16/20220216153541c7856478.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">翟文涛</h4> <p class="line-1"> 教授<br /> 中山大学 </p> <p class="line-2"> 聚合物微孔发泡材料加工、成型和性能研究,聚合物复合材料,聚合物热塑弹性体/橡胶材料 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-liminggang" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/17/20220217154049d0049474.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">李明罡</h4> <p class="line-1"> 副研究员,高分子物理与化学国家重点实验室<br /> 中国科学院长春应用化学研究所 </p> <p class="line-2"> 聚合物超临界CO2发泡行为与性能研究/负泊松比泡沫材料性能与应用 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-xinchunling" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/17/20220217154433650bb004.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">信春玲</h4> <p class="line-1"> 副教授,机电工程学院<br /> 北京化工大学 </p> <p class="line-2"> 热塑性聚合物发泡机理、工艺及关键技术;连续纤维增强热塑性复合材料的浸渍机理、界面结合及关键成型技术;聚合物高性能化改性原理及技术。 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-tangtao" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/17/202202171546100bbff351.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">唐涛</h4> <p class="line-1"> 研究员,高分子物理与化学国家重点实验室<br /> 中国科学院长春应用化学研究所 </p> <p class="line-2"> 长期从事聚合物多相材料的可控制备及其应用研究,包括:聚合物发泡材料、聚合物碳化与阻燃、聚合物可控降解与回收再利用、支化/接枝聚合物合成。 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-huangpengke" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/17/20220217154723388f1f9d.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">黄朋科</h4> <p class="line-1"> 助理研究员,高分子与复合材料实验室<br /> 中科院宁波材料所 </p> <p class="line-2"> 1.超临界流体发泡技术;2聚合物多孔结构设计 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-neiheran" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/17/20220217154800e61a6077.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">聂赫然</h4> <p class="line-1"> 副研究员,能源材料研究部(DNL22)<br /> 中国科学院大连化学物理研究所 </p> <p class="line-2"> 聚酰亚胺泡沫研发与产业化,芳香聚酯的制备与合成,油品助剂的研发 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-zhangguangcheng" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/202202241619322f45a369.png?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">张广成</h4> <p class="line-1"> 副院长,教授<br /> 西北工业大学 </p> <p class="line-2"> 西北工业大学化学与化工学院教授,材料学博士,博士生导师。 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-wangjianlei" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/17/202202171548428ac42f02.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">王剑磊</h4> <p class="line-1"> 副研究员,材料工程研究所<br /> 中国科学院海西研究院 </p> <p class="line-2"> 高分子材料和纤维增强复合材料的开发 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-wanglong" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/17/202202171549146963cad0.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">汪龙</h4> <p class="line-1"> 研究员,高分子与复合材料实验室<br /> 中国科学院宁波材料技术与工程研究所 </p> <p class="line-2"> 超临界流体发泡、生物基高分子发泡材料、发泡新技术与新方法 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-yangjianming" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/20220224143110fdad02e3.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">杨建明</h4> <p class="line-1"> 资格副教授,化学与化工学院,安徽工业大学 </p> <p class="line-2"> 研究方向:弹性体材料的发泡与功能化研究 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-gongwei" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/20220224153424fa5b0fe9.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">龚维</h4> <p class="line-1"> 教授,科学技术处,贵州师范大学 </p> <p class="line-2"> 发泡剂改性、高分子发泡材料及装备 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-zhangyun" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/04/14/20220414113406e81c03fe.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">张允</h4> <p class="line-1"> 青年特聘教授,化学与环境工程学院,安阳工学院 </p> <p class="line-2"> 超临界流体辅助聚合物成型加工原理及装备 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-jiangzhiwei" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/2022022415370274c592b9.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">姜治伟</h4> <p class="line-1"> 副研究员,高分子物理与化学国家重点实验室,中国科学院长春应用化学研究所 </p> <p class="line-2"> 聚合物发泡材料;高分子防火材料;高分子共混材料 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-duantianjiao" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/2022022415373754adc86c.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">段天娇</h4> <p class="line-1"> 中级工程师,材料科学与化学工程学院,哈尔滨工程大学 </p> <p class="line-2"> 高性能多孔材料及其复合材料的研发与应用。 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-zhangshuling" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/20220224153812676d4db7.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">张淑玲</h4> <p class="line-1"> 教授,化学学院,吉林大学 </p> <p class="line-2"> 聚合物基多孔材料;聚合物基电磁屏蔽材料;聚合物基生物医用材料<br /> </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-sungaohui" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/202202241539008f4d426a.png?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">孙高辉</h4> <p class="line-1"> 副教授,材料科学与化学工程学院,哈尔滨工程大学 </p> <p class="line-2"> 1、高效绝热吸声多孔材料设计、制备与工程化研究;2、高性能聚合物基薄膜材料开发与性能研究;3、聚合物仿生粘液合成及特性研究;4、隔热吸声一体化轻量化结构材料制备及性能研究; </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-zhangqingsong" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/2022022415394077b1ec9f.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">张青松</h4> <p class="line-1"> 系主任/教授,材料科学与工程学院,天津工业大学 </p> <p class="line-2"> 1; 智能响应性微凝胶的结构设计;2. 生物医用纳米复合凝胶载体; 3. 微生物发酵多级孔材料;4. 光子晶体凝胶传感器的构筑和可视化检测; 5. 智能凝胶纤维 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-zhouyingguo" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/202202241540158d8ed159.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">周应国</h4> <p class="line-1"> 教授,材料科学与工程,江苏科技大学 </p> <p class="line-2"> 材料先进加工技术(微孔发泡、轻量化工程、三维打印、先进模具技术等);材料加工过程中的结构及性能关系(聚合物及复合物);材料流变特性及材料改性(聚合物及复合物);材料加工过程的数值模拟。 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-wangguilong" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/02/24/202202241618396181e603.png?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">王桂龙</h4> <p class="line-1"> 教授,山东大学<br /> </p> <p class="line-2"> 山东大学教授,国家万人计划青年拔尖人才、山东大学杰出中青年学者/齐鲁青年学者。 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail!zhangxiaoli" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/03/24/20220324110413c2f061b7.jpeg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">张晓黎</h4> <p class="line-1"> 教授,材料科学与工程学院<br /> 郑州大学 </p> <p class="line-2"> 聚合物微孔发泡成型及其功能化和工业化、聚合物加工新工艺、注塑模具CAD/CAE </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail!zhangaimin" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/03/21/20220321143851b0a1aa05.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">张爱敏</h4> <p class="line-1"> 高级实验师,材料学院<br /> 山东大学<br /> </p> <p class="line-2"> 从事快速热循环注塑成型工艺、微发泡注塑成型工艺、聚合物釜压发泡工艺、聚合物泡沫材料结构与性能以及高分子材料改性的研究。 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail!dongguiwei" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/03/21/20220321143946c6580887.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">董桂伟</h4> <p class="line-1"> 高级实验师(副教授),材料科学与工程学院<br /> 山东大学 </p> <p class="line-2"> 聚合物注塑成型加工理论、工艺与模具,聚合物微孔发泡理论与工艺、轻量化功能性聚合物基复合材料以及新型注塑成形工艺与装备<br /> </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-zhangzhenxiu" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/03/24/20220324105129f309589b.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">张振秀</h4> <p class="line-1"> 高分子科学与工程学院,教授<br /> 青岛科技大学 </p> </div> </a> </div> <div class="swiper-slide"> <a href="https://www.interfoam.cn/cn/category/page/detail-xujingyi" target="_blank" class="section-block__images-swiper-avatarCard"> <div class="pic"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/06/20/20240620162939c243f91b.jpg?imageView2/2/format/webp" alt=""> </div> <div class="info"> <h4 class="title">徐敬一</h4> <p class="line-1"> 余姚华泰橡塑机械有限公司<br /> 首席技术执行官 </p> <p class="line-2"> 微发泡技术:<br /> 微发泡设备,模具,工艺及创新技术 </p> </div> </a> </div> </div> </div> </div> </div> </div> </div> </div> <script> $(function() { $("#info-card-block674ff3c464319914376051 .section-block__images-swiper .swiper-container").swiper({ slidesPerView: 4, slidesPerGroup: 4, spaceBetween: 30, pagination: { el: '.swiper-pagination1', clickable :true }, scrollbar: { el: '.swiper-scrollbar1', hide: true, }, breakpoints: { 320: { slidesPerView: 1.5, slidesPerGroup: 1.5, spaceBetween: 15 }, 768: { //当屏幕宽度大于等于768 slidesPerView: 3, slidesPerGroup: 3, spaceBetween: 20 }, 1024: { spaceBetween: 30, slidesPerView: 4, slidesPerGroup: 4 }, 1200: { spaceBetween: 30, slidesPerView: 4, slidesPerGroup: 4 } } }) }) </script> </section> <!-- block:Link List --> <section id="block674ff3c4972a5210177833" class="cms-block section-block section-padding-top-0 section-padding-bottom-default section-gradients-background-main section-block--center this-links-center cms-section-871f8i" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="section-block-links"> <ul class="section-block-links__list"> <li><a href="https://www.interfoam.cn/cn/index/industry/experts/expertlist" target="_blank"> <i class="i i-Link"></i><span>查看更多</span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <!-- block:Rich text --> <section id="block674ff3c498de1595879310" class="cms-block section-block section-padding-top-default section-padding-bottom-0 section-background-grey section-block--center section-compact cms-section-592m8f" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="ckediter"> <h2 style="text-align: center;">精彩瞬间</h2> </div> </div> </div> </div> </div> <script> $(function() { $('#block674ff3c498de1595879310 .table-response').each(function () { var $table = $(this), isColspan = $table.find('[colspan]').attr('colspan') > 1, isRowspan = $table.find('[rowspan]').attr('rowspan') > 1, isSpan = isColspan || isRowspan; if (isSpan) { $table.toggleClass('table-response table-response-wrap'); if (isRowspan) { $table.removeClass('table-striped').addClass('table-bordered'); } } else { var $tr = $table.find('tbody tr'), td = $tr.find('td').wrapInner('<div class="table-response-td"></div>'), th = $table.find('thead th').wrapInner('<div class="table-response-th"></div>'), $td = td.find('.table-response-td'), $th = th.find('.table-response-th'), rowCont = th.length; $td.each(function (i) { $(this).before($th.eq(i % rowCont).clone()); }) } }); $('#block674ff3c498de1595879310 .table-response-wrap').wrap('<div class="table-responsive-md">') }) </script> </section> <!-- block:Large image slide --> <section id="block674ff3c49a841796530183" class="cms-block section-block this-block-wide section-padding-top-0 section-padding-bottom-default section-block--images-ratio-16x9 section-background-grey section-block--center cms-section-7c7m8e" > <div class="section-block__clip-path" id="block674ff3c49a841796530183"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="section-block__images-swiper-single"> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616050440a7ef98.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261604586ab3aadc.jpg?imageView2/2/format/webp" alt="10002" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160505617003e3.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261604595bbf667a.jpg?imageView2/2/format/webp" alt="10003" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261605061e27be5e.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160500ec5dcdd7.jpg?imageView2/2/format/webp" alt="10004" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160506a2ee0280.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616050053de615f.jpg?imageView2/2/format/webp" alt="10005" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160507c3d41f2a.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160501c215ea3b.jpg?imageView2/2/format/webp" alt="10006" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261605087b10e3d0.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160501faea60a1.jpg?imageView2/2/format/webp" alt="10007" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160509681cacde.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160502ef5260b7.jpg?imageView2/2/format/webp" alt="10008" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160509aefeeef5.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261605025488b909.jpg?imageView2/2/format/webp" alt="10009" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261605102eae1ae0.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160503b7912b57.jpg?imageView2/2/format/webp" alt="10010" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160903b76a1a50.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160857b7dd3964.jpg?imageView2/2/format/webp" alt="10011" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261609046b2c0989.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261608579bba6ab4.jpg?imageView2/2/format/webp" alt="10012" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160904d0fe7c23.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160858bfaaa1b0.jpg?imageView2/2/format/webp" alt="10013" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160905c1256318.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160858a96e5d67.jpg?imageView2/2/format/webp" alt="10014" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616090632f6f569.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616085918f04ae2.jpg?imageView2/2/format/webp" alt="10015" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160906487f6124.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160859a11a6e26.jpg?imageView2/2/format/webp" alt="10016" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160907b13dba33.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616090010526c0b.jpg?imageView2/2/format/webp" alt="10017" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160908731bd14d.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616090000a1a71b.jpg?imageView2/2/format/webp" alt="10018" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616090850502e44.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616090131975d40.jpg?imageView2/2/format/webp" alt="10019" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261609097ac69bd3.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261609028d9db906.jpg?imageView2/2/format/webp" alt="10020" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160943cee3b667.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160937c8bde243.jpg?imageView2/2/format/webp" alt="10021" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160944b22c0da0.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261609379b09ee87.jpg?imageView2/2/format/webp" alt="10022" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616094442526a16.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261609382e289834.jpg?imageView2/2/format/webp" alt="10023" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261609452063a613.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261609387e4872ba.jpg?imageView2/2/format/webp" alt="10024" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160946a66ca1a3.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616093909f02b54.jpg?imageView2/2/format/webp" alt="10025" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160946c30c3dbe.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616094015e1dd34.jpg?imageView2/2/format/webp" alt="10026" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616094744d2a88d.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160940eceaea56.jpg?imageView2/2/format/webp" alt="10027" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160948b4527c50.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261609416c41fdde.jpg?imageView2/2/format/webp" alt="10028" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616094873dd644a.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026160941b60b35de.jpg?imageView2/2/format/webp" alt="10029" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261609494b85d5c8.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616094254e9b0de.jpg?imageView2/2/format/webp" alt="10030" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161049f66909fe.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261610435c8dc8db.jpg?imageView2/2/format/webp" alt="10031" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616105016123da4.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161044282b100b.jpg?imageView2/2/format/webp" alt="10032" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616105213bfdc7c.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161044c97fa668.jpg?imageView2/2/format/webp" alt="10033" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161052cab31b0d.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161045b7698df0.jpg?imageView2/2/format/webp" alt="10034" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261610531554ad36.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161045001500ee.jpg?imageView2/2/format/webp" alt="10035" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261610554f64af7e.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161046ee6422bd.jpg?imageView2/2/format/webp" alt="10036" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616105651d5b3d5.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161046abf9a153.jpg?imageView2/2/format/webp" alt="10037" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261610565f89e5a1.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161047cbf99aef.jpg?imageView2/2/format/webp" alt="10038" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161057d71223ca.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261610476f15036c.jpg?imageView2/2/format/webp" alt="10039" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616105889a61a1f.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161048a1786efe.jpg?imageView2/2/format/webp" alt="10040" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616112596bf1b0e.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161119a59104d0.jpg?imageView2/2/format/webp" alt="10041" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261611262dab00ab.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161120a64d1ec4.jpg?imageView2/2/format/webp" alt="10042" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616112668bbb077.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261611201bb8db7a.jpg?imageView2/2/format/webp" alt="10043" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261611274477c548.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161121a6bfc6bf.jpg?imageView2/2/format/webp" alt="10044" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161128cd521a0a.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161121447fb4b5.jpg?imageView2/2/format/webp" alt="10045" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/05/20/20240520100408fc3e92b2.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/05/20/20240520100348c54939da.jpg?imageView2/2/format/webp" alt="20240520-100305" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261611293babc4af.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616112255112d70.jpg?imageView2/2/format/webp" alt="10047" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261611308db6039c.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161123785f9ce8.jpg?imageView2/2/format/webp" alt="10048" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161130051290f9.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161123385e739c.jpg?imageView2/2/format/webp" alt="10049" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161131339bef8f.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261611248a714d9e.jpg?imageView2/2/format/webp" alt="10050" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161308aaf4198d.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161301437642fe.jpg?imageView2/2/format/webp" alt="10051" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161308974c87af.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613028143534d.jpg?imageView2/2/format/webp" alt="10052" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161309e10af6d0.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613020087165c.jpg?imageView2/2/format/webp" alt="10053" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161310275d29db.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613032a9bda56.jpg?imageView2/2/format/webp" alt="10054" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613107a9273ef.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616130385a53d46.jpg?imageView2/2/format/webp" alt="10055" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616131192d2d697.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616130459fda2b0.jpg?imageView2/2/format/webp" alt="10056" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613126ce688f5.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161305607b65aa.jpg?imageView2/2/format/webp" alt="10057" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161312080274b4.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161305860a7d96.jpg?imageView2/2/format/webp" alt="10058" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613134a631a86.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613061c6a6c99.jpg?imageView2/2/format/webp" alt="10059" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613147b0b7d8d.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161306e1cde61c.jpg?imageView2/2/format/webp" alt="10060" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161346361176f4.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161340739efeed.jpg?imageView2/2/format/webp" alt="10061" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161347146f206b.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613404e4bc0a2.jpg?imageView2/2/format/webp" alt="10062" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616134754670872.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616134173a92ea8.jpg?imageView2/2/format/webp" alt="10063" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161348b13ad380.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613423519da0d.jpg?imageView2/2/format/webp" alt="10064" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616134930bc1bf0.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161342eaf9cc48.jpg?imageView2/2/format/webp" alt="10065" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161350e7e8ffd1.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616134382388b8e.jpg?imageView2/2/format/webp" alt="10066" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613502af75e44.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161343f3c51fbb.jpg?imageView2/2/format/webp" alt="10067" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161351e628bafd.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616134486fe8988.jpg?imageView2/2/format/webp" alt="10068" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161352034756ee.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261613441994df5a.jpg?imageView2/2/format/webp" alt="10069" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616135257ec1621.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616134563b2ec36.jpg?imageView2/2/format/webp" alt="10070" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616191800c6c30f.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261619117ebe01bd.jpg?imageView2/2/format/webp" alt="10071" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261619196b78f027.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616191274bbc129.jpg?imageView2/2/format/webp" alt="10072" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161919ade3adde.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161912e669af73.jpg?imageView2/2/format/webp" alt="10073" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616192026ce952a.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161913f90251ae.jpg?imageView2/2/format/webp" alt="10074" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161921d5aa75eb.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161913054d0d90.jpg?imageView2/2/format/webp" alt="10075" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161922e10d62fe.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261619141db20393.jpg?imageView2/2/format/webp" alt="10076" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161922832332ed.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161915e6e9060e.jpg?imageView2/2/format/webp" alt="10077" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161923067a04f7.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161915b1f08b5f.jpg?imageView2/2/format/webp" alt="10078" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261619249253ac27.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261619161d6391cc.jpg?imageView2/2/format/webp" alt="10079" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026161924f1d76736.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261619178f30e872.jpg?imageView2/2/format/webp" alt="10080" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620203c599959.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162014e8c4c349.jpg?imageView2/2/format/webp" alt="10129" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162021e539de06.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616201493819712.jpg?imageView2/2/format/webp" alt="10130" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620222d26fd5c.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620151c5fda05.jpg?imageView2/2/format/webp" alt="10131" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620228d3266f0.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162016f67e19b4.jpg?imageView2/2/format/webp" alt="10132" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162023c77b5c8e.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162016b976c7a1.jpg?imageView2/2/format/webp" alt="10133" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620243da1db1e.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620178223ec0f.jpg?imageView2/2/format/webp" alt="10134" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616202403de181f.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162017698fb504.jpg?imageView2/2/format/webp" alt="10135" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620253da544e1.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162018cce34f29.jpg?imageView2/2/format/webp" alt="10136" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620267065a84f.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620189a800212.jpg?imageView2/2/format/webp" alt="10137" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261620265f046d35.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616201923f4adb1.jpg?imageView2/2/format/webp" alt="10138" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162120aa37dc1e.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261621141cdf03ea.jpg?imageView2/2/format/webp" alt="10140" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261621218e7dad3b.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162115aeee6dfb.jpg?imageView2/2/format/webp" alt="10141" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162121a628d44c.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261621157d7e0e79.jpg?imageView2/2/format/webp" alt="10142" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261621224fb838e0.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261621168081bc8e.jpg?imageView2/2/format/webp" alt="10143" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261621239f5b11bf.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162116378a9532.jpg?imageView2/2/format/webp" alt="10145" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261621232608495a.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616211730b25da2.jpg?imageView2/2/format/webp" alt="10146" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261621244a597843.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616211769d0e180.jpg?imageView2/2/format/webp" alt="10147" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261621256ed379b0.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616211864166ee9.jpg?imageView2/2/format/webp" alt="10148" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616212618e5c209.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162118ce78ce53.jpg?imageView2/2/format/webp" alt="10149" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616212674aedb63.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162119f0b43795.jpg?imageView2/2/format/webp" alt="10150" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261622252700c8e9.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616221979f82ce3.jpg?imageView2/2/format/webp" alt="10151" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616222648053829.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162220b06655d6.jpg?imageView2/2/format/webp" alt="10158" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616222788b2a990.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616222031833e99.jpg?imageView2/2/format/webp" alt="10159" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261622275b60a55d.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162221147fafdc.jpg?imageView2/2/format/webp" alt="10161" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162228ead5d3f5.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261622210f2ad064.jpg?imageView2/2/format/webp" alt="10162" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162229a8f8ea9b.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616222237ee04cf.jpg?imageView2/2/format/webp" alt="10163" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162229a364e66a.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162222ed60e73a.jpg?imageView2/2/format/webp" alt="10164" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162230b97063f9.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261622232350c412.jpg?imageView2/2/format/webp" alt="10165" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162231a7507174.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162224a4a35985.jpg?imageView2/2/format/webp" alt="10166" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616223174f170ed.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261622244d498f3b.jpg?imageView2/2/format/webp" alt="10167" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261624589a275f8d.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162452ec9ef53e.jpg?imageView2/2/format/webp" alt="10175" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162459bdf6b2ea.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162452e75be67a.jpg?imageView2/2/format/webp" alt="10176" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162501351efb80.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261624534ff22f52.jpg?imageView2/2/format/webp" alt="10177" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616250143df40c4.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162454920c2a92.jpg?imageView2/2/format/webp" alt="10178" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261625024cffcfbd.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616245474f9ec07.jpg?imageView2/2/format/webp" alt="10241" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261625032ab542db.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162455361034e0.jpg?imageView2/2/format/webp" alt="10242" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616250392217637.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162455511cd5e3.jpg?imageView2/2/format/webp" alt="10243" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162504b78c9edf.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261624564dbd4a2b.jpg?imageView2/2/format/webp" alt="10244" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162505d5045f6c.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162457d3f5884f.jpg?imageView2/2/format/webp" alt="10245" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261625052db2c113.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616245750449f18.jpg?imageView2/2/format/webp" alt="10246" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616271699e74f4d.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162711d6a260e2.jpg?imageView2/2/format/webp" alt="10247" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261627160068b8f1.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261627117c523928.jpg?imageView2/2/format/webp" alt="10248" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162717a61337f9.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162712e28a7f23.jpg?imageView2/2/format/webp" alt="10249" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162718fdbf6f7a.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162712546e7e58.jpg?imageView2/2/format/webp" alt="10250" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162718f71b8ae9.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616271306678c3a.jpg?imageView2/2/format/webp" alt="10251" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261627196bd76c17.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310261627136931485e.jpg?imageView2/2/format/webp" alt="10252" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162720ca5f2a8d.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162714627aaca9.jpg?imageView2/2/format/webp" alt="10253" /> </a> </div> </div> <div class="swiper-slide"> <div class="section-block__images-swiper-single-item"> <a class="pic" href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/20231026162721983074a8.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c49a841796530183" data-caption=" "> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/2023102616271479bebc1f.jpg?imageView2/2/format/webp" alt="10254" /> </a> </div> </div> </div> </div> </div> </div> </div> </div> </div> <script> $(function () { $("#block674ff3c49a841796530183 .section-block__images-swiper-single .swiper-container").swiper({ slidesPerView: 1, scrollbar: { el: '.swiper-scrollbar1', hide: true, }, navigation: { nextEl: '.swiper-button-next1', prevEl: '.swiper-button-prev1', outside: true, }, }) }) </script> </section> <!-- block:Link List --> <section id="block674ff3c5d4723997394132" class="cms-block section-block section-padding-top-0 section-padding-bottom-default section-background-grey section-block--center this-links-center cms-section-27dh2h" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="section-block-links"> <ul class="section-block-links__list"> <li><a href="https://www.interfoam.cn/cn/category/page/detail-Interfoam-China-2023" target="_blank"> <i class="i i-Link"></i><span>查看更多</span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <!-- block:News --> <section id="block674ff3c5d61df580953856" class="cms-block section-block section-padding-top-default section-padding-bottom-default section-background-white section-block--center cms-section-6f0l7g" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <header class="section-block-title">新闻动态</header> <div class="news-list_swiper" id="news-block674ff3c5d61df580953856"> <!-- 加class loaded 关闭loading --> <div class="section-loading"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="margin: auto; display: block; shape-rendering: auto" width="50px" height="50px" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" > <circle cx="50" cy="50" r="30" stroke-width="4" stroke="#85a2b6" stroke-dasharray="47.12388980384689 47.12388980384689" fill="none" stroke-linecap="round"> <animateTransform attributeName="transform" type="rotate" repeatCount="indefinite" dur="1s" keyTimes="0;1" values="0 50 50;360 50 50"></animateTransform> </circle> <!-- [ldio] generated by https://loading.io/ --> </svg> </div> </div> </div> <div class="section-block__read-more"> <a href="https://www.interfoam.cn/cn/index/news" target="_blank" class="btn">查看更多</a> </div> </div> </div> </div> <script> $(function () { $.get('/cn/api/news-list?type=1c7e1mwlJI3HgxNuF1ZTftbS5c2l-m6BoNA1zv5FNwxN0kudqw', function (rsp) { function setSwiperSize() { var vw = $(window).width(); var vh = $(window).height(); var size = $("#news-block674ff3c5d61df580953856.news-list_swiper .swiper-slide").length; if ($(window).width() >= 1024 && size <= 3) { $("#news-block674ff3c5d61df580953856.news-list_swiper").addClass("no-init"); } else if ($(window).width() >= 768 && $(window).width() < 1024 && size <= 2) { $("#news-block674ff3c5d61df580953856.news-list_swiper").addClass("no-init"); } else if ($(window).width() < 768 && size <= 1) { $("#news-block674ff3c5d61df580953856.news-list_swiper").addClass("no-init"); } else { $("#news-block674ff3c5d61df580953856.news-list_swiper").removeClass("no-init"); } } $(window).resize(function () { setSwiperSize(); }); $('#news-block674ff3c5d61df580953856').html(rsp); setSwiperSize(); $("#news-block674ff3c5d61df580953856.news-list_swiper .swiper-container").swiper({ slidesPerView: 3, spaceBetween: 30, pagination: { el: ".swiper-pagination1", clickable: true, }, scrollbar: { el: ".swiper-scrollbar1", }, navigation: { nextEl: ".swiper-button-next1", prevEl: ".swiper-button-prev1", outside: true, }, breakpoints: { 320: { slidesPerView: 1, spaceBetween: 20, }, 768: { //当屏幕宽度大于等于768 slidesPerView: 2, spaceBetween: 20, }, 1024: { spaceBetween: 30, slidesPerView: 3, }, }, }); } ); }); </script> </section> <!-- block:Rich text --> <section id="block674ff3c5d84f9020173823" class="cms-block section-block section-padding-top-default section-padding-bottom-default section-background-white section-block--center section-compact cms-section-576l7a" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="ckediter"> <h3 style="text-align: center;">合作伙伴</h3> </div> </div> </div> </div> </div> <script> $(function() { $('#block674ff3c5d84f9020173823 .table-response').each(function () { var $table = $(this), isColspan = $table.find('[colspan]').attr('colspan') > 1, isRowspan = $table.find('[rowspan]').attr('rowspan') > 1, isSpan = isColspan || isRowspan; if (isSpan) { $table.toggleClass('table-response table-response-wrap'); if (isRowspan) { $table.removeClass('table-striped').addClass('table-bordered'); } } else { var $tr = $table.find('tbody tr'), td = $tr.find('td').wrapInner('<div class="table-response-td"></div>'), th = $table.find('thead th').wrapInner('<div class="table-response-th"></div>'), $td = td.find('.table-response-td'), $th = th.find('.table-response-th'), rowCont = th.length; $td.each(function (i) { $(this).before($th.eq(i % rowCont).clone()); }) } }); $('#block674ff3c5d84f9020173823 .table-response-wrap').wrap('<div class="table-responsive-md">') }) </script> </section> <!-- block:Small image gallery --> <section id="block674ff3c5d9ea9898752094" class="cms-block section-block section-padding-top-0 section-padding-bottom-default section-background-white section-block--center section-block--images-ratio-2x1 cms-section-be6f60" > <div class="section-block__clip-path" id="block674ff3c5d9ea9898752094"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="section-block__images"> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.bioplasticsmagazine.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/01/12/20220112160451684e24b0.jpg?imageView2/2/format/webp" alt="微信图片_20220112160311" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.echemi.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/03/22/20220322170156d7d90ace.png?imageView2/2/format/webp" alt="echemi-logo" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.plaschina.com.cn" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/202112021753433f3971c8.png?imageView2/2/format/webp" alt="中国塑料(www.plaschina.com.cnCN1001-9278home.shtml)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.tradewheel.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/02/20/20240220141510bb95221c.jpg?imageView2/2/format/webp" alt="微信图片_20240220141416" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.prnasia.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/02/15/2023021514461220e0f859.jpg?imageView2/2/format/webp" alt="微信图片_20230215143447" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.convertermag.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/09/13/202209131618533f9cf4df.png?imageView2/2/format/webp" alt="converter-main-1" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.etradeasia.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/12/09/20221209152651a9a724d4.gif?imageView2/2/format/webp" alt="TradeAsia-LOGO-banner_200x100" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://home.chemicalwatch.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/05/31/202205310928089ab23a78.jpg?imageView2/2/format/webp" alt="微信图片_20220531084634" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://plasticsandrubberasia.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/03/02/2023030217241293321efd.jpg?imageView2/2/format/webp" alt="微信图片_20230302171614" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://exposale.net/en" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/12/09/2022120914350888bbfd77.png?imageView2/2/format/webp" alt="200x100en" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.theconstructiondata.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/04/04/202304041447218d9ebd7a.png?imageView2/2/format/webp" alt="微信图片_20230404144611" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.guidechem.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/10/26/202310260948050084a65e.png?imageView2/2/format/webp" alt="微信图片_20231026094526" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://zshq.zuiyouliao.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/04/04/202304041502242e56497a.png?imageView2/2/format/webp" alt="微信图片_20230404150153" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://jururu.info/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/05/10/202305101709152e3978d5.png?imageView2/2/format/webp" alt="05af1cc0ab787473697f531696af3dd" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.zaoche168.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/04/06/202304061644487235fff4.png?imageView2/2/format/webp" alt="微信图片_20230406164256" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.oeqiche.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/04/26/20230426164116f3e02f04.jpg?imageView2/2/format/webp" alt="微信图片_20230426163904" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.asianev.co" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202175311496e3054.gif?imageView2/2/format/webp" alt="亚洲新能源汽车网(www.asianev.com)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://auto.gasgoo.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202174906ae594c62.png?imageView2/2/format/webp" alt="盖世汽车(auto.gasgoo.com)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.cvchome.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202175307ed3304a9.jpg?imageView2/2/format/webp" alt="商用车之声(www.cvchome.com)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.qichecailiao.com/?btwaf=45844962" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/05/31/2023053114105166ee1ed8.jpg?imageView2/2/format/webp" alt="微信图片_20230531141017" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.cpi118.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202175340dc6c8153.jpg?imageView2/2/format/webp" alt="中国包装信息网(www.cpi118.com)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202175346a5eb4958.jpg?imageView2/2/format/webp" data-fancybox="gallery-block674ff3c5d9ea9898752094" data-caption="" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202175341a6f1ec55.jpg?imageView2/2/format/webp" alt="中国化工制造网(expo.chemmade.com)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.cnfrp.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202174905ec6f71a2.jpg?imageView2/2/format/webp" alt="复材网(www.cnfrp.com)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.cnfrp.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/202112021749072911237a.jpg?imageView2/2/format/webp" alt="华人聚氨酯网(www.cnfrp.com)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.86pla.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202175309dee97318.jpg?imageView2/2/format/webp" alt="塑料机械(www.86pla.com)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.polymer.cn" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/2021120217534257e353c5.jpg?imageView2/2/format/webp" alt="中国聚合物网(www.polymer.cn)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.xincailiao.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/05/10/202305101708524ee6f134.png?imageView2/2/format/webp" alt="新材料在线logo(高清)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.pnchina.net" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/2021120217490338c2228a.jpg?imageView2/2/format/webp" alt="PN中文网(www.pnchina.net)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.bisenet.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202174903d5c7fda6.jpg?imageView2/2/format/webp" alt="必勝网(www.bisenet.com)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.foodmate.net" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/02/20211202175309275ba1a4.jpg?imageView2/2/format/webp" alt="食品伙伴网(www.foodmate.net)" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="https://www.zhandada.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2023/06/07/2023060718363709debd67.png?imageView2/2/format/webp" alt="5fc9ccd2f50c2ea7b994a890745cb40" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://nzhzpt.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/12/20240812172301f1d01a3d.jpg?imageView2/2/format/webp" alt="媒体1" /> </a> </div> </div> <div class="section-images__item"> <div class="section-images__item-content"> <a href="http://www.ip1689.com" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2024/08/12/20240812172554d09a588f.png?imageView2/2/format/webp" alt="媒体2" /> </a> </div> </div> </div> </div> </div> </div> </div> </section> <!-- block:Link List --> <section id="block674ff3c61ffd3853017171" class="cms-block section-block section-padding-top-0 section-padding-bottom-default section-background-white section-block--center this-links-center cms-section-563f8c" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <div class="section-block-links"> <ul class="section-block-links__list"> <li><a href="https://www.interfoam.cn/cn/index/overview/introduction/cooperates" target="_blank"> <i class="i i-Link"></i><span>查看更多</span> </a> </li> </ul> </div> </div> </div> </div> </div> </section> <!-- block:Map --> <section id="block674ff3c6220ee990113184" class="cms-block section-block section-padding-top-0 section-padding-bottom-default section-background-white section-block--center cms-section-66bi4" > <div class="section-block__clip-path"> <div class="container"> <div class="section-block__content"> <div class="section-block__body"> <header class="section-block-title">展馆信息</header> <div class="section-block__map"> <div class="map-container" id="mapContainerblock674ff3c6220ee990113184"></div> <div class="map-message"> <div class="top"> <h3 class="title">Interfoam China 2024 上海国际发泡材料技术工业展览会</h3> <table> <tbody> <tr> <th>开展时间:</th> <td>2024年9月3-5日</td> </tr> <tr> <th>展馆名称:</th> <td>上海新国际博览中心</td> </tr> <tr> <th>展馆地址:</th> <td>上海浦东新区龙阳路2345号<br /> </td> </tr> </tbody> </table> </div> <div class="link-top-map"> <a target="_blank" href="//uri.amap.com/marker?position=121.568003,31.210205&name=展会地址&src=mypage&coordinate=gaode&callnative=0"> <i class="i i-compass"></i> <span>如何到达展馆?</span> </a> </div> </div> </div> <div class="section-block__read-more"> <a href="https://work.weixin.qq.com/ca/cawcde4a7b869ee3bf" target="_blank" class="btn">联系我们→</a> </div> </div> </div> </div> <script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=ee4dcb755c4af30e3848b6f8831f6d34"></script> <script> $(function () { var map = new AMap.Map('mapContainerblock674ff3c6220ee990113184', { zoom: 14,//级别 center: [121.568003,31.210205],//中心点坐标 dragEnable: false, }); // 创建 AMap.Icon 实例: var icon = new AMap.Icon({ size: new AMap.Size(36, 42), // 图标尺寸 image: 'https://www.interfoam.cn/modulesassets/comofrontend/dist/css/marker.png?v=2023.04.11', // Icon的图像 imageOffset: new AMap.Pixel(0, 0), imageSize: new AMap.Size(36, 42) // 根据所设置的大小拉伸或压缩图片 }); // 将 Icon 实例添加到 marker 上: var marker = new AMap.Marker({ position: new AMap.LngLat(121.568003,31.210205), offset: new AMap.Pixel(-10, -10), icon: icon, // 添加 Icon 实例 }); map.add(marker); AMap.plugin(["AMap.ToolBar"], function () { // 在图面添加工具条控件,工具条控件集成了缩放、平移、定位等功能按钮在内的组合控件 map.addControl( new AMap.ToolBar({ // 简易缩放模式,默认为 false liteStyle: true, }) ); }); //禁用地图双指缩放 map.setStatus({ scrollWheel: false, }); }) </script> </section> </article> </main> <script> $(function() { $(".page-kv__swiper .swiper-container").swiper({ slidesPerView: 1, effect : 'fade', fadeEffect: { crossFade: true, }, autoplay: { delay: 3000, stopOnLastSlide: false, disableOnInteraction: true, }, speed: 800, stopOnLastSlide: false, loop : true, pagination: { el: '.swiper-pagination1', clickable :true }, }) }) </script> <footer id="footer"> <div class="footer-background"> <div class="container"> <div class="footer-top"> <div class="row"> <div class="col-xl-3 col-md-6"> <div class="footer-panel-item"> <h3 class="title">快速链接</h3> <div class="footer-links"> <ul> <li><a class="" target="_self" href="https://interfoamvietnam.com/">Interfoam东南亚</a></li> <li><a class="" target="_self" href="https://bj.infosalons.com.cn/reg/INTERFOAMSH24ON/registercn/start">观众购票</a></li> <li><a class="" target="_self" href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q">展位预订</a></li> <li><a class="" target="_self" href="https://interfoam.cn/cn/index/tourbottom">商旅服务</a></li> <li><a class="" target="_self" href="http://www.interfoam.cn/cn/index/news?year=none&type=40cn7">线上研讨会</a></li> <li><a class=" no-link" target="_self" href="javascript:;">发泡创新奖</a></li> <li><a class="" target="_self" href="https://interfoam.cn/cn/index/foamunionbottom">发泡者联盟</a></li> <li><a class="" target="_self" href="http://www.interfoam.cn/cn/index/overview/mediacenter/brochure-press">下载宣传册</a></li> <li><a class="" target="_self" href="https://interfoam.cn/cn/index/logokvbottom">Logos&KV</a></li> </ul> </div> </div> </div> <div class="col-xl-3 col-md-6"> <div class="footer-panel-item"> <h3 class="title">主办单位</h3> <div class="ckediter"> <p><b>汇捷通展览(上海)有限公司</b><br /> <strong>北京</strong><br /> 地址:北京市朝阳区时间国际中心A座2003<br /> 电话:+ 86 10 58677998<br /> 邮箱:info@interfoam.cn</p> <p><strong>上海</strong><br /> 地址:上海市黄浦区远洋大厦3层<br /> 电话:+86 21 63232733<br /> 邮箱:katelyn.xue@interfoam.cn</p> </div> </div> </div> <div class="col-xl-3 col-md-6"> <div class="footer-panel-item"> <h3 class="title">合作单位</h3> <div class="ckediter"> <p><strong>协办单位</strong><br /> 国际安全运输协会中国委员会 (ISTA中国)<br /> 上海市聚氨酯工业协会</p> <p><strong>支持单位</strong><br /> 上海市粘接技术协会<br /> 中国聚氨酯工业协会泡沫塑料专业委员会<br /> 中国塑料加工工业协会聚氨酯制品专委会<br /> 中关村汇智抗菌新材料产业技术创新联盟</p> <p><meta name="baidu_union_verify" content="24dbf21697d5d1e29ca48229374a9e7a"></p> </div> </div> </div> <div class="col-xl-3 col-md-6"> <div class="footer-panel-item"> <h3 class="title">关注我们</h3> <ul class="social-list"> <li> <a href="javascript:;" class="footer-follow-social-link reserve-link " data-content=' <div class="modal-qr-code"> <h3 class="title">扫码关注</h3> <div class="qr-code-src"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/13/202112131557364e025b1e.jpg?imageView2/2/format/webp" alt=""> </div> <p class="desc">获取展会资料,参与现场互动</p> </div>' > <img src="https://interfoam.cn/modulesassets/comofrontend/dist/css/social-image/wechat.png?v=2023.04.11"> </a> </li> <li> <a href="javascript:;" class="footer-follow-social-link reserve-link " data-content=' <div class="modal-qr-code"> <h3 class="title">扫码关注</h3> <div class="qr-code-src"> <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/11/26/202111262020305c5d53b3.jpg?imageView2/2/format/webp" alt=""> </div> <p class="desc">微信扫码,获取最新行业资讯</p> </div>' > <img src="https://interfoam.cn/modulesassets/comofrontend/dist/css/social-image/wechat.png?v=2023.04.11"> </a> </li> <li> <a href="https://www.linkedin.com/company/interfoam" target=&quot;_blank&quot; class="footer-follow-social-link " > <img src="https://interfoam.cn/modulesassets/comofrontend/dist/css/social-image/linkedin.png?v=2023.04.11"> </a> </li> <li> <a href="https://www.facebook.com/interfoamchina" target=&quot;_blank&quot; class="footer-follow-social-link " > <img src="https://interfoam.cn/modulesassets/comofrontend/dist/css/social-image/facebook.png?v=2023.04.11"> </a> </li> <li> <a href="https://twitter.com/interfoam" target=&quot;_blank&quot; class="footer-follow-social-link " > <img src="https://interfoam.cn/modulesassets/comofrontend/dist/css/social-image/twitter.png?v=2023.04.11"> </a> </li> </ul> </div> <div class="footer-panel-item"> <h3 class="title">最新资讯邮件订阅服务</h3> <div class="subscribe"> <input type="email" placeholder="您的邮箱地址"> <a href="https://www.ifaxin.com/subInvite/subscriptionInvite.do?invitecode=f8b83484-3c1f-4351-827b-52c01717d40f" class="subscribe-link" target="_blank" > <i class="i i-RightArrow" id="subscribe-btn"></i> </a> </div> <p>立即订阅Interfoam邮件服务,行业资讯,展会新闻,实时更新。</p> </div> </div> </div> </div> <div class="footer-bottom"> <div class="left"> <div class="top"> <p>@北京汇捷通国际展览有限公司</p> <div class="links"> <a class="" target="_self" href="https://interfoam.cn/cn/index/privacy-policy">隐私政策</a> <a class="" target="_self" href="https://interfoam.cn/cn/index/Terms-of-uses">使用条款</a> <a class="" target="_self" href="https://interfoam.cn/cn/index/contactbottom">联系我们</a> </div> </div> <div class="bottom"> <div class="links"> <p>©2024 INTERFOAM. ALL RIGHTS RESERVED 北京汇捷通国际展览有限公司<a href="https://beian.miit.gov.cn/" target="_blank">京ICP备14038783号-3</a></p> </div> </div> </div> <div class="right"> <div class="design"> <span>设计开发</span> <a href="http://www.comonetwork.com" target="_blank"><img src="https://interfoam.cn/modulesassets/comofrontend/dist/css/design.svg?v=2023.04.11" alt=""></a> </div> </div> </div> </div> </div> </footer> <div class="fixed-toolbar"> <div class="toolbar-list"> <div class="toolbar-item"> <a class="toolbar-item-link " target="_self" href="http://u.pme.cn/foam2024"><img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/14/20211214163927b7b13339.png?imageView2/2/format/webp"><span>观众购票</span></a> </div> <div class="toolbar-item"> <a class="toolbar-item-link " target="_self" href="https://e.interfoam.cn/hjtexpo/form/Interfoam/formperma/sjlq4eSJusvqDlLNoSGRNdLZMBIGwvSzheZgVgr-C2Q"><img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/14/20211214164413d31bb621.png?imageView2/2/format/webp"><span>展位预订</span></a> </div> <div class="toolbar-item"> <a class="toolbar-item-link " target="_self" href="https://virtualexpo.interfoam.cn/zh-cn/platform/institutions"><img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/07/28/20220728173724c9bae3c0.png?imageView2/2/format/webp"><span>线上展会</span></a> </div> <div class="toolbar-item"> <a class="toolbar-item-link " target="_self" href="https://interfoam.cn/cn/index/conf"><img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/14/2021121416421208f46a87.png?imageView2/2/format/webp"><span>高峰论坛</span></a> </div> <div class="toolbar-item"> <a class="toolbar-item-link " target="_self" href="https://interfoam.cn/cn/index/contactus-side"><img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2021/12/14/20211214164022d553fcde.png?imageView2/2/format/webp"><span>联系我们</span></a> </div> </div> <div class="mobile-toggle-btn"> <a href="javascript:;"><i class="i"></i></a> </div> </div> <div class="expand-full-panel"> <div class="expadn-linear-gradient-bg"></div> <div class="content"> <div class="container"> <div class="expand-full-panel__block"> <h2 class="title">汇捷通展览(上海)有限公司</h2> <div class="ckediter"><p>汇捷通展览创立于2011年,是中国卓越的展览、会议主办机构,公司专注于细分领域的专业展览、会议,致力于为细分领域提供最专业的展览会服务平台,从最专业的角度为行业创造价值。</p></div> </div> <div class="expand-full-panel__block"> <div class="blockquote">让信任创造机会</div> </div> <div class="expand-full-panel__block"> <div class="quick-links"> <h4 class="quick-links__title">HJT官网</h4> <ul class="quick-links__list"> <li class="quick-links__item"> <a class="" target="_self" href="https://hjtexpo.com/">关于我们</a> </li> <li class="quick-links__item"> <a class="" target="_self" href="https://hjtexpo.com/cn/index/aboutus">业务范围</a> </li> <li class="quick-links__item"> <a class="" target="_self" href="https://hjtexpo.com/cn/index/expoandconf">展览会及会议</a> </li> </ul> </div> </div> <div class="expand-full-panel__block loose"> <div class="related-exhibition-list"> <h4 class="related-exhibition-list_title">我们的项目</h4> <ul class="related-exhibition-list_list"> <li class="related-exhibition-list_item"> <a href="https://www.interfoam.cn/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/10/27/20221027101706b436cbf3.png?imageView2/2/format/webp" alt=""> </a> </li> <li class="related-exhibition-list_item"> <a href="https://southchina.interfoam.cn/cn/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/10/27/20221027101626eed09918.png?imageView2/2/format/webp" alt=""> </a> </li> <li class="related-exhibition-list_item"> <a href="https://interfoamvietnam.com/en/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/12/19/202212191337040079d8ba.png?imageView2/2/format/webp" alt=""> </a> </li> <li class="related-exhibition-list_item"> <a href="https://www.pme.cn/cn/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/09/26/20220926101619a9c19135.png?imageView2/2/format/webp" alt=""> </a> </li> <li class="related-exhibition-list_item"> <a href="https://www.icleanexpo.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/09/26/202209261020256f236676.png?imageView2/2/format/webp" alt=""> </a> </li> <li class="related-exhibition-list_item"> <a href="https://www.deburringtec.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/09/26/20220926101652d94a3ce2.png?imageView2/2/format/webp" alt=""> </a> </li> <li class="related-exhibition-list_item"> <a href="https://cibrush.cn/cn/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/08/23/20220823103314f82779ba.png?imageView2/2/format/webp" alt=""> </a> </li> <li class="related-exhibition-list_item"> <a href="https://www.cibrush.com/" target="_blank" > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/09/26/20220926101910a5488f59.png?imageView2/2/format/webp" alt=""> </a> </li> <li class="related-exhibition-list_item"> <a > <img src="https://hjtexpo-storage.www.comocloud.net/hjtexpo/2022/09/26/20220926102145ce364383.png?imageView2/2/format/webp" alt=""> </a> </li> </ul> </div> </div> </div> </div> </div> <script src="https://interfoam.cn/modulesassets/comofrontend/dist/js/qrcode.js?v=2023.04.11"></script> <script src="https://interfoam.cn/modulesassets/comofrontend/dist/js/social-share.js?v=2023.04.11"></script> <script src="https://interfoam.cn/modulesassets/comofrontend/dist/js/main.min.js?v=2023.04.11"></script> <div class="modal fade modal-width-default" id="ThemeDetail"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <button class="modal-close" data-bs-dismiss="modal"><i class="i i-cross"></i></button> <div class="modal-theme-detail"> </div> </div> </div> </div> <div class="modal fade modal-width-default" id="GuestDetail"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <button class="modal-close" data-bs-dismiss="modal"><i class="i i-cross"></i></button> <div class="modal-guest-detail"> </div> </div> </div> </div> <div class="modal fade modal-width-xs" id="QrCode"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <button class="modal-close" data-bs-dismiss="modal"><i class="i i-cross"></i></button> <div class="modal-qr-code"> </div> </div> </div> </div> <div class="modal fade modal-width-xs" id="QrCodeShare"> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <button class="modal-close" data-bs-dismiss="modal"><i class="i i-cross"></i></button> <div class="modal-qr-code"> <div class="qr-code-src"> <img src="" alt=""> </div> </div> </div> </div> </div> <div class="bg-shadown"></div> <div class="horizontal-tips"> <div class="content"> <i class="i i-rotate"></i> <p> 为了更好的体验<br>请竖屏浏览 </p> </div> </div> <script> $(function () { // 预约弹出框 $('body').on('click', '.reserve-link', function (e) { e.preventDefault(); $('#QrCode .modal-qr-code').html($(this).data('content')); $('#QrCode').modal('show') }) // 主题详情弹出框 $('.event-table .event-theme-link:not(.no-link)').on('click', function (e) { e.preventDefault(); $('#ThemeDetail .modal-theme-detail').html($(this).data('content')); $('#ThemeDetail').modal('show') }) // 嘉宾详情弹出框 $('.event-table .guest-title:not(.no-link) a').on('click', function (e) { e.preventDefault() $('#GuestDetail .modal-guest-detail').html($(this).data('content')); $('#GuestDetail').modal('show') }) $('.mobile-select-tab').on('click', function () { $(this).siblings('ul').toggleClass('active') $(this).parent().toggleClass('active') $('.bg-shadown').toggleClass('show') }) $('.bg-shadown').on('click', function () { $('.switch-panel-tabs ul').removeClass('active') $('.switch-panel-tabs').removeClass('active') $(this).removeClass('show') }) if ($("#share").length != 0) { socialShare('#share', { sites: ['wechat', 'weibo', 'facebook', 'twitter'], wechatQrcodeTitle: "", wechatQrcodeSize: 140, }); $('.social-shared .icon-wechat').on("click", function () { var img_src = $('.social-shared .wechat-qrcode img').attr('src') $('#QrCodeShare img').attr('src', img_src) $('#QrCodeShare').modal('show') $('html').addClass('scroll-lock') }) } }); </script> <script type="text/javascript" src="https://v1.cnzz.com/z_stat.php?id=1278133964&web_id=1278133964"></script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?e75dc56bfae4dc909f01733621032cf0"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?e75dc56bfae4dc909f01733621032cf0"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-215977152-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-215977152-1'); </script> <!-- Zoho CRM-在线沟通组件--> <script type="text/javascript" id="zsiqchat">var $zoho=$zoho || {};$zoho.salesiq = $zoho.salesiq || {widgetcode: "4eabd9ede9ae8d4b9f02b0882e6eaa57e258e7bd8c1c6077c637b6257f4aef4d", values:{},ready:function(){}};var d=document;s=d.createElement("script");s.type="text/javascript";s.id="zsiqscript";s.defer=true;s.src="https://salesiq.zoho.com.cn/widget";t=d.getElementsByTagName("script")[0];t.parentNode.insertBefore(s,t);</script> <!-- Zoho page sense-网站优化组件--> <script src="https://cdn.pagesense.cn/js/jjn6ml0c/fc0553d79af64133992973d50fe41e3b.js"></script> <!-- 百度推广落地页监测组件--> <script> window._agl = window._agl || []; (function () { _agl.push( ['production', '_f7L2XwGXjyszb4d1e2oxPybgD'] ); (function () { var agl = document.createElement('script'); agl.type = 'text/javascript'; agl.async = true; agl.src = 'https://fxgate.baidu.com/angelia/fcagl.js?production=_f7L2XwGXjyszb4d1e2oxPybgD'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(agl, s); })(); })(); </script> <!-- Google tag (gtag.js) HJT --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-NDT5HM4T02"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-NDT5HM4T02'); </script> <!-- Event snippet for 网站浏览https://www.interfoam.cn/en/index/contactus-side conversion page --> <script> gtag('event', 'conversion', {'send_to': 'AW-11153816958/yBUpCKK_vJkYEP76xsYp'}); </script> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=AW-11153816958"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-11153816958'); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10