CINXE.COM
Healthy Diet | Anuga Select China
<!DOCTYPE html> <html lang="en" style="--primary: #E30018; --on-primary: #FFFFFF; --border-radius-btn: 5px; "> <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="GlhkBQNcdKvJdfDlOnBW9pE4d5eOeumLBlUhkgvE"> <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> <title>Healthy Diet | Anuga Select China</title> <meta name="keywords" content="Koelnmesse, ANUGA Sub-exhibition, Shenzhen Food Exhibition, Rest Food Exhibition, Pre-made Vegetables Exhibition"/> <meta name="description" content="Marching forward side by side with its exhibitors and visitors, Anuga Select China has transformed into the global food & beverage exhibition serving Southern Asia."/> <meta property="og:title" content="Healthy Diet | Anuga Select China"/> <meta property="og:description" content="Marching forward side by side with its exhibitors and visitors, Anuga Select China has transformed into the global food & beverage exhibition serving Southern Asia."/> <meta property="og:image" content="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/2024052115305113f0c6e8.png"/> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="Healthy Diet | Anuga Select China"> <meta name="twitter:description" content="Marching forward side by side with its exhibitors and visitors, Anuga Select China has transformed into the global food & beverage exhibition serving Southern Asia."> <meta name="twitter:image" content="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/2024052115305113f0c6e8.png"> <link rel="stylesheet" href="https://www.anuga-cn.com/modulesassets/comofrontend/dist/css/app.min.css?v=20240821"> <link rel="shortcut icon" href="https://www.anuga-cn.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.anuga-cn.com/en/browser-upgrade'; } else { // console.log('大于等于IE10') } </script> <script src="https://www.anuga-cn.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> </head> <body class=""> <img class="wechat_share_image" style="display: block; position: absolute; width: 0px; height: 0px; left: 0; top: 0;opacity: 0; z-index: -1;" src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/2024052115305843af6fd5.png"> <!-- 警告框 --> <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>Shenzhen, China 24-26 April 2025</span> </p> <div class="lang-select"> <div class="lang-select__btn"><i class="i i-language"></i><span>EN</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>EN</span><div class="arrow"></div></div></div> <a href="https://www.anuga-cn.com/cn/index/trade-fair/Focused-in-2025/healthy-diet" class="lang-select__item langselect_altlang"><i class="i i-right-arrow"></i> <div class="item-right"> <span>CN</span> </div> </a> </div> </div> </div> <div class="header-inner"> <a href="https://www.anuga-cn.com/en" class="logo"> <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="249.55px" height="403.49px" style="enable-background:new 0 0 249.55 403.49"><path d="m50.51 279 .04-11.44c-.93.12-1.98-.47-2.8-1.63-.86-1.22-2.79-10.91-3.29-13.12-2.49-10.78-9.84-18.21-22.56-18.21-12.2 0-21.88 10.14-21.91 22.33-.03 12.39 9.08 22.13 22.16 22.76 7.53.37 11.16-3.38 14.43-6.58l-7.53-8.2c-7.91 5.82-16.64-.73-16.65-7.92-.01-5.65 4.58-10.4 10.09-10.4 6.66 0 8.7 4.56 10.78 10.36 1.4 3.92 2.88 11.55 4.56 15.75 1.66 4.15 8.29 7.06 12.68 6.3m36.23-.16h11.61v-24.89c-.83-12.33-10.84-19.44-22.38-19.37-11.32.07-21.14 8.29-21.97 18.96v25.31h11.6v-21.59c.83-7.18 4.86-11.31 10.91-11.07 5.91.23 9.39 4.23 10.22 11.22l.01 21.43zm59.68-18.13v-25.3h-11.6V257c-.83 7.17-4.85 11.04-10.92 11.07-5.92.03-9.39-4.22-10.22-11.21v-21.44h-11.6v24.89c.83 12.32 10.84 19.51 22.38 19.37 11.31-.15 21.13-8.3 21.96-18.97M194 276.02v-19.78c0-13.37-10.18-22.19-22.89-22.19-12.2 0-21.93 10.14-21.9 22.34.03 12.39 9.06 22.69 22.16 22.77 4.48.03 5.53-.59 8.62-2.05l-4.97-10.2c-7.05 3.73-13.66-3.46-13.74-10.12-.07-5.84 4.91-10.74 10.42-10.74 6.66 0 10.78 5.78 10.78 11 0 5.36-.42 15 0 18.74-.42 4.97-9.53 13.92-19.9 3.97-4.14 3.32-8.7 7.71-8.7 7.71 2.49 2.65 9.12 8.2 18.65 8.12 10.36-.09 20.65-7.13 21.47-19.57m54.33-8.45c-.93.12-1.98-.47-2.8-1.63-.86-1.22-2.79-10.91-3.29-13.12-2.49-10.78-9.84-18.21-22.56-18.21-12.2 0-21.88 10.14-21.91 22.33-.03 12.39 9.08 22.13 22.16 22.76 7.53.37 11.15-3.38 14.43-6.58l-7.53-8.2c-7.91 5.82-16.64-.73-16.65-7.92-.01-5.65 4.58-10.4 10.09-10.4 6.66 0 8.7 4.56 10.78 10.36 1.4 3.92 2.88 11.55 4.56 15.75 1.66 4.14 8.29 7.05 12.67 6.3l.05-11.44zM137.96 151.19c5.44-11.36 8.45-25.05 8.75-39.73h15.86c-.87 17.83-9.94 37.24-23.62 50.15-5.45 5.15-11.28 8.87-17.1 11 6.56-5.6 11.97-12.76 16.11-21.42m-26.14 22.13v-61.86h29.51c-.29 13.91-3.13 26.82-8.23 37.48-5.11 10.68-12.25 18.86-21.28 24.38m0-128.38c8.58 5.2 15.76 13.41 20.9 23.97 5.28 10.85 8.23 23.68 8.6 37.26h-29.49V44.94h-.01zm27.61 11.89c6.78 6.5 12.54 14.71 16.67 23.74 3.88 8.48 6.09 17.28 6.47 25.61h-15.88c-.36-14.38-3.5-27.99-9.13-39.55-4.29-8.82-9.93-16.16-16.6-21.68 6.29 2.22 12.61 6.25 18.47 11.88m39.54 49.35h-11.03c-.38-9.06-2.76-18.62-6.94-27.78-4.4-9.62-10.56-18.39-17.81-25.35-4.02-3.86-8.26-7.03-12.59-9.48 27.27 8.56 47.24 33.22 48.37 62.61zm-47.19 67.52c3.74-2.21 7.39-4.98 10.88-8.27 14.68-13.87 24.41-34.77 25.27-53.96h11.04c-1.12 28.96-20.52 53.33-47.19 62.23m-25.32-67.52H77.58c.33-13.71 3.28-26.66 8.61-37.6 5.02-10.3 11.97-18.37 20.27-23.59v61.19zm0 66.42c-8.72-5.51-15.66-13.57-20.65-23.99-5.07-10.58-7.89-23.37-8.22-37.15h28.87v61.14zM39.8 111.46h32.41c.34 14.56 3.34 28.13 8.74 39.4 5.44 11.37 13.05 20.17 22.66 26.22-34.88-2.81-62.47-30.91-63.81-65.62m63.72-70.89c-9.13 5.75-16.73 14.55-22.18 25.73-5.67 11.64-8.81 25.38-9.14 39.88H39.8c1.34-34.68 28.88-62.75 63.72-65.61M39.75 109v-.36.36zm198.45 66.71c-4.22-3.74-4.65-9.56-7.18-19.11l-11.4-56.49C208.64 39.04 170.21 0 107.7 0 47.72 0 .57 49 .01 108c-.57 59.91 44.77 109.66 108.96 110.08 37.05.24 68.84-19.11 84.61-42.51l-25.34-19.41c7.18-9.16 12.54-20.04 15.38-31.07l12.77 56.85c2.43 10.82 6.48 19.81 13.09 25.34 8.45 7.06 18.15 9.69 28.29 10.11h10.56v-38.36c-4.16-.14-7.03-.58-10.13-3.32M0 342.05h249.55v61.45H0v-61.45zm249.55-36.87v-4.08h-21.39v4.08h8.22v21.77h4.59v-21.77h8.58zm-55.1-4.52c-3.46 0-6.3 1.28-8.51 3.85-2.22 2.57-3.33 5.77-3.33 9.59 0 4.1 1 7.34 3 9.72 2 2.37 4.81 3.56 8.42 3.56s6.35-.99 8.22-2.98l-2.14-3.71c-1.38 1.74-3.28 2.61-5.72 2.61-2.13 0-3.83-.81-5.1-2.43-1.28-1.62-1.91-3.82-1.91-6.58 0-2.76.69-5.05 2.06-6.85 1.38-1.81 3.14-2.71 5.29-2.71 2.27 0 3.92.51 4.94 1.54l1.89-3.79c-1.78-1.21-4.15-1.82-7.11-1.82m-39.17 4.52v-4.08h-16.49v25.84h16.3v-4.08h-11.71v-7.75h8.54v-3.9h-8.54v-6.05h11.9v.02zm-44.7 21.76v-4.08H98.91V301.1h-4.59v25.84h16.26zm-44.82-21.76v-4.08H49.27v25.84h16.3v-4.08H53.85v-7.75h8.54v-3.9h-8.54v-6.05h11.91v.02zm-54.17 22.21c2.77 0 4.99-.68 6.64-2.03s2.48-3.07 2.48-5.17c0-1.16-.2-2.22-.6-3.17s-.98-1.77-1.74-2.49c-.77-.71-2.01-1.49-3.74-2.34-3.28-1.6-4.92-3.14-4.92-4.62 0-.9.29-1.62.87-2.18s1.4-.84 2.46-.84c1.79 0 3.49.57 5.1 1.73l1.39-3.95c-1.4-1.12-3.59-1.67-6.58-1.67-2.29 0-4.17.66-5.64 1.97-1.46 1.32-2.2 2.98-2.2 4.97 0 1.07.18 2.05.56 2.93.37.88.9 1.64 1.59 2.28.69.64 2.02 1.46 4.01 2.45 1.98.99 3.29 1.89 3.92 2.69.64.8.95 1.64.95 2.52 0 1.88-1.35 2.82-4.04 2.82-1.75 0-3.54-.64-5.35-1.9l-1.69 4.11c1.94 1.26 4.12 1.89 6.53 1.89" style="fill:#e30613"/><path d="M82.42 358.42 81 362.04c-1.35-.99-3.49-1.48-6.39-1.48-2.72 0-4.91 1.17-6.55 3.51s-2.47 5.36-2.47 9.06c0 3.53.84 6.39 2.53 8.58 1.69 2.19 3.86 3.29 6.53 3.29 2.91 0 5.14-1.03 6.71-3.09l2.33 3.24c-2.46 2.44-5.62 3.66-9.48 3.66-4.05 0-7.24-1.46-9.57-4.38s-3.49-6.77-3.49-11.56c0-4.63 1.24-8.47 3.73-11.54 2.48-3.06 5.69-4.59 9.63-4.59 3.36.01 6 .57 7.91 1.68zm22.17 29.87v-14.25c0-1.69-.42-3.03-1.25-4s-2-1.46-3.51-1.46c-.97 0-1.95.29-2.93.86-.98.57-1.73 1.24-2.25 2v16.85h-4.02v-31.96h4.02v11.79c.54-.83 1.4-1.53 2.59-2.09 1.19-.56 2.42-.84 3.69-.84 2.4 0 4.28.79 5.64 2.37s2.04 3.74 2.04 6.48v14.25h-4.02zm14.05 0v-19.28h-3.11v-3.39h7.13v22.67h-4.02zm2.2-31.24c.69 0 1.28.24 1.77.73s.73 1.07.73 1.75c0 .69-.24 1.28-.73 1.77s-1.08.73-1.77.73c-.68 0-1.26-.24-1.74-.73-.49-.49-.73-1.08-.73-1.77s.24-1.28.72-1.76c.47-.48 1.06-.72 1.75-.72zm24.55 31.24V375.1c0-2.41-.36-4.1-1.09-5.07s-1.95-1.45-3.66-1.45c-.92 0-1.88.28-2.88.83s-1.77 1.23-2.31 2.03v16.85h-4.02v-22.67h2.75l1.27 2.92c1.33-2.23 3.49-3.34 6.5-3.34 4.97 0 7.45 3.02 7.45 9.06v14.03h-4.01zm24.93-2.6c-1.61 2.02-4.07 3.03-7.39 3.03-1.78 0-3.32-.65-4.62-1.94-1.31-1.29-1.96-2.9-1.96-4.82 0-2.3 1.01-4.24 3.02-5.83 2.01-1.59 4.57-2.38 7.69-2.38.85 0 1.81.18 2.88.55 0-3.67-1.64-5.5-4.91-5.5-2.51 0-4.45.68-5.8 2.03l-1.69-3.37c.76-.62 1.82-1.15 3.17-1.6 1.35-.44 2.63-.67 3.86-.67 3.29 0 5.68.75 7.17 2.24 1.49 1.5 2.23 3.87 2.23 7.13v8.13c0 1.99.59 3.32 1.78 3.98v2.01c-1.64 0-2.86-.23-3.67-.7-.82-.45-1.41-1.22-1.76-2.29zm-.38-8.53c-1.27-.28-2.16-.42-2.67-.42-2.03 0-3.69.52-4.97 1.57-1.28 1.04-1.93 2.28-1.93 3.7 0 2.36 1.39 3.54 4.17 3.54 2.03 0 3.83-.97 5.4-2.9v-5.49z" style="fill:#fff"/></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>Menu</span> </a> <div class="lang-select"> <div class="lang-select__btn"> <i class="i i-language"></i> <span>EN</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>EN</span> <div class="arrow"></div> </div> </div> <a href="https://www.anuga-cn.com/cn/index/trade-fair/Focused-in-2025/healthy-diet" class="lang-select__item langselect_altlang"><i class="i i-right-arrow"></i> <div class="item-right"> <span>CN</span> </div> </a> </div> </div> <a href="https://www.anuga-cn.com/en/index/contact" class="navbar-link"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/20240521153743cb75bf41.svg" alt="" title="contact"> <span>Contact</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" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair" data-target="sub-trade-fair">Trade Fair</a> </li> <li class=" hassub "> <a class="level-1 no-link" target="_self" href="javascript:;" data-target="sub-event">Event</a> </li> <li class=" hassub "> <a class="level-1 no-link" target="_self" href="javascript:;" data-target="sub-exhibitor-profile">Exhibitor Profile</a> </li> <li class=" hassub "> <a class="level-1" target="_self" href="https://www.anuga-cn.com/en/index/for-exhibitors" data-target="sub-for-exhibitors">For Exhibitors</a> </li> <li class=" hassub "> <a class="level-1" target="_self" href="https://www.anuga-cn.com/en/index/media" data-target="sub-media">Media</a> </li> <li class=" hassub "> <a class="level-1 no-link" target="_self" href="javascript:;" data-target="sub-co-located">Co-located</a> </li> </ul> <div class="mobilemeta"> <a href="https://www.anuga-cn.com/en/index/contact" class="navbar-link"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/20240521153743cb75bf41.svg" alt="" title="contact"> <span>Contact</span> </a> </div> </div> <div class="subnav" id="sub-trade-fair"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 hassub "> <a class="active" target="_blank" href="https://www.anuga-cn.com/en/index/trade-fair/about-fair" >About Fair</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.anuga-cn.com/en/index/trade-fair/about-fair/why-anuga-select-china" >Why Anuga Select China</a> </li> <li> <a class="" target="_blank" href="https://www.anuga-cn.com/en/index/trade-fair/about-fair/FoodTec-zhuan-qu" >FoodTec Showcase</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/about-fair/facts-figures" >Facts & Figures</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/about-fair/dates-opening-hours" >Dates & Opening Hours</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/about-fair/organisers-partners" >Organisers & Partners</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/about-fair/international-pavilions" >International Pavilions (Countries and regions)</a> </li> </ul> </div> </li> <li class="level-2 hassub "> <a class="active" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/Focused-in-2025" >Focused in 2025</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.anuga-cn.com/en/index/trade-fair/Focused-in-2025/healthy-diet" >Healthy Diet</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/Focused-in-2025/trendy-drinks" >Trendy Drinks</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/Focused-in-2025/compound-flavouring" >Compound Flavouring</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/Focused-in-2025/new-fast-food" >Sustainably Produced or Packaged</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/Focused-in-2025/Fermented-Food" >ACH Fermented Food Zone</a> </li> </ul> </div> </li> <li class="level-2 hassub "> <a class="active" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments" >Product Segments</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.anuga-cn.com/en/index/trade-fair/product-segments/Meat-sector" >Meat & Meat Product</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments/Sweet-Snacks" >Sweet & Snacks</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments/Coffee-Tea" >Coffee & Tea</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments/Fine-Food" >Fine Food</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments/Dairy" >Dairy</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments/Food-Service" >Food Service</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments/Health-Food" >Healthy Food</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments/Seafood" >Seafood</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments/FoodTec-en" >FoodTec</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/product-segments/Drinks-zone" >Drinks (Alcohol And Non-alcohol)</a> </li> </ul> </div> </li> <li class="level-2 hassub "> <a class="active" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/for-visitors" >For Visitors</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.anuga-cn.com/en/index/trade-fair/for-visitors/why-visit" >Why Visit</a> </li> <li> <a class="" target="_self" href="https://h5ach.anuga-cn.com/p/8f8c2d" >Visitor Pre-registration</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/for-visitors/about-hosted-buyer-programme" >About Hosted Buyer Programme</a> </li> </ul> </div> </li> <li class="level-2 hassub "> <a class="active" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/travel-accomodation" >Travel & Accommodation</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.anuga-cn.com/en/index/trade-fair/travel-accomodation/location-venue" >Location & Venue</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/travel-accomodation/transportation" >Transportation</a> </li> <li> <a class="" target="_blank" href="https://www.eyeshenzhen.com/node_404091.htm" >Shenzhen Travel Tips by EyeShenzhen</a> </li> </ul> </div> </li> </ul> </div> <div class="close"></div> </div> <div class="subnav" id="sub-event"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 hassub "> <a class="active" target="_self" href="https://www.anuga-cn.com/en/index/event/conferences-forums" >Conferences & Forums</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.anuga-cn.com/en/index/event/conferences-forums/mega-restaurants-chains-development-catering-global-expansion-forum" >Mega Restaurant Chains Development & Catering Global Expansion Forum</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/event/conferences-forums/global-meet-summit" >Global Meat Summit 2024</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/event/conferences-forums/global-imported-food-retail-market-trends-forum" >The 3rd Global Imported Food Retail Market Trends Forum</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/event/conferences-forums/international-agriculture-and-brand-food-shenzhen-production-and-supply-conference" >International Agriculture and Brand Food (Shenzhen) Production and Supply Conference</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/event/conferences-forums/fermented-food-and-nutrition-health-forum" >Fermented Food and Nutrition Health Forum</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/event/conferences-forums/global-juice-roadshow-shenzhen" >2024 Global Juice Roadshow Shenzhen</a> </li> </ul> </div> </li> <li class="level-2 hassub "> <a class="active" target="_self" href="https://www.anuga-cn.com/en/index/event/events-activities" >Events & Activities</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.anuga-cn.com/en/index/event/events-activities/global-palate-ignited" >Global Palate lgnited: Innovative Hot Pot Food Ingredients Competition</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/event/events-activities/foodie-space" >Foodie Space - Irresistible Europe, countless combinations</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/event/events-activities/grain-fed-to-tenderness" >Grain-fed to Tenderness: Taste of U.S. Pork</a> </li> </ul> </div> </li> <li class="level-2 navmodul navmodul_icon "> <a href="https://www.anuga-cn.com/en/index/event/business-matchmaking" > <div class="navitem_icon"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/2024052116331164b77f1d.png" alt="business-matchmaking"> <div class="linktitle">Business Matchmaking</div> </div> </a> </li> </ul> </div> <div class="close"></div> </div> <div class="subnav" id="sub-exhibitor-profile"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 navmodul navmodul_icon "> <a href="https://exhibitor.anuga-cn.com/" > <div class="navitem_icon"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/2024052116344922029bd6.png" alt="online-showroom"> <div class="linktitle">Online Showroom</div> </div> </a> </li> </ul> </div> <div class="close"></div> </div> <div class="subnav" id="sub-for-exhibitors"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 hassub "> <a class="active" target="_self" href="https://www.anuga-cn.com/en/index/for-exhibitors/exhibiting" >Exhibiting</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.anuga-cn.com/en/index/for-exhibitors/exhibiting/booth-application" >Booth Application</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/for-exhibitors/exhibiting/no-copy-originals-only" >No Copy! - Originals Only!</a> </li> </ul> </div> </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 hassub "> <a class="active" target="_self" href="https://www.anuga-cn.com/en/index/media/press-center" >Press Center</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.anuga-cn.com/en/index/media/press-center/Exhibition-News" >Exhibition News</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/media/press-center/industry-news" >Industry News</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/media/press-center/trends-policies" >Trends & Policies</a> </li> <li> <a class="" target="_self" href="https://www.anuga-cn.com/en/index/media/press-center/e-newsletter" >E-newsletter</a> </li> </ul> </div> </li> <li class="level-2 hassub "> <a class="active" target="_self" href="https://www.anuga-cn.com/en/index/media/download-center" >Download Center</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://anuga-cn.com/download/media/7304jkkF-jNmbAJpvOPSW3hM4yGG7li6xQizHmCiq83v8yvj3T_IKE2BX0Fk2fXsiNXY-MksBJjMEwyesit9LQaBidCk85hw-iSQF8asTi7WpO5ZXuZaHEl3K9s1I6qT?Anuga%20Select%20China%202024%20Post%20show%20report%20.pdf" >Post Show Report 2024</a> </li> <li> <a class="" target="_self" href="https://anuga-cn.com/download/media/e735rXYLBTCXZRMx5Qk0whgDC2qYeEF__5d3mlgKfwlrw0l5EVgKK7GM0V6n7Hc0BJLzxQqrmGfhwG6G1TJh8MhkohUZ8lcF?ACH%202025%20brochure.pdf" >Anuga Select China 2025 Brochure</a> </li> </ul> </div> </li> <li class="level-2 navmodul navmodul_icon "> <a href="https://www.anuga-cn.com/en/index/media/media-partners" > <div class="navitem_icon"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/20240521164855b2a0253b.png" alt="media-partners"> <div class="linktitle">Media Partners</div> </div> </a> </li> <li class="level-2 navmodul navmodul_icon "> <a href="https://www.anuga-cn.com/en/index/media/multimedia-gallery" > <div class="navitem_icon"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/2024052116500630d20b5f.png" alt="multimedia-gallery"> <div class="linktitle">Multimedia Gallery</div> </div> </a> </li> </ul> </div> <div class="close"></div> </div> <div class="subnav" id="sub-co-located"> <div class="subnav-wrapper"> <ul> <li class="desktophidden overview"></li> <li class="level-2 navmodul navmodul_icon "> <a href="https://www.sigepcn.com/cn/" > <div class="navitem_icon"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/20240521171750902361b2.png" alt="Logo@1x"> <div class="linktitle">SIGEP China 2025</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.anuga-cn.com/en/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.anuga-cn.com/en/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.anuga-cn.com/en" class="home"> <i class="i i-home"></i> </a> </li> <li class="breadcrumb__item"><span><a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair" data-target="sub-trade-fair">Trade Fair</a></span></li><li class="breadcrumb__item"><span><a class="" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/Focused-in-2025" >Focused in 2025</a></span></li><li class="breadcrumb__item"><span><a class=" active" target="_self" href="https://www.anuga-cn.com/en/index/trade-fair/Focused-in-2025/healthy-diet" >Healthy Diet</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">Healthy Diet</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>Share</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="block66ce9a6fb1fb1730665188" class="cms-block cms-margin-top-default cms-margin-bottom-default cms-section-45bf9de" > <header class="cms-block-tit">Healthy Demands spur Surge of Healthy Foods</header> <div class="cms-item cms-item-text"> <p>With the continuous development of the economy, the optimization of the dietary structure and the rise in per capita disposable income level, <em><strong>from “full”, “eat well” to “eat healthy”</strong></em>, people's consumption of food has been qualitatively changed. More and more consumers not only pursue balanced nutrition, but also health and wellness.</p> </div> </section> <!-- block:Single Image --> <section id="block66ce9a6fb3989041808246" class="cms-block this-block-full cms-margin-top-default cms-margin-bottom-default cms-section-19df9df" > <div class="cms-item cms-item-image"> <a class="img-src no-link" href="javascript:;" target="_self"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/08/28/2024082811160905eb0e03.jpg" alt="食饮新势力" title="食饮新势力"> </a> </div> </section> <!-- block:Rich text --> <section id="block66ce9a6fb894a660538160" class="cms-block cms-margin-top-default cms-margin-bottom-default cms-section-a49f9dg" > <div class="cms-item cms-item-text"> <p>Nowadays, young people's exuberant demand for health, wellness and becoming beautiful has stimulated the emergence of healthy food, and healthy snacks that focus on zero-calorie, low-sugar and no-sugar are rapidly becoming popular.</p> <p>The Guangdong Hong Kong Macao Greater Bay Area has a rich culinary culture and occupies an important position in national cuisine. Research data shows that <em><strong>nearly 50%</strong></em> of consumers in the Greater Bay Area emphasize healthy eating.</p> <p>The rising proportion of consumer demand for nutritious and healthy food consumption is also driving the rapid growth of the entire health consumption market, and China's health food market is expected to be <em><strong>1140.8 billion yuan</strong></em> in 2025.</p> </div> </section> <!-- block:Single Image --> <section id="block66ce9a6fba16e927412726" class="cms-block this-block-full cms-margin-top-default cms-margin-bottom-default cms-section-d41f9dh" > <div class="cms-item cms-item-image"> <a class="img-src no-link" href="javascript:;" target="_self"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/08/28/20240828112022adc82d37.jpg" alt="食饮新势力" title="食饮新势力"> </a> </div> </section> <!-- block:Rich text --> <section id="block66ce9a6fbc9ea123093878" class="cms-block cms-margin-top-default cms-margin-bottom-default cms-section-f6df9di" > <header class="cms-block-tit">Food Nutrition and Health is a Primary Concern for Healthy Eating</header> <div class="cms-item cms-item-text"> <p>When the healthy eating becomes important, consumers begin to pay attention to the nutritional value of food, clean and safe food ingredients. Superfood that provides a large amount of nutrients and very low calories comes into the public eye. In the past year, the number of “superfood” related discussion posts on the Xiaohongshu platform has increased by <em><strong>100%</strong></em>.</p> <p>Along with the expansion of the overall consumer market for dried fruit and preserves, consumers have higher demand for dried fruit and preserves, with <em><strong>nearly 70%</strong></em> of consumers expecting traditional dried fruit and preserves to provide higher nutritional value. Consumers are also particularly concerned about the ingredient list of snacks and preserves. Research shows that <em><strong>more than 60%</strong></em> of consumers are concerned about whether the products meet the health needs of no-additives/few-additives. According to the data from iiMedia Research, <em><strong>34%</strong></em> of consumers said that they “must read” the ingredients list of dried fruit and candied fruit products “every time”, <em><strong>46%</strong></em> of consumers “often read” the ingredients list.</p> </div> </section> <!-- block:Single Image --> <section id="block66ce9a6fbe172215881421" class="cms-block this-block-full cms-margin-top-default cms-margin-bottom-default cms-section-3def9dj" > <div class="cms-item cms-item-image"> <a class="img-src no-link" href="javascript:;" target="_self"> <img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/08/28/2024082811235460b89def.jpg" alt="食饮新势力" title="食饮新势力"> </a> </div> </section> <!-- block:Rich text --> <section id="block66ce9a6fc0c27168855563" class="cms-block cms-margin-top-default cms-margin-bottom-default cms-section-a57f9ek" > <div class="cms-item cms-item-text"> <p><em>*Reference:《我国健康食品行业市场规模逐年攀升,口感是消费者关注要点》《2023-2024年粤港澳大湾区餐饮消费洞察报告》《2023中国健康生活趋势洞察报告》</em></p> </div> </section> </div> <div class="container-cms-page__aside" ></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="javascript:;" class="footer-socials__item wechat-modal-btn " data-content='<div class="modal-title"> <h3>Scan and follow</h3> </div> <div class="qr-code"><img src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/20240521145417f21c162c.jpeg" alt="wechat_angua"></div>' > <i class="i i-wechat"></i> </a> <a href="https://www.linkedin.com/company/anufood-china/" target="_blank" class="footer-socials__item " > <i class="i i-linkedin"></i> </a> <a href="https://www.facebook.com/Anugaselectchina" target="_blank" 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">Subscribe E-newsletter</h3> <p>Fill in the blanks to receive latest news about the show and food market.</p> <input type="text" placeholder="Your email address" class="form-control"/> <input type="text" placeholder="Your name" class="form-control"/> <a href="javascript:;" class="btn btn-primary subscribe-btn" data-bs-toggle="modal" data-bs-target="#subscribeModal">Subscribe</a> </div> </div> <div class="col-right"> <div class="footer-item"> <h3 class="footer-item__title">Contact</h3> <div class="ckediter-block"> <p>Koelnmesse<br /> Mr. Nils-Holger Glomme<br /> Tel: +49 221 821 2374<br /> Fax: +49 221 821 3949<br /> n.glomme@koelnmesse.de</p> <p>Ms. Vivienne Lee<br /> Tel: +86 21 6390 6161-817<br /> Fax: +86 21 6390 6858<br /> vivienne.lee@koelnmesse.cn</p> </div> </div> <div class="footer-item"> <h3 class="footer-item__title">Organiser</h3> <div class="ckediter-block"> <p><img alt="koelnmesse" data-como-imageid="3297" src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/2024052114491358798210.png" style="show w-100per" title="koelnmesse" /></p> <p><img alt="1648699083285660" data-como-imageid="3299" src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/20240521144922d098d516.png" style="show w-100per" title="1648699083285660" /></p> <p><img alt="1649577328881337" data-como-imageid="3301" src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/20240521144932b9a3e827.png" style="show w-100per" title="1649577328881337" /></p> </div> </div> <div class="footer-item"> <h3 class="footer-item__title">Co-organiser</h3> <div class="ckediter-block"> <p><img alt="1649577469682016" data-como-imageid="3303" src="https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/2024052114494592e99746.png" style="show w-100per" title="1649577469682016" /></p> </div> </div> </div> </div> <div class="footer-bottom"> <div class="col-left"> <p>* Trade visitor only & NO sales on-site. Entry alone is not permitted for individuals below 18 or above 65 years old due to safety precautions.<br /> ©2024 Koelnmesse <a target="_blank" href="http://beian.miit.gov.cn/">京ICP备11021190号-33</a></p> </div> <div class="col-right"> <span>Designed & developed by: </span><a href="https://www.comonetwork.com" target="_blank" class="logo-como"><img src="https://www.anuga-cn.com/modulesassets/comofrontend/assets/images/como-logo.svg?v=20240821" alt=""></a> </div> </div> </div> </footer> <script src="https://www.anuga-cn.com/modulesassets/comofrontend/dist/js/qrcode.js?v=20240821"></script> <script src="https://www.anuga-cn.com/modulesassets/comofrontend/dist/js/social-share.js?v=20240821"></script> <script src="https://www.anuga-cn.com/modulesassets/comofrontend/dist/js/main.min.js?v=20240821"></script> <script> $(function () { app.globfn.setFixedAsideMenu([ { img: 'https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/05/21/202405211544534cea93c8.png', label: "Online", onClick() { window.location.href = 'https://work.weixin.qq.com/kfid/kfcd57f6174c03a15b4'; }, }, { img: 'https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/06/21/2024062112141468941b66.png', label: "Booth Application", onClick() { window.open('https://www.anuga-cn.com/en/index/zhan-wei-yu-ding-biao-dan'); }, }, { img: 'https://anuga-select-china-storage.www.comocloud.net/anuga-select-china/2024/11/07/20241107163755338ec6a0.png', label: "Pre-regristration", onClick() { window.location.href = 'https://h5ach.anuga-cn.com/p/8f8c2d'; }, }, ]); }); </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>Stay connected</h3> <p class="modal-title__desc">We would like to stay in touch with you in the future, in order to keep you appropriately informed of events and similar services. That's why we would like to ask for your consent to contact via electronic media.</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>Appellation<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">Sir</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">Lady</label> </div> </div> </div> </div> </div> <div class="form-row"> <div class="form-item half"> <label>Your name<span class="imp">*</span></label> <div class="errorholder" data-label="请输入姓名"> <input class="form-item__check" name="name" type="email" placeholder="Your name"> </div> </div> </div> <div class="form-row"> <div class="form-item half"> <label>Language<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">Chinese</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">English</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="Captcha"> <span class="form-verification-img"><img src="https://www.anuga-cn.com/captcha/default?R9bcLaAr" ></span> </div> </div> </div> <a href="javascript:;" class="refresh-btn change-captcha">刷新验证码</a> </div> </div> <input type="hidden" name="_token" value="GlhkBQNcdKvJdfDlOnBW9pE4d5eOeumLBlUhkgvE"> <div class="form-row"> <div class="form-item half"> <button class="btn btn-primary btn-radius-sm subscribe-submit-btn" onclick="return false;">Submit</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.anuga-cn.com/captcha/default?N8EWZikG' + 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.anuga-cn.com/en/ajax-subscribe', type: 'post', dataType: 'json', data: $('#subscribe-form').serialize(), success: function (rsp) { alert('Successfully submitted!'); $('#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> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-77YJREMLLT"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-77YJREMLLT'); </script> <script src="//cbe.huiju.cool/cbe/collect?tid=8371785101667394145&at=0&h=web"></script> <script> clab_tracker.ready(function(){ this.push({"pageType":"web"}); this.track("open_page", {}); }); </script> </body> </html>