@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
body{
    font-family: "Noto Sans TC","Work Sans", sans-serif;
}

.other_page #content .path p,.other_page #content .path p a ,.services_page #content .path p ,.services_page #content .path p a{ display: none;}
.path p, .path p a{ color: #c0c0c0;}
.path{ padding: 0 30px;}
.album_info_page #content .path{ padding: 0 10px;}
.blog_page #content .path{ padding: 0 56px;}
.path p a:hover{ color: #D61F2F;}

.edit{ padding: 0px 0;}
.info_fix{display: none;}

/* 開場浮動 */
.pageIndex #page .header_area ,.pageIndex #page .header_area .header_area.sticky {
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.2s;
}
.pageIndex #page .fix_ri{
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.5s;
}
.pageIndex #page #content_main{
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 2s;
}

@keyframes show {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

#to_top{ left: unset; right: 5px;}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */





/*反白顏色*/
::-moz-selection{
    background-color: #35383C;
    color: #e2e2e2;
  }
  ::selection{
    background-color: #35383C;
    color: #e2e2e2;
  }
  
  body{
      overflow: overlay;
  }
  &::-webkit-scrollbar {
      background: #e2e2e2;
      width: 7px;
  }
  &::-webkit-scrollbar-button {
      display: none;
      background: #e2e2e2;
      border-radius: 0;
    }
  &::-webkit-scrollbar-track-piece {
      background: #e2e2e2;
    }
  
  &::-webkit-scrollbar-thumb {
      border-radius: 4px;
      background-color: #35383C;
    }
  
  &::-webkit-scrollbar-track {
      box-shadow: transparent;
}



/* 開場動畫 */

.bannerindex{position: relative;}


.bannerindex::after {
    content: "";
    display: block;
    background-image: url(https://pic03.eapple.com.tw/britishdesigner/logo.png);
    background-size: cover;
    width: 300px;
    height: 160px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000000000000000000001;
    pointer-events: none;
    animation: banner-logo 3s forwards;
}

.bannerindex::before {
    content: "";
    display: block;
    background: #011E28;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000000000000000000000;
    animation: banner-bg 2.6s forwards;
}


.swiper-banner::after {
    content: "";
    display: block;
    height: 0px;
    background-color: transparent;
    pointer-events: none;
    position: fixed;
    bottom: 240px;
    z-index: 500;
    opacity: 0;
}

@keyframes banner-logo {
    0% {
        opacity: 0;
        filter: blur(0);
    }

    25% {
        opacity: 1;
        filter: blur(0);
    }

    50% {
        filter: blur(0);
        opacity: 1;
    }

    80% {
        filter: blur(0);
        opacity: 1;
    }

    100% {
        filter: blur(10);
        opacity: 0;

    }
}

@keyframes banner-bg {
    0% {}

    50% {}

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media screen and (max-width:450px) {
    .bannerindex::after {
        width: 220px;
        height: 130px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*切換鈕*/
.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;}


/* banner */
/* .swiper-wrapper .swiper-slide:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/britishdesigner/banner1-text.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.swiper-wrapper .swiper-slide:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/britishdesigner/banner2-text.png);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 10000;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide img {
    height: auto;
    filter: saturate(1.05) contrast(1.08);
} */



/* 線條 */
/* 
.swiper-wrapper .swiper-slide:nth-child(1)::before,.swiper-wrapper .swiper-slide:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(https://pic03.eapple.com.tw/britishdesigner/banner-line.png);
    width: 0%;
    max-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    animation: banner-left-right 2.5s ease-in-out infinite alternate;
    animation-delay: 0.5s;
}

@keyframes banner-left-right {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}



@media screen and (max-width: 768px) {
    .swiper-wrapper .swiper-slide:nth-child(1)::after {
        background-image: url(https://pic03.eapple.com.tw/britishdesigner/banner1-m-text.png);
        background-size: 75%;
    }
    .swiper-wrapper .swiper-slide:nth-child(2)::after {
        background-image: url(https://pic03.eapple.com.tw/britishdesigner/banner2-m-text.png);
        background-size: 75%;
    }
    .swiper-wrapper .swiper-slide:nth-child(1)::before,.swiper-wrapper .swiper-slide:nth-child(2)::before {
        display: none;
    }
    .swiper-slide:nth-child(3) img{
        object-position: right;
    }
}
@media screen and (max-width:600px) {   
    .swiper-wrapper .swiper-slide:nth-child(1)::after {
        background-size: 60%;
    }
    .swiper-wrapper .swiper-slide:nth-child(2)::after {
        background-size: 60%;
    }
} */


.product_info_page .swiper-slide:nth-child(1)::after,.product_info_page .swiper-slide:nth-child(2)::after{ display: none!important;}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* header */

/* ===== */
.main_header_area .container {
    max-width: 90%;
}


.header_area {
    background: #00263B;
    padding: 0px 10px;
    transition: 0.4s;
}

.pageIndex #page .header_area{
     background: #00263bde;
}

.header_area.sticky {
    background: #00263bf5;
}
.pageIndex #page .header_area.sticky {
    background: #00263bf5;
}

.tp_links{ display: none;}
.me_tp_features{ display: none;}

.shop_search_btn{ background: #555;}

.stellarnav {
    padding: 0px 0 0;
}

.nav-brand{ max-width: unset;}

.nav-brand img{ max-width: 280px; padding-top: 6px;}

.stellarnav>ul>li>a {
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s;
    padding: 22px 16px 28px 16px;
    height: 80px;
}
.stellarnav>ul>li>a:before{
    content:' ';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background-color:#DE1F2F;
  transform:scaleX(0);
  transition:all 0.5s;
  transform-origin:left;
}
.stellarnav>ul>li>a:hover:before{
    transform:scaleX(1);
}

.stellarnav li.has-sub > a:after{
    border-top: 6px solid #fff;
}

.stellarnav>ul>li>a:hover{
    color: #DE1F2F;
}
.stellarnav ul ul{
    width: 250px;
    left: 8px;
    top: 60px;
    font-size: 15px;
    background: #00263B;
}

.stellarnav li li{ border: 0px;}

.stellarnav li a{
    color: #fff;
    font-size: 15px;
}

.stellarnav ul ul li a:hover{
    border: 0px;
    background: #DE1F2F;
    color: #fff;
}

/* 商品下拉超過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;
}

/* 
.stellarnav.mobile ul {
    background: #000000;
} */

.stellarnav.mobile>ul>li {
    border-bottom: 1px #101010 solid;
}

.stellarnav.mobile.right .close-menu,
.stellarnav.mobile.left .close-menu {
    background: #000000;
}



  /* 漢堡條 */
  .stellarnav .menu-toggle span.bars span {background: #fff;}
  .stellarnav .menu-toggle:after { color: #fff;}
  
  /* close menu 拉出來 */
  .stellarnav.mobile.right .close-menu, .stellarnav.mobile.left .close-menu{
      background: #00263B;
      color: #fff;
    }
    .stellarnav .icon-close:before{
      border-bottom: solid 3px #fff;
    }
    .stellarnav .icon-close:after{
      border-bottom: solid 3px #fff;
    }
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{
      background: #00263bf5;
      backdrop-filter:blur(25px);
    }
    .stellarnav a.dd-toggle .icon-plus:before{
      border-bottom: solid 3px #E98F6C;
    }
    .stellarnav a.dd-toggle .icon-plus:after{
      border-bottom: solid 3px #E98F6C;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle{
      padding: 11px;
      top: 14px;
    }
    .stellarnav.mobile > ul > li > a.dd-toggle:before{
        display: none;
    }
    .stellarnav.mobile li.open{
      background: transparent;
    }
    .stellarnav.mobile ul ul{
      width: 100%;
      position: relative;
      left: 0;
      top: 3px;
    }
    .stellarnav.mobile > ul > li{
      border-bottom: 0px;
    }
  
    .stellarnav.mobile li a{ border-bottom: 0px; background: #00263b;}
  
    .stellarnav.mobile.right > ul, .stellarnav.mobile.left > ul{max-width: 100%;}


@media screen and (max-width:1024px) {
    .stellarnav>ul>li>a{ padding: 17px 16px 26px 16px ;height: 59px;}
    .header_area{ background: #00263b;}
    .stellarnav li.has-sub > a:after{ top: 63%;}
    .pageIndex #page .header_area{background: #00263bed; }
}
@media screen and (max-width:768px) {
    .stellarnav.mobile{ top: 13px;}
    .stellarnav.mobile > ul > li > a{ padding: 26px 43px 26px 10px;}
    .stellarnav ul{ padding-top: 0px!important;}
    .stellarnav li a{ padding: 20px 15px;} 
}

@media screen and (max-width:570px) {
    .stellarnav.mobile{ top: 16px; left: -24px;}
    .nav-brand img{ max-width: 220px;}
}

/* 商品下拉超過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個--結束 */

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.pageIndex #page .footer {
    opacity: 0;
    animation: show 1.5s ease-in-out forwards;
    animation-delay: 1.5s;
}

/*Footer/＝＝＝＝＝*/
.footer .center{ max-width: 1400px;}
.center {   max-width: 85%;}
.footer { padding: 40px 0 0; background: #00263B;}
.footer_info {  display: flex; flex-wrap: wrap;  align-items: center;  justify-content: center; padding-right: 0px; grid-gap:5px;}
.footer_info ul {  width: calc(100% - 300px);}
.footer_info li:nth-child(1) {  display: flex;  flex-wrap: wrap;  justify-content: flex-start; }
.footer_info ul>li>p {  width: 49%;  color: #fff; line-height: 175%;}
.footer_info ul>li>p>a { color: #fff;}
.footer_info ul>li>p.phone { order: 1;}
.footer_info ul>li>p.tel { order: 2;}
.footer_info ul>li>p.fax { order: 3;}
.footer_info ul>li>p.line { order: 4;}
.footer_info ul>li>p.mail { order: 5;}
.footer_info ul>li>p.add { order: 6;}

/*footer_logo*/
.footer_logo { width: 250px;  padding-right: 20px;}
.footer_logo {
    background-image: url(https://pic03.eapple.com.tw/britishdesigner/f-logo.png) !important;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.5s ease-in-out;
    background-position: center;
    margin-right: 20px;
    width:270px;
}
.footer_logo img {  width: 0;  height: 100px;}

footer:after {
  content: '';
  background: #B4091E;
  display: block;
  width: calc(48% - 353px);
  height: 98%;
  clip-path: polygon(0 0, 100% 0%, 83% 100%, 0% 100%);
  position: absolute;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
  z-index: -1;
}

.footer_menu { border-top: 1px solid #0e485f;  padding-top: 15px;    width: 90%;}
.footer_menu a {  margin: 0;  padding: 5px 25px 5px 0px;  border: none;  background: transparent;  transition: all 0.3s;  color: #717071;}
.footer_menu a:nth-of-type(1) { display: none;}

.footer_menu a:hover {  background: transparent;  letter-spacing: 2px;  transition: 0.5s;  color: #DE1F2F;}
.footer_info li:nth-child(2) {  padding-bottom: 2%;}
.copy, .copy a {  color: #535353;  border-top: none;}
.box_link {  width: auto;  display: flex;  flex-direction: row;  flex-wrap: wrap;  justify-content: flex-start; display: none;}



@media screen and (max-width: 1440px) {
    .center {  max-width: 100%; width: 100%;}
    }
@media screen and (max-width: 1200px) {
    /*footer*/
    .footer_logo { padding-right: 0px; text-align: center;}
    .footer_menu { width: 100%;}
    .footer_info {  padding: 0px;}
    .footer_info ul {  width: 100%;}
    .footer_info li:nth-child(1) {  display: flex;  flex-wrap: wrap;  justify-content: flex-start;  flex-direction: column;  align-items: center;  width: 100%;}
    .footer_info li:nth-child(2) { padding-bottom: 0px; text-align: center;}
    .footer_info ul>li>p { width: 100%;  text-align: center;}
    .box_link {  width: auto;  flex-wrap: nowrap;  position: sticky;  margin-top: 1%;}
     footer:after{
           width: 100%;
        height: 159px;
        top: 19%;
    }
}
@media screen and (max-width:1024px) {
    .stellarnav ul{ padding-top: 4px;}
}
@media screen and (max-width: 768px) {    
    #to_top { bottom:60px;}
    .footer.with_shopping_mode { padding:30px 0 0px; }
    .footer_info { justify-content: center;}
    .footer_logo { text-align: center; margin-bottom: 10px;}
    .footer_menu { text-align: center; display: flex; flex-direction: row;  flex-wrap: wrap;  justify-content: center;}
    .footer_menu a {margin: 3px; width: 105px; padding: 5px;}
        footer:after{
           width: 87%;
        height: 148px;
        top: 16%;
    }
    }
       @media screen and (max-width: 660px) {
        footer:after{
        top: 15%;
    }
    }
    @media screen and (max-width: 600px) {
    .box_link {    text-align: center;}
    }

    @media screen and (max-width:450px) {
             footer:after{
       width: 100%;
       top: 14%;
      }
    }
/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 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; color:#ad925e;}
.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 {width: 100%; order: 0; min-height: unset;}
}
@media screen and (max-width: 600px) {
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*預設解除背景輪播*/
#content_main { margin:0; margin-top: -112px;}
.bannerindex { position:relative; height:auto; top: -112px;}
.swiper-banner { position:static; margin:0; height:auto;} 
/* .swiper-slide img { height:auto;} */

@media screen and (max-width:1024px) {
    .bannerindex{ top: 0px;}
    #content_main { margin-top: 0px;}
}
@media screen and (max-width: 768px) {
.bannerindex { padding:0; margin:0;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



/*Banner/＝＝＝＝＝*/
.banner {    width: 100%;    height: 36vh;    background: #243035;    position: relative;    overflow: hidden; }
.banner:before {
    content: '';
    /* animation: bgScroll 30s linear infinite; */
    width: 110%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-image: url(https://pic03.eapple.com.tw/britishdesigner/banE.jpg);
    background-repeat: no-repeat;
    background-position: center;
}
.album_page .banner:before {     background-image: url(https://pic03.eapple.com.tw/britishdesigner/banE.jpg);}
.blog_page .banner:before, .blog_in_page  .banner:before { background-image: url(https://pic03.eapple.com.tw/britishdesigner/banblog.jpg);}
.banner.banB,.banner.banC{ display: none;}

@keyframes bgScroll {
    0% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
    50% {        -webkit-transform: translateX(-5%);        transform: translateX(-5%);    }
    100% {        -webkit-transform: translateX(0);        transform: translateX(0);    }
}

.banner h5 {
    letter-spacing: 2px;
    top: 32%;
    width: 100%;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
    max-width: 75%;
    animation: imgSlideUpAnimation 1.5s 0.5s both;
     font-family: "Noto Sans TC","Work Sans", sans-serif;
    text-shadow: 5px 5px 10px #00000085;
}
.banner h5:before {
    content: "Craftmaster";
    font-size: min(max(10px + 4vw,16px - 5vw), 53px);
    position: absolute;
    bottom: 85%;
    color: #DE1F2F;
    letter-spacing: 2px;
    font-weight: 525;
     font-family: "Work Sans", sans-serif;
    margin: 0 auto;
    left: 0;
    width: 100%;
    animation: imgSlideUpAnimation 1.5s 1.5s both;
    text-shadow:0px 0px;
}
.blog_page .banner h5:before, .blog_in_page .banner h5:before {    content: "News";}
.album_page .banner h5:before  {    content: "Work";}

@media screen and (max-width:450px) {
    .banner{ height: 10vh;}
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.blog_page #content,.blog_in_page #content{
       background-image: url(https://pic03.eapple.com.tw/britishdesigner/in-bg.jpg); 
    background-position: top;
    background-size: cover;
    background-repeat: repeat;
}

/*--文章管理 / 共同設定---------------------------------------*/

/*文章列表*/
.module_i_news li, .subbox_item { position: relative; width: 100%; border-bottom: 1px solid #3E4144;}
.module_i_news li a, .subbox_item a { display: block; padding: 5px; padding-bottom: 40px;}
.module_i_news li a::before, .module_i_news li a::after, .subbox_item a::after,.subbox_item a::before { display: none; pointer-events: none;}

.module_i_news li::before, .subbox_item::before { 
    content: 'READ MORE';
    font-family: "Work Sans", sans-serif;
    position: absolute;
    z-index: 19;
    bottom: 15px;
    right: 10px;
    opacity: 0.85;
    font-size:15px;
    color: #9B9B9B;
    pointer-events: none;
    transition: all .5s;
}
.module_i_news li::after, .subbox_item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 0;
    height: 1px;
    background: #EA906C;
    opacity: 1;
    transition: all .5s;
}
.module_i_news li:hover::after, .subbox_item:hover::after { opacity: 1; left: 0; width: 100%; transition: all .5s;}
.module_i_news li:hover::before, .subbox_item:hover::before { opacity: 1; transition: .3s ease-in-out;}

/*文章呈現*/
.i_blog_ri, .blog_list_ri { margin: 20px 0;}

.i_blog_le, .i_blog_ri, .blog_list_le, .blog_list_ri { width: 100%;}
.i_blog_le, .blog_list_le { 
    /* aspect-ratio: 3 / 2; */
     overflow: hidden;}
/*文章縮圖長寬比例*/
.module_i_news li a:hover img, .subbox_item a:hover img { transform: scale(1.2); transition: .5s ease-in-out;}

.i_blog_ri h5, .blog_list_ri h5 { color: #B3091E; font-size: 20px; letter-spacing: 1px; font-weight: 600;}
.i_blog_ri em, .blog_list_ri em { color: #595959; font-size: 14px;}
.i_blog_ri p, .blog_list_ri p { color: #fff; font-size:15px;}

/*--文章管理 / 首頁---------------------------------------*/

/*標題*/
.module_i_news .title_i_box h6 { display: none; color: #fff; font-size: 36px;}
.module_i_news .title_i_box h4 { display: inline-block; color: #ECA902; font-weight: 600; letter-spacing: 1px; padding: 10px 20px; font-size: 32px; font-size: 0px;}
.module_i_news.module_i_news02 .title_i_box h4::before{
    content: "";
    display: block;
    width: 121px;
    height: 150px;
    background-image: url(https://pic03.eapple.com.tw/yunyi560/news-title.png);
    background-size: cover;
}
.module_i_news.module_i_news01 .title_i_box h4::before{
    content: "";
    display: block;
    width: 121px;
    height: 150px;
    background-image: url(https://pic03.eapple.com.tw/yunyi560/case-title.png);
    background-size: cover;
}

/*列表*/
.module_i_news ul { max-width: 100%; width: 100%; display: grid; gap: 10px; grid-template-columns: repeat(4,1fr);}
/*.module_i_news ul li:nth-of-type(n+4) { display: none;}*/

/*按鈕*/
.animated-arrow{ margin-top: 40px; width: 200px;}
.i_blog_b a.animated-arrow { background: #9B9B9B ; transition: .3s ease-in-out;}
.i_blog_b a.animated-arrow b { color: #fff; font-weight: normal; letter-spacing: 3px; transition: .3s ease-in-out;}
.i_blog_b a.animated-arrow:hover b { transition: .3s ease-in-out;}
.i_blog_b a.animated-arrow i { color: #fff;}

/*--文章管理 / 外---------------------------------------*/

.blog_page .main_part { max-width: 1600px; width: 96%;}

/*列表搜尋*/
h5.blog_le_t { display: none;}

/*分類*/
.blog_le .accordion { border-radius: 14px; margin-top: 28px;}
.blog_le .accordion > li { transition: 0.3s ease-in-out;}
.blog_le .accordion > li:hover { background: #9B9B9B !important; }
.blog_le .accordion > li.on_this_category { background: #9B9B9B !important; }
.blog_le .accordion li { background: unset;}
.blog_le .accordion li a { color: #fff ;font-weight: normal;}
.blog_le .accordion li a:hover{ color: #fff!important; }
.blog_le .accordion li i { color:#a5a5a5;}
.blog_le .accordion li .link { padding: 0;}
.blog_le .accordion li .link:last-child { border-bottom: 1px solid #545556;}
.blog_le .accordion > li .link a, .blog_le .accordion > li.on_this_category .link a { margin-right: 55px;}

/*次分類*/
.open .link { background: #9B9B9B;}
.open .link a { color: #fff !important;}
.submenu { background: transparent;}
.submenu li.on_this_category a, .submenu a:hover { background: #9B9B9B;}


/*次分類展開*/
.blog_le .accordion > li.on_this_category ul li a { color: #fff; border-top: 1px solid #ccc;}
.blog_le .accordion > li.on_this_category ul li a i { color: #fff;}
.blog_le .accordion > li.on_this_category ul li:hover a { color: #FFFFFF;}
.blog_le .accordion > li.on_this_category ul li:hover a i { color: #FFFFFF;}

/*選定次分類*/
.blog_le .accordion > li.on_this_category ul li.on_this_category a { color: #FFFFFF;}
.blog_le .accordion > li.on_this_category ul li.on_this_category i { color: #FFFFFF;}
.blog_le .accordion > li.on_this_category ul li.on_this_category:hover a { color: #FFFFFF;}

/*次分類 hover*/
.blog_le .accordion > li.open:hover { background: var(--BackgroundColor) !important;}
.submenu:hover li a { color: var(--FontColor_3);}
.submenu:hover li:hover a { color: var(--FontColor_3); background: #3e3e3e;}
.submenu a:hover { color:#fff; background: var(--SubColor_1);}
.submenu:hover li a::before {  transition: .3s ease-in-out;}
.submenu:hover li:hover a::before {  transition: .3s ease-in-out;}

/*分類/文章標題*/
h4.blog_category_title { font-size: 24px; letter-spacing: 1px; color:#B3091E; border-bottom: 1px #545556 solid;}

/*文章列表*/
.blog_subbox { margin: auto; display: grid; grid-template-columns: repeat(4,1fr);}
.blog_subbox:before { content:none;}


/*--文章管理 / 內---------------------------------------*/

.blog_box { max-width: 1500px; margin: auto;}
.blog_box_edit { color:#fff; max-width: 100%; margin: auto;}
.blog_box_edit .articel_mainPic  { display: none; }

.blog_back a.article_btn_back { background: #9B9B9B;}


/* 相關 */
.news_related{ background: transparent;}
.news_related_list li a{ background: transparent;}
.news_related_list li a p{ color: #fff;}

.lastPage{background: #9B9B9B; }

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) {
    /*首頁*/
    .module_i_news ul, .blog_subbox { width: 100%; grid-template-columns: repeat(3,1fr); gap: 60px 20px;}

    .blog_subbox{ grid-gap:60px 20px;}
}

@media screen and (max-width: 768px) {
    /*首頁*/
    .module_i_news ul, .blog_subbox { width: 100%; grid-template-columns: repeat(2,1fr); }
}

@media screen and (max-width: 425px) {
    /*首頁*/
    .module_i_news ul, .blog_subbox { grid-template-columns: 1fr;}
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


.album_page #content,.album_class_page #content,.album_info_page #content {
        background-image: url(https://pic03.eapple.com.tw/britishdesigner/in-bg.jpg); 
    background-position: top;
    background-size: cover;
    background-repeat: repeat;
}
.album_page .main_part, .album_class_page .main_part { max-width: 1300px; width: 96%;}

/*--相簿管理 / 主分類---------------------------------------*/

/*項目排序*/
.clearfix:hover a:hover:after { opacity: 0; transition: .3s ease-in-out;}
.clearfix:hover a:after { opacity: 1; transition: .3s ease-in-out;}

/*項目*/
.show-list {display: flex; grid-gap: 24px;}
.show-list .item { padding: 0; margin: auto 0; background: transparent; transition: .3s ease-in-out;}
.show-list .overlay { opacity: 0; transform: scale(1); transition: .3s ease-in-out; background: transparent;}
.show-list .item:hover .overlay { opacity: 1; transform: scale(1.1); transition: .3s ease-in-out;}

/*圖片*/
.show-list .show_pic {
     /* height: 26vh; */
     line-height: 260px; padding: 0; padding-bottom: 0; aspect-ratio: initial;}
.show-list .show_pic img { transform: scale(1); transition: .3s ease-in-out; }
.show-list .show_pic img:hover { transform: scale(1.1);}



/*名稱*/
.show-list .show_name {
  position: absolute;
  right: 50%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0%);
  width: 100%;
  height: auto;
  padding: 10px;
  font-size: var(--f16);
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  background: #b3091ee0;
  border: none;
  transition: .3s ease-in-out;
}
.show-list .item:hover .show_name { color: #fff; opacity: 1;}

/*--相簿管理 / 次分類---------------------------------------*/

/*項目排序*/
.other_subalbum { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;}
.other_subalbum li { width: 100%;}
.other_subalbum:hover li a img { opacity: .6; transition: .3s ease-in-out;}
.other_subalbum li a img { transition: .3s ease-in-out;}
.other_subalbum li:hover a img { opacity: 1; transition: .3s ease-in-out;}

/*項目名稱*/
.subalbum-menu h2{ color:#193c4f ; display: none; }
.other_subalbum p { font-size: 16px; color: #B3091E; margin-top: 10px; letter-spacing: 2px; text-align: center;}

/*其他相簿*/
.album_fixed_title { background: transparent; color: #757575; display: none;}
.album_fixed_title span:before { content: '觀看更多';}

.other_album_choice li { background: #9B9B9B;  border-radius: 0px;}
.other_album_choice li a { color: #fff; }

/*--RWD---------------------------------------*/

@media screen and (max-width: 1024px) {
  .show-list , .other_subalbum { display: grid; grid-template-columns: repeat(2,1fr);}
}
@media screen and (max-width: 768px) {
 
}
@media screen and (max-width: 480px) {
  .show-list , .other_subalbum { grid-template-columns: repeat(1,1fr);}
  .other_subalbum { width: 100%; ;}
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */



.contact_page #content{
       background-image: url(https://pic03.eapple.com.tw/britishdesigner/in-bg.jpg); 
    background-position: top;
    background-size: cover;
    background-repeat: repeat;
}

.blank_letter{ color: #6e6d6d;  font-family: "Noto Sans TC","Work Sans", sans-serif;}
.contact_form li .form__label{ color: #fff;}
.contact_content .information_left{ display: none;}
.contact_editbox{ padding: 0px 0px;}
.contact_content .information_right{ width: 100%; padding-left: 0px;}
.contact_content{ max-width: 1000px;}

/* 聯絡我們 */
.contact_form{ grid-gap: 14px;}
.contact_form li.last blockquote{ color: #9B9B9B;
  }
.contact_form li.last blockquote, .contact_form li.last cite{ border: 1px solid #9B9B9B; }
.contact_form li.last cite{ color: #fff; background: #9B9B9B;
}
.contact_form li:has(input[type=checkbox]) .form__insert, .contact_form li:has(input[type=radio]) .form__insert{ display: unset;}


@media screen and (max-width:600px) {
    .contact_form li .form__label{ background: transparent;}
    .contact_content .information_right{ padding-left: 10px;}
}




.car_page .information_left {
    display: block;
}
body.car_page .footer_info li p:before{
    position: initial;
    display: inline;
}
.contact_le_map a{background: #2a93d8; }




@media screen and (max-width: 768px) {
/* 開啟手機板下方按鈕所需設定 */
#bottom_menu {}
.footer.with_shopping_mode { padding:30px 0 55px; }
#to_top { bottom:60px;}
}

@media screen and (max-width: 600px) { 
}




