@charset "utf-8";

/* --------------------------------------------------
   base
-------------------------------------------------- */
/* =============== ▼ 全域變數 ▼ =============== */

:root {
    /* 顏色 */
    --main-color: #252525;
    --sub1-color: #777;
    --sub2-color: #aaa;
    --sub3-color: #fafafa;
    --ac-color: #000000;
    --f1-color: #333;
    --f2-color: #777;
    --f3-color: #aaa;
    --bg-color: #fff;

    /* 字型 */
    --font: 'Noto Sans TC', serif;
    --sfont: "Rokkitt" ,"Noto Sans TC", serif;

    /* 其他 */
    --tr: ease-out 0.5s;
    /*變化*/
    --br: clamp(2px, 1vw, 4px);
    /*圓角*/
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */


/* =============== ▲ 全域變數 ▲ =============== */

/* =============== ▼ 文字設定 ▼ =============== */

body {
    letter-spacing: .1rem;
    font: normal 16px/1.5 var(--font);
    color: var(--f1-color);
}

/* 客戶編輯區文字 */
.blog_box_edit *,
.promotions_page .edit *,
.edit {
    letter-spacing: .1rem;
    font-weight: 400;
    font-size: 16px;
    line-height: 250% !important;
    font-family: var(--font) !important;
    color: var(--f1-color) !important;
}

/* 反白顏色 ----------*/
::-moz-selection {
    color: var(--bg-color);
    background: var(--f1-color);
}

::selection {
    color: var(--bg-color);
    background: var(--f1-color);
}

/* =============== ▲ 文字設定 ▲ =============== */

/* =============== ▼ 通用設定 ▼ =============== */

/* 滾動條 ---------- */
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
    width: 6px;
    /*右側捲軸寬度*/
    height: 0px;
    /*下方捲軸高度*/
}

/* 軌道背景底色 */
::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}

/* 滑桿顏色 */
::-webkit-scrollbar-thumb {
    background-color: var(--f2-color);
}

/* 滑桿滑鼠滑入時的顏色 */
::-webkit-scrollbar-thumb:hover {
    background: var(--f1-color);
}

/* =============== ▲ 通用設定 ▲ =============== */

/* --------------------------------------------------
   layout
-------------------------------------------------- */

/* =============== ▼ 大範圍設定 ▼ =============== */

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/*背景顏色*/
#content_main,
#content {
    background-color: var(--bg-color);
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    .show_content {
        padding: 10px 0 20px;
    }
}

@media screen and (max-width: 600px) {
    .main_part {
        padding: 10px 20px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

.main_part {
    padding: 10px 20px 50px;
}

/* 隱藏新浮動 */
.info_fix {
    display: none;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */


/* =============== ▲ 大範圍設定 ▲ =============== */

/* =============== ▼ PAGE ▼ =============== */

/* ＝＝＝ 【【  xx 無預設區塊 xx  】】 ＝＝＝ */
/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/* 麵包屑 -------------------- */
/* 隱藏 */
.path p,
.path p a {
    display: none;
}

/* 頁碼 -------------------- */

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */
/* 麵包屑 -------------------- */
/* 頁碼 -------------------- */
/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ PAGE ▲ =============== */

/* =============== ▼ 大圖 ▼ =============== */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

/* .swiper-slide img { height:auto;} */

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/*切換鈕置左 ----------*/
.bannerindex {
    --swiper-pagination-color: #fff;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: auto;
    top: 50%;
    left: 2vw;
    width: 25px;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 10px;
    width: 5px;
    height: 15px;
    border-radius: 2px;
}

/* 漸層遮罩 */
.pageIndex .swiper-wrapper:after {
    content: "";
    position: absolute;
    z-index: 998;
    pointer-events: none;
    width: 100vw;
    height: 35%;
    left: 0px;
    top: 0px;
    background: linear-gradient(180deg, rgba(0 0 0 / 90%) 20%, rgba(0 0 0 / 0%) 100%);
}

/* =============== ▼ HEADER ▼ =============== */

/* ＝＝＝ 【【  xx 無預設區塊 xx  】】 ＝＝＝ */

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */
/* 布局 */
.header_area,
.header_area.sticky {
    background: var(--ac-color);
/*     box-shadow: 0px 5px 20px rgba(51, 51, 51, .05); */
    /*     border-top: 5px solid var(--main-color); */
}

.navigation {
    display: flex;
}

/* +++ 複選單(購物車/社群icon/多語系) -------------------- */
.me_tp_features{
    width: fit-content;
    margin-left: auto;
    z-index: 9999;
}
.me_tp_features a{
    color: #fff;
}
.tp_links{
    display: none;
}

/* +++ logo -------------------- */

/*logo大小*/
.nav-header {
    max-width: 150px;
}

.nav-brand img {
    display: block;
    /*填滿h1空白*/
}

/* +++ 導覽列 -------------------- */

/* 主選單文字樣式 */
.stellarnav>ul>li>a,
.stellarnav>ul>li>a b {
    color: var(--bg-color);
    font-family: var(--font);
    letter-spacing: .3rem;
    margin: 0;
    /*蓋預設*/
}

/* 翻轉後文字 */
.stellarnav>ul>li>a b:nth-child(2) {
    font-family: var(--sfont);
    font-weight: bold;
    letter-spacing: .1rem;
}

/* 按鈕間距+高度 */
.stellarnav>ul>li {
    padding: 10px 0rem;
    padding-bottom: 5px;
    /*上下視差5px*/
}

/* 隱藏三下拉角形 */
.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav>ul>li.has-sub>a {
    padding-right: unset;
}

/*下拉區塊*/
.stellarnav li.has-sub li {
    border: none;
    border-bottom: solid 1px var(--f3-color);
    background: var(--bg-color);
}

.stellarnav li.has-sub li:last-of-type {
    border-bottom: none;
}

/* 下拉選單文字 */
.stellarnav li.has-sub li a,
.stellarnav.mobile li li.has-sub a {
    font-size: 13px;
    padding: .75rem 1rem;
    color: var(--f1-color);
}

.stellarnav li.has-sub li:hover {
    background: var(--f3-color);
    transition: var(--tr);
    /*     padding-left: 1.5rem; */
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* logo大小 */
.nav-header {
    max-width: 80px;
}

/* 寬度 */
.main_header_area .container {
    max-width: 1800px;
}


/*對稱設定 ---------- */

/*logo置中*/
.nav-header {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
}

.stellarnav {
    position: absolute;
}

.header_area .stellarnav>ul {
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    max-width: 1100px;
    margin: auto;
    padding: 15px 0;
    transition: all 0.3s;
}

/* 按鈕寬度 */
.stellarnav>ul>li>a,
.stellarnav>ul>li>a b {
    width: 8rem;
}

/* 置中偽元素 */
.stellarnav>ul:before {
    content: "";
    display: block;
    width: 8rem;
}

.stellarnav>ul>li:nth-of-type(1) {
    order: -2;
}

.stellarnav>ul>li:nth-of-type(2) {
    order: -1;
}

/* 首頁下滑變化 ---------- */
.pageIndex .header_area,
.pageIndex .header_area.sticky {
    background: transparent;
    position: fixed;
}

/* .pageIndex .header_area {
    opacity: 0;
    transition: all .5s;
} */

.pageIndex .header_area:before {
    content: "";
    width: 80%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    transition: all .5s;
}

.pageIndex .header_area.sticky:before {
    width: 100%;
    background: #000;
    transition: all .5s;
}

/* .header_area.sticky {
    opacity: 1;
    transition: all .5s;
} */

/* 原 RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 1300px) {
    .nav-header {
/*         max-width: 120px; */
    }

    .stellarnav>ul>li {
/*         padding: 40px 8px 0px; */
    }
}

@media screen and (max-width: 1024px) {
    .stellarnav>ul>li {
        padding: 15px 5px 0px;
    }

    .stellarnav>ul>li>a {
        font-size: 14px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */
@media screen and (max-width: 1024px) {

    .nav-header {
        position: static;
        transform: unset;
    }

}

/* 回復置中設定 */
@media screen and (max-width: 768px) {
    .nav-header {
        max-width: 60px;
    }
    .pageIndex .header_area,
    .pageIndex .header_area.sticky {
        background: var(--ac-color);
        position: relative;
    }

    /* .pageIndex .header_area.sticky {
        background: var(--ac-color);
        position: fixed;
    } */
    .pageIndex .header_area.sticky:before{
        display: none;
    }

    .stellarnav.mobile.left>ul {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .stellarnav>ul:before {
        display: none;
    }

    .stellarnav>ul>li:nth-of-type(1),
    .stellarnav>ul>li:nth-of-type(2) {
        order: unset;
    }

    .me_tp_features{margin: 0 auto;}

}

/* =============== ▲ HEADER ▲ =============== */

/* =============== ▼ 漢堡選單 ▼ =============== */


/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

@media screen and (max-width: 768px) {
    /* 三 按鈕 ---------- */
    .stellarnav.mobile {
        top: 10px;
    }
    /*三改色*/
    .stellarnav .menu-toggle span.bars span{
        background: var(--f3-color);
    }
    
    /*隱藏-menu文字樣式*/
    .stellarnav .menu-toggle:after{
        color: var(--f1-color);
        display: none;
    }

    /*打開後 close表頭*/
    .stellarnav.mobile.left .close-menu {
        background: var(--bg-color);
    }

    /*隱藏-close文字*/
    .stellarnav.mobile .close-menu {
        position: relative;
        color: transparent;
    }
    .stellarnav.mobile .close-menu>* {
        display: none;
    }

    .stellarnav.mobile .close-menu:before {
        content: "×";
        position: absolute;
        right: 10px;
        top: 10px;
        color: var(--f1-color);
        font-size: 12px;
    }

    /*選單底色*/
    .stellarnav.mobile.left>ul {
        background: var(--bg-color);
        max-width: 350px;/*選單寬度*/
        height: 100vh;
    }

    /*主選單按鈕 ---------- */
    .stellarnav.mobile > ul > li,
    .stellarnav.mobile li.open {
        padding: 0px;/*蓋預設*/
        border-bottom: 1px solid var(--f3-color);
    }

    /*選單文字*/
    .stellarnav.mobile>ul>li>a {
        text-overflow: ellipsis;
        padding: 20px 1.5rem;/*按鈕高度*/
        display: flex;
        flex-direction: column;
    }

    /*文字*/
    .stellarnav.mobile>ul>li>a b {
        vertical-align: middle;
    }

    .stellarnav>ul>li>a b:nth-child(2) {
        color: var(--f2-color);
        font-size: 12px;
    }

    /*隱藏-偽元素*/
    .stellarnav>ul>li>a:before {
        display: none;
    }
    /*下拉+號 ---------- */
    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 20px;/*= 按鈕高度*/
    }
    /*+號顏色*/
    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 1px var(--f2-color);
    }

    /*+號展開區塊 ---------- */
    /*下拉區塊-外層*/
    .stellarnav.mobile li.open,
    .stellarnav.mobile li.open li.open {
        background: transparent;
        padding: 0px;/*蓋預設 3px*/
    }
    .stellarnav.mobile ul ul {
        background: transparent;
        border-radius: unset;
        padding-left: 1.5rem;
    }
}

@media only screen and (max-width: 570px) {
    .stellarnav .menu-toggle {
        padding: 10px;/*蓋預設*/
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

@media screen and (max-width: 768px) {
    .stellarnav.mobile.active{
        z-index: 99999;
    }
    .stellarnav.mobile>ul>li>a {
        width: fit-content;
    }
    .stellarnav>ul>li>a b{
       color: var(--f1-color);
    }
    .me_tp_features a.tp_btn_cart,
    .me_tp_features a.tp_btn_notice{
        display: inline-block;
    }

    /* 隱藏底線 */
    .stellarnav li.has-sub li,
    .stellarnav.mobile li a {
    border-bottom: 1px solid transparent;
    }
}

@media screen and (max-width: 400px) {
    .box_search{display: block;}
}


/* =============== ▲ 漢堡選單 ▲ =============== */

/* =============== ▼ FOOTER ▼ =============== */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: block;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #to_top {
        bottom: 60px;
    }
}

/* ＝＝＝ 【【  版型設定(置中) ↓↓↓  】】 ＝＝＝ */

/*YKQK版權塊 -------------------- */

.copy {
    border-top: 1px solid var(--f3-color);
    margin: 0px auto;
    padding: 20px 0px;

}

.copy,
.copy a {
    font-size: 10px;
    color: var(--f1-color);
}

.copy a:hover {
    color: var(--f1-color);
    text-decoration: underline var(--f1-color) 1px solid;
    text-underline-offset: 4px;
}

/*YKQK版權塊 -------------------- */

.footer {
    width: 93%;
    max-width: 93%;
    padding: 0;
    margin: 0 auto;
    margin-top: 50px;
    background: transparent;
}

.footer .center {
    padding: 0;
    max-width: 100%;
}

.footer_info {
    display: block;
    padding: 0;
}

.box_link,
.footer_logo {
    display: none;
}

.footer_info ul {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.footer_info li:nth-child(1) {
    width: 100%;
    display: flex;
    margin: auto;
    flex-direction: column;
    background-color: #f1f1f1;
    text-align: center;
    padding: 30px 0;
    order: 3;
}

.footer_info li:nth-child(2) {
    padding: 20px 0 0 0;
    order: 4;
}

.footer_info li p,
.footer_info li p a {
    font: normal 14px / 2 var(--font);
    color: var(--f1-color);
    letter-spacing: .1rem;
}

.footer_menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer_menu a {
    background: transparent;
    border: none;
    font: normal 12px / 1 var(--font);
    color: var(--f1-color);
    letter-spacing: .1rem;
}

/* 隱藏-回首頁 */
.footer_menu a:first-of-type {
    display: none;
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 768px) {
    #bottom_menu {
        display: none;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

.footer_info li:nth-child(1)::before,
.footer_info li:nth-child(1)::after {
    content: "";
    display: block;
    font: bold 16px / 1.2 var(--sfont);
    color: var(--f1-color);
    letter-spacing: .1rem;
}


.footer_info li:nth-child(1)::before{
    content: '追夢客國際企業社';
    order: 1;
    padding-top: 10px;
}

.footer_info li:nth-child(1)::after{
    content: 'DREAMaker lnternational CO.';
    order: 2;
    padding-bottom: 10px;
}

.footer_info li p.tel2 {
    order: 3;
}

.footer_info li p.tel2:before {
    content: '負責人：';
}

.footer_info li p.tel {
    order: 4;
}

.footer_info li p.taxid {
    order: 5;
}

.footer_info li p.add {
    order: 6;
}

/* 隱藏信箱 */
.footer_info .mail{
    display: none;
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ FOOTER ▲ =============== */

/* --------------------------------------------------
   components 元件設定
-------------------------------------------------- */

/* =============== ▼ BANNER ▼ =============== */

/* ＝＝＝ 【【  版型設定(純文字) ↓↓↓  】】 ＝＝＝ */
.banner {
    background: var(--bg-color);
    min-height: 150px;
/*     align-content: flex-end; */
}

.banner h5 {
    color: var(--f1-color);
    font-size: 24px;
    letter-spacing: .6rem;
    position: relative;
}

.banner h5:after {
    content: "";
    width: 30px;
    height: 4px;
    background: var(--ac-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 768px) {
    .banner {
        min-height: 160px;
    }

    .banner h5 {
        font-size: 20px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */
/* 隱藏 BN */
.product_info_page .banner.banF {
    display: none;
}

/*小撇步-*/
.banner.banA {}

/*聯絡我們*/
.banner.banC {}

/*匯款通知*/
.banner.banD {}

/*相簿-*/
.banner.banE {}

/*購物車-*/
.banner.banF {}

.product_info_page .banner h5{
    display: none;
}

/*文章管理*/
.banner.banblog {}

.blog_in_page .banner h5{
    display: none;
}

.article_a .banner.banblog {}

.article_b .banner.banblog {}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ BANNER (純文字) ▲ =============== */

/* =============== ▼ 按鈕 ▼ =============== */

/* 首頁嵌入功能-查看更多 */
.animated-arrow {
    background: var(--ac-color);
    color: var(--bg-color);
    border-radius: var(--br);
}

.animated-arrow:hover {
    filter: grayscale(1);
}

/* =============== ▲ 按鈕 ▲ =============== */


/* --------------------------------------------------
   Content 功能頁
-------------------------------------------------- */

/* =============== ▼ 購物車 ▼ =============== */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    left: 0;
    width: 100%;
    position: fixed;
    padding: 20px;
}

.stellarnav.desktop li.bigMenu ul ul {
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--f2-color);
    height: auto;
    max-height: 300px;
    overflow: auto;
}

.stellarnav.desktop li.bigMenu ul ul li {
    margin: 0;
}

.stellarnav.hasBigMenu li.bigMenu li.has-sub>a:after {
    border-left: 6px solid transparent;
    border-bottom: unset;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--f1-color);
    right: 5px;
}

/* 主分類超過30個但次分類直接顯示 
.stellarnav.desktop li.bigMenu>ul{grid-gap: 10px;}
.stellarnav.desktop li.bigMenu li{border: 0;}
.stellarnav.desktop li.bigMenu>ul>li>a{border: 1px solid #ddd;}
.stellarnav.desktop li.bigMenu ul ul{display: block !important; position: relative; top: 0; background: unset; border: 0;}
.stellarnav.desktop li.bigMenu ul ul li{border: 0;}
 主分類超過30個但次分類直接顯示-結束 */
/* 商品下拉超過30個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 1500px;
}

/* .product_info_page .main_part { max-width:1200px;} */
.product_page .show_content,
.product_info_page .show_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

.product_page .product_menu_list {
    position: relative;
    width: 220px;
    letter-spacing: 1px;
    /*border-right: 1px solid var(--f3-color);*/
    min-height: 30vw;
}

.product_page .products-list,
.product-wrapper {
    width: calc(100% - 270px);
}

ul.page {
    width: 100%;
}

.product-layer-two li ul {
    position: static;
    margin-top: 5px;
    /*display:block !important;*/
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    /*display:block !important;*/
}

.product-layer-two li li {
    display: block;
    padding: 0;
    transition: all ease .3s;
}

.product-layer-two li li a {
    padding: 5px 10px;
}

.product-layer-two li li:hover>a {
    background: var(--bg-color);
    color: var(--f1-color);
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px dotted var(--f3-color);
    padding-bottom: 5px;
}

.product-layer-two>li ul>li+li {
    margin-top: 5px;
}

.product_info_page .product-layer-two {
    display: none;
}

.product_info_page .products-list,
.product-wrapper {
    width: 100%;
}

.product-layer-two li li:hover {
    margin-left: 15px;
}

.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: transparent;
    left: 0;
    margin-left: -20px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-layer-two li li:hover>a:before {
    background: var(--ac-color);
}

.product_info_page .half_box {
    width: 100%;
    float: none;
    padding-right: 0;
}

.product_info_page .half_box li.btn_blankTop {
    margin-top: 50px;
    justify-content: space-between;
    display: flex;
}

.product_info_page .half_box li.btn_blankTop input {
    width: calc(50% - 10px);
    background-image: none;
    padding: 0;
    text-align: center;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {

    .product_menu_list,
    .products-list,
    .product-wrapper {
        width: 100%;
    }

    .product-layer-two {
        margin-right: 0;
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 5px;
    }

    .product_page .product-layer-two,
    .product_page .products-list {
        width: 100%;
        border-right: none;
    }

    .product_page .product_menu_list>h5 {
        display: block;
    }

    .product_page .show_content>a {
        order: 1;
    }

    .product_page ul.products-list {
        order: 2;
    }

    .product_page ul.page {
        order: 3;
    }

    .product_page .product_menu_list {
        width: 100%;
        order: 0;
        min-height: unset;
    }
}

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/* +++ 通用 -------------------- */

/* 圖片 */
.products-list .pic,
/*首頁相同*/
.related_list li figure {
    border-radius: var(--br);
    overflow: hidden;
/*     border: 3px solid transparent; */
}

/* 外框 */
.products-list .pic:hover,
.related_list li figure:hover {
/*     border: 3px solid var(--ac-color); */
    transition: var(--tr);
}

.products-list .pic img,
/*首頁相同*/
.related_list li a img {
    transform: scale(1);
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    transition: var(--tr);
}

.products-list .item:hover img,
.related_list li:hover img {
    transition: var(--tr);
    transform: scale(1.05);
    /*filter: grayscale(1);
    -webkit-filter: grayscale(1);*/
}

/* 商品名稱 */
.products-list .name,
/*首頁相同*/
.related_list li a p {
    color: var(--f1-color);
    font-family: var(--font);
}

/* .products-list .item:hover .name,
.related_list li:hover p{
    color: var(--f2-color);
    transition: var(--tr);
} */

/* +++ 側邊 -------------------- */

/* 主分類區塊 */

.product-layer-two li.active {
    transition: var(--tr);
    background: transparent;
    /*保持透明*/
}

.product-layer-two li a {
    font-size: 14px;
    background: transparent;
    color: var(--f1-color);
    border: none;
    padding: .75rem 1rem;
    border-bottom: none;
}

.product-layer-two li:hover a,
.product-layer-two li.active a {
    font-weight: normal;
    /*蓋預設*/
    border: none;
    /*蓋預設*/
    color: var(--ac-color);
    transition: var(--tr);
}

.product-layer-two>li {
    padding-bottom: 0;
    border-bottom: 1px dotted var(--f3-color);
}

/* 展開+號 */
.product-layer-two li i {
    padding: 1rem;
    height: unset;
    transition: var(--tr);
}

/* 次分類 */
.product-layer-two li li a {
    background: transparent;
    /*蓋預設*/
    padding: 5px 1rem;
}

.product-layer-two li li {
    background: transparent;
}

/* 圖標 */
.product-layer-two li li>a:before {
    width: 8px;
    margin-left: 0px;
    transition: var(--tr);
}

/* 不偏移 */
.product-layer-two li li:hover {
    margin-left: 0px;
}

/* 次分類展開時 */
.product-layer-two li.active li a {
    color: var(--f1-color);
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 768px) {

    /*分類下拉欄*/
    .product_page .product_menu_list {
        border: 1px var(--f2-color) solid;
        padding: .75rem 1rem;
        border-radius: var(--br);
    }

    .product_page .product_menu_list>h5 {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: .4rem;
        margin: 0 .5rem;
        color: var(--f1-color);
    }

    .fa-caret-down::before {
        font-size: 14px;
        color: var(--f1-color);
    }

    .blog_page .fa-caret-down::before {
        display: none;
    }

    .product-layer-two {
        padding-top: 1rem;
    }

    .product-layer-two li a {
        padding: 1rem .5rem .5rem;
        width: 95%;
    }

    /* 顯示次分類三角形 */
    .product-layer-two li li>a:before {
        background: var(--f1-color);
    }
}


/* +++ 商品目錄頁 (product_page) -------------------- */

.products-list .price {
    margin: 0 0 10px;
    /*     display: none; */
}

/* 價格 */
.products-list .price b {
    color: var(--ac-color);
}

/* 詳細資料按鈕 */
.products-list .more {
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--f3-color);
    color: var(--f2-color);
    display: none;
}

.products-list .item a:hover .more {
    background: var(--f3-color);
}

/* +++ 首頁顯示 (prod_part) -------------------- */

/* 中文標 */
.i_prod_tit span {
    font: bold 24px/1.5rem var(--sfont);
    padding: 1rem 0;
    letter-spacing: 0.4rem;
}

/* 英文標 */
.i_prod_tit h2 {
    color: var(--ac-color);
    font: bold 48px/1.5rem var(--sfont);
    padding: 1rem 0;
}

/* +++ 商品頁 (product_info_page) -------------------- */

.product-wrapper {
    width: 100%;
    max-width: 900px;
}

/* 資訊區塊 ---------- */
.sidebarBtn{
    width: 100%;
    margin-top: 40px;
}


/* 輪播圖區塊 ---------- */
.product_main{
    width: 100%;
}

/* 打開手機版標題 */
.mobile_product_name {
    display: block;
    color: var(--f1-color);
    font-size: 20px;
    letter-spacing: .4rem;
    margin: 2.5rem 0;
    text-align: center;
}

/* 商品大圖區塊 */
.proImgSwiper {
    aspect-ratio: 4 / 3;
}

/* 隱藏小圖遮罩 */
#prod_thumbSwiper .swiper-slide::before{
    display: none;
}

/* TAB ---------- */

.prod_tabs {
    margin-top: 50px;
    width: 100%;
}

.pd_tabTitle li {
    border-bottom: none;
    background: var(--bg-color);
    border-bottom: 1px solid var(--f2-color);
    transition: all .5s;
}

.pd_tabTitle li a {
    color: var(--f2-color);
    letter-spacing: .6rem;
    transition: all .5s;
}

.pd_tabTitle li.activeTab {
    border-bottom: 1px solid var(--f1-color);
}

.pd_tabTitle li.activeTab a {
    color: var(--f1-color);
    font-weight: 600;
}

.pd_tabTitle li.activeTab::after {
    height: 0px;
}

/* 相關推薦 ---------- */
.prod_related {
    background: var(--sub3-color);
    padding: 40px 15px 25px;
}

.prod_related h6 span:before {
    font-size: 16px;
    letter-spacing: .6rem;
    color: var(--f1-color);
    font-weight: 600;
}

.related_list {
    gap: 8px;
}

.related_list li a{
    background: transparent;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {
    
}

@media screen and (max-width: 600px) {
    /*tab標題*/
    .pd_tabTitle li a {
        font-size: 12px;
    }
}
/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */
.product_info_page .edit {
    min-height: 200px;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ 購物車 ▲ =============== */

/* =============== ▼ 相簿管理 ▼ =============== */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
/*
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/* +++ 通用 -------------------- */

/* 副標 (該頁分類/相簿名稱) */
.subalbum-menu h2 {
    font-size: 18px;
    color: var(--f1-color);
    letter-spacing: .6rem;
}

/* 圖片 */
.show-list .show_pic,
.pic-list .show_pic {
    aspect-ratio: 1 / 1;
    border-radius: var(--br);
}

.show-list .show_pic img,
.pic-list .show_pic img {
    transform: scale(1);
    filter: saturate(1);
    -webkit-filter: saturate(1);
    transition: var(--tr);
}

.show-list .item:hover .show_pic img,
.pic-list .item:hover .show_pic img {
    transform: scale(1.05);
    filter: saturate(1.5);
    -webkit-filter: saturate(1.5);
}

/* 觀看更多 */
.other_album_choice li {
    background: var(--sub1-color);
    padding: 5px 20px;
    border-radius: 0;
    font-size: 13px;
}

/* +++ 分類總覽頁 (album_page) -------------------- */

/* 分類名稱 */
.show-list .show_name {
    color: var(--f1-color);
    letter-spacing: .6rem;
    text-align: center;
}

.show-list .item {
    margin-bottom: 30px;
}

.show-list .item .overlay {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.show-list .item:hover .show_name {
    color: var(--sub1-color);
}

/* +++ 相簿目錄頁 (album_class_page) -------------------- */

/* 相簿名稱 */
.other_subalbum li a p {
    color: var(--f1-color);
    letter-spacing: .6rem;
    text-align: center;
}

.other_subalbum li:hover a p {
    color: var(--sub1-color);
}

/* +++ 相片頁 (album_info_page) -------------------- */

/* 相簿描述 */
.album_descrip {
    color: var(--f2-color);
    letter-spacing: .15rem;
}

/* 相片描述 */
.pic-list .item h6 {
    color: var(--f1-color);
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {

    /*次分類*/
    .subalbum-menu {
        margin: 0;
    }

    .other_subalbum li a p {
        color: var(--bg-color);
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* +++ 布局 -------------------- */

/* +++ 分類總覽頁 (album_page) -------------------- */

/* +++ 相簿目錄頁 (album_class_page) -------------------- */

/* +++ 相片頁 (album_info_page) -------------------- */

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ 相簿管理 ▲ =============== */

/* =============== ▼ 文章管理 ▼ =============== */

/* ＝＝＝ 【【  預設區塊不動 ↓↓↓  】】 ＝＝＝ */

/*文章設定*/
/*一排呈現
.subbox_item { width:100%;}
*/

/* ＝＝＝ 【【  版型設定(基本) ↓↓↓  】】 ＝＝＝ */

/* +++ 通用 -------------------- */

/* 圖片 */
.blog_list_le,
.i_blog_le,
.news_related_list li figure {
    border-radius: var(--br);
    overflow: hidden;
}

.blog_list_le img,
.i_blog_le img,
.news_related_list li a img {
    transform: scale(1);
    filter: saturate(1);
    -webkit-filter: saturate(1);
    transition: var(--tr);
}

.subbox_item:hover img,
.module_i_news li:hover img,
.news_related_list li:hover img {
    transition: var(--tr);
    transform: scale(1.05);
    filter: saturate(1.5);
    -webkit-filter: saturate(1.5);
}

/* 文章標題 */
.blog_list_ri h5,
.i_blog_ri h5,
.news_related_list li a p {
    color: var(--f1-color);
}

.subbox_item:hover h5,
.module_i_news li:hover h5,
.news_related_list li:hover p {
    color: var(--ac-color);
    transition: var(--tr);
}

/* 文章簡述 */
.subbox_item:hover p,
.module_i_news li:hover p {
    color: var(--f1-color);
    transition: var(--tr);
}


/* +++ 側邊欄 -------------------- */

.blog_le {
    padding: 0 7px;
}

/* 文章文字區塊 ---------- */
h5.blog_le_t {
    text-align: center;
    margin-bottom: 0;
}

/* 隱藏-文章文字 */
h5.blog_le_t em,
h5.blog_le_t span {
    display: none;
}

/* 搜尋欄位 */
.blog_search input[type=search] {
    border-radius: 4px;
    background-color: transparent;
    border: solid 1px var(--f3-color) !important;
}

.blog_search input[type=submit] {
    color: var(--f1-color);
    border-left: 1px solid var(--f3-color) !important;
    height: 100%;
    background: url(../images/search-icon.png) no-repeat 9px center;
}

/* 分類區塊外框 ---------- */
.blog_le .accordion {
    border-radius: var(--br);
    border: 1px var(--f2-color) solid;
}

/* 主分類分隔線 */
.accordion li+li .link {
    border-top: 1px var(--f2-color) solid;
}

/* 主分類文字 */
.accordion li .link a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .4rem;
    text-align: center;
    color: var(--f1-color)
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    color: var(--bg-color) !important;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: var(--f2-color) !important;
    transition: var(--tr);
}

/* 下拉符號 */
.blog_le .accordion li .link i {
    color: var(--f1-color);
}

/* 次分類 */
.submenu {
    background: var(--sub3-color);
}

/* 文字 */
.submenu a {
    color: var(--f1-color);
    padding: 15px 15px 15px 50px;
}

.submenu li.on_this_category a,
.submenu a:hover {
    color: var(--f1-color);
    background: var(--f2-color) !important;
    transition: var(--tr);
}

/* 次分類圖標 */
.submenu a i {
    left: 20px;
}

/* 次分類分隔線 */
.submenu li+li {
    border-top: 1px var(--f2-color) solid;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 768px) {
    .blog_le {
        padding: 0;
    }
}

/* +++ 目錄頁 (blog_page) -------------------- */

/*隱藏-分類副標*/
.blog_page h4.blog_category_title {
    display: none;
}

/* 卡片布局 */
.blog_subbox {
    grid-template-columns: 1fr;
    grid-gap: 0px;
}

.subbox_item {
    padding: 20px 0;
/*     border-bottom: 1px var(--f3-color) solid; */
}

.subbox_item a {
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 40px;
}

.module_i_news li a:before,
.subbox_item a:before {
    content: 'READ MORE +';
    font-size: 12px;
    padding: 5px 20px;
    color: var(--ac-color);
    font-family: var(--sfont);
}

/* 隱藏-原遮罩 */
.subbox_item a:after {
    display: none;
}

/* 文字區塊 ---------- */

/* 隱藏-時間 */
.blog_list_ri em,
.i_blog_ri em {
    font-size: 12px;
    color: var(--f2-color);
    border-bottom: 1px var(--f3-color) solid;
    color: transparent;
}

/* 簡述 */
.blog_list_ri p,
.i_blog_ri p {
    font-weight: 400;
    letter-spacing: .2rem;
    line-height: 180%;
    font-size: 12px;
    margin-top: 20px;
    color: var(--f2-color);
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 960px) {
    .subbox_item {
        border-bottom: 1px var(--f3-color) solid;
        /*蓋預設*/
    }

    .subbox_item a {
        grid-template-columns: 200px 1fr;
        gap: 20px;
    }

    .subbox_item a:before {
        padding: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .subbox_item a {
        grid-template-columns: 150px 1fr;
        align-items: start;
    }

    .blog_list_ri {
        padding: 0;
    }

    .blog_list_ri h5 {
        font-size: 16px;
    }
}

@media screen and (max-width: 425px) {
    .subbox_item a {
        grid-template-columns: 1fr;
    }

    .subbox_item a:before {
        display: none;
    }
}

/* +++ 文章首頁顯示 (module_i_news) -------------------- */

/* 英文標 */
.module_i_news .title_i_box h6 {
    color: var(--ac-color);
    font: bold 48px/1.5rem var(--sfont);
}

/* 中文標 */
.module_i_news .title_i_box h4 {
    color: var(--ac-color);
    font: bold 24px/1.5rem var(--sfont);
    padding: 1rem 0;
    letter-spacing: 0.4rem;
}

/* 隱藏-原遮罩 */
.module_i_news li a:after {
    display: none;
}

/* 文字區塊 ---------- */
.i_blog_ri {
    padding: 2rem 1rem;
}

.module_i_news li a:before {
    bottom: 0px;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 768px) {

    .module_i_news ul {
        grid-gap: 30px 20px;
    }

    .i_blog_ri {
        padding: .5rem;
    }

    .module_i_news li {
        border-bottom: 1px var(--f2-color) dotted;
    }
}

/* +++ 文章頁 (blog_in_page) -------------------- */

/* 標題 */
h4.blog_category_title {
    padding: 0;
    font-size: 20px;
    letter-spacing: .4rem;
    margin-bottom: 0;
    color: var(--f1-color);
}

.blog_shareData {
    border-bottom: 1px solid var(--f3-color);
    padding-bottom: 10px;
}


/* 分享到文字 */
.toShareNews b {
    font-size: 12px;
    font-weight: 400;
    color: var(--f1-color);
}

/* sns icon */
.toShareNews a object {
    max-width: 20px;
}


/*文章按鈕 ----------*/

/*按鈕上下留白*/
.blog_back {
    margin: 3rem 0 1rem auto;
    width: calc(100% - 220px - 30px);
    border-top: 1px solid var(--f3-color);
    padding-top: 1rem;
}

.blog_back a.article_btn_prev,
.blog_back a.article_btn_back,
.blog_back a.article_btn_next {
    font: normal 16px/1.5 var(--font);
    letter-spacing: .15rem;
    background: transparent;
    color: var(--f1-color);
    transition: var(--tr);
}

.blog_back a.article_btn_prev:hover,
.blog_back a.article_btn_back:hover,
.blog_back a.article_btn_next:hover {
    background: transparent;
    color: var(--ac-color);
}

.blog_back a.article_btn_prev {
    text-align: left;
}

.blog_back a.article_btn_prev:before {
    content: '<<';
    display: inline-block;
    padding-right: .5rem;
}

.blog_back a.article_btn_next {
    text-align: right;
}

.blog_back a.article_btn_next:after {
    content: '>>';
    display: inline-block;
    padding-left: .5rem;
}


/* 相關文章 ---------- */

.news_related {
    background: var(--sub3-color);
    padding: 40px 15px 25px;
}

/* "相關文章"文字 */
.news_related h6 span:before {
    font-size: 18px;
    letter-spacing: .6rem;
    color: var(--f1-color);
}

/* 文章卡片 */
.news_related_list li a {
    background: transparent;
}

/* 上一頁(同商品) */
.lastPage {
    color: var(--bg-color);
    margin: 1rem auto;
    border-radius: var(--br);
    background: var(--ac-color);
}

.lastPage:hover {
    transition: var(--tr);
    filter:invert(100%);
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

@media screen and (max-width: 960px) {
    .blog_back {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {

    .blog_le,
    .blog_ri {
        margin-bottom: 50px;
    }

    .blog_back a.article_btn_prev,
    .blog_back a.article_btn_next,
    .blog_back a.article_btn_back {
        font-size: 12px;
    }

    .lastPage {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    .blog_back {
        display: flex;
        justify-content: space-evenly;
    }

    .blog_back a {
        padding: .5rem;
        font-size: 12px;
    }

    .blog_back a.article_btn_prev,
    .blog_back a.article_btn_back,
    .blog_back a.article_btn_next {
        font-size: 12px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* +++ 布局 -------------------- */

/* +++ 側邊欄 -------------------- */

/* +++ 目錄頁 (blog_page) -------------------- */

/* +++ 文章頁 (blog_in_page) -------------------- */

/* 隱藏-文章縮圖 */
/*
.articel_mainPic {
    display: none;
}

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ 文章管理 ▲ =============== */

/* =============== ▼ 聯絡我們 ▼ =============== */
/* ＝＝＝ 【【  xx 無預設區塊 xx  】】 ＝＝＝ */
/* ＝＝＝ 【【  版型設定(左右) ↓↓↓  】】 ＝＝＝ */
/*標題*/
.blank_letter {
    font: 500 20px/1.5 var(--font);
    color: var(--f1-color);
    letter-spacing: .6rem;
    padding-top: 0;
}

/* 必填 */
.red {
    letter-spacing: .15rem;
}

/* 資訊區塊 ---------- */

/* 內容 */
.list_before.info li {
    border-bottom: 1px solid var(--f3-color);
    padding: 5px;
    padding-left: 70px;
    /* >項目文字寬度*/
}

/* 項目 */
.list_before.info li:before {
    font-weight: 400;
    letter-spacing: .4rem;
    width: 60px;
}

/*表單區塊 ---------- */
.contact_content .information_right {
    width: calc(100% - 295px - 30px);
    /*100%-資訊區塊寬度-*/
}

/*表格設定*/
button,
input,
optgroup,
select,
textarea {
    outline: none;
}

.contact_form {
    color: var(--f1-color);
    grid-gap: 25px;
}

.contact_form li {
    grid-template-columns: 1fr;
}

.contact_form li .form__label {
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    border: none;
    background: var(--f3-color);
}

/* 按鈕 ---------- */
.contact_form li.last blockquote,
.contact_form li.last cite {
    border: 1px solid var(--ac-color);
    border-radius: 4px;
}

.contact_form li.last blockquote:hover,
.contact_form li.last cite:hover {
    filter: grayscale(1);
    transition: var(--tr);
}

/* 重新填寫 */
.contact_form li.last blockquote {
    color: var(--ac-color);
}

/* 送出 */
.contact_form li.last cite {
    background: var(--ac-color);
}

.contact_form li.last blockquote:hover input,
.contact_form li.last cite:hover input {
    letter-spacing: 4px;
}

.noborder {
    padding: 10px;
    border-radius: 4px;
}

.contact_form li:has(input[type=checkbox]) .form__insert,
.contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: repeat(auto-fit, minmax(20px, 20px) minmax(200px, 1fr));
    line-height: 1.8;
}

.form select {
    width: 100%;
    border: 1px solid var(--f1-color);
    padding: 6px 26px 6px 6px;
}


/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */
@media screen and (max-width: 768px) {

    /*左側資訊*/
    .list_before.info {
        margin: 0;
    }

    .list_before.info li,
    .list_before.info li:before {
        font-size: 12px;
    }

    /*表單設定*/
    .contact_content .information_right {
        width: 100%;
        margin-top: 50px;
    }

    .contact_form li {
        gap: 5px;
    }

    .form select {
        margin: 0;
    }

    .contact_form li.last blockquote,
    .contact_form li.last cite {
        padding: 0;
    }

    .contact_form li.last input {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    .contact_form {
        margin-top: 20px;
    }

    .contact_form li .form__label {
        font-weight: 500;
        background: transparent;
        padding: 0;
    }

    .contact_form li:has(input[type=checkbox]) .form__insert,
    .contact_form li:has(input[type=radio]) .form__insert {
        font-size: 12px;
    }

    .form select {
        font-size: 12px;
    }

    .blank_letter {
        font-size: 16px;
        font-weight: 600;
    }

    .noborder {
        padding: 5px;
    }
}

/* ＝＝＝ 【【  客製更動處 ↓↓↓  】】 ＝＝＝ */

/* RWD ↓↓↓ ~~~~~~~~~~~~~~~ */

/* =============== ▲ 聯絡我們 ▲ =============== */


/* =============== ▼ 下拉選單 ▼ =============== */

/* 隱藏預設 */
.other_select_page .page,
.other_select_page .promotion_title h2,
.other_select_page .pmtTitle span,
.other_select_page .other_promotion li a:before,
.other_select_page .other_promotion li a:after{
    display: none;
}

/* 布局調整 */
.other_select_page .main_part{
    display: flex;
    flex-direction: column;
}

.other_select_page .show_content{
    order: 2;
}

/* 類 tab */
.other_select_page .other_promotion{
    max-width: 1200px;
    width: 80%;
    grid-template-columns: repeat(3,1fr);
    order: 1;
    border-bottom: 1px solid var(--f3-color);
}

.other_select_page .other_promotion li a{
    border: none;
    border-bottom: 2px solid transparent;
}

.other_select_page .other_promotion li a:hover,
.other_select_page .other_promotion>li.on_this_category a{
    background: transparent;
    border-bottom: 2px solid var(--f1-color);
    transition: var(--tr);
}

.other_select_page .other_promotion .pmtTitle h3{
    text-align: center;
    margin: 0;
    color: var(--f3-color);
    font-family: "Dela Gothic One", sans-serif;
    font-size: 24px;
}

.other_select_page .other_promotion li a:hover h3{
    color: var(--f1-color);
}

/* =============== ▲ 下拉選單 ▲ =============== */
