@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
.stellarnav>ul>li:first-of-type,
.footer_menu a:nth-of-type(2) {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.navigation {
    display: flex;
}

.main_header_area {
    position: relative;
}

.main_header_area:before {
    position: absolute;
    content: '';
    background: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent);
    opacity: 1;
    width: 100%;
    height: 100%;
    transition: ease .3s;
}

.sticky .main_header_area:before {
    opacity: 0;
}

.header_area.sticky {
    background: rgba(105, 200, 205, .9);
}

.header_area {
    background: transparent;
    position: fixed;
    padding: 0;
    transition: ease .3s;
}

.nav-brand img {
    filter: brightness(10) drop-shadow(2px 4px 4px black);
    transition: ease .3s;
}

.sticky .nav-brand img {
    filter: brightness(10);
}

.tp_links {
    display: none;
}

.me_tp_features {
    position: absolute;
    right: 0;
    top: 8px;
    z-index: 9999;
}

.me_tp_features a {
    color: #fff;
}

.main_header_area .container {
    max-width: 1400px;
    padding: 0 2%;
}

.stellarnav>ul {
    font-family: 'Noto Serif TC', serif;
    margin-top: 41px;
}

.stellarnav li.has-sub>a:after {
    content: none;
}

.stellarnav>ul>li>a,
.stellarnav>ul>li.has-sub>a:not(.dd-toggle) {
    padding: 0 2px;
    line-height: 88px;
    height: 100%;
    color: #fff;
    display: block;
    font-weight: 500;
    margin: 0 18px;
    letter-spacing: .5px;
    text-shadow: 0 0 8px black;
    transition: all ease 0.3s;
}

.sticky .stellarnav>ul>li>a,
.sticky .stellarnav>ul>li.has-sub>a:not(.dd-toggle) {
    text-shadow: none;
}

.stellarnav>ul>li:last-of-type>a {
    margin-right: 0;
}

.stellarnav>ul>li>a:hover,
.stellarnav>ul>li.has-sub:hover>a:not(.dd-toggle) {
    font-weight: bold;
}

.sticky .stellarnav>ul>li>a:hover,
.sticky .stellarnav>ul>li.has-sub:hover>a:not(.dd-toggle) {
    color: #004e54;
}

.nav-header {
    max-width: fit-content;
    padding: 10px 0 12px;
}

.nav-brand,
.nav-brand img {
    width: 160px;
    display: block;
    transition: all ease 0.3s;
}

.sticky .nav-brand,
.sticky .nav-brand img {
    width: 90px;
}

.swiper-pagination {
    display: none;
}

.swiper-banner .swiper-slide img {
    width: 100%;
}

/*次分類*/
.stellarnav ul ul {
    background: transparent;
    animation: navi 0.3s;
}

@keyframes navi {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.stellarnav li li {
    background: rgb(105, 200, 205);
    border: none;
    border-bottom: 1px solid #ffffff7F;
    margin-bottom: 0;
    transition: all ease .3s;
}

.stellarnav li li:hover {
    background: #4fbaba;
}

.stellarnav li li:last-of-type {
    border: none;
}

.stellarnav li li a:not(.dd-toggle),
.stellarnav li li.has-sub>a:not(.dd-toggle) {
    color: #fff;
    padding: 14px 18px;
    font-weight: 500;
    line-height: initial;
    height: auto;
    margin: 0;
    position: relative;
}



/* 商品下拉超過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: #efefef;
    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 #898989;
    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 #ccc;*/
    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: #fff;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.product-layer-two>li ul>li+li {
    margin-top: 5px;
}

.product_info_page .product_menu_list {
    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: #ad925e;
}

.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;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 980px) {}

@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));
        grid-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 {
        display: none;
    }
}

@media screen and (max-width: 600px) {}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}

#content,
.blank_letter {
    font-family: 'Noto Serif TC', serif;
}

.main_part {
    width: 90%;
    padding: 50px 0;
}

body:before {
    content: ' ';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/vmomseafood/bgbg.jpg) center / cover no-repeat;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    aspect-ratio: 10 / 3;
    position: relative;
    overflow: hidden;
    background: url(https://pic03.eapple.com.tw/vmomseafood/banner.jpg) center/cover no-repeat;
}

.banner h5 {
    font-size: 42px;
    font-family: "Noto Serif TC", serif;
    letter-spacing: 6px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    width: 100%;
    text-align: center;
    text-shadow: 0 0 10px black;
    filter: drop-shadow(2px 4px 10px black);
    position: absolute;
    top: calc(50% + 30px);
    transform: translateY(-50%);
}

.banner h5:before {
    content: "";
    max-width: 60px;
    width: 100%;
    height: 4px;
    background: #69c8cd;
    display: block;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: calc(50% + 84px);
    transform: translate(-50%, -50%);
}

.banner h5:after {
    content: "V Mom Seafood";
    font-family: 'Cormorant Infant', serif;
    font-size: 28px;
    font-weight: bold;
    display: block;
    letter-spacing: 2px;
}

.banB {
    background: url(https://pic03.eapple.com.tw/vmomseafood/banner_4.jpg) center / cover no-repeat;
}

.banblog {
    background: url(https://pic03.eapple.com.tw/vmomseafood/banner_5.jpg) center / cover no-repeat;
}

.banC {
    background: url(https://pic03.eapple.com.tw/vmomseafood/banner_6.jpg) center / cover no-repeat;
}

.other_select_page .banner {
    background: url(https://pic03.eapple.com.tw/vmomseafood/banner_2.jpg) center / cover no-repeat;
}

/*下拉*/
.other_select_page .promotion_title,
.other_select_page .other_promotion,
.other_select_page ul.page {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*詢價車*/
.products-list .more {
    display: none;
}

.products-list .price {
    margin: 0;
}

.products-list .price .sp_price {
    color: red;
}

.products-list .price b {
    color: #007c7f;
    text-align: center !important;
}

.products-list .pic:after {
    content: "+";
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    line-height: 30px;
    z-index: 9;
    text-align: center;
    border-radius: 100%;
    color: #FFF;
    border: 2px #FFFFFF solid;
    opacity: 0;
    transition: .35s;
}

.products-list .item a:hover .pic:after {
    opacity: 1;
}

.products-list .name {
    color: black;
    letter-spacing: 2px;
    line-height: 1;
    -webkit-line-clamp: 1;
    height: auto;
    text-align: center;
    font-weight: 500;
    font-size: 17px;
    margin: 14px 0 7px;
    word-break: break-all;
}

.products-list {
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.products-list .item a {
    padding-bottom: 0;
}

.products-list .pic {
    height: auto;
    border-radius: 30px;
}

.products-list .pic img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.products-list .item:hover .pic img {
    transform: scale(1.1);
    filter: brightness(.5);
}

.product-layer-two li a,
.product-layer-two li.active a {
    border: none;
    background: transparent;
}

.product-layer-two>li {
    padding-bottom: 0;
}

.product-layer-two li a {
    padding: 12px 16px;
}

.product-layer-two li i {
    top: 7px;
}

.product-layer-two li li a {
    padding: 6px 10px 6px 17px;
    transition: .35s;
}

.product-layer-two li li:hover a {
    padding: 6px 10px 6px 40px;
}

.product-layer-two li li>a:before {
    left: 0;
    margin-left: 0;
    transition: .35s;
}

.product-layer-two li li:hover>a:before {
    left: 17px;
}

.product-layer-two li li:hover {
    margin-left: 0;
}

.product-layer-two li li:hover>a:before {
    background: #c1a571;
}

.product-layer-two li li:hover>a {
    color: #c1a571;
}

.product-layer-two li li a {
    color: #333;
}

/*內頁*/
.prod_related {
    padding: 48px 0;
    background: rgba(0, 0, 0, .02);
}

.related_list {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1280px;
    width: 90%;
}

.pd_tabInner.edit {
    font-size: 16px;
    color: #333;
    line-height: 170%;
}

.pd_tabTitle li.activeTab::after {
    height: 2px;
}

.prod_related h6 span:before {
    color: #666;
}

.related_list li a p {
    margin-top: 4px;
}

.pd_tabTitle li.activeTab a {
    font-size: 18px;
    font-weight: 500;
}

.pd_tabInner_contain {
    padding-top: 0;
}

.product-layer-two li li.active a {
    background: #69c8cd;
    color: #fff;
}

.product-layer-two li li.active:hover a {
    background: #fff;
    color: #333;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
.blog_page h4.blog_category_title {
    display: none;
}

.blog_box {
    margin-top: 20px;
}

.blog_le {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 60px;
}

.blog_le,
.blog_ri {
    margin-bottom: 1vw;
}

.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}

.blog_subbox:before {
    content: none;
}

.subbox_item {
    width: 100%;
    margin: 0;
    box-shadow: 0 0 10px #0000000c;
    background: white;
    border-bottom: none;
}

.subbox_item:hover {
    transform: translateY(-6px);
}

.subbox_item a {
    display: flex;
    flex-flow: row wrap;
    gap: 0;
}

.blog_list_le {
    width: 260px;
    padding: 0;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.blog_list_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog_list_ri {
    display: flex;
    flex-flow: column wrap;
    padding: 44px 36px 44px 44px;
    width: calc(100% - 275px);
    position: relative;
    justify-content: center;
}

.blog_list_ri h5 {
    font-weight: bold;
}

.blog_list_ri em {
    order: 1;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.blog_list_ri p {
    line-height: 165%;
    margin: 16px 0 20px;
    -webkit-line-clamp: 2;
    letter-spacing: 0.5px;
}

.blog_list_ri em:after {
    content: '＋ 繼續閱讀';
    letter-spacing: 0.4px;
    color: #c1a571;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
}

.subbox_item a:before,
.subbox_item a:after {
    content: none;
}

h5.blog_le_t {
    display: none;
}

.blog_le .accordion {
    border-radius: 0;
}

.accordion li .link a {
    color: #444;
    font-weight: 400;
    font-size: 15px;
    padding: 12px;
}

.accordion li .link {
    border-bottom: none;
}

.accordion li {
    transition: all 0.2s ease;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.open:hover,
.blog_le .accordion>li.on_this_category:hover {
    background: #c1a571 !important;
}

.blog_le .accordion>li.open,
.blog_le .accordion>li.on_this_category {
    background: #d3af79 !important;
}

.blog_le .accordion>li.open .link a,
.blog_le .accordion>li.open .link i {
    color: #fff !important;
}

.submenu {
    background: #fff;
    font-size: 14px;
}

.submenu a {
    font-family: 'Noto Serif TC', serif;
    color: #444;
    letter-spacing: 0px;
    font-weight: 400;
    padding: 12px 12px 12px 36px;
    border-left: #fff 0 solid;
    transition: all .15s;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #fcf9f4;
    color: #000;
}

.submenu a i {
    left: 12px;
    font-weight: var(--fa-style, 900);
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
}

.submenu a:hover {
    border-left: #fcf9f4 4px solid;
}

.blog_search input[type=search] {
    background: #fff;
    font-size: 13px;
    border-radius: 0;
    padding: 12px 36px 12px 12px;
}

.blog_search input[type=submit] {
    filter: grayscale(20);
}

.blog_le .accordion li .link i {
    transition: none;
}

/*內頁*/
.articel_mainPic,
.blog_shareData {
    display: none;
}

h4.blog_category_title {
    padding: 0;
    margin-bottom: 0;
    font-size: 26px;
    color: #007c7f;
}

.blog_box_edit {
    color: #444;
    font-size: 16px;
}

.blog_box_edit * {
    line-height: 170%;
}

.blog_back {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
    font-weight: 500 !important;
}

.blog_back a:hover {
    background: #c1a571 !important;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: #d3af79;
    transition: all .3s ease;
}

.news_related {
    padding: 48px 0;
    background: rgba(0, 0, 0, .02);
}

.news_related_list {
    max-width: 1280px;
    width: 90%;
}

.lastPage {
    background: #007c7f;
    margin: 40px auto 20px;
}

.news_related h6 span:before {
    color: #666;
}

.news_related_list li a p {
    margin-top: 4px;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡*/
.blank_letter {
    padding-top: 10px;
}

.information_right .blank_letter {
    display: flex;
    justify-content: space-between;
}

.contact_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 20px;
}

.contact_form li:nth-of-type(-n+4),
.contact_form li:nth-last-of-type(-n+2) {
    width: calc(50% - 10px);
}

.contact_form li.last {
    margin-top: auto;
    margin-bottom: 0;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    background: #fff;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #ddd;
}

.contact_form li {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 0;
    border-bottom: none;
    color: #444;
    grid-gap: 8px;
}

.contact_form li .form__label {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    text-align: left;
    max-width: 100%;
    font-weight: normal;
    padding: 0;
    background: none;
}

.star {
    order: 1;
    height: 18px;
}

.contact_content>form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.contact_content .information_left {
    width: 320px;
}

.contact_content .information_right {
    width: calc(100% - 335px);
    padding-left: 60px;
}

.contact_form li .form__insert {
    line-height: 165%;
}

.contact_le_nomap {
    height: 270px;
}

.list_before.info li {
    padding-left: 80px !important;
}

.list_before.info li:before {
    width: 66px !important;
}

.info_LINE:before {
    content: "官方 LINE";
}

.info_TAXID {
    display: none;
}

/*footer*/
.footer_info li p.line:before {
    content: '官方LINE：';
}

.footer_info li p.taxid,
.footer_menu a:first-of-type {
    display: none;
}

.footer_info li p>a {
    pointer-events: none;
}


.footer_logo {
    width: 120px;
    filter: brightness(10);
}

.footer_logo img {
    max-width: 100%;
    display: block;
}

.footer {
    padding-top: 20px;
    background: rgb(105, 200, 205);
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

.footer .center {
    max-width: 1016px;
    width: 90%;
}

.footer_info {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.footer_info ul {
    width: calc(100% - 240px);
    letter-spacing: 0;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-flow: row wrap;
}

.footer_info li p {
    width: 49%;
    letter-spacing: 0;
}

.footer_info li p,
.footer_info li a {
    color: rgba(255, 255, 255, .85);
}

.footer_menu a:hover {
    background: none;
    color: #FFF;
    font-weight: bold;
}

.footer_menu a {
    border: none;
    background: transparent;
    padding: 0 16px;
    margin: 0;
    border-right: 1px rgba(255, 255, 255, .25) solid;
    transition: all .25s;
}

.footer_menu a:nth-of-type(3) {
    padding-left: 0;
}

.footer_menu a:last-of-type {
    border-right: none;
}

.copy {
    border-top: none;
    padding: 0 0 32px;
    margin-top: 6px;
}

.copy,
.copy a,
.copy a:hover {
    color: #004e54;
}

.box_link {
    display: none;
}

@media screen and (max-width: 1360px) {
    .products-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .header_area {
        background: rgba(105, 200, 205, .9);
        position: relative;
    }

    .main_header_area:before {
        content: none;
    }

    .nav-brand img {
        filter: brightness(10);
    }

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a:not(.dd-toggle) {
        text-shadow: none;
        line-height: 60px;
        margin: 0 12px;
    }

    .me_tp_features {
        display: none;
    }

    .stellarnav>ul {
        margin-top: 0;
    }

    .nav-brand,
    .nav-brand img {
        width: 80px;
    }

    .header_area.sticky {
        position: sticky;
    }

    .footer_info {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer_info ul {
        width: 100%;
    }

    .footer_menu {
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(76px, 100%), auto));
        gap: 18px 12px;
    }

    .footer_menu a {
        padding: 0;
        border-right: none;
    }

    .footer_info li {
        padding-left: 0;
        padding-right: 0;
    }

    .copy {
        text-align: left;
        padding: 0 5% 36px;
    }

    .main_header_area .container {
        padding: 0;
    }

    .contact_form li:nth-of-type(-n+4),
    .contact_form li:nth-last-of-type(-n+2) {
        width: 100%;
    }

    .subbox_item a {
        flex-direction: column;
    }

    .blog_list_le,
    .blog_list_ri {
        width: 100%;
    }

    .blog_list_ri {
        width: 100%;
        padding: 24px;
    }

    .banner h5 {
        font-size: 30px;
        line-height: 1.4;
    }

    .banner h5:after {
        font-size: 18px;
    }

    .banner h5 {
        top: calc(50% - 4px);
        letter-spacing: 4px;
    }

    .banner h5:before {
        top: calc(50% + 48px);
        max-width: 36px;
    }

    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-list .pic {
        border-radius: 15px;
    }

    .products-list .name {
        margin: 12px 0 4px;
    }
}

@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {}

    .footer.with_shopping_mode {
        padding: 30px 0 54px;
    }

    #to_top {
        bottom: 72px;
    }

    .stellarnav .menu-toggle {
        padding: 0;
    }

    .stellarnav.mobile {
        left: 10px;
        top: 14px;
    }

    .footer_info li p {
        width: 100%;
    }

    .stellarnav .menu-toggle:after {
        color: #fff;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .stellarnav.mobile>ul {
        border-top: none;
        background: rgb(105, 200, 205);
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #42a8a5;
    }

    .stellarnav a {
        color: #fff;
    }

    .stellarnav .icon-close:before,
    .stellarnav .icon-close:after {
        border-color: #fff;
    }

    .stellarnav.mobile.left>ul {
        border-right: none;
        box-shadow: 0 0 20px rgba(0, 0, 0, .25);
    }

    .stellarnav ul ul {
        animation: none;
    }

    .stellarnav>ul>li {
        height: auto;
    }

    .stellarnav li li a:not(.dd-toggle),
    .stellarnav li li.has-sub>a:not(.dd-toggle),
    .stellarnav li li.has-sub:hover li a:not(.dd-toggle) {
        padding: 10px 18px;
    }

    .stellarnav li li,
    .stellarnav li li:hover {
        background: rgb(105, 200, 205);
    }

    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after {
        border-color: #fff;
    }

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a:not(.dd-toggle),
    .stellarnav.mobile>ul>li>a {
        padding: 10px 44px 10px 10px;
        border-bottom: none;
        line-height: 150% !important;
        margin: 4px 8px;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 3px;
    }

    .stellarnav.mobile>ul>li.open>a.dd-toggle {
        margin-top: 14px;
    }

    .stellarnav.mobile>ul>li {
        border-color: rgba(255, 255, 255, .25);
    }

    .stellarnav.mobile li.open {
        background: #4fbaba;
    }

    .stellarnav li li {
        border-bottom: none;
    }

    .stellarnav.mobile li li:last-of-type a {
        border-bottom: none;
    }

    .sticky .stellarnav>ul>li>a:hover,
    .sticky .stellarnav>ul>li.has-sub:hover>a:not(.dd-toggle) {
        color: #fff;
    }

    .contact_content .information_right,
    .contact_content .information_left {
        width: 100%;
        padding: 0;
    }

    .contact_content {
        padding: 0;
    }

    .list_before.account {
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .information_right .blank_letter {
        padding-top: 50px;
    }

    .contact_form {
        margin-bottom: 0;
    }

    .blog_ri,
    .blog_box {
        padding: 0;
    }

    .blog_search {
        margin-bottom: 20px;
    }

    .blog_list_ri p {
        margin: 12px 0 16px;
    }

    h4.blog_category_title {
        font-size: 22px;
    }

    .related_list {
        grid-gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile_product_name {
        text-align: center;
    }

    .contact_form li.last {
        justify-content: flex-end;
    }
}