全部產業應用

  • View More
    水及廢水處理產業

    液體濃縮應用

    .dewtek-process-section{
    color:#111;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans TC", Arial, sans-serif;
    }
    .dewtek-process-wrap{
    max-width:1300px;
    margin:0 auto;
    padding: 0 20px;
    background: transparent !important;
    }

    .dewtek-process-head{ text-align:center; margin:0 0 22px; }
    .dewtek-process-title{
    margin:0 0 8px;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    }
    .dewtek-process-subtitle{
    margin:0;
    font-size: 16px;
    line-height: 1.5;
    opacity: .9;
    }

    .dewtek-steps{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 280px));
    gap: 22px;
    align-items:start;
    justify-content:center;
    }

    .dewtek-step{
    text-align:center;
    position: relative;
    padding-top: calc(44px + 18px);
    }

    .dewtek-step-num{
    width:44px;
    height:44px;
    border:2px solid #111;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    letter-spacing:.5px;
    background: #f2f2f2 !important;

    position:absolute;
    top:0;
    left:50%;
    transform: translateX(-50%);
    z-index:3;
    line-height:1;
    }

    /* ✅ 翻硬幣卡片:min-height 84,不截斷,文字可完整長高 */
    .dewtek-process-section .dewtek-card{
    position: relative;
    min-height:84px;
    cursor: pointer;
    user-select:none;
    background: transparent !important;
    }

    .dewtek-process-section .dewtek-card-text{
    position: relative;
    z-index:3;
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    }

    .dewtek-process-section .dewtek-card-title{
    margin:0 0 6px;
    font-weight:900;
    text-transform: uppercase;
    font-size:18px;
    line-height:1.45;
    }

    .dewtek-process-section .dewtek-card-title,
    .dewtek-process-section .dewtek-card-title span{
    letter-spacing: 4px !important;
    }

    .dewtek-process-section .dewtek-card-desc{
    margin:0;
    font-size:14px;
    line-height:1.45;
    opacity:.9;

    display:block !important;
    -webkit-line-clamp:unset !important;
    -webkit-box-orient:unset !important;
    overflow:visible !important;
    }

    /* ✅ 讓背面區塊可接收點擊 */
    .dewtek-process-section .dewtek-card-frame{
    pointer-events:auto !important;
    }
    .dewtek-process-section .dewtek-frame-face{
    pointer-events:auto;
    }
    /* 統一高度(你自行改數值) */
    .dewtek-process-section .dewtek-frame-inner{
    display: grid;
    position: relative;
    inset:0;
    min-height:84px;
    transform-style: preserve-3d;
    transition: transform 750ms cubic-bezier(.2,.8,.2,1);
    min-height:400px; /* 仍保留你的最小高度 */
    }


    /* ✅ 桌機:滑過去就翻 */
    .dewtek-process-section .dewtek-card:hover .dewtek-frame-inner{ transform: rotateY(180deg); }
    /* ✅ 手機:點擊才翻(由 JS 加 is-flipped) */
    .dewtek-process-section .dewtek-card.is-flipped .dewtek-frame-inner{ transform: rotateY(180deg); }

    .dewtek-process-section .dewtek-frame-face{
    grid-area: 1 / 1; /* ✅ 兩面疊同格 */
    border:2px solid #111;
    background-color: transparent !important; /* ✅ 不要用 background: */
    backface-visibility: hidden;

    padding:10px 14px; /* ✅ 原本 dewtek-card 的 padding 搬到 face */
    box-sizing:border-box;

    display: flex; /* 置中(但高度會隨內容長高,不會爆框) */
    align-items:center;
    justify-content:center;
    text-align:center;
    }
    .dewtek-process-section .dewtek-frame-back{ transform: rotateY(180deg); }

    /* RWD */
    @media (max-width: 1200px){
    .dewtek-steps{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }
    @media (max-width: 820px){
    .dewtek-steps{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dewtek-process-title{ font-size: 22px; }
    }
    @media (max-width: 520px){
    .dewtek-steps{ grid-template-columns: 1fr; }
    }

    /* ✅ 搜尋列樣式 */
    .dewtek-process-section .dewtek-searchbar{
    max-width:1300px;
    margin: 0 auto 16px;
    padding: 0 20px;
    display:flex;
    gap:12px;
    align-items:center;
    }

    .dewtek-process-section .dewtek-search-input{
    flex:1;
    height:42px;
    padding: 0 12px;
    border:2px solid #111;
    border-radius: 999px;
    background:#fff;
    font-size:14px;
    outline:none;
    }

    .dewtek-process-section .dewtek-search-input:focus{
    box-shadow: 0 0 0 3px rgba(0,0,0,.12);
    }

    .dewtek-process-section .dewtek-search-count{
    min-width: 90px;
    font-size: 13px;
    opacity:.8;
    text-align:right;
    }

    /* ✅ 被搜尋隱藏的卡片 */
    .dewtek-process-section .dewtek-step.is-hidden{
    display:none !important;
    }

    /* Accordion 容器 */
    .dewtek-process-section .dewtek-acc{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:10px;
    }

    /* 每個項目 */
    .dewtek-process-section .dewtek-acc-item{
    border:0 !important;
    border-radius:0 !important;
    overflow:visible !important;
    background:transparent !important;
    }

    /* 標題按鈕 */
    .dewtek-process-section .dewtek-acc-btn{
    width:100%;
    text-align:left;
    padding:10px 12px;
    font-size:20px;
    background:transparent;
    border:0;
    cursor:pointer;
    line-height:1;
    }

    /* 內容區(預設收合) */
    .dewtek-process-section .dewtek-acc-panel{
    display:none;
    padding:0 12px 12px;
    line-height:1.7;
    font-size:16px;
    opacity:.92;
    }

    .dewtek-process-section .dewtek-acc-panel ul{
    list-style:none; /* 移除點點 */
    padding-left:0; /* 移除預設縮排 */
    margin: 8px 0 0; /* 你可自行調 */
    }


    /* 打開狀態 */
    .dewtek-process-section .dewtek-acc-item.is-open .dewtek-acc-panel{
    display:block;
    }

    /* ✅ 打開時:其他項目隱藏(只留自己) */
    .dewtek-process-section .dewtek-acc.has-open .dewtek-acc-item{
    display:none;
    }
    .dewtek-process-section .dewtek-acc.has-open .dewtek-acc-item.is-open{
    display:block;
    }
    .dewtek-process-section .dewtek-acc.has-open .dewtek-acc-item.is-open .dewtek-acc-btn{
    text-align:center;
    }

    .dewtek-process-section .dewtek-frame-back{
    cursor:pointer; /* 提示可點任意處收合 */
    }

    @media (hover:hover) and (pointer:fine){
    .dewtek-process-section [data-acc]:not(.has-open) .dewtek-acc-item:hover .dewtek-acc-btn{
    transform: scale(1.1);
    font-weight:800;
    transform-origin: left center;
    }

    .dewtek-process-section .dewtek-acc-item.is-open .dewtek-acc-btn{
    transform: scale(1.1);
    transform-origin: center;
    font-weight:800;
    }

    .dewtek-process-section [data-acc]:not(.has-open) .dewtek-acc-btn{
    transition: transform 180ms ease;
    }
    }

    /* 讓 face 可以放遮罩 */
    .dewtek-process-section .dewtek-frame-face{
    position: relative;
    }

    /* ✅ 背景遮罩(調這裡的透明度) */
    .dewtek-process-section .dewtek-frame-face::before{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(255,255,255,0.85); /* ← 0~1,數字越大越白/越遮 */
    pointer-events:none;
    }

    /* ✅ 文字在遮罩上面 */
    .dewtek-process-section .dewtek-face-content{
    position: relative;
    z-index: 1;
    }



    液體濃縮機產業應用

    不論是食品飲料還是醫藥生技,具有腐蝕性的液體還是含有重金屬的廢水,想用在廢水減量、廢水回用或是液體提濃,我們都能為您客製出一台最適合您的設備。




     










    化學
    材料

     







    化工/材料



    高鹽製程廢水
    反應母液
    催化劑洗滌液
    有機溶劑廢液
    高COD化學廢水




    石化 / 溶劑產業



    IPA回收液
    乙醇回收液
    丙酮回收液
    溶劑蒸餾殘液
    有機廢液




    電子 / 精密化學



    光阻清洗液
    顯影廢液
    高純度化學品製程母液
    含金屬清洗液
    有機溶劑清洗液
    高COD精密化學廢水




    塗料 / 油墨 / 膠黏劑



    樹脂清洗液
    有機溶劑廢液
    顏料懸浮液
    高COD清洗廢水




    香精香料



    精油蒸餾水
    溶劑萃取液
    酒精萃取液
    香料濃縮液




    再生塑膠 / 再生材料



    塑膠清洗廢水
    高COD有機廢水
    油脂廢水
    懸浮固體廢液




    化妝品



    植物萃取液
    酒精萃取液
    精華液濃縮液
    高COD製程廢水




    塑膠 / 聚合物產業



    聚合反應母液
    乳化聚合廢液
    高COD有機廢水
    高鹽清洗廢水


















    電子
    半導體

     







    化工/材料



    電子級化學品母液
    酸鹼製程廢液
    高純度鹽溶液
    化學反應母液
    高TDS製程廢水




    半導體



    高TDS廢水
    含氟廢液
    CMP廢液
    IPA回收液
    含銅蝕刻液
    含鎳蝕刻液




    電子 / 精密化學



    光阻清洗液
    有機溶劑廢液
    金屬蝕刻液
    高鹽廢水




    電池與資源回收



    含鋰廢液
    含鈷廢液
    金屬浸出液
    酸浸液




    塑膠 / 聚合物產業



    聚合反應母液
    乳化聚合廢液
    聚合催化劑洗滌液
    樹脂清洗液
    高COD有機廢水


















    能源

     







    化工/材料



    電解液製程廢液
    催化劑洗滌液
    高鹽製程廢水
    有機溶劑廢液




    電池與資源回收



    含鋰浸出液
    含鈷浸出液
    含鎳浸出液
    電池電解液廢液
    酸浸回收液
    金屬回收母液




    能源產業



    發酵液
    藻類培養液
    甘油副產液
    高COD廢水


















    環境
    資源循環

     







    廢棄物資源化 / 城市礦山



    金屬浸出液
    酸浸液
    金屬回收母液
    高鹽廢水




    電池與資源回收



    含鋰浸出液
    含鈷浸出液
    酸浸液
    金屬回收母液




    環工



    污泥脫水母液
    RO濃水
    高鹽廢水
    高COD廢水
    焚化滲出水




    土壤 / 地下水修復



    含VOC抽出液
    溶劑污染水
    高鹽修復廢水




    礦業與冶金



    金屬浸出液
    酸浸液
    礦泥濃縮液


















    工業製造

     







    紡織與染整



    染料廢液
    高鹽廢水
    染整清洗水
    污泥脫水母液




    汽車與機械製造



    切削液廢液
    含油廢水
    清洗廢水




    塑膠 / 聚合物產業



    塑膠清洗廢水
    樹脂製程母液
    聚合反應母液
    高COD有機廢水
    懸浮固體廢液




    造紙與紙漿



    黑液
    白水
    纖維懸浮液
    污泥脫水母液


















    生技產業

     







    生技製藥



    發酵液
    蛋白質溶液
    抗生素母液
    有機溶劑萃取液




    香精香料



    切植物萃取液
    多酚萃取液
    黃酮萃取液
    溶劑萃取液




    化妝品



    精油蒸餾水
    植物酒精萃取液
    溶劑萃取液
    香料濃縮液
    芳香成分蒸餾殘液




    天然物



    植物萃取液
    多醣萃取液
    酒精萃取液
    水萃取液




    保健品



    植物萃取液
    膠原蛋白溶液
    玻尿酸溶液
    酒精萃取液
    高COD製程廢水


















    食品

     







    天然物



    植物萃取液
    多酚萃取液
    多醣萃取液
    水萃取液
    酒精萃取液




    食品飲料



    果汁
    糖液
    澱粉液
    高COD食品廢水
    污泥脫水母液




    香精香料



    精油蒸餾水
    溶劑萃取液
    香料濃縮液




    保健品



    植物萃取液
    多醣萃取液
    發酵液
    酵素液
    胺基酸溶液




    海洋與水產加工



    魚溶漿
    魚蛋白液
    高COD廢水
    污泥脫水母液


















    農業

     







    天然物



    植物萃取液
    農用活性成分萃取液
    植物精油蒸餾水
    水萃取液




    能源產業



    藻類培養液
    藻油萃取液
    發酵液
    甘油副產液
    生質燃料製程廢水
    高COD有機廢水




    農業與肥料



    發酵肥料液
    有機肥料母液
    高氨氮廢水
    沼液














    (function(){
    var canHover = window.matchMedia && window.matchMedia('(hover: hover) and (pointer: fine)').matches;

    if(!canHover){
    document.querySelectorAll('.dewtek-process-section .dewtek-process-card').forEach(function(card){
    card.addEventListener('click', function(){
    card.classList.toggle('is-flipped');
    });
    });
    }

    // ✅ 每張卡:正反面套同一張背景圖(data-bg)
    document.querySelectorAll('.dewtek-process-section .dewtek-process-card[data-bg]').forEach(function(card){
    var url = card.getAttribute('data-bg');
    if(!url) return;

    var front = card.querySelector('.dewtek-frame-front');
    var back = card.querySelector('.dewtek-frame-back');

    [front, back].forEach(function(face){
    if(!face) return;
    face.style.backgroundImage = 'url("' + url + '")';
    face.style.backgroundSize = 'cover';
    face.style.backgroundPosition = 'center';
    face.style.backgroundRepeat = 'no-repeat';
    });
    });

    function closeAcc(acc){
    acc.classList.remove('has-open');
    acc.querySelectorAll('.dewtek-acc-item.is-open').forEach(function(x){
    x.classList.remove('is-open');
    });
    }

    /* ✅ 背面任意點一下就收合(但點標題按鈕除外,按鈕用來開/切換) */
    document.querySelectorAll('.dewtek-process-section .dewtek-process-card').forEach(function(card){
    var back = card.querySelector('.dewtek-frame-back');
    if(!back) return;

    back.addEventListener('click', function(e){
    // 如果點到的是某個項目的按鈕,就不要在這裡收合(讓按鈕負責開啟)
    if(e.target.closest('.dewtek-acc-btn')) return;

    // 只要目前有開啟項目,就收合回列表
    back.querySelectorAll('[data-acc].has-open').forEach(function(acc){
    closeAcc(acc);
    });
    });
    });

    (function(){
    var section = document.querySelector('.dewtek-process-section');
    if(!section) return;

    function resetAccordionInCard(card){
    card.querySelectorAll('[data-acc]').forEach(function(acc){
    acc.classList.remove('has-open');
    acc.querySelectorAll('.dewtek-acc-item.is-open').forEach(function(item){
    item.classList.remove('is-open');
    });
    });
    }

    // 手機:點卡片翻面(你原本的)
    var canHover = window.matchMedia && window.matchMedia('(hover: hover) and (pointer: fine)').matches;

    if(!canHover){
    section.querySelectorAll('.dewtek-process-card').forEach(function(card){
    card.addEventListener('click', function(){
    card.classList.toggle('is-flipped');
    if(!card.classList.contains('is-flipped')){
    setTimeout(function(){
    resetAccordionInCard(card);
    }, 800); // 等翻轉動畫結束
    }
    });
    });
    }else{
    // 桌機:滑出卡片就重置
    section.querySelectorAll('.dewtek-process-card').forEach(function(card){
    card.addEventListener('mouseleave', function(){
    setTimeout(function(){
    resetAccordionInCard(card);
    }, 800);
    });
    });
    }

    // ✅ Accordion:點項目打開,且隱藏其他
    section.querySelectorAll('[data-acc]').forEach(function(acc){

    acc.addEventListener('click', function(e){
    // 1) 點到按鈕:開/關項目
    var btn = e.target.closest('.dewtek-acc-btn');
    if(btn){
    e.stopPropagation(); // 避免手機同時觸發翻卡
    var item = btn.closest('.dewtek-acc-item');
    if(!item) return;

    var isOpen = item.classList.contains('is-open');

    // 全部先關
    acc.querySelectorAll('.dewtek-acc-item.is-open').forEach(function(x){
    x.classList.remove('is-open');
    });

    if(!isOpen){
    item.classList.add('is-open');
    acc.classList.add('has-open');
    }else{
    acc.classList.remove('has-open'); // 點同一個再關回列表
    }
    return;
    }


    });

    });

    })();


    var canHover = window.matchMedia && window.matchMedia('(hover: hover) and (pointer: fine)').matches;

    if(!canHover){
    document.querySelectorAll('.dewtek-process-section .dewtek-process-card').forEach(function(card){
    card.addEventListener('click', function(){
    card.classList.toggle('is-flipped');
    });
    });
    }

    // ✅ 搜尋功能
    var section = document.querySelector('.dewtek-process-section');
    if(!section) return;

    var input = section.querySelector('.dewtek-search-input');
    var count = section.querySelector('.dewtek-search-count');
    var steps = Array.prototype.slice.call(section.querySelectorAll('.dewtek-step'));

    function normalize(s){
    return (s || '')
    .toString()
    .toLowerCase()
    .replace(/\s+/g,'')
    .replace(/[,,。..!!??、/\\()\[\]{}"'“”‘’::;;\-_|]/g,'');
    }

    function applyFilter(){
    var q = normalize(input ? input.value : '');
    var visible = 0;

    steps.forEach(function(step){
    // 以整張卡片的文字來比對(正反面都算)
    var text = normalize(step.textContent);
    var hit = !q || text.indexOf(q) !== -1;

    step.classList.toggle('is-hidden', !hit);
    if(hit) visible++;
    });

    if(count){
    count.textContent = visible + ' / ' + steps.length;
    }
    }

    if(input){
    input.addEventListener('input', applyFilter);
    applyFilter(); // 初始顯示筆數
    }

    })();
  • View More 高溫乾燥、鍋爐乾燥
    水及廢水處理產業

    丟掉你的環保裝置,讓乾燥輕鬆點

    隨著環保意識不斷提高以及清運成本的增加,對於乾燥處理的方法也在不斷演進。
    雖然高溫開放系統在過去被廣泛使用,但現在越來越多的企業開始尋找更加環保和節能的替代方案,低碳能源的運用已成為各國轉型的焦點。
    而熱泵乾燥機作為其中一種乾燥技術,正在受到越來越多企業的青睞,相比傳統的高溫系統,能夠節省更多的能源與碳排。
  • View More 汙泥脫水處理
    水及廢水處理產業

    只用脫水機就清運,不一定比較省

    大部分企業的污泥處理流程僅做到脫水程序就直接清運,但此階段的污泥仍有高達70%~85%含水率,等於花費高額的費用在處理水分,若能加上乾燥流程,污泥可有效再減量約40~60%,每年就能省下一筆可觀的清運費。 多一道程序不就多一筆費用嗎?來看以下清運前常見處理方式