

/* 41 css */
:root {
    --og: #ff723a;
    --hog: #eb952f;
    --dog: #DD4B12;
}
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC&display=swap");

body::-webkit-scrollbar {
    display: none;
}

body, h1, h2, h3, h4, h5, h6, p, a, li, span {
    font-family: 'Noto Sans TC','微軟正黑體' !important;
    color: #333333;
    font-weight: 400;
}

*, body, htnl {
    margin: 0;
    font-family:'Noto Sans TC', "微軟正黑體", Arial, sans-serif, "新細明體", Microsoft JhengHei, jaf-bernino-sans, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 400;
}

a:hover {
    text-decoration: none;
    color: #D36027;
}

.ver-item{
    display: flex;
    align-items: center;
    height: 100%;
}

.center-item{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.img-item {
    position: relative;
    overflow: hidden;
}

.img-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*-- 下拉選單 ↓ --*/
.select {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 325px;
    color: #666666;
    vertical-align: middle;
    text-align: left;
    user-select: none;
    -webkit-touch-callout: none;
}
.select .placeholder {
    position: relative;
    display: block;
    border: 1px solid #ddd;
    background-color: #ffffff;
    z-index: 1;
    padding: 10px;
    border-radius: 2px;
    cursor: pointer;
}
.select .placeholder:hover {
    background: #f1f1f1;
}
.select .placeholder:after {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    content: '\f078';
    z-index: 10;
}
.select.is-open .placeholder:after {
    content: '\f077';
}
.select.is-open ul {
    display: block;
}
.select.select--white .placeholder {
    background: #fff;
    color: #999;
}
.select.select--white .placeholder:hover {
    background: #fafafa;
}
.select ul {
    display: none;
    position: absolute;
    overflow: hidden;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 5px 0 0 0;
    padding: 0;
    z-index: 100;
    border: 1px solid #ccc;
    box-shadow:0px 0px 10px #00000020;
}
.select ul li {
    display: block;
    text-align: left;
    padding: 0.8em 1em 0.8em 1em;
    color: #999;
    cursor: pointer;
}
.select ul li:hover {
    background: #ddd;
    color: #999;
}

/*-- 下拉選單 ↑ --*/
/*select*/
.mo-select .select {
    position: relative;
    display: block;
    margin: 20px auto;
    width: 100%;
    color: #333333;
    vertical-align: middle;
    text-align: left;
    user-select: none;
    -webkit-touch-callout: none;
}
.mo-select .select .placeholder {
    position: relative;
    display: block;
    background-color: #ffffff;
    border:1px solid #ccc;
    z-index: 1;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}
.mo-select .select .placeholder:hover {
    background: #eee;
}
.mo-select .select .placeholder:after {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    content: '\f078';
    z-index: 10;
}
.mo-select .select.is-open .placeholder:after {
    content: '\f077';
}
.mo-select .select.is-open ul {
    display: block;
}
.mo-select .select.select--white .placeholder {
    background: #fff;
    color: #999;
}
.mo-select .select.select--white .placeholder:hover {
    background: #fafafa;
}
.mo-select .select ul {
    display: none;
    position: absolute;
    overflow: hidden;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 5px 0 0 0;
    padding: 0;
    z-index: 100;
}
.mo-select .select ul li {
    display: block;
    text-align: left;
    padding: 8px 16px;
    color: #999;
    cursor: pointer;
}
.mo-select .select ul li:hover {
    background: #4ebbf0;
    color: #fff;
}
/*select*/

body {
    background-color: #ffffff;
    overflow-x: hidden;
}

.margin-auto{
    margin: auto;
}

.col-md-20{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px){
    .col-md-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

p{
    color: #333333;
    font-size: 15px;
    letter-spacing: 0.1rem;
    line-height: 1.5;
}

@media (max-width: 768px){
    p{
        font-size: 13px;
    }
}

a{
    letter-spacing: 0.1rem;
    line-height: 1.5;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

.txt-14{
    font-size: 14px;
}

.txt-16{
    font-size: 16px;
}

.txt-18{
    font-size: 18px;
}

.txt-20{
    font-size: 20px;
}

.txt-24{
    font-size: 24px;
}

.txt-28{
    font-size: 28px;
}

.txt-32{
    font-size: 32px;
}


.txt-36{
    font-size: 36px;
}

.txt-45{
    font-size: 45px;
}

.txt-56{
    font-size: 56px;
}


@media(max-width: 768px){
    .txt-14{
        font-size: 12px;
    }

    .txt-16{
        font-size: 14px;
    }

    .txt-18{
        font-size: 16px;
    }

    .txt-20{
        font-size: 18px;
    }

    .txt-24{
        font-size: 20px;
    }

    .txt-28{
        font-size: 24px;
    }

    .txt-32{
        font-size: 28px;
    }

    .txt-36{
        font-size: 32px;
    }

    .txt-45{
        font-size: 40px;
    }

    .txt-56{
        font-size: 36px;
    }

}

.text-gray66{
    color: #666666;
}

.text-gray87{
    color: #878787;
}

.text-blue1{
    color: #d15d44;
}

.text-darkblue1{
    color: #40609E;
}

.text-lightblue1{
    color: rgba(20,165,222,1);
}

.text-orange1{
    color: #D36027;
}

.text-brown1{
    color: #c35c2f;
}

.text-brown2{
    color: #cf885a;
}

.text-brown3{
    color: #b68567;
}

.margin-no {
    margin-right: 0px;
    margin-left: 0px;
}

.padding-no {
    padding-right: 0px;
    padding-left: 0px;
}

.line-top {
    width: 100%;
    height: 1px;
    background: #ddd;
}

@media (max-width: 991px){
    .header .mo-header {
        background: #f6f6f6;
    }
}

.hide-in-phone{
    display: block;
}

@media (max-width: 991px){
    .hide-in-phone{
        display: none;
    }
}

.hide-in-pc{
    display: none;
}

@media (max-width: 991px){
    .hide-in-pc{
        display: block;
    }
}


@media (min-width: 991px){
    .header .pc-header.stick .top-menu .collapse .nav {
        margin-left: 0px;
    }
}

@media (max-width: 991px){
    .section-title p {
        line-height: 32px;
        letter-spacing: 2px;
    }
}

.mt-btn{
    background: url(../images/btn.png) no-repeat center;
    border-radius: 60px;
    border:0px solid #000000;
    color: #ffffff;
    padding: 14px 60px;
    box-shadow: 0px 0px 32px rgb(49 177 224 / 10%);
}

@media (max-width: 991px){
    .mt-btn{
        zoom:0.8;
    }
}

.over-2 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.col-md-20{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px){
    .col-md-20 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 991px){
    .mo-text-center{
        text-align: center;
    }
}


@media (max-width: 991px){
    .mo-order-1{
        order: 1;
    }
    .mo-order-2{
        order: 2;
    }
    .mo-order-3{
        order: 3;
    }
    .mo-order-4{
        order: 4;
    }
}

@media (min-width: 991px){
    .pc-pr{
        padding-right: 30px;
    }
    .pc-pl{
        padding-left: 30px;
    }
}

.link-item:hover .img-item img {
    transform: translate(-50%, -50%) scale(1.2);
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
}

.link-item .img-item::before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: '';
    background: rgba(0, 0, 0, 0.0);
    top: 0;
    left: 0;
    z-index: 2;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
}

.link-item:hover .img-item:before {
    background: rgba(0, 0, 0, 0.3);
}

.link-item .img-item .more-word {
    color: #fff;
    z-index: 2;
    text-align: center;
    opacity: 0;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    position: absolute;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.link-item:hover .img-item .more-word {
    opacity: 1;
}

.link-item .img-item .more-word i {
    display: block;
    font-size: 36px;
}

/*------------------------------------------*/

.transparent-head {
    position: absolute;
    width: 100%;
}

.section-kv .img-wrap .img-item {
    padding-top: calc(100vh - 164px - 10vh);
}

@media (max-width: 991px){
    .section-kv .img-wrap .img-item {
        padding-top: 120%;
    }
}

/*------------------------- dot優化 ---------------------------*/
.slick-dots li {
    margin: 0 10px;
    opacity: 0.7;
}

.slick-dots li button:before{
    -webkit-box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
    border: 1px solid #bbb;
    background: #bbb;
}

.slick-dots li button:hover:before {
    background: #d15d44;
    -webkit-box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.section-kv .kv .slick-dots {
    padding-right: 0px;
    bottom: 30px;
}

.slick-dots li.slick-active button:before {
    border: 2px solid #d15d44;
    background: #d15d44;
    -webkit-box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

/*-----------------------------*/

.section01 .nav-tabs .nav-link {
    font-size: 16px;
    margin: 0 10px;
    padding: 8px 30px;
}

@media (max-width: 991px){
    .section01 .nav-tabs .nav-link {
        margin: 0 6px;
    }
}

/*--------------產品列表hover優化---------------*/
.section_product_items .img-wrap .img-item::before {
    background: rgba(0, 0, 0, 0.0);
}

.section_product_items:hover .img-item img {
    transform: translate(-50%, -50%) scale(1.2);
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
}

/*------------------------------*/

.section_product_items .img-wrap .img-item .add-cart .btn-cart {
    font-size: 16px;
}

@media (max-width: 991px){
    .section_product_items .img-wrap .img-item .add-cart .btn-cart {
        font-size: 14px;
    }
}

.section_product_items p {
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 991px){
    .section_product_items p {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 991px){
    .section01 .nav-tabs .nav-link {
        font-size: 14px;
        padding: 5px 15px;
    }
}


@media (max-width: 991px){
    .section01 h2.mb-40{
        margin-bottom: 20px !important;
    }
}

/*--------------新聞列表hover優化---------------*/
.section_news_items .img-wrap .img-item::before {
    background: rgba(0, 0, 0, 0.0);
}

.section_news_items:hover .img-item img {
    transform: translate(-50%, -50%) scale(1.2);
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -webkit-transition: all 1.5s ease;
}

/*------------------------------*/

.header .top-header .top-menu .collapse li.active a::before, .header .top-header .top-menu .collapse li:hover a::before {
    top: 0.5px;
    left: -2px;
    background-color: #d15d44;
}

.header.stick .header-top_text{
    display: none;
}

.header.stick {
    opacity: 0.9;
}

.header .top-icon .top-icon-list .top-icon-link .search-body {
    position: absolute;
    width: 300px;
    top: 60px;
    left: 0px;
}

.text-tc {
    font-family: 'Noto Serif TC','Noto Sans TC','微軟正黑體' !important;
}

/*-----------------------------------------------*/

@media (max-width: 991px){
    .footer-top .share-list {
        position: relative;
        left: 10px;
    }
}

.t-ls{
    letter-spacing: 2px;
}

@media (max-width: 991px){
    .footer-item {
        margin-bottom: 30px;
    }
}

.story-page .section_story_items {
    color: #999;
    position: relative;
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color=#000000)";
    -moz-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

@media(min-width: 991px){
    .story-section02.newsimg .nav-tabs .nav-link {
        background: transparent;
        color: #b68567;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        border: 1px solid #ccc;
        font-size: 16px;
        margin: 0 10px;
        padding: 8px 30px;
    }
    .story-section02.newsimg .nav-tabs .nav-link:hover {
        background: #d15d44;
    }
    .story-section02.newsimg .nav-tabs .nav-link.active, 
    .story-section02.newsimg .nav-tabs .nav-link:hover {
        color: #ffffff;
        border: 1px solid #d15d44;
    }
    .story-section02.newsimg .nav-tabs .nav-link.active {
        background: #d15d44;
        border: 1px solid #d15d44;
    }
}

@media (max-width: 768px){
    .newsimg .nav-tabs .nav-link {
        padding: 10px 10px;
    }
    .newsimg .nav-tabs .nav-link {
        font-size: 16px;
    }
    .newsimg .tm_shadow_tab .tm_shadow_dropdown .dropdown-menu.show {
        padding: 10px 0px;
    }
}

.newsimg {
    margin-top: 50px;
}

.qa-section .nav-tabs .nav-link {
    background: transparent;
    color: #b68567;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin: 0 10px;
    padding: 8px 30px;
}

.qa-section .nav-tabs .nav-link:hover {
    background: #d15d44;
    border: 1px solid #d15d44;
}

.qa-section .nav-tabs .nav-link.active, 
.qa-section .nav-tabs .nav-link:hover {
    color: #ffffff;
    border: 1px solid #d15d44;
}

.qa-section .nav-tabs .nav-link.active {
    background: #d15d44;
}

@media (max-width: 768px){
    .qa-section .nav-tabs .nav-link {
        padding: 10px 10px;
    }
    .qa-section .nav-tabs .nav-link {
        font-size: 16px;
    }
    .qa-section .tm_shadow_tab .tm_shadow_dropdown .dropdown-menu.show {
        padding: 10px 0px;
    }
}

.nav-tabs02 {
    margin-bottom: 30px;
}

.newstyle-btn01{
    color: #ffffff;
    border: 1px solid #d15d44;
    background: #d15d44;
    padding: 8px 36px;
    border-radius: 60px;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

@media(min-width: 992px){
    #search-input {
        height: 0px;
        position: absolute;
        top: 0px;
    }
}

.section {
    position: relative;
    padding-top: 10vmin;    
    overflow-x: clip;
}

.header .top-icon .top-icon-list .top-icon-link a .bag-number {
    background: #FE8441;
}

/*--------------------------------------------------------------------------------------*/

.form-control {
    border: 0px solid #ddd;
    border-bottom: 1px solid #ddd;
    height: inherit;
    padding: 12px 0px;
    color: #666666;
}

.form-control.surrounding{
    border: 1px solid #ddd;
    padding: 12px 12px;
}

.form-control:focus {
    color: #495057;
    background-color: #fafafa;
    border-color: #ddd;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(0,123,255,.25);
}

.contact-info-area{
    line-height: 28px;
    font-size: 15px;
}

#inputContent.form-control.surrounding{
    margin-top: 10px;
}

.newcodeimg {
    max-width: 120px;
}

/*-----------------------mo bottom link-------------------------*/

.mo-bottom-link p{
    display: flex;
    align-items: center;
}

.mo-bottom-link i{
    margin-right: 8px;
}

.footer .fx-btn-mo .fx-btn {
    padding: 15px 5px;
}

.footer .fx-btn-mo .fx-btn.fx-btn-cart {
    background-color: #ffffff;
}

.footer .fx-btn-mo .fx-btn.fx-btn-line {
    background-color: #ffffff;
}

.footer .fx-btn-mo .fx-btn.fx-btn-fb {
    background-color: #ffffff;
}

.footer .fx-btn-mo a{
    position: relative;
}

.footer .fx-btn-mo a:before{
    content: '';
    width: 1px;
    height: 25px;
    background-color: #cccccc;
    position: absolute;
    right: 0px;
    top: 13px;
}

.footer .fx-btn-mo a:nth-last-child(1):before{
    width: 0px;
}

.footer .fx-btn-mo {
    box-shadow: 0px -20px 20px #00000010;
}

/*-----------------------mo bottom link-------------------------*/

.fx-btn-area{
  position: relative;
  z-index: 10;
}
.footer .fx-btn-mo {
  position: fixed;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999999;
}
.footer .fx-btn-mo .fx-btn {
  top: unset;
  right: unset;
  position: relative;
  padding: 5px 5px;
  font-size: 22px;
  color: #fff;
  width: 33.33333%;
  text-align: center;
  letter-spacing: 2px;
  align-items: center;
  display: flex;
  justify-content: center;
  font-weight: bold;
}
.footer .fx-btn-mo .fx-btn img {
  width: 40px;
  box-shadow: unset;
}
.footer .fx-btn-mo .fx-btn.fx-btn-cart {
  background-color: #ff723a;
}
.footer .fx-btn-mo .fx-btn.fx-btn-line {
  background-color: #01b901;
}
.footer .fx-btn-mo .fx-btn.fx-btn-fb {
  background-color: #007aff;
}
.mb-member{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  color: #4c3d39;
}
.mb-member i{
  font-size: 20px;
}

.mo-bottom-link p{
    display: flex;
    align-items: center;
}

.mo-bottom-link i{
    margin-right: 8px;
}

.footer .fx-btn-mo .fx-btn {
    padding: 15px 5px;
}

.footer .fx-btn-mo .fx-btn.fx-btn-cart {
    background-color: #ffffff;
}

.footer .fx-btn-mo .fx-btn.fx-btn-line {
    background-color: #ffffff;
}

.footer .fx-btn-mo .fx-btn.fx-btn-fb {
    background-color: #ffffff;
}

.footer .fx-btn-mo a{
    position: relative;
}

.footer .fx-btn-mo a:before{
    content: '';
    width: 1px;
    height: 25px;
    background-color: #cccccc;
    position: absolute;
    right: 0px;
    top: 13px;
}

.footer .fx-btn-mo a:nth-last-child(1):before{
    width: 0px;
}

.footer .fx-btn-mo {
    box-shadow: 0px -20px 20px #00000010;
}

/*--------------------------------------------*/

/*-------------------------- 41-new ----------------------------*/

.over-2 {
    min-height: unset;
    height: 3.4em;
}

.tag-f p {
    margin: 4px 2px;
}

@media (max-width: 991px){
    .header .logo img {
        width: 127px;
        position: relative;
        top: 3px;
    }
}

.header .top-header .top-menu .collapse li .menu-link {
    font-weight: 400;
}

@media (max-width: 991px){
    .header .top-header .top-menu .navbar-collapse .nav li a {
        padding: 13px 15px;
    }
    .header .top-header .top-menu .collapse .top-icon-list .top-icon-link a {
        padding: 9px 15px;
    }
}

@media(max-width: 991px){
    a.fx-btn-cart .bag-number {
        position: absolute;
        min-width: 18px;
        height: 18px;
        background: red;
        color: #fff;
        right: -22px;
        bottom: 1px;
        border-radius: 20px;
        font-size: 12px;
        padding: 2px;
        text-align: center;
        line-height: 13px;
    }
    .header .top-header .top-menu .collapse .top-icon-list .top-icon-link a .bag-number {
        left: 80px;
        bottom: 10px;
        line-height: 13px;
    }
}

@media (max-width: 767px){
    .cd-top {
        bottom: 75px;
    }
}