CINXE.COM

场馆图 | SIGEP China | 深圳国际手工冰淇淋、烘焙及咖啡展览会

<!DOCTYPE html> <html lang="zh" style="--primary: #E83C54; --on-primary: #FFFFFF; ; "> <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="4hihVOG4qROyZXmcnkGP6ALA5lxv24UC2upHcq8D"> <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> <title>场馆图 | SIGEP China | 深圳国际手工冰淇淋、烘焙及咖啡展览会</title> <meta name="keywords" content="SIGEP China, 深圳国际会展中心, 宝安新馆, 深圳新馆, 14号馆, 16号馆"/> <meta name="description" content="SIGEP China 2023将于5月10-12日在深圳国际会展中心(宝安新馆)14号馆举办。"/> <meta property="og:title" content="场馆图 | SIGEP China | 深圳国际手工冰淇淋、烘焙及咖啡展览会"/> <meta property="og:description" content="SIGEP China 2023将于5月10-12日在深圳国际会展中心(宝安新馆)14号馆举办。"/> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="场馆图 | SIGEP China | 深圳国际手工冰淇淋、烘焙及咖啡展览会"> <meta name="twitter:description" content="SIGEP China 2023将于5月10-12日在深圳国际会展中心(宝安新馆)14号馆举办。"> <link rel="stylesheet" href="https://www.sigepcn.com/modulesassets/comofrontend/dist/css/app.min.css?v=20240821"> <link rel="shortcut icon" href="https://www.sigepcn.com/modulesassets/comofrontend/dist/favicon/favicon.ico?v=20240821"/> <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://www.sigepcn.com/cn/browser-upgrade'; } else { // console.log('大于等于IE10') } </script> <script src="https://www.sigepcn.com/modulesassets/comofrontend/assets/js/plugins/jquery.min.js?v=20240821"></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> <meta name="sogou_site_verification" content="SsepaIO52P" /> <meta name="baidu-site-verification" content="code-HIWvBRO3Bg" /></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> <header id="header"> <div class="header-content"> <div class="header-banner"> <p> <span>SIGEP China: 2025.04.24-04.26</span> <span>距开幕 <span>147</span> 天</span> </p> <div class="lang-select"> <div class="lang-select__btn"><i class="i i-language"></i><span>CN</span><div class="arrow"></div></div> <div class="lang-select__list"> <div class="lang-select__item"><i class="i i-language"></i><div class="item-right"><span>CN</span><div class="arrow"></div></div></div> <a href="https://www.sigepcn.com/en/index/Exhibition-Overview/About-Sigep-China/Hall-Plan" class="lang-select__item langselect_altlang"><i class="i i-right-arrow"></i> <div class="item-right"> <span>EN</span> </div> </a> </div> </div> </div> <div class="header-inner"> <a href="https://www.sigepcn.com/cn" class="logo"> <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1169.8" height="788.71" style="enable-background:new 0 0 1169.8 788.71"><path d="M14.31 787.58H8.24V553.27h6.06v234.31zm86.48-223.82v-8.25H48.88v99.55h51.91v-8.25H58.84v-37.69h37.69v-8.25H58.84v-37.12h41.95zm71.64 91.3-25.03-39.25 24.74-38.4h-10.38l-19.2 30.86-19.77-30.86h-11.24l24.75 38.82-25.03 38.82h10.52l19.34-31.29 20.05 31.29h11.25zm9.72-59.95c-3.23 6.02-4.84 13.06-4.84 21.12s1.61 15.1 4.84 21.12a34.42 34.42 0 0 0 13.37 13.94c5.69 3.27 12.18 4.9 19.48 4.9 9.48 0 17.35-2.42 23.61-7.25a32.58 32.58 0 0 0 12.09-19.2h-10.67c-1.33 5.69-4.2 10.12-8.6 13.3-4.41 3.18-9.88 4.76-16.43 4.76a28 28 0 0 1-14.08-3.55c-4.17-2.37-7.47-5.92-9.89-10.67-2.42-4.74-3.62-10.52-3.62-17.35s1.21-12.59 3.62-17.28a25 25 0 0 1 9.89-10.6A27.98 27.98 0 0 1 215 584.8c6.54 0 12.02 1.59 16.43 4.76 4.41 3.18 7.27 7.56 8.6 13.15h10.67c-1.8-8.15-5.81-14.6-12.02-19.34s-14.1-7.11-23.68-7.11c-7.3 0-13.8 1.64-19.48 4.91a34.49 34.49 0 0 0-13.37 13.94m154.52 24.96c.19-1.8.29-4.41.29-7.82 0-6.64-1.49-12.68-4.48-18.14a33.4 33.4 0 0 0-12.8-13.01c-5.55-3.22-12.02-4.84-19.41-4.84-7.4 0-13.99 1.61-19.77 4.84a33.58 33.58 0 0 0-13.51 13.94c-3.23 6.07-4.84 13.13-4.84 21.19s1.64 15.1 4.91 21.12a34.66 34.66 0 0 0 13.58 13.94c5.78 3.27 12.32 4.91 19.63 4.91 9.38 0 17.18-2.39 23.39-7.18a32.9 32.9 0 0 0 12.16-18.56H325.3a22.07 22.07 0 0 1-8.74 12.66c-4.41 3.13-9.84 4.69-16.28 4.69-4.93 0-9.48-1.07-13.66-3.2a25.13 25.13 0 0 1-10.1-9.46c-2.56-4.17-3.98-9.2-4.27-15.08h64.42m-13.3-22.89c2.42 4.08 3.58 9.01 3.48 14.79h-54.61c.57-8.63 3.46-15.31 8.67-20.05s11.52-7.11 18.91-7.11c4.93 0 9.48 1.04 13.65 3.13a23.4 23.4 0 0 1 9.9 9.24m40.16-47.36h-9.96v105.24h9.96V549.82zm30.37 0h-9.96v105.24h9.96V549.82zm91.08 70.25c.19-1.8.29-4.41.29-7.82 0-6.64-1.49-12.68-4.48-18.14a33.4 33.4 0 0 0-12.8-13.01c-5.55-3.22-12.02-4.84-19.41-4.84-7.4 0-13.99 1.61-19.77 4.84a33.58 33.58 0 0 0-13.51 13.94c-3.23 6.07-4.84 13.13-4.84 21.19s1.64 15.1 4.91 21.12a34.66 34.66 0 0 0 13.58 13.94c5.78 3.27 12.32 4.91 19.63 4.91 9.38 0 17.18-2.39 23.39-7.18a32.9 32.9 0 0 0 12.16-18.56H473.6a22.07 22.07 0 0 1-8.74 12.66c-4.41 3.13-9.84 4.69-16.28 4.69-4.93 0-9.48-1.07-13.66-3.2a25.13 25.13 0 0 1-10.1-9.46c-2.56-4.17-3.98-9.2-4.27-15.08h64.43m-13.3-22.89c2.42 4.08 3.58 9.01 3.48 14.79h-54.61c.57-8.63 3.46-15.31 8.67-20.05s11.52-7.11 18.91-7.11c4.93 0 9.48 1.04 13.65 3.13a23.4 23.4 0 0 1 9.9 9.24m89.2-12.59c-5.88-5.74-13.46-8.6-22.76-8.6a32.7 32.7 0 0 0-15.79 3.77 25.41 25.41 0 0 0-10.67 10.88v-13.22h-9.96v77.65h9.96v-42.38c0-9.19 2.23-16.16 6.69-20.91 4.46-4.74 10.43-7.11 17.92-7.11 7.3 0 13.06 2.23 17.28 6.69s6.33 10.9 6.33 19.34v44.37h9.81v-45.51c.01-10.91-2.94-19.23-8.81-24.97m29.27 10.52c-3.23 6.02-4.84 13.06-4.84 21.12s1.61 15.1 4.84 21.12a34.42 34.42 0 0 0 13.37 13.94c5.69 3.27 12.18 4.9 19.48 4.9 9.48 0 17.35-2.42 23.61-7.25a32.58 32.58 0 0 0 12.09-19.2h-10.67c-1.33 5.69-4.2 10.12-8.6 13.3-4.41 3.18-9.88 4.76-16.43 4.76a28 28 0 0 1-14.08-3.55c-4.17-2.37-7.47-5.92-9.89-10.67-2.42-4.74-3.62-10.52-3.62-17.35s1.21-12.59 3.62-17.28a25 25 0 0 1 9.89-10.6A27.98 27.98 0 0 1 623 584.8c6.54 0 12.02 1.59 16.43 4.76 4.41 3.18 7.27 7.56 8.6 13.15h10.67c-1.8-8.15-5.81-14.6-12.02-19.34s-14.1-7.11-23.68-7.11c-7.3 0-13.8 1.64-19.48 4.91a34.42 34.42 0 0 0-13.37 13.94m154.51 24.96c.19-1.8.29-4.41.29-7.82 0-6.64-1.49-12.68-4.48-18.14a33.4 33.4 0 0 0-12.8-13.01c-5.55-3.22-12.02-4.84-19.41-4.84-7.4 0-13.99 1.61-19.77 4.84a33.58 33.58 0 0 0-13.51 13.94c-3.22 6.07-4.84 13.13-4.84 21.19s1.64 15.1 4.91 21.12a34.66 34.66 0 0 0 13.58 13.94c5.78 3.27 12.32 4.91 19.63 4.91 9.38 0 17.18-2.39 23.39-7.18a32.9 32.9 0 0 0 12.16-18.56h-10.52a22.07 22.07 0 0 1-8.74 12.66c-4.41 3.13-9.84 4.69-16.28 4.69-4.93 0-9.48-1.07-13.66-3.2a25.13 25.13 0 0 1-10.1-9.46c-2.56-4.17-3.98-9.2-4.27-15.08h64.42m-13.29-22.89c2.42 4.08 3.58 9.01 3.48 14.79h-54.61c.57-8.63 3.46-15.31 8.68-20.05 5.21-4.74 11.52-7.11 18.91-7.11 4.93 0 9.48 1.04 13.65 3.13a23.49 23.49 0 0 1 9.89 9.24M48.74 693.15a6.99 6.99 0 0 0 5.12 2.13c1.99 0 3.7-.71 5.12-2.13a7.16 7.16 0 0 0 2.13-5.26 6.9 6.9 0 0 0-2.13-5.19 7.12 7.12 0 0 0-5.12-2.06c-1.99 0-3.7.69-5.12 2.06a6.92 6.92 0 0 0-2.13 5.19c0 2.08.71 3.83 2.13 5.26m10.1 16.78h-9.95v77.65h9.95v-77.65zm79.64 7.18c-5.88-5.74-13.46-8.6-22.76-8.6a32.7 32.7 0 0 0-15.79 3.77 25.41 25.41 0 0 0-10.67 10.88v-13.23H79.3v77.65h9.96V745.2c0-9.19 2.23-16.16 6.69-20.91 4.46-4.74 10.43-7.11 17.92-7.11 7.3 0 13.06 2.23 17.28 6.69 4.22 4.46 6.33 10.9 6.33 19.34v44.37h9.81v-45.51c.01-10.9-2.93-19.23-8.81-24.96m69.82-28.94v99.41h9.95v-45.79h36.98v-8.25h-36.98v-37.12h43.81v-8.25H208.3zm77.44 95.64c5.83 3.27 12.4 4.9 19.7 4.9 7.3 0 13.94-1.63 19.91-4.9a35.4 35.4 0 0 0 14.08-14.01c3.41-6.07 5.12-13.08 5.12-21.05 0-8.06-1.69-15.1-5.05-21.12a35.27 35.27 0 0 0-13.94-13.94 40.39 40.39 0 0 0-19.84-4.91c-7.3 0-13.89 1.64-19.77 4.91a35.85 35.85 0 0 0-13.94 13.94c-3.41 6.02-5.12 13.06-5.12 21.12s1.68 15.1 5.05 21.12a35.51 35.51 0 0 0 13.8 13.94m33.92-7.26a29.8 29.8 0 0 1-14.22 3.48c-5.12 0-9.84-1.16-14.15-3.48a25.73 25.73 0 0 1-10.38-10.52c-2.61-4.69-3.91-10.45-3.91-17.28 0-6.83 1.3-12.59 3.91-17.28 2.6-4.69 6.09-8.2 10.45-10.52a29.81 29.81 0 0 1 14.22-3.49 29.7 29.7 0 0 1 14.22 3.49 26.1 26.1 0 0 1 10.52 10.52c2.65 4.69 3.98 10.45 3.98 17.28 0 6.83-1.35 12.59-4.05 17.28a26.57 26.57 0 0 1-10.59 10.52m55.72 7.26c5.83 3.27 12.4 4.9 19.7 4.9 7.3 0 13.94-1.63 19.91-4.9a35.4 35.4 0 0 0 14.08-14.01c3.41-6.07 5.12-13.08 5.12-21.05 0-8.06-1.69-15.1-5.05-21.12a35.27 35.27 0 0 0-13.94-13.94 40.39 40.39 0 0 0-19.84-4.91c-7.3 0-13.89 1.64-19.77 4.91a35.85 35.85 0 0 0-13.94 13.94c-3.41 6.02-5.12 13.06-5.12 21.12s1.68 15.1 5.05 21.12a35.51 35.51 0 0 0 13.8 13.94m33.91-7.26a29.8 29.8 0 0 1-14.22 3.48c-5.12 0-9.84-1.16-14.15-3.48a25.73 25.73 0 0 1-10.38-10.52c-2.61-4.69-3.91-10.45-3.91-17.28 0-6.83 1.3-12.59 3.91-17.28 2.6-4.69 6.09-8.2 10.45-10.52a29.81 29.81 0 0 1 14.22-3.49 29.7 29.7 0 0 1 14.22 3.49 26.1 26.1 0 0 1 10.52 10.52c2.65 4.69 3.98 10.45 3.98 17.28 0 6.83-1.35 12.59-4.05 17.28a26.5 26.5 0 0 1-10.59 10.52m41.72-48.92c-3.23 6.02-4.84 13.01-4.84 20.98 0 7.96 1.59 14.98 4.76 21.05a34.53 34.53 0 0 0 13.23 14.08c5.64 3.32 12.02 4.98 19.13 4.98 7.3 0 13.65-1.73 19.05-5.19 5.4-3.46 9.29-7.9 11.66-13.3v17.35h9.96V682.34H514v44.37c-2.56-5.31-6.59-9.62-12.09-12.94a35.07 35.07 0 0 0-18.49-4.98c-7.11 0-13.49 1.64-19.13 4.91a34.58 34.58 0 0 0-13.28 13.93m59.16 4.62c2.56 4.74 3.84 10.24 3.84 16.5s-1.28 11.76-3.84 16.5a27.39 27.39 0 0 1-10.45 10.95 28.52 28.52 0 0 1-14.58 3.84 29 29 0 0 1-14.79-3.77 26.45 26.45 0 0 1-10.31-10.95c-2.51-4.79-3.77-10.36-3.77-16.71 0-6.45 1.25-12.02 3.77-16.71a26.26 26.26 0 0 1 10.31-10.74 29.47 29.47 0 0 1 14.79-3.7c5.31 0 10.17 1.28 14.58 3.84a27.45 27.45 0 0 1 10.45 10.95m39.46 50.28c5.64 4.12 12.92 6.18 21.83 6.18 5.31 0 10-.95 14.08-2.85a23.25 23.25 0 0 0 9.53-7.75 19.1 19.1 0 0 0 3.41-11.16c-.1-4.55-1.33-8.2-3.7-10.95a23.14 23.14 0 0 0-8.53-6.26 105.9 105.9 0 0 0-13.37-4.41 123.3 123.3 0 0 1-11.09-3.63 19.11 19.11 0 0 1-6.9-4.55c-1.85-1.94-2.77-4.43-2.77-7.47 0-3.51 1.57-6.45 4.69-8.82 3.13-2.37 7.2-3.55 12.23-3.55 5.69 0 10.17 1.4 13.44 4.2 3.27 2.8 5.05 6.47 5.33 11.02h9.96c-.38-7.4-3.13-13.2-8.25-17.42-5.12-4.22-11.85-6.33-20.2-6.33a34.1 34.1 0 0 0-14.22 2.84c-4.17 1.9-7.39 4.46-9.67 7.68a17.88 17.88 0 0 0-3.41 10.53c0 5.02 1.26 9.03 3.77 12.01a23.94 23.94 0 0 0 9.18 6.76 105.8 105.8 0 0 0 14.08 4.55c4.46 1.14 7.99 2.2 10.6 3.2 2.6 1 4.76 2.35 6.47 4.05a8.85 8.85 0 0 1 2.56 6.54c0 3.79-1.54 6.97-4.62 9.53-3.09 2.56-7.32 3.84-12.73 3.84-6.16 0-11.07-1.35-14.72-4.05a14.7 14.7 0 0 1-6.19-10.6h-10.24c.66 7.13 3.81 12.74 9.45 16.87m135.26-29.94c.19-1.8.29-4.41.29-7.82 0-6.64-1.49-12.68-4.48-18.14a33.4 33.4 0 0 0-12.8-13.01c-5.55-3.22-12.02-4.84-19.41-4.84-7.4 0-13.99 1.61-19.77 4.84a33.58 33.58 0 0 0-13.51 13.94c-3.23 6.07-4.84 13.13-4.84 21.19s1.64 15.1 4.91 21.12a34.6 34.6 0 0 0 13.58 13.94c5.78 3.27 12.32 4.91 19.63 4.91 9.38 0 17.18-2.39 23.39-7.18a32.9 32.9 0 0 0 12.16-18.56h-10.52a22.07 22.07 0 0 1-8.74 12.66c-4.41 3.13-9.84 4.69-16.28 4.69-4.93 0-9.48-1.07-13.66-3.2a25.07 25.07 0 0 1-10.1-9.46c-2.56-4.17-3.98-9.2-4.27-15.08h64.42m-13.3-22.9c2.42 4.08 3.58 9.01 3.48 14.79h-54.61c.57-8.63 3.46-15.31 8.67-20.05s11.52-7.11 18.91-7.11c4.93 0 9.48 1.04 13.65 3.13s7.48 5.17 9.9 9.24m50.02-17.2a24.31 24.31 0 0 0-10.03 11.24v-13.79h-9.95v77.65h9.95V744.2c0-9.1 2.18-15.6 6.54-19.48 4.36-3.88 10.15-5.83 17.35-5.83h2.7V708.5c-6.53 0-12.06 1.33-16.56 3.99m32.64-2.56h-10.67l31.15 77.65h11.23l31.15-77.65h-10.52l-26.17 67.98-26.17-67.98zm74.56-16.78a6.99 6.99 0 0 0 5.12 2.13c1.99 0 3.7-.71 5.12-2.13a7.16 7.16 0 0 0 2.13-5.26 6.9 6.9 0 0 0-2.13-5.19 7.12 7.12 0 0 0-5.12-2.06c-1.99 0-3.7.69-5.12 2.06a6.92 6.92 0 0 0-2.13 5.19c0 2.08.71 3.83 2.13 5.26m10.1 16.78h-9.95v77.65h9.95v-77.65zm20.79 17.7c-3.23 6.02-4.84 13.06-4.84 21.12s1.61 15.1 4.84 21.12a34.42 34.42 0 0 0 13.37 13.94c5.69 3.27 12.18 4.9 19.48 4.9 9.48 0 17.35-2.42 23.61-7.25a32.55 32.55 0 0 0 12.09-19.2h-10.67c-1.33 5.69-4.19 10.12-8.6 13.3-4.41 3.18-9.88 4.76-16.43 4.76a28 28 0 0 1-14.08-3.55c-4.17-2.37-7.47-5.92-9.89-10.67-2.42-4.74-3.62-10.52-3.62-17.35 0-6.83 1.21-12.59 3.62-17.28a25 25 0 0 1 9.89-10.6 27.98 27.98 0 0 1 14.08-3.55c6.54 0 12.02 1.59 16.43 4.76 4.41 3.18 7.27 7.56 8.6 13.15h10.67c-1.8-8.15-5.81-14.6-12.02-19.34s-14.1-7.11-23.68-7.11c-7.3 0-13.8 1.64-19.48 4.91a34.49 34.49 0 0 0-13.37 13.94m154.51 24.96c.19-1.8.29-4.41.29-7.82 0-6.64-1.49-12.68-4.48-18.14a33.4 33.4 0 0 0-12.8-13.01c-5.55-3.22-12.02-4.84-19.41-4.84-7.4 0-13.99 1.61-19.77 4.84a33.58 33.58 0 0 0-13.51 13.94c-3.22 6.07-4.84 13.13-4.84 21.19s1.64 15.1 4.91 21.12a34.66 34.66 0 0 0 13.58 13.94c5.78 3.27 12.32 4.91 19.63 4.91 9.38 0 17.18-2.39 23.39-7.18a32.9 32.9 0 0 0 12.16-18.56h-10.52a22.07 22.07 0 0 1-8.74 12.66c-4.41 3.13-9.84 4.69-16.28 4.69-4.93 0-9.48-1.07-13.66-3.2a25.07 25.07 0 0 1-10.1-9.46c-2.56-4.17-3.98-9.2-4.27-15.08h64.42m-13.29-22.9c2.42 4.08 3.58 9.01 3.48 14.79h-54.61c.57-8.63 3.46-15.31 8.68-20.05 5.21-4.74 11.52-7.11 18.91-7.11 4.93 0 9.48 1.04 13.65 3.13s7.47 5.17 9.89 9.24" style="fill:#981c33"/><path d="M693.35 164.24s.22 8.14-1.57 26.46c-8.86 90.44-73.49 150.35-161.16 150.35-95.47 0-170.26-74.39-170.26-169.36C360.36 75.42 435.83 0 532.17 0c50.21 0 90.39 19.49 115.26 35.84l15.37 10.11-8.15 25.12-20.55-15.06c-23.03-15.14-58.16-31.84-101.88-31.84-81.97 0-147.55 64.46-147.55 147.55 0 82.71 65.58 145.22 145.99 145.22 76.9 0 129.59-52.03 137.01-128.52H491.9v-24.17h201.45zm-71.79-71.76 20.71 16.75 8.35-25.72c-1.73-1.45-6.63-5.29-20.42-15.46-22.64-16.69-58.55-32.61-98.76-32.61-75.33 0-134.67 60.57-134.67 135.51 0 76.1 59.33 134.74 134.67 134.74 70.26 0 113.2-46.6 123.34-106.39H491.9v24.11h130.64c-14.14 36.21-45.28 56.62-90.36 56.62-59.72 0-107.73-44.65-107.73-109.89 0-62.51 47.62-109.11 106.17-109.11 32.39 0 68.3 14.36 90.94 31.45M313.49 6.63h-24.18v327.85h26.55V6.63h-2.37zm-35.89 0h-26.54v327.85h26.54V6.63zm625.39 59.09V41.64H770.81v117.27h118.63v-24.07h-92.08V65.72h105.63zM759.1 310.34V30.77h143.89V17.49h.01V6.63H734.83v327.85h168.96v-24.14H759.1zm11.71-10.87h132.98V275.4H797.35v-81.54h92.08v-24.07H770.8v129.68zM86.65 196.9c40.25 24.97 47.88 38.46 47.88 54.62 0 12.25-10.68 29.5-34.42 29.5-17.7 0-31.32-3.95-56.05-16.25l-25.81-12.84-6.98 22.36 21.83 12.28c26.8 13.33 44.14 18.82 67 18.82 36.61 0 58.93-27.61 58.93-53.88 0-30.62-19.61-50.6-59.42-75.3-46.12-28.62-62.97-54.97-62.97-83.2 0-36.47 29.95-68.61 80.01-68.61 17.19 0 35.72 4.12 48.28 9.27a406.94 406.94 0 0 1 23.71 10.71l7.5-23.21-.03.01-6.62-3.29C165.67 6.04 141.17.03 116.66.03 57.07.03 12.14 40.01 12.14 93.02c.01 39.33 23.68 72.33 74.51 103.88M0 310.44l22.46 11.83c27.2 13.72 51.63 18.82 76.47 18.82 67.41 0 99.13-46.82 99.13-90.34 0-46.82-29.46-75.3-77.16-105.1-34.29-21.56-45.23-37.33-45.23-53.01 0-17.65 11.83-32.54 39.81-32.54 16.95 0 33.11 4.7 52.42 14.51l9.52 4.52L185 55.68a308 308 0 0 0-23.58-11.06 118.45 118.45 0 0 0-45.15-8.85c-41.78 0-67.79 26.66-67.79 57.25 0 23.92 14.09 47.13 57.84 74.18 46.9 29.01 64.54 51.89 64.54 84.32 0 32.15-25.09 64.86-71.14 64.86-23.25 0-42.57-4.31-70.16-18.43l-22.13-11.3L0 310.44zm1033.11-268.8c53.48 0 99.93 34.17 99.93 88.92 0 60.57-55.04 91.25-104.61 91.25H985.1V41.64h48.01m55.39 134.16c10.64-10.59 17.6-25.22 17.6-44.46 0-15.51-4.55-28.24-12.05-38.23a62.64 62.64 0 0 0-5.82-6.68 64.9 64.9 0 0 0-13.29-10.02c-12.39-7.13-27.24-10.68-42.23-10.68h-21.08v132.41h16.78c21.11-.02 44.54-6.86 60.09-22.34m-55-169.17h-84.38v327.85h24.27V30.77h60.11c62.84 0 112.02 39.22 112.02 99.01 0 68.73-60.11 102.9-119.05 102.9H985.1v101.8h25.75v-77.91h20.18c57.37 0 138.77-36.63 138.77-126.78 0-71.37-57.32-123.16-136.3-123.16M7.44 467.61h685.9v-24.08H7.44m-.02-10.87h685.91v-13.28h.03v-10.86H7.42m743.05 56.49a32.5 32.5 0 0 0 16.15 4.09c5.76 0 10.98-1.31 15.65-3.94a28.1 28.1 0 0 0 10.92-10.92l-9.28-6.52c-4.25 6.86-9.98 10.28-17.2 10.28-3.7 0-7.02-.85-9.96-2.54a18.07 18.07 0 0 1-6.92-7.06 20.95 20.95 0 0 1-2.5-10.33c0-3.87.83-7.33 2.5-10.38a18.3 18.3 0 0 1 6.92-7.15 19.35 19.35 0 0 1 9.96-2.58c7.22 0 12.95 3.43 17.2 10.28l9.28-6.52a28.8 28.8 0 0 0-10.96-10.92 30.9 30.9 0 0 0-15.51-3.94 32.63 32.63 0 0 0-16.15 4.09 30.83 30.83 0 0 0-11.6 11.24 30.15 30.15 0 0 0-4.28 15.79c0 5.76 1.41 11.02 4.23 15.79a30.34 30.34 0 0 0 11.55 11.24m53.18 3.01h12.28v-25.93h26.57v25.93h12.28v-60.05H842.5v23.02h-26.57v-23.02h-12.28v60.05zm64.87 0h12.28v-60.05h-12.28v60.05zm64.87-60.05v35.85l-34.84-36.94h-4v61.14h12.28v-36.03l34.76 37.12h4.09v-61.14h-12.29zm64.77 60.04h13.19l-26.75-61.14h-4.09l-26.84 61.14h13.19l3.37-7.82h24.56l3.37 7.82zm-7.64-18.92h-16.01l8.01-19.29 8 19.29z" style="fill:#e8405a"/></svg> </a> <div class="header-inner__right"> <div class="navbar"> <a href="javascript:;" class="mobile-men-btn"> <div class="mobile-men-btn-ico"> <div class="lines"> <span></span> <span></span> <span></span> </div> </div> <span>菜单</span> </a> <div class="lang-select"> <div class="lang-select__btn"> <i class="i i-language"></i> <span>CN</span> <div class="arrow"></div> </div> <div class="lang-select__list"> <div class="lang-select__item"><i class="i i-language"></i> <div class="item-right"> <span>CN</span> <div class="arrow"></div> </div> </div> <a href="https://www.sigepcn.com/en/index/Exhibition-Overview/About-Sigep-China/Hall-Plan" class="lang-select__item langselect_altlang"><i class="i i-right-arrow"></i> <div class="item-right"> <span>EN</span> </div> </a> </div> </div> <a href="https://www.sigepcn.com/cn/index/follow-us" class="navbar-link"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/02/25/2022022515495416db541b.svg" alt="" title="Contact"> <span>联系我们</span> </a> <a href="https://reg.sigepcn.com/zh-cn/" class="navbar-link"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/02/25/2022022515498f888536e.svg" alt="" title="Ticket"> <span>观众登记</span> </a> <a href="https://koelnmessechina.ungerboeck.com/prod/app85.cshtml?aat=RzT%2fsESkQKdjpIqkeNVw6fqBzfMiUYFiv%2b3ZsL73B00%3d" class="navbar-link"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/02/25/2022022515465306987075.svg" alt="" title="Login"> <span>展商登录</span> </a> </div> <nav class="nav-block"> <div class="holder"> <div class="nav-holder"> <div class="nav"> <ul class="mainmenu"> <li class="desktophidden overview"></li> <li class=" hassub "> <a class="level-1 no-link" target="_self" href="javascript:;" data-target="sub-Exhibition-Overview">展会概况</a> </li> <li class=" hassub "> <a class="level-1 no-link" target="_self" href="javascript:;" data-target="sub-VP-EP">观众&展商服务</a> </li> <li class=" hassub "> <a class="level-1 no-link" target="_self" href="javascript:;" data-target="sub-Events-Forums">精彩活动</a> </li> <li class=" hassub "> <a class="level-1 no-link" target="_self" href="javascript:;" data-target="sub-Media">媒体中心</a> </li> <li class=" nosub "> <a class="level-1" target="_self" href="https://www.sigepcn.com/cn/index/Contact-us" >联系我们</a> </li> <li class=" hassub "> <a class="level-1 no-link" target="_self" href="javascript:;" data-target="sub-Co-Locate">同期展会</a> </li> </ul> <div class="mobilemeta"> <a href="https://www.sigepcn.com/cn/index/follow-us" class="navbar-link"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/02/25/2022022515495416db541b.svg" alt="" title="Contact"> <span>联系我们</span> </a> <a href="https://reg.sigepcn.com/zh-cn/" class="navbar-link"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/02/25/2022022515498f888536e.svg" alt="" title="Ticket"> <span>观众登记</span> </a> <a href="https://koelnmessechina.ungerboeck.com/prod/app85.cshtml?aat=RzT%2fsESkQKdjpIqkeNVw6fqBzfMiUYFiv%2b3ZsL73B00%3d" class="navbar-link"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/02/25/2022022515465306987075.svg" alt="" title="Login"> <span>展商登录</span> </a> </div> </div> <div class="subnav" id="sub-Exhibition-Overview"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 hassub "> <a class="active no-link" target="_self" href="javascript:;" >展会概览</a> <div class="subnav-container"> <ul> <li class="desktophidden overview"></li> <li class="level-2 desktophidden"><a href="#" class="overview"></a> </li> <li> <a class="" target="_self" href="https://www.sigepcn.com/cn/index/Exhibition-Overview/About-Sigep-China/About-the-Fair" >展会介绍</a> </li> <li> <a class="" target="_blank" href="https://www.sigepcn.com/cn/index/Exhibition-Overview/About-Sigep-China/Exhibiting-Profile" >展会板块内容</a> </li> <li> <a class="" target="_blank" href="https://www.sigepcn.com/cn/index/Exhibition-Overview/About-Sigep-China/Date-and-Opening-Hours" >时间&地点</a> </li> <li> <a class="" target="_self" href="https://www.sigepcn.com/cn/index/Exhibition-Overview/About-Sigep-China/Hall-Plan" >场馆图</a> </li> <li> <a class="" target="_blank" href="https://www.sigepcn.com/cn/index/Exhibition-Overview/About-Sigep-China/Organizers" >主办、协办、支持</a> </li> </ul> </div> </li> <li class="level-2 hassub "> <a class="active no-link" target="_self" href="javascript:;" >下载中心</a> <div class="subnav-container"> <ul> <li class="desktophidden overview"></li> <li class="level-2 desktophidden"><a href="#" class="overview"></a> </li> <li> <a class="" target="_blank" href="https://sigepcn.com/download/media/d9425n6KFHwr8_hckIB8KszqgqBdlSysVSwEPvK0VnHIBHLZ0cJHH-Fm5o8p5iGekBEpDKH_of05JgS1aTQ68Vx7VyMtmZqod0oBCC9j_gY?SIGEP%20China%20Brochure%202025.pdf" >2025年招展书</a> </li> <li> <a class="" target="_self" href="https://sigepcn.com/download/media/e1a4tX1dDkmvmT-1sec5nGwnaDgQh2mFGY7wINd67DQEw4KLUNNAlPymR7XXrDNwZ4UI6d3d3hoKzqZmo6H4dmSE69JajLpGsd1vYhFuO9no6IE-cS3NYF_1Pa5OnXU?2025%20SIGEP%20China%E5%B9%BF%E5%91%8A%E6%96%B9%E6%A1%88.pdf" >2025年 广告方案</a> </li> <li> <a class="" target="_blank" href="https://sigepcn.com/download/media/57e4PlwAM78ozG9ax-XxwLQP9LSmSfJZVGi1bwmUWGKzBbpAQiS-ev6EyZOjk8RGWU7VagtY9GeO1Ys7xT486Hg_ZjKkY8yRhKQKPrfsYVa7yA?SIGEP%202024%20Post%20show%20report.pdf" >2024展后报告</a> </li> </ul> </div> </li> <li class="level-2 navmodul navmodul_icon "> <a href="https://en.sigep.it/" > <div class="navitem_icon"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2024/08/19/20240819171706b86cb076.jpg" alt="SIGEP WORLD"> <div class="linktitle">意大利手工冰淇淋、烘焙及咖啡展览会</div> </div> </a> </li> </ul> </div> <div class="close"></div> </div> <div class="subnav" id="sub-VP-EP"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 hassub "> <a class="active no-link" target="_self" href="javascript:;" >观众服务</a> <div class="subnav-container"> <ul> <li class="desktophidden overview"></li> <li class="level-2 desktophidden"><a href="#" class="overview"></a> </li> <li> <a class="" target="_self" href="https://reg.sigepcn.com/?source=BWEB" >专业观众登记</a> </li> <li> <a class="" target="_self" href="https://online.sigepcn.com/" >数字展厅</a> </li> <li> <a class="" target="_blank" href="https://www.sigepcn.com/cn/index/VP-EP/For-Visitors/Venue-Transportation" >交通指南</a> </li> <li> <a class="" target="_blank" href="https://www.sigepcn.com/cn/index/VP-EP/For-Visitors/Accommodation" >酒店住宿</a> </li> <li> <a class="" target="_self" href="https://sigepcn.com/cn/exhibitor-search" >展商预览</a> </li> <li> <a class="" target="_self" href="https://www.sigepcn.com/cn/index/VP-EP/For-Visitors/Visa-Information" >签证</a> </li> </ul> </div> </li> <li class="level-2 hassub "> <a class="active no-link" target="_self" href="javascript:;" >展商服务</a> <div class="subnav-container"> <ul> <li class="desktophidden overview"></li> <li class="level-2 desktophidden"><a href="#" class="overview"></a> </li> <li> <a class="" target="_self" href="https://sigepcn.com/download/media/d9425n6KFHwr8_hckIB8KszqgqBdlSysVSwEPvK0VnHIBHLZ0cJHH-Fm5o8p5iGekBEpDKH_of05JgS1aTQ68Vx7VyMtmZqod0oBCC9j_gY?SIGEP%20China%20Brochure%202025.pdf" >2025年招展书</a> </li> <li> <a class="" target="_blank" href="https://sigepcn.com/cn/category/page/detail-booth-application" >展位申请</a> </li> </ul> </div> </li> </ul> </div> <div class="close"></div> </div> <div class="subnav" id="sub-Events-Forums"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 navmodul navmodul_icon "> <a href="https://event.sigepcn.com/dolcehub" > <div class="navitem_icon"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2024/08/29/20240829164559d1752b71.png" alt="图片1"> <div class="linktitle">The Dolce Hub</div> </div> </a> </li> <li class="level-2 navmodul navmodul_icon "> <a href="https://event.sigepcn.com/gwccn" > <div class="navitem_icon"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/12/19/2022121914420871ccf812.jpg" alt="gwc logo"> <div class="linktitle">2025冰淇淋世界杯(中国区选拔赛)</div> </div> </a> </li> <li class="level-2 navmodul navmodul_icon "> <a href="https://event.sigepcn.com/jpwccn" > <div class="navitem_icon"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2024/07/30/20240730145139ca46084b.png" alt="西点世界杯logo"> <div class="linktitle">2025青年世界西点杯(中国区选拔赛)</div> </div> </a> </li> <li class="level-2 navmodul navmodul_icon "> <a href="https://sigepcn.com/cn/category/page/detail-cti" > <div class="navitem_icon"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2024/03/13/202403131651091b7b458a.png" alt="bc03ecc54287cc2c1ba090624634084"> <div class="linktitle">CTI咖啡拉花及趣味冲煮赛</div> </div> </a> </li> </ul> </div> <div class="close"></div> </div> <div class="subnav" id="sub-Media"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 navmodul navmodul_icon "> <a href="https://www.sigepcn.com/cn/index/Media/Media-Partners" > <div class="navitem_icon"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/03/09/202203091844556dc060b9.png" alt="多媒体 (1)"> <div class="linktitle">合作媒体</div> </div> </a> </li> <li class="level-2 navmodul navmodul_icon "> <a href="https://www.sigepcn.com/cn/index/Media/Press-Releases" > <div class="navitem_icon"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/03/09/2022030918374525d0d830.png" alt="新闻稿"> <div class="linktitle">新闻发布</div> </div> </a> </li> </ul> </div> <div class="close"></div> </div> <div class="subnav" id="sub-Co-Locate"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 navmodul navmodul_icon "> <a href="https://www.anuga-cn.com/cn/" > <div class="navitem_icon"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2023/10/20/202310201107317dd7a040.png" alt="fb847404951f9386c4abb85a7080673"> <div class="linktitle">世界食品(深圳)博览会</div> </div> </a> </li> </ul> </div> <div class="close"></div> </div> </div> </div> </nav> </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://www.sigepcn.com/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://www.sigepcn.com/cn/full-search"; location.href = target + '/' + search_text; } </script> <main id="main"> <div class="breadcrumb"> <div class="breadcrumb-container"> <div class="grid-wrapper"> <ul class="breadcrumb__list"> <li class="breadcrumb__item"> <a href="https://www.sigepcn.com/cn" class="home"> <i class="i i-home"></i> </a> </li> <li class="breadcrumb__item"><span><a class=" no-link" target="_self" href="javascript:;" data-target="sub-Exhibition-Overview">展会概况</a></span></li><li class="breadcrumb__item"><span><a class=" no-link" target="_self" href="javascript:;" >展会概览</a></span></li><li class="breadcrumb__item"><span><a class=" active" target="_self" href="https://www.sigepcn.com/cn/index/Exhibition-Overview/About-Sigep-China/Hall-Plan" >场馆图</a></span></li> </ul> </div> </div> </div> <div class="content-page"> <div class="grid-wrapper"> <div class="content-page__header"> <h2 class="content-page__title">场馆图</h2> <div class="content-page__header__tool"> <div class="social-share-btn-wrap"> <div class="social-share-btn"><i class="i i-share"></i><span>分享</span></div> <div class="tooltipser-base"> <div class="tooltipster-box"> <div class="tooltipster-content"> <div class="social-shared" id="share"></div> </div> </div> <div class="tooltipster-arrow"> <div class="tooltipster-arrow-uncropped"> <div class="tooltipster-arrow-border"></div> <div class="tooltipster-arrow-background"></div> </div> </div> </div> </div> <script> $(function () { if ($("#share").length != 0) { socialShare('#share', { sites: ['wechat', 'weibo', 'twitter', 'facebook', 'linkedin'], wechatQrcodeTitle: "", wechatQrcodeSize: 140, }); $('.social-shared .icon-wechat').on("click", function () { var img_src = $('.social-shared .wechat-qrcode img').attr('src') $('#wechatModal img').attr('src', img_src) var html = '<div class="qr-code"><img src="' + img_src + '" alt=""></div>' $('#wechatModal .modal-body').html(html) $('#wechatModal').modal('show') }) } }); </script> </div> </div> <!-- layout 9:3 --> <div class="container-cms-page is-columns main-container" > <div class="container-cms-page__content" ><!-- block:Rich text --> <section id="block6694d805c09e0075633095" class="cms-block cms-margin-top-default cms-margin-bottom-default cms-section-caeh9a" > <header class="cms-block-tit">深圳国际手工冰淇淋、烘焙及咖啡展览会</header> <div class="cms-item cms-item-text"> <p><strong>日期:</strong>2025年4月24-26日<br /> <strong>场馆:</strong>深圳会展中心(福田)1号馆<br /> <strong>网址:</strong>www.sigepcn.com</p> </div> </section> <!-- block:Single Image --> <section id="block6694d805c2c35786242466" class="cms-block this-block-full cms-margin-top-default cms-margin-bottom-default cms-section-3b9j2g" > <div class="cms-item cms-item-image"> <a class="img-src no-link" href="javascript:;" target="_self"> <img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2024/06/19/20240619111214070f8230.jpg" alt="Venue 2025" title="Venue 2025"> </a> </div> </section> </div> <div class="container-cms-page__aside" ><!-- block:Link List --> <section id="block6694d805c8487484501305" class="cms-block cms-margin-top-default cms-margin-bottom-default cms-section-c36n5" > <div class="cms-item cms-item-links-other"> <ul class="cms-item-links-other__list"> <li class="cms-item-links-other__item"> <div class="left-icon"> <i class="i i-network"></i> </div> <div class="cms-item-links-other__info"> <h3 class="cms-item-links-other__title">SIGEP China 新闻资讯</h3> <p class="cms-item-links-other__desc">我们为您提供了最新的展会资讯以及行业新闻.</p> <div class="link-list-with-a"> <a href="https://www.sigepcn.com/cn/index/Media/Press-Releases" target="_blank" class="fast-link"><i class="i i-right-arrow"></i><span>了解详情</span></a> </div> </div> </li> <li class="cms-item-links-other__item"> <div class="left-icon"> <i class="i i-network"></i> </div> <div class="cms-item-links-other__info"> <h3 class="cms-item-links-other__title">SIGEP China 现场活动</h3> <p class="cms-item-links-other__desc">会议与活动是推动发展的重要生命力,SIGEP CHINA为您提供行业前瞻内容。</p> <div class="link-list-with-a"> <a href="https://www.sigepcn.com/cn/index/Events-Forums/Gelato-World-Cup" target="_blank" class="fast-link"><i class="i i-right-arrow"></i><span>了解详情</span></a> </div> </div> </li> <li class="cms-item-links-other__item"> <div class="left-icon"> <i class="i i-download"></i> </div> <div class="cms-item-links-other__info"> <h3 class="cms-item-links-other__title">2025招展书</h3> <div class="link-list-with-a"> <a target="_blank" href="https://sigepcn.com/download/media/ef69gvkBA3Usw1hNWSJmO8mMmQA5Ajd5uemi_j7Y7u8jqRVDHO0R6vvf0kV9ATi9w19IZvF-fFB8Ogdv-E2tJ-VAToXdoAuddt4WGsznq10?SIGEP%20China%20Brochure%202025.pdf" class="fast-link "><i class="i i-right-arrow"></i><span>点击下载</span></a> </div> </div> </li> <li class="cms-item-links-other__item"> <div class="left-icon"> <i class="i i-download"></i> </div> <div class="cms-item-links-other__info"> <h3 class="cms-item-links-other__title">2024展后报告</h3> <div class="link-list-with-a"> <a target="_blank" href="https://sigepcn.com/download/media/4dd7WIsTAndmJFjbSp1NDjOzRyMKz0fzhe0L2TkpVTJRcPx_kCuJo5aiwZSKGN6nMsYytiT_KgH9-vh0iuuKJk4dsQRdRMDCX-yDfYMK4M2L1Q?SIGEP%202024%20Post%20show%20report.pdf" class="fast-link "><i class="i i-right-arrow"></i><span>点击下载</span></a> </div> </div> </li> </ul> </div> </section> </div> </div> </div> </div> <script> function getuuid() { var s = []; var hexDigits = "0123456789abcdef"; for (var i = 0; i < 36; i++) { s[i] = hexDigits.substr(Math.floor(Math.random() * 0x10), 1); } s[14] = "4"; // bits 12-15 of the time_hi_and_version field to 0010 s[19] = hexDigits.substr((s[19] & 0x3) | 0x8, 1); // bits 6-7 of the clock_seq_hi_and_reserved to 01 s[8] = s[13] = s[18] = s[23] = "-"; var uuid = s.join("") return uuid } $.fn.swiper = function (opt) { if (this.data("swiper")) return; const $swiperSlide = this.find(".swiper-slide"); const { pagination, navigation } = opt; if ($swiperSlide.length > 1) { var uuid = getuuid(); this[0].innerHTML += ` ${pagination ? `<div class="${pagination.el.substring(1, this.lenght)} swiper-pagination swiper-pagination-${uuid}"></div>` : ''} ${navigation ? ` <div class="${navigation.nextEl.substring(1, this.lenght)} swiper-button-next swiper-next-${uuid}"></div> <div class="${navigation.prevEl.substring(1, this.lenght)} swiper-button-prev swiper-prev-${uuid}"></div>` : ''} `; } if (navigation) { opt.navigation.nextEl = '.swiper-next-' + uuid opt.navigation.prevEl = '.swiper-prev-' + uuid } if (pagination) { opt.pagination.el = '.swiper-pagination-' + uuid } this.data("swiper", new Swiper(this[0], opt)); if (navigation && navigation.outside) { this.after(this.find(navigation.nextEl)) this.after(this.find(navigation.prevEl)) } }; // 后台用 var vw = $(window).innerWidth(); var device = { mobile: vw < 768, pad_v: vw >= 768 && vw < 1024, pad_h: vw > 768 && vw <= 1366, desktop: vw >= 1024, } </script> <script> var iframe = document.getElementById("phpernote"); if (iframe) { if (iframe.attachEvent){ iframe.attachEvent("onload", function(){ dyniframesize('phpernote') }) } else { iframe.onload = function(){ dyniframesize('phpernote') } } } window.dyniframesize = function (down) { var Sys = {}; var ua = navigator.userAgent.toLowerCase(); var s; (s = ua.match(/msie ([\d.]+)/)) ? Sys.ie = s[1] : (s = ua.match(/firefox\/([\d.]+)/)) ? Sys.firefox = s[1] : (s = ua.match(/chrome\/([\d.]+)/)) ? Sys.chrome = s[1] : (s = ua.match(/micromessenger\/([\d.]+)/)) ? Sys.wechat = s[1] : (s = ua.match(/opera.([\d.]+)/)) ? Sys.opera = s[1] : (s = ua.match(/version\/([\d.]+).*safari/)) ? Sys.safari = s[1] : 0; var pTar = null; if (document.getElementById) { pTar = document.getElementById(down); } else { eval('pTar=' + down + ';'); } pTar.style.display = "block"; if (Sys.ie) { if (Sys.ie == '9.0') { pTar.height = pTar.contentWindow.document.body.offsetHeight + 15 + "px"; pTar.width = pTar.contentWindow.document.body.scrollWidth + "px"; } else if (Sys.ie == '8.0') { pTar.height = pTar.Document.body.offsetHeight + 15 + "px"; pTar.width = pTar.Document.body.scrollWidth + "px"; } else { pTar.height = pTar.Document.body.scrollHeight + 25 + "px"; pTar.width = pTar.Document.body.scrollWidth + "px"; } } if (Sys.firefox) { pTar.height = pTar.contentDocument.body.offsetHeight + 15 + "px"; pTar.width = pTar.contentDocument.body.scrollWidth + "px"; } if (Sys.chrome) { pTar.height = pTar.contentDocument.body.offsetHeight; pTar.width = pTar.contentDocument.body.scrollWidth; } if (Sys.wechat) { pTar.height = pTar.contentDocument.body.offsetHeight; pTar.width = pTar.contentDocument.body.scrollWidth; } if (Sys.opera) { pTar.height = pTar.contentDocument.body.offsetHeight; pTar.width = pTar.contentDocument.body.scrollWidth; } if (Sys.safari) { if (pTar.contentDocument.body.offsetHeight <= '186') { pTar.height = pTar.contentDocument.body.offsetHeight + 10; } else { pTar.height = pTar.contentDocument.body.offsetHeight; } pTar.width = pTar.contentDocument.body.scrollWidth; } } </script></main> <script> if (!$('.container-cms-page .container-cms-page__aside .cms-block').length) { $('.container-cms-page .container-cms-page__aside').remove(); $('.content-page__header').addClass('is-center'); $('.container-cms-page').addClass('is-center'); } </script> <footer id="footer"> <div class="grid-wrapper"> <div class="footer-socials"> <a href="https://www.instagram.com/sigepchina/" target=&quot;_blank&quot; class="footer-socials__item " > <i class="i i-instagram"></i> </a> <a href="javascript:;" class="footer-socials__item wechat-modal-btn " data-content='<div class="modal-title"> <h3>扫码关注</h3> <div class="ckediter-block"><p>获取展会资料,参与现场互动</p></div> </div> <div class="qr-code"><img src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/10/27/20221027111214e4486a49.jpg" alt="new QR code"></div>' > <i class="i i-wechat"></i> </a> <a href="https://weibo.com/u/7741831236" target=&quot;_blank&quot; class="footer-socials__item " > <i class="i i-weibo"></i> </a> <a href="javascript:;" target=&quot;_blank&quot; class="footer-socials__item " > <i class="i i-facebook"></i> </a> </div> <script> $('.wechat-modal-btn').on('click', function() { var html = $(this).data('content') $('#wechatModal .modal-body').html(html) $('#wechatModal').modal('show') }) </script> <div class="footer-content"> <div class="col-left"> <div class="footer-item"> <h3 class="footer-item__title">邮件订阅</h3> <p>第一时间了解展会信息,接收新闻及市场资讯。</p> <input type="text" placeholder="您的邮箱地址" class="form-control"/> <input type="text" placeholder="您的姓名" class="form-control"/> <a href="javascript:;" class="btn btn-primary subscribe-btn" data-bs-toggle="modal" data-bs-target="#subscribeModal">订阅</a> </div> </div> <div class="col-right"> <div class="footer-item"> <h3 class="footer-item__title">联系我们</h3> <div class="ckediter-block"> <p><strong>合作咨询:</strong><br /> <br /> 姓名:Teresa Zhao 赵小姐<br /> 电话:+86 134 0210 2421<br /> 邮箱:Teresa.zhao@koelnmesse.cn</p> <p>姓名:Crystal Ma 马小姐<br /> 电话:+86 134 3206 6907<br /> 邮箱:Crystal.ma@koelnmesse.cn</p> </div> </div> <div class="footer-item"> <h3 class="footer-item__title">主办单位</h3> <div class="ckediter-block"> <p><img alt="%E6%9C%AA%E5%91%BD%E5%90%8D" data-como-imageid="3195" src="https://sigepchina-storage.www.comocloud.net/sigepchina/2024/04/02/20240402095545c54ee485.png" style="show w-100per" title="%E6%9C%AA%E5%91%BD%E5%90%8D" /><br /> 科隆展览(北京)有限公司</p> <p><br /> <img alt="%E6%9C%AA%E5%91%BD%E5%90%8D" data-como-imageid="3199" src="https://sigepchina-storage.www.comocloud.net/sigepchina/2024/04/02/2024040209594154a228b8.png" style="show w-100per" title="%E6%9C%AA%E5%91%BD%E5%90%8D" /><br /> 艾意吉展览(上海)有限公司</p> </div> </div> <div class="footer-item"> <h3 class="footer-item__title">协办单位</h3> <div class="ckediter-block"> <p><img alt="logo3" data-como-imageid="523" src="https://sigepchina-storage.www.comocloud.net/sigepchina/2022/07/07/202207071020466d191961.png" style="show w-100per" title="logo3" /></p> </div> </div> </div> </div> <div class="footer-bottom"> <div class="col-left"> <p>© 2024 科隆展览(北京)有限公司 保留所有权利 <a target="_blank" href="http://beian.miit.gov.cn/">京ICP备11021190号-29</a></p> </div> <div class="col-right"> <span>设计开发: </span><a href="https://www.comonetwork.com" target="_blank" class="logo-como"><img src="https://www.sigepcn.com/modulesassets/comofrontend/assets/images/como-logo.svg?v=20240821" alt=""></a> </div> </div> </div> </footer> <script src="https://www.sigepcn.com/modulesassets/comofrontend/dist/js/qrcode.js?v=20240821"></script> <script src="https://www.sigepcn.com/modulesassets/comofrontend/dist/js/social-share.js?v=20240821"></script> <script src="https://www.sigepcn.com/modulesassets/comofrontend/dist/js/main.min.js?v=20240821"></script> <script> $(function () { app.globfn.setFixedAsideMenu([ { img: 'https://sigepchina-storage.www.comocloud.net/sigepchina/2023/09/19/2023091914273550513c0b.png', label: "在线咨询", onClick() { window.open('https://work.weixin.qq.com/kfid/kfc27552bca45d8ebb7'); }, }, { img: 'https://sigepchina-storage.www.comocloud.net/sigepchina/2023/09/19/20230919144026ddd3869d.png', label: "展位申请", onClick() { window.location.href = 'https://sigepcn.com/cn/category/page/detail-booth-application'; }, }, ]); }); </script> <div class="modal" id="wechatModal"> <button class="modal-close" data-bs-dismiss="modal"><i class="i i-close"></i></button> <div class="modal-dialog modal-dialog--qrcode modal-dialog-centered"> <div class="modal-content"> <div class="modal-body"> </div> </div> </div> </div> <div class="modal" id="subscribeModal"> <button class="modal-close" data-bs-dismiss="modal"><i class="i i-close"></i></button> <div class="modal-dialog modal-dialog-centered"> <div class="modal-content"> <div class="modal-body"> <div class="modal-title"> <h3>订阅</h3> <p class="modal-title__desc">我们希望将来与您保持联系,以便让您及时了解活动和类似服务。 这就是为什么我们想征求您同意通过电子媒体联系的原因。</p> <form class="form-block" id="subscribe-form"> <div class="form-row"> <div class="form-item half"> <label>邮箱地址<span class="imp">*</span></label> <div class="errorholder" data-label="请输入正确的电子邮件"> <input class="form-item__check" name="email" type="email" placeholder="邮箱地址"> </div> </div> </div> <div class="form-row"> <div class="form-item half"> <label>称谓<span class="imp">*</span></label> <div class="errorholder" data-label="请选择称谓"> <div class="form-check-group"> <div class="form-check form-check-inline"> <input type="radio" name="gender" class="form-check-input" id="inlineRadio1" value="sir" checked> <label class="form-check-label" for="inlineRadio1">先生</label> </div> <div class="form-check form-check-inline"> <input type="radio" name="gender" class="form-check-input" id="inlineRadio2" value="lady"> <label class="form-check-label" for="inlineRadio2">女士</label> </div> </div> </div> </div> </div> <div class="form-row"> <div class="form-item half"> <label>您的姓名<span class="imp">*</span></label> <div class="errorholder" data-label="请输入姓名"> <input class="form-item__check" name="name" type="email" placeholder="您的姓名"> </div> </div> </div> <div class="form-row"> <div class="form-item half"> <label>语言<span class="imp">*</span></label> <div class="errorholder" data-label="请选择语言"> <div class="form-check-group"> <div class="form-check form-check-inline"> <input type="checkbox" name="language[]" class="form-check-input" id="inlineCheck1" value="chinese" checked> <label class="form-check-label" for="inlineCheck1">中文</label> </div> <div class="form-check form-check-inline"> <input type="checkbox" name="language[]" class="form-check-input" id="inlineCheck2" value="english" checked> <label class="form-check-label" for="inlineCheck2">英文</label> </div> </div> </div> </div> </div> <div class="form-row"> <div class="form-item half"> <div class="errorholder" data-label="Mismatch of verification code"> <div class="form-verification-code"> <div class="input-group"> <input class="form-item__check" name="captcha" type="text" placeholder="图形验证码"> <span class="form-verification-img"><img src="https://www.sigepcn.com/captcha/default?HTIOPutw" ></span> </div> </div> </div> <a href="javascript:;" class="refresh-btn change-captcha">刷新验证码</a> </div> </div> <input type="hidden" name="_token" value="4hihVOG4qROyZXmcnkGP6ALA5lxv24UC2upHcq8D"> <div class="form-row"> <div class="form-item half"> <button class="btn btn-primary btn-radius-sm subscribe-submit-btn" onclick="return false;">提交</button> </div> </div> </form> <div class="form-footer"> <div class="form-check form-check-inline"> <input type="checkbox" class="form-check-input" id="agreement" value="option1"> <label class="form-check-label" for="agreement">我已阅读理解并同意相关<a href="#">隐私政策</a></label> </div> </div> </div> </div> </div> </div> </div> <script> $(function () { $('.styled_select .toggle').on('click', function () { if (!$(this).parent().hasClass('open')) { $(this).parent().addClass('open') } else { $(this).parent().removeClass('open') } }) $('.change-captcha').click(function () { $(this).prev().find('img').attr('src', 'https://www.sigepcn.com/captcha/default?lNGdpAeh' + Math.random()); $('input[name="captcha"]').val(''); }); $('input[name="captcha"]').keyup(function () { if (this.value.length > 4) { this.value = this.value.substr(0, 4) } else if (this.value.length == 4) { } }); $('.subscribe-submit-btn').on('click', function () { if ($('#agreement').prop('checked')) { $.ajax({ url: 'https://www.sigepcn.com/cn/ajax-subscribe', type: 'post', dataType: 'json', data: $('#subscribe-form').serialize(), success: function (rsp) { alert('提交成功!'); $('#subscribeModal').modal('hide'); }, error: function (rsp) { rsp = rsp.responseJSON; if ('email' in rsp.errors) { $('input[name=email]').closest('.half').addClass('error'); } if ('name' in rsp.errors) { $('input[name=name]').closest('.half').addClass('error'); } if ('gender' in rsp.errors) { $('input[name=gender]').closest('.half').addClass('error'); } if ('language' in rsp.errors) { $('input[name=language]').closest('.half').addClass('error'); } if ('captcha' in rsp.errors) { $('input[name=captcha]').closest('.half').addClass('error'); $('.change-captcha').click(); } } }); } return false; }); $('.subscribe-btn').on('click', function () { $('#subscribeModal input[name=email]').val($(this).prev().prev().val()); $('#subscribeModal input[name=name]').val($(this).prev().val()); }); }); </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-222092990-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-222092990-1'); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?944a3a0e47e3cc45410b96fd024e8ab9"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </body> </html>

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