/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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/bg.jpg);
    background-position: top center;
    background-size: cover;
}

@media screen and (max-width: 767px){
    body {
        background-image: url(../images/bg-mb.jpg);
        background-position: top center;
        background-size: cover;
    }
}

.visualBox {
    background-image: url(../images/kv-bg.png);
    background-size: cover;
    background-position: top center; 
}

@media screen and (max-width: 767px){
    .visualBox {
        background-image: url(../images/kv-bg-mb.png);
    }
}

.fly {
  width: 90px;
  top: 20%;
  left: 20%;
  offset-path: path("M.01,124.28s147.91,4.37,233.58-59.69C327.72-5.78,425.34,65.49,570.01.46");
  offset-distance: 0%;
  offset-rotate: auto;
  transform: rotate(45deg);
  animation: fly 6s linear infinite;
}

@media screen and (max-width: 991px){
    .fly {
    width: 50px;
    top: 10%;
    left: 20%;
    }
}

@media screen and (max-width: 767px){
    .fly {
    width: 50px;
    top: 0%;
    left: 20%;
    offset-path: path("M.06,89.77s103.09,13.19,168.47-45.52C240.37-20.24,302.58,56.6,409.32.44");
    }
}

@keyframes fly {
0%{
    offset-distance: 0%;
    opacity: 1;
}

50%{
    opacity: 1;
}

70%{
    opacity: 0;
}

100%{
    offset-distance: 100%;
    opacity: 0;
}

}


.kv-pd-bg {
    background-image: url(../images/kv-pd-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    
}

@media screen and (max-width: 767px){
    .kv-pd-bg {
        background-image: url(../images/kv-pd-bg-mb.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}


.s2-pd-bg{
    background-image: url(../images/s2-pd-bg.png);
    background-size: contain;
    background-position: center;
}

.s2-pd-bg-mb{
    background-image: url(../images/s2-pd-bg-mb.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.s3-pd-bg{
    background-image: url(../images/s3-pd-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px){
    .s3-pd-bg{
        background-image: url(../images/s3-pd-bg-mb.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.sbtn-bg{
    background-image: url(../images/sbtn-bg.png);
    background-size: cover;
    background-position: center;
    background-position: bottom center;
}


/* 按鈕顏色 */
section#method a{
    color: #496333;
    background-color: #cbcc74;
    border-radius: 20px;
    padding: 3px 6px;
}

section#method a:hover{
    color: #496333;
    background-color: #ffffff;
}

.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;
}


/* 斷點區 */

@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){
    .actablebox{
        font-size: 14px;
    }
    .actablebox th.table-title{
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 640px){
    .logooutbox .logoinn{
        flex-basis: 24%;
    }
}

@media screen and (max-width: 480px){

}