全部產品介紹

  • MORE
    L型文件夾 E310

    L 型文件套 E310

    /* --- 1. Design Tokens:品牌色彩與共用樣式基準 --- */
    :root {
    --hp-brand: #2D5BFF; /* 主要品牌色(按鈕、重點標示) */
    --hp-brand-dark: #1E40AF; /* 品牌深色(Hover 狀態) */
    --hp-brand-light: #F5F8FF; /* 品牌淺色(區塊背景) */
    --hp-text-main: #111827; /* 主標題文字色 */
    --hp-text-body: #4B5563; /* 內文字色(高可讀性中灰) */
    --hp-border: #E5E7EB; /* 卡片與區塊邊框 */
    --hp-bg-page: #FFFFFF; /* 頁面主背景色 */
    --hp-bg-subtle: #F8FAFC; /* 次要區塊背景色 */
    --hp-radius: 12px; /* 統一圓角大小 */
    --hp-transition: all 0.2s ease-in-out; /* 統一轉場設定 */
    }

    /* 全域 Reset:統一盒模型與預設邊距,降低瀏覽器差異 */
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }

    body {
    font-family: "Noto Sans TC", "Microsoft JhengHei", -apple-system, sans-serif;
    color: var(--hp-text-body);
    background-color: var(--hp-bg-page);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    }

    /* 版心容器:控制內容寬度與左右留白,上方 10px 對齊主版型 */
    .hp-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 24px 60px;
    }

    /* --- 2. Typography:標題階層與導言文字 --- */
    .hp-header {
    max-width: 860px;
    margin-bottom: 50px;
    }

    /* 產品主標題(H1) */
    .hp-h1 {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--hp-text-main);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    }

    /* H1 下方品牌色橫線裝飾 */
    .hp-h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--hp-brand);
    margin-top: 12px;
    border-radius: 2px;
    }

    /* 導言文字(產品簡介) */
    .hp-lead {
    font-size: 1.1rem;
    color: var(--hp-text-body);
    line-height: 1.8;
    }

    /* 手機版:隱藏 ,避免過度斷行影響閱讀流暢度 */
    @media (max-width: 640px) {
    .hp-lead br { display: none; }
    }

    /* 文字重點標示(品牌色+粗體) */
    .hp-highlight {
    color: var(--hp-brand);
    font-weight: 700;
    }

    /* 區段小標題(H2) */
    .hp-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    }

    /* H2 左側圓點裝飾 */
    .hp-h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--hp-brand);
    border-radius: 50%;
    }

    /* 小標題(H3)用於卡片區塊標題 */
    .hp-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 12px;
    }

    /* --- 3. Product Features:產品特色卡片區(Flex 排版) --- */
    .hp-feat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center; /* 讓卡片在版心內置中排列 */
    margin-bottom: 40px;
    }

    /* 產品特色卡片(最多 5 張) */
    .hp-card {
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 24px;
    transition: var(--hp-transition);
    display: flex;
    flex-direction: column;
    flex: 1 1 280px; /* 最小寬度 280px,視窗放大時可拉寬 */
    max-width: 360px; /* 避免卡片過寬影響閱讀 */
    }

    .hp-card:hover {
    transform: translateY(-5px);
    border-color: var(--hp-brand);
    box-shadow: 0 12px 30px -10px rgba(45, 91, 255, 0.1);
    }

    /* 卡片左上角圖示容器 */
    .hp-icon-box {
    width: 42px;
    height: 42px;
    background: var(--hp-bg-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--hp-brand);
    }

    /* 卡片標題與內文 */
    .hp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 8px;
    }

    .hp-card-text {
    font-size: 0.95rem;
    color: var(--hp-text-body);
    }

    /* --- 4. Specs & Applications:規格與適用情境(雙欄區塊) --- */
    .hp-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    }

    /* 規格資訊外框(灰底+邊框) */
    .hp-spec-box {
    background: var(--hp-bg-subtle);
    padding: 32px;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-border);
    }

    /* 規格列表容器 */
    .hp-spec-list {
    list-style: none;
    }

    /* --- 規格列排版:標籤與內容左右對齊 --- */
    .hp-spec-item {
    display: flex; /* 讓標籤與內容並排 */
    align-items: baseline; /* 對齊文字基線,避免大小不一時錯位 */
    padding: 14px 0;
    border-bottom: 1px solid #E5E7EB;
    }

    .hp-spec-item:last-child {
    border-bottom: none;
    }

    /* 規格標籤(如:尺寸、厚度) */
    .hp-spec-label {
    font-weight: 700;
    color: var(--hp-text-main);
    flex: 0 0 80px; /* 固定寬度,讓多列對齊整齊 */
    position: relative;
    }

    /* 規格內容文字 */
    .hp-spec-val {
    color: var(--hp-text-body);
    text-align: left; /* 文字靠左,提升可讀性 */
    line-height: 1.6;
    }

    /* 適用情境列表:使用卡片式排版 */
    .hp-app-list {
    list-style: none;
    display: grid;
    gap: 16px;
    }

    /* 單一情境項目卡片 */
    .hp-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: 8px;
    transition: var(--hp-transition);
    }

    .hp-app-item:hover {
    border-color: var(--hp-brand);
    background: var(--hp-brand-light);
    }

    /* 適用情境前方勾選圖示 */
    .hp-check-icon {
    color: var(--hp-brand);
    flex-shrink: 0;
    }

    /* --- 5. CTA:頁尾詢價與索樣行動呼籲 --- */
    .hp-cta {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    }

    /* CTA 右下角圓形裝飾 */
    .hp-cta::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: var(--hp-brand-light);
    border-radius: 50%;
    z-index: 0;
    }

    .hp-cta-content {
    position: relative;
    z-index: 1;
    }

    /* 單顆主行動按鈕 */
    .hp-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--hp-brand);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--hp-transition);
    margin-top: 24px;
    }

    .hp-btn:hover {
    background: var(--hp-brand-dark);
    box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
    }

    /* --- RWD:響應式調整 --- */
    @media (max-width: 800px) {
    /* 規格+應用區由雙欄改為單欄疊放 */
    .hp-split-section {
    grid-template-columns: 1fr;
    gap: 32px;
    }
    }

    @media (max-width: 600px) {
    .hp-wrap { padding: 20px; }

    /* 手機版規格列改為上下排列,避免擠壓 */
    .hp-spec-item {
    flex-direction: column;
    gap: 4px;
    }
    .hp-spec-label {
    flex: auto;
    color: var(--hp-brand);
    font-size: 0.9rem;
    }
    }



    L 型文件套 E310

    L 型文件套 E310 以聚丙烯(PP)薄片製成,適合日常文件、講義與合約等資料歸檔使用。
    惠品塑膠結合自家 PP 薄片押出 與 全自動 E310 機台,能穩定量產 A4 規格的 L 型文件套, 支援文具品牌、通路商與企業客製專案。







    輕量耐用

    PP 材質不易破裂、抗折耐用,適合頻繁抽取與長期歸檔。






    外觀清晰

    透明或半透明外觀,方便快速辨識文件內容,找資料更迅速。






    好拿好用

    L 型開口設計,文件放入與取出順手,適合桌上快速分類使用。






    易清潔

    表面光滑,可乾擦或濕擦,日常保養簡單,保持文件整潔。






    顏色可選

    可依專案需求規劃多種顏色,用於分類與識別,提升辦公效率。






    規格重點



    尺寸 對應 A4 文件
    實際成品尺寸可依專案微調
    材質 聚丙烯 (PP) 薄片
    厚度 常見厚度約 0.14 ~ 0.20 mm
    可依使用情境調整片材厚度
    顏色 自然透明、乳白或客製顏色
    可依需求評估合適色彩方案
    包裝 以包為單位包裝,適合流通與零售包裝規劃






    適用情境


    辦公室文件、企畫書與合約歸檔
    補習班、學校講義與學習資料整理
    政府與企業內部文件分類管理
    通路商/文具品牌的自有品牌商品開發



    ???? 客製化服務:可依專案需求調整厚度、顏色與包裝方式,亦可搭配印刷與後加工流程,歡迎提供需求細節進行評估。






    取得報價與樣品

    如需進一步了解 E310 L 型文件套可支援的厚度、顏色與包裝方式,歡迎提供需求數量、預計用途與交期, 我們將協助評估最合適的 PP 薄片規格與生產方式。
    詢價與索取樣品
  • MORE
    PP板材

    PP 板材(聚丙烯塑膠板)

    /* 1. Design tokens:本頁共用的品牌色彩與 UI 變數 */
    :root {
    --hp-brand: #2D5BFF;
    --hp-brand-dark: #1E40AF;
    --hp-brand-light: #F5F8FF;
    --hp-text-main: #111827;
    --hp-text-body: #4B5563;
    --hp-border: #E5E7EB;
    --hp-bg-page: #FFFFFF;
    --hp-bg-subtle: #F8FAFC;
    --hp-radius: 12px;
    --hp-transition: all 0.2s ease-in-out;

    /* 詢價提示框用色系 */
    --hp-note-bg: #FFFBEB;
    --hp-note-text: #92400E;
    --hp-note-border: #FDE68A;
    }

    /* 2. Global reset 與版面基礎設定 */
    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
    font-family: "Noto Sans TC", "Microsoft JhengHei", -apple-system, sans-serif;
    color: var(--hp-text-body);
    background-color: var(--hp-bg-page);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    }

    /* 版心容器:控制內容最大寬度與上下左右內距 */
    .hp-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 24px 60px;
    }

    /* 3. Typography:頁首標題、導言與段落標題 */
    .hp-header {
    max-width: 860px;
    margin-bottom: 50px;
    }

    .hp-h1 {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--hp-text-main);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    }

    /* H1 下方品牌色橫線 */
    .hp-h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--hp-brand);
    margin-top: 12px;
    border-radius: 2px;
    }

    .hp-lead {
    font-size: 1.1rem;
    color: var(--hp-text-body);
    line-height: 1.8;
    }

    /* 手機版:隱藏 強制換行,讓內文自然流動 */
    @media (max-width: 640px) {
    .hp-lead br { display: none; }
    }

    .hp-highlight {
    color: var(--hp-brand);
    font-weight: 700;
    }

    .hp-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    }

    /* H2 左側圓點裝飾 */
    .hp-h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--hp-brand);
    border-radius: 50%;
    }

    /* 4. Product features:產品特色卡片(Flex 佈局) */
    .hp-feat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    }

    .hp-card {
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 24px;
    transition: var(--hp-transition);
    display: flex;
    flex-direction: column;
    flex: 1 1 280px;
    max-width: 360px;
    }

    .hp-card:hover {
    transform: translateY(-5px);
    border-color: var(--hp-brand);
    box-shadow: 0 12px 30px -10px rgba(45, 91, 255, 0.1);
    }

    .hp-icon-box {
    width: 42px;
    height: 42px;
    background: var(--hp-bg-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--hp-brand);
    }

    .hp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 8px;
    }

    .hp-card-text {
    font-size: 0.95rem;
    color: var(--hp-text-body);
    }

    /* 5. Specs & applications:規格範圍與常見應用(雙欄佈局) */
    .hp-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    }

    .hp-spec-box {
    background: var(--hp-bg-subtle);
    padding: 32px;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-border);
    }

    .hp-spec-list {
    list-style: none;
    }

    /* 5-1. 規格列表:使用 Flex 對齊標籤與內容,保持欄位整齊 */
    .hp-spec-item {
    display: flex;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid #E5E7EB;
    }

    .hp-spec-item:last-child {
    border-bottom: none;
    }

    .hp-spec-label {
    font-weight: 700;
    color: var(--hp-text-main);
    flex: 0 0 100px; /* 中文標籤保留較寬空間,避免換行 */
    position: relative;
    }

    .hp-spec-val {
    color: var(--hp-text-body);
    text-align: left;
    line-height: 1.6;
    }

    /* 常見應用列表:以卡片形式呈現應用場景 */
    .hp-app-list {
    list-style: none;
    display: grid;
    gap: 16px;
    }

    .hp-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: 8px;
    transition: var(--hp-transition);
    }

    .hp-app-item:hover {
    border-color: var(--hp-brand);
    background: var(--hp-brand-light);
    }

    .hp-check-icon {
    color: var(--hp-brand);
    flex-shrink: 0;
    }

    /* 6. Inquiry note:詢價資訊提示框 */
    .hp-note {
    background: var(--hp-note-bg);
    border: 1px solid var(--hp-note-border);
    color: var(--hp-note-text);
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 24px;
    }

    /* 7. CTA:頁尾報價/樣品行動區塊 */
    .hp-cta {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    }

    /* CTA 右下角圓形裝飾背景 */
    .hp-cta::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: var(--hp-brand-light);
    border-radius: 50%;
    z-index: 0;
    }

    .hp-cta-content {
    position: relative;
    z-index: 1;
    }

    .hp-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--hp-brand);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--hp-transition);
    margin-top: 24px;
    }

    .hp-btn:hover {
    background: var(--hp-brand-dark);
    box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
    }

    /* 8. RWD:平板與手機版排版調整 */
    @media (max-width: 800px) {
    .hp-split-section { grid-template-columns: 1fr; gap: 32px; }
    }

    @media (max-width: 600px) {
    .hp-wrap { padding: 20px; }
    /* 手機版規格表:標籤與內容上下排列,避免擠在同一行 */
    .hp-spec-item { flex-direction: column; gap: 4px; }
    .hp-spec-label { flex: auto; color: var(--hp-brand); font-size: 0.9rem; }
    }



    PP 板材

    以 PP 壓出製程生產的板材,適合需要輕量、耐化與易清潔的各式用途。
    提供 客製厚度 與 片尺寸,皆為接單生產(OEM/ODM),滿足工業、包裝與文具等多元需求。







    輕量耐化

    重量輕、耐化學性佳且不吸水,適合各種潮濕或需要頻繁清潔的工業與包裝環境。





    平整易加工

    板面平整度高、表面易清潔,材料特性適合裁切、沖型、折疊或二次加工。





    客製外觀

    可依專案需求評估多種顏色(自然色/黑/灰/彩)與表面紋理(霧面/亮面)。






    規格範圍



    厚度 0.14 ~ 2.5 mm
    片尺寸 依需求客製
    (最大上限請洽業務)
    顏色表面 自然色/黑/灰
    霧面/亮面/紋理(可評估)
    供應形式 片材(棧板包裝)
    文件配合 RoHS/REACH
    (如適用,可配合提供)
    交期 標準交期(依實際排程)






    常見應用


    工業隔板、設備防護板、工作檯面覆蓋
    周轉箱隔板、包裝襯板
    文具材料用板



    ???? 詢價請提供:
    1. 厚度與片尺寸(長×寬)
    2. 顏色與表面需求
    3. 預估數量與用途






    取得報價與樣品

    若您有特殊的規格需求或需要開發新產品,歡迎提供詳細資訊,我們將為您評估最合適的生產方案。
    詢價與技術諮詢
  • MORE
    PP膜料

    PP 膜料與片材

    /* --- 1. Design Tokens:維持品牌一致性的共用變數 --- */
    :root {
    --hp-brand: #2D5BFF;
    --hp-brand-dark: #1E40AF;
    --hp-brand-light: #F5F8FF;
    --hp-text-main: #111827;
    --hp-text-body: #4B5563;
    --hp-border: #E5E7EB;
    --hp-bg-page: #FFFFFF;
    --hp-bg-subtle: #F8FAFC;
    --hp-radius: 12px;
    --hp-transition: all 0.2s ease-in-out;

    /* 詢價提示框用色系 */
    --hp-note-bg: #FFFBEB;
    --hp-note-text: #92400E;
    --hp-note-border: #FDE68A;
    }

    /* Global Reset:統一盒模型與清除預設外距 */
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }

    body {
    font-family: "Noto Sans TC", "Microsoft JhengHei", -apple-system, sans-serif;
    color: var(--hp-text-body);
    background-color: var(--hp-bg-page);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    }

    /* 版面容器:限制內容最大寬度,對齊主版型間距 */
    .hp-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 24px 60px;
    }

    /* --- 2. Typography:標題階層與導言文字 --- */
    .hp-header {
    max-width: 860px;
    margin-bottom: 50px;
    }

    .hp-h1 {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--hp-text-main);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    }

    /* H1 下方品牌色橫線 */
    .hp-h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--hp-brand);
    margin-top: 12px;
    border-radius: 2px;
    }

    .hp-lead {
    font-size: 1.1rem;
    color: var(--hp-text-body);
    line-height: 1.8;
    }

    /* 手機版隱藏強制換行,讓文字自然換行 */
    @media (max-width: 640px) {
    .hp-lead br { display: none; }
    }

    .hp-highlight {
    color: var(--hp-brand);
    font-weight: 700;
    }

    .hp-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    }

    .hp-h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--hp-brand);
    border-radius: 50%;
    }

    /* --- 3. Product Features:產品特色卡片區(Flex 佈局) --- */
    .hp-feat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    }

    .hp-card {
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 24px;
    transition: var(--hp-transition);
    display: flex;
    flex-direction: column;
    flex: 1 1 280px;
    max-width: 360px;
    }

    .hp-card:hover {
    transform: translateY(-5px);
    border-color: var(--hp-brand);
    box-shadow: 0 12px 30px -10px rgba(45, 91, 255, 0.1);
    }

    .hp-icon-box {
    width: 42px;
    height: 42px;
    background: var(--hp-bg-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--hp-brand);
    }

    .hp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 8px;
    }

    .hp-card-text {
    font-size: 0.95rem;
    color: var(--hp-text-body);
    }

    /* --- 4. Specs & Applications:規格與常見應用(雙欄佈局) --- */
    .hp-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    }

    .hp-spec-box {
    background: var(--hp-bg-subtle);
    padding: 32px;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-border);
    }

    .hp-spec-list {
    list-style: none;
    }

    /* 規格表格:標籤與數值左右排列,維持整齊對齊 */
    .hp-spec-item {
    display: flex;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid #E5E7EB;
    }

    .hp-spec-item:last-child {
    border-bottom: none;
    }

    .hp-spec-label {
    font-weight: 700;
    color: var(--hp-text-main);
    flex: 0 0 100px; /* 固定標籤寬度,避免多行不齊 */
    position: relative;
    }

    .hp-spec-val {
    color: var(--hp-text-body);
    text-align: left;
    line-height: 1.6;
    }

    /* 常見應用:以卡片列出典型使用場景 */
    .hp-app-list {
    list-style: none;
    display: grid;
    gap: 16px;
    }

    .hp-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: 8px;
    transition: var(--hp-transition);
    }

    .hp-app-item:hover {
    border-color: var(--hp-brand);
    background: var(--hp-brand-light);
    }

    .hp-check-icon {
    color: var(--hp-brand);
    flex-shrink: 0;
    }

    /* 詢價提示框:提醒客戶詢價時需提供的資訊 */
    .hp-note {
    background: var(--hp-note-bg);
    border: 1px solid var(--hp-note-border);
    color: var(--hp-note-text);
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 24px;
    }

    /* --- 5. CTA:頁尾行動呼籲(報價與打樣) --- */
    .hp-cta {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    }

    .hp-cta::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: var(--hp-brand-light);
    border-radius: 50%;
    z-index: 0;
    }

    .hp-cta-content {
    position: relative;
    z-index: 1;
    }

    .hp-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--hp-brand);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--hp-transition);
    margin-top: 24px;
    }

    .hp-btn:hover {
    background: var(--hp-brand-dark);
    box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
    }

    /* --- RWD:響應式排版調整 --- */
    @media (max-width: 800px) {
    .hp-split-section {
    grid-template-columns: 1fr;
    gap: 32px;
    }
    }

    @media (max-width: 600px) {
    .hp-wrap { padding: 20px; }
    /* 手機版規格表:標籤與內容改為上下排列,避免換行擁擠 */
    .hp-spec-item {
    flex-direction: column;
    gap: 4px;
    }
    .hp-spec-label {
    flex: auto;
    color: var(--hp-brand);
    font-size: 0.9rem;
    }
    }



    PP 模料(加工用片材)

    專為模切、沖型等後續加工設計的 PP 片材。
    材質具備優異的剛性與平整度,利於後段製程穩定出片。所有規格皆可依實際製程需求客製化調整。







    平整穩定

    板材平整度佳、材質結構穩定,能提升模切與沖型加工的良率與效率。






    耐化輕量

    耐化學性佳、重量輕盈,適合用於各種包裝內襯與工業墊片,搬運與使用皆方便。






    彈性供應

    可依您的製程設備需求,選擇「卷料」或「裁切片材」形式出貨。





    規格範圍(示例,可依訂單調整)



    厚度 [請洽業務] mm
    寬幅 [請洽業務] mm
    (卷料寬度)
    供應形式 卷料 / 片材
    顏色/表面 自然色/黑/灰
    霧面/亮面(可評估)
    交期 標準交期[請洽業務]工作天
    (依實際排程)






    常見應用


    模切零件用片材、墊片材料
    包裝內襯、隔板用片材
    文具配件用片材



    ???? 詢價請提供:
    1. 厚度與寬幅(或片尺寸)
    2. 顏色與表面需求
    3. 預估數量與用途






    取得報價與樣品

    需要穩定的 PP 加工片材供應商?歡迎提供您的製程需求與規格,我們將為您安排合適的材料與打樣。
    詢價與技術諮詢
  • MORE
    PP工業用板材

    PP 工業用板材

    /* --- 1. Design Tokens:維持品牌一致性的共用變數 --- */
    :root {
    --hp-brand: #2D5BFF;
    --hp-brand-dark: #1E40AF;
    --hp-brand-light: #F5F8FF;
    --hp-text-main: #111827;
    --hp-text-body: #4B5563;
    --hp-border: #E5E7EB;
    --hp-bg-page: #FFFFFF;
    --hp-bg-subtle: #F8FAFC;
    --hp-radius: 12px;
    --hp-transition: all 0.2s ease-in-out;

    /* 詢價提示框用色系 */
    --hp-note-bg: #FFFBEB;
    --hp-note-text: #92400E;
    --hp-note-border: #FDE68A;
    }

    /* Global Reset:統一盒模型與清除預設外距 */
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }

    body {
    font-family: "Noto Sans TC", "Microsoft JhengHei", -apple-system, sans-serif;
    color: var(--hp-text-body);
    background-color: var(--hp-bg-page);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    }

    /* 版面容器:限制內容最大寬度,對齊主版型間距 */
    .hp-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 24px 60px;
    }

    /* --- 2. Typography:標題階層與導言文字 --- */
    .hp-header {
    max-width: 860px;
    margin-bottom: 50px;
    }

    .hp-h1 {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--hp-text-main);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    }

    /* H1 下方品牌色橫線 */
    .hp-h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--hp-brand);
    margin-top: 12px;
    border-radius: 2px;
    }

    .hp-lead {
    font-size: 1.1rem;
    color: var(--hp-text-body);
    line-height: 1.8;
    }

    /* 手機版隱藏強制換行,讓文字自然換行 */
    @media (max-width: 640px) {
    .hp-lead br { display: none; }
    }

    .hp-highlight {
    color: var(--hp-brand);
    font-weight: 700;
    }

    .hp-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    }

    /* H2 左側圓點裝飾 */
    .hp-h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--hp-brand);
    border-radius: 50%;
    }

    /* --- 3. Product Features:產品特色卡片區(Flex 佈局) --- */
    .hp-feat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    }

    .hp-card {
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 24px;
    transition: var(--hp-transition);
    display: flex;
    flex-direction: column;
    flex: 1 1 280px;
    max-width: 360px;
    }

    .hp-card:hover {
    transform: translateY(-5px);
    border-color: var(--hp-brand);
    box-shadow: 0 12px 30px -10px rgba(45, 91, 255, 0.1);
    }

    .hp-icon-box {
    width: 42px;
    height: 42px;
    background: var(--hp-bg-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--hp-brand);
    }

    .hp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 8px;
    }

    .hp-card-text {
    font-size: 0.95rem;
    color: var(--hp-text-body);
    }

    /* --- 4. Specs & Applications:規格與常見應用(雙欄佈局) --- */
    .hp-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    }

    .hp-spec-box {
    background: var(--hp-bg-subtle);
    padding: 32px;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-border);
    }

    .hp-spec-list {
    list-style: none;
    }

    /* 規格表格:標籤與數值左右排列,維持整齊對齊 */
    .hp-spec-item {
    display: flex;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid #E5E7EB;
    }

    .hp-spec-item:last-child {
    border-bottom: none;
    }

    .hp-spec-label {
    font-weight: 700;
    color: var(--hp-text-main);
    flex: 0 0 100px; /* 固定標籤寬度,避免多行不齊 */
    position: relative;
    }

    .hp-spec-val {
    color: var(--hp-text-body);
    text-align: left;
    line-height: 1.6;
    }

    /* 常見應用:以卡片列出典型使用場景 */
    .hp-app-list {
    list-style: none;
    display: grid;
    gap: 16px;
    }

    .hp-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: 8px;
    transition: var(--hp-transition);
    }

    .hp-app-item:hover {
    border-color: var(--hp-brand);
    background: var(--hp-brand-light);
    }

    .hp-check-icon {
    color: var(--hp-brand);
    flex-shrink: 0;
    }

    /* 詢價提示框:提醒客戶詢價時需提供的資訊 */
    .hp-note {
    background: var(--hp-note-bg);
    border: 1px solid var(--hp-note-border);
    color: var(--hp-note-text);
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 24px;
    }

    /* --- 5. CTA:頁尾行動呼籲(報價與樣品) --- */
    .hp-cta {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    }

    .hp-cta::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: var(--hp-brand-light);
    border-radius: 50%;
    z-index: 0;
    }

    .hp-cta-content {
    position: relative;
    z-index: 1;
    }

    .hp-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--hp-brand);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--hp-transition);
    margin-top: 24px;
    }

    .hp-btn:hover {
    background: var(--hp-brand-dark);
    box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
    }

    /* --- RWD:響應式排版調整 --- */
    @media (max-width: 800px) {
    .hp-split-section {
    grid-template-columns: 1fr;
    gap: 32px;
    }
    }

    @media (max-width: 600px) {
    .hp-wrap { padding: 20px; }
    /* 手機版規格表:標籤與內容改為上下排列,避免換行擁擠 */
    .hp-spec-item {
    flex-direction: column;
    gap: 4px;
    }
    .hp-spec-label {
    flex: auto;
    color: var(--hp-brand);
    font-size: 0.9rem;
    }
    }



    PP 工業用板材

    面向工業環境使用的 PP 板材,兼顧剛性與耐化特性。
    適用於設備防護、空間隔離與搬運配套等場景,所有規格皆可依實際使用條件客製化調整。







    耐化耐磨

    具備優異的耐化學性與耐磨性,且材質抗潮不吸水,適合嚴苛的作業環境。






    平整易潔

    板面平整度高、表面容易清潔,相較於金屬板材重量更輕,維護更輕鬆。






    加工配套

    可配合您的需求進行裁切、包裝,提供片材或棧板出貨,加速產線導入。






    規格範圍(示例,可依訂單調整)



    厚度 [請洽業務] mm
    片尺寸 依需求客製
    (請洽業務討論最大尺寸)
    顏色/表面 自然色/黑/灰
    霧面/亮面/紋理(可評估)
    供應形式 片材(棧板包裝)
    文件配合 RoHS/REACH
    (如適用,可配合提供)
    交期 標準交期[請洽業務]工作天
    (依實際排程)






    常見應用


    機械/產線防護板、隔間與遮罩
    周轉箱隔板、輸送/倉儲配套板材
    工作站檯面覆蓋、治具墊板



    ???? 詢價請提供:
    1. 厚度與片尺寸(長×寬)
    2. 顏色與表面需求
    3. 預估數量與用途






    取得報價與樣品

    需要耐用可靠的工業 PP 板材?歡迎提供您的規格與用途,我們將為您評估最合適的材料方案。
    詢價與技術諮詢
  • MORE
    抗靜電塑膠板

    抗靜電 PP 塑膠板

    /* 1. Design Tokens:維持品牌一致性的共用變數 */
    :root {
    --hp-brand: #2D5BFF; /* 主要品牌色(按鈕、重點標示) */
    --hp-brand-dark: #1E40AF; /* 品牌深色(Hover 狀態) */
    --hp-brand-light: #F5F8FF; /* 品牌淺色(區塊背景/Hover 底色) */
    --hp-text-main: #111827; /* 主標題文字色 */
    --hp-text-body: #4B5563; /* 內文文字色(高可讀性中灰) */
    --hp-border: #E5E7EB; /* 卡片與區塊邊框色 */
    --hp-bg-page: #FFFFFF; /* 頁面主背景色 */
    --hp-bg-subtle: #F8FAFC; /* 次要區塊背景色(規格框等) */
    --hp-radius: 12px; /* 統一圓角大小 */
    --hp-transition: all 0.2s ease-in-out; /* 統一轉場動畫設定 */

    /* 詢價提示框用色系 */
    --hp-note-bg: #FFFBEB;
    --hp-note-text: #92400E;
    --hp-note-border: #FDE68A;
    }

    /* 2. Global reset:統一盒模型與預設邊距 */
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }

    body {
    font-family: "Noto Sans TC", "Microsoft JhengHei", -apple-system, sans-serif;
    color: var(--hp-text-body);
    background-color: var(--hp-bg-page);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    }

    /* 版心容器:控制內容寬度與頁面留白 */
    .hp-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 24px 60px;
    }

    /* 3. Typography:標題階層與導言文字 */
    .hp-header {
    max-width: 860px;
    margin-bottom: 50px;
    }

    /* H1:頁面主標題 */
    .hp-h1 {
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 800;
    color: var(--hp-text-main);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    }

    /* H1 下方品牌色橫線裝飾 */
    .hp-h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--hp-brand);
    margin-top: 12px;
    border-radius: 2px;
    }

    /* 導言文字(產品簡介) */
    .hp-lead {
    font-size: 1.1rem;
    color: var(--hp-text-body);
    line-height: 1.8;
    }

    /* 手機版:隱藏 ,避免過度斷行影響閱讀流暢度 */
    @media (max-width: 640px) {
    .hp-lead br { display: none; }
    }

    /* 文內重點標示(品牌色+粗體) */
    .hp-highlight {
    color: var(--hp-brand);
    font-weight: 700;
    }

    /* 區段小標題(H2) */
    .hp-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    }

    /* H2 左側圓點裝飾 */
    .hp-h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--hp-brand);
    border-radius: 50%;
    }

    /* 4. Product Features:產品特色卡片區(Flex 排版) */
    .hp-feat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center; /* 讓卡片在版心內置中排列 */
    margin-bottom: 40px;
    }

    /* 產品特色卡片 */
    .hp-card {
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 24px;
    transition: var(--hp-transition);
    display: flex;
    flex-direction: column;
    flex: 1 1 280px; /* 最小寬度 280px,視窗放大時可拉寬 */
    max-width: 360px; /* 避免卡片過寬影響閱讀 */
    }

    .hp-card:hover {
    transform: translateY(-5px);
    border-color: var(--hp-brand);
    box-shadow: 0 12px 30px -10px rgba(45, 91, 255, 0.1);
    }

    /* 卡片左上角圖示容器 */
    .hp-icon-box {
    width: 42px;
    height: 42px;
    background: var(--hp-bg-subtle);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--hp-brand);
    }

    /* 卡片標題與內文 */
    .hp-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--hp-text-main);
    margin-bottom: 8px;
    }

    .hp-card-text {
    font-size: 0.95rem;
    color: var(--hp-text-body);
    }

    /* 5. Specs & Applications:規格與適用情境(雙欄區塊) */
    .hp-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    }

    /* 規格資訊外框(灰底+邊框) */
    .hp-spec-box {
    background: var(--hp-bg-subtle);
    padding: 32px;
    border-radius: var(--hp-radius);
    border: 1px solid var(--hp-border);
    }

    .hp-spec-list {
    list-style: none;
    }

    /* 規格列排版:標籤與內容左右對齊 */
    .hp-spec-item {
    display: flex; /* 標籤與內容並排 */
    align-items: baseline; /* 對齊文字基線,避免字級不同時錯位 */
    padding: 14px 0;
    border-bottom: 1px solid #E5E7EB;
    }

    .hp-spec-item:last-child {
    border-bottom: none;
    }

    /* 規格標籤(如:表面電阻、厚度) */
    .hp-spec-label {
    font-weight: 700;
    color: var(--hp-text-main);
    flex: 0 0 100px; /* 固定寬度,讓多列對齊整齊 */
    position: relative;
    }

    /* 規格內容文字 */
    .hp-spec-val {
    color: var(--hp-text-body);
    text-align: left; /* 文字靠左,提升可讀性 */
    line-height: 1.6;
    }

    /* 適用情境列表:卡片式呈現典型應用 */
    .hp-app-list {
    list-style: none;
    display: grid;
    gap: 16px;
    }

    /* 單一情境項目卡片 */
    .hp-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: 8px;
    transition: var(--hp-transition);
    }

    .hp-app-item:hover {
    border-color: var(--hp-brand);
    background: var(--hp-brand-light);
    }

    /* 適用情境前方勾選圖示 */
    .hp-check-icon {
    color: var(--hp-brand);
    flex-shrink: 0;
    }

    /* 詢價提示框:提醒客戶預先準備規格資訊 */
    .hp-note {
    background: var(--hp-note-bg);
    border: 1px solid var(--hp-note-border);
    color: var(--hp-note-text);
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 24px;
    }

    /* 6. CTA:頁尾詢價與索樣行動呼籲 */
    .hp-cta {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    }

    /* CTA 右下角圓形裝飾 */
    .hp-cta::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: var(--hp-brand-light);
    border-radius: 50%;
    z-index: 0;
    }

    .hp-cta-content {
    position: relative;
    z-index: 1;
    }

    /* 單顆主行動按鈕 */
    .hp-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--hp-brand);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--hp-transition);
    margin-top: 24px;
    }

    .hp-btn:hover {
    background: var(--hp-brand-dark);
    box-shadow: 0 4px 12px rgba(45, 91, 255, 0.3);
    }

    /* 7. RWD:平板與手機版排版調整 */
    @media (max-width: 800px) {
    /* 規格+應用區由雙欄改為單欄疊放 */
    .hp-split-section {
    grid-template-columns: 1fr;
    gap: 32px;
    }
    }

    @media (max-width: 600px) {
    .hp-wrap { padding: 20px; }
    /* 手機版規格列改為上下排列,避免擠壓 */
    .hp-spec-item {
    flex-direction: column;
    gap: 4px;
    }
    .hp-spec-label {
    flex: auto;
    color: var(--hp-brand);
    font-size: 0.9rem;
    }
    }



    抗靜電塑膠板(PP)

    以 PP 壓出製程製作,表面具備穩定的抗靜電特性。
    適合電子/工業場域的隔板與包裝襯板等應用,有效防止靜電累積吸附灰塵或損害精密元件。







    抗靜電特性

    表面電阻可達 10⁶~10⁹ Ω/□,有效降低靜電累積風險,保護電子零件與設備。






    電子包材首選

    低發塵、耐磨損,適合用於無塵室或精密產線的周轉箱隔板與包裝內襯。






    專案客製化

    可依專案需求評估抗靜電等級、顏色(黑/灰/本色)與厚度、尺寸規格。






    主要規格(示例)



    表面電阻 10⁶ ~ 10⁹ Ω/□
    (以實測報告為準)
    厚度 [請洽業務] mm
    片尺寸 依需求客製
    顏色/表面 黑/灰/自然色
    霧面/亮面(可評估)
    供應形式 片材(棧板包裝)
    交期 專案評估(可能需最小訂購量)






    常見應用


    電子業治具與隔板、工作臺面覆蓋
    周轉箱內襯、包裝襯板
    一般工業隔離板



    ???? 詢價請提供:
    1. 指定抗靜電等級(Surface Resistance)
    2. 厚度、片尺寸與顏色
    3. 預估數量(專案規格可能需 MOQ)
    我們將根據您的需求回覆可行規格與預估交期。






    取得報價與樣品

    尋找高品質的抗靜電 PP 板材?歡迎提供您的電子包裝或產線防護需求,我們將為您規劃最合適的材料與規格方案。
    詢價與技術諮詢