/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加class名稱
例如：

在HTML裡：
<div class="abc">我要增加背景</div> 

在css裡：
.abc{
    background-image: url(../images/body_bg.webp);  <------圖檔位置
    background-position: center; <-----圖片在區塊/方塊裡的定位
    background-size: cover;  <-----圖片在區塊/方塊裡的大小
}

 */

/* 補充 
    學習資料
    https://ithelp.ithome.com.tw/articles/10223887
    https://ithelp.ithome.com.tw/articles/10224214
*/



/* 全站背景 */
body {
    /* background-image: url(../images/c_allbg.jpg); */
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
     /*氣泡預設大小*/
    background: rgba(255, 255, 255, 0.2);
     /*給氣泡20%的透明度*/
    animation: animate 25s linear infinite;
     /* animate = 動畫名稱 */
     /* 25s = 動畫時間25秒 */
     /* linear = 動畫開始至結束速度一致 */
     /* infinite = 動畫無限次播放 */
    bottom: -150px;
  }
  .circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
  }
  
  .circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
  }
  
  .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
  }
  
  .circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
  }
  
  .circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
  }
  
  .circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
  }
  
  .circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
  }
  
  .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
  }
  
  .circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
  }
  
  .circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
  }

  @keyframes animate {
    0% {
      transform: translateY(0) rotate(0deg);
      /* translateY = Y軸位置 */
      /* rotate = 旋轉角度 */
      opacity: 1;
      /* 透明度的參數可設定0.0(透明) ~ 1.0  (不透明) */
      border-radius: 0;
      /* 圓角 */
    }
  
    100% {
      transform: translateY(-1000px) rotate(720deg);
      /* 氣泡由下往上移動至-1000px，旋轉720度 */
      opacity: 0;
      border-radius: 50%;
      /* 產生圓角 */
    }
  }

.snowmask{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/sakura1.png), url(../images/sakura2.png);
    /* -webkit-animation: 15s snow linear infinite; */
    animation: 15s snow linear infinite;
    pointer-events: none;
    z-index: 99;
}
@-webkit-keyframes snow {
    0% {
    background-position:0 0, 0 0
    }
    100% {
    background-position:500px 500px, 1000px 500px
    }
    }
    @keyframes snow {
    0% {
    background-position:0 0, 0 0
    }
    100% {
    background-position:500px 500px, 1000px 500px
    }
    }

main {
    background-image: url(../images/topBn_bgrepeat.webp);
    background-size: 100% 100%;
    overflow: hidden;
    background-position: top center;
    position: relative;
    background-repeat: repeat-x;
}

/* .pro{
    background-image: url(../images/pro_bg-1110x850.png);
    background-position: top center;
    width: 1110px;
    height: 850px;
    background-repeat:no-repeat;
    
} */
.topbgBox{
    background-image: url(../images/a_topbg.jpg);
    background-size: cover;   
    background-repeat: no-repeat;
    background-position: top center;
}

.overflow-hidden{
    padding-top: 0;
    padding-bottom: 0;
}

.light{
    animation: teeter3 .5s infinite alternate;
    }
        
    @keyframes teeter3 {

        0% {
          -webkit-filter:brightness(1);
          }
      
          3% {
          -webkit-filter:brightness(2);
        }
          
          10% {
          -webkit-filter:brightness(1);
          }
          
          97% {
          -webkit-filter:brightness(1);
        }
      
        100% {
          -webkit-filter:brightness(2);
        }
      }


.shhh{
    mix-blend-mode: screen;
}

.vsbg{
    background-image: url(../images/b_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
}

.vsbgmb{
    background-image: none;
}

.b_allbg{
    background-image: url(../images/b_allbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
    margin-top: -10px;
}

.b_allbgmo{
    background-image: none;
}

.b_ti{
    margin-bottom: -60px;
}
.visualBox{
    background-image: url(../images/a_topbg.jpg);
    background-position: top center;
}

.title{
    margin-bottom: -32px;
}

.c_sbg{
     background-image: url(../images/c_prsbg.png);
     background-size: contain;
     background-position: top center;
     background-repeat: no-repeat;
   
}

.swbg{
    width: 220px;
    height: auto;
    padding: 18px;
}


.d_bg{
    background-image: url(../images/d_bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin:10px;
    padding: 20px;
  
}

.e_bg{
    background-image: url(../images/e_bg.png);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    
  
}

.e_bgmb{
    background-image: none;
}

.g_bg{
    background-image: url(../images/g_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    
}

.g_bgmb{
    background-image: none;
    
 }

.cbg2{
    background-image: url(../images/d_bg-1110x440.png);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
 }

 

.ebg{
    background-image: url(../images/e_bg-1110x475.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding: 30px;
}

.ebg-mb{
    background-image: none;
}



.wood-bg{
    background-image: url(../images/pro_bg-370x850.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 30px 15px;
}

.orange{
    background-image: url(../images/bg2_2000x1200.jpg);
}

.grasses{
    background-image: url(../images/bg2_2000x700.jpg);
    background-size: cover;
    color: rgb(255, 255, 255); 
}
section#method a {
    margin: 0 3px;
    color: #ffee00;
}

/* .grasses-img{
    background-image: url(../images/bg_b-2000x450.jpg);
    background-position: top center;
} 

@media (max-width: 767px) {
    .grasses-img{
        background-image: url(../images/bg_b-2000x450.jpg);
        background-position: top center;
        background-size: 300vw;
    } 
} */


/* 按鈕顏色 */
.btnset a {
    color: #CA9F37;
    border: 3px solid #BE0602;
    background-color: #fff;
    box-shadow: 3px 5px #880f0f;
    line-height: 1.2;
}/*來去逛逛*/

.btnset a:hover {
/*    color: rgb(44, 40, 1);*/
    color:#fff;
    border: 3px solid #ffd392;
    background-color: #CA141D;
    box-shadow: 3px 5px #8d6e40;
}/*來去逛逛滑鼠移入*/

.nocarslideinnBox01 {
    background-color: #084B7D;
    padding: 10px;
}

/* 原價特價折疊控制 打開變1列 關掉變2列 */
.productSetprice .priceBox{
    flex-direction: row !important;
}

/* logo區圖片大小控制 */
.logooutbox .logoinn{
    flex-basis: 11%;
}
.swiperCover .swiper-slide-next, .swiperCover .swiper-slide-last{
    opacity: .5;}
    
/* .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right{
    background-image: none;
} */

/* 其他東西自己寫這↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */


.squarepppinfoinn-box.pppinfobox{
    background: #075F9E;
    text-decoration: none;
    color: #fff;
}
footer {
    padding-bottom: 15px;
}
.hotsaleBox{
    padding-top: 0px;
    padding-bottom: 0px;
}

/* 斷點區 */

@media screen and (max-width: 1659px){
    
}
@media screen and (max-width: 1399px){
    
}
@media screen and (max-width: 1199px){
    
}

@media screen and (max-width: 991px){
    
}

@media screen and (max-width: 767px){
    
    body{
        background-image: url(../images/c_allbgmo.jpg);
        background-size: contain;
        background-repeat: repeat;
        
        
    }


    .actablebox{
        font-size: 14px;
    }
    .actablebox th.table-title{
        font-size: 1.2rem;
    }

    .b_allbgmo{
        background-image: url(../images/b_allbgmo.jpg);
        background-size: contain;
        background-repeat: repeat;
        background-position: top center;
    }

    .b_allbg{
        background-image: none;
    }
    .wood-bg{
        background-image: url(../images/pro_bg-370x850.png);
        background-size: contain;
        background-repeat: no-repeat;
        padding: 30px 15px;
    }
    .wood-bg.wood-bg2{
        background-image: url(../images/pro_mo_740x500.png);
        background-size: contain;
        background-repeat: no-repeat;
        padding: 30px 15px;
    }
    .mt-less{
        margin-top: -25px;
    }
    .vsbg{
        background-image: none;
      
   }
   .vsbgmb{
    background-image: url(../images/b_bgmo.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
   }

    .g_bg{
        background-image: none;
      
   }
    .g_bgmb{
        background-image: url(../images/g_mobg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        }
                    
          
        }
        .ebg{
            background-image: none;
        }

    .bg-white-mb{
            background-color: #FFF;
        }

        .topbn-mb{background-image: url(../images/top_mobg.jpg);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: top center;
        }
        
        .topbn{background-image: none;}

        .row.row-less{
            margin: 0 -10px;
        }

}






@media screen and (max-width: 640px){
    .logooutbox .logoinn{
        flex-basis: 24%;
    }
}

@media screen and (max-width: 480px){

}