/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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-size: cover;
    background-position: top center;
    overflow: hidden
}

main {
    background-image: url(../images/treeshadow.png), url(../images/ball.png);
    background-size: 2400, 2400px;
    background-position: top center, top center;
    background-repeat: repeat, repeat;
}

@media screen and (max-width: 767px) {
    body {
        background-size: contain;
    }
}


/* 按鈕顏色 */
.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;
}

/* all */
.cardBoxFst {
    background: linear-gradient(60deg, #dedbdb, #ffffff, #dedbdb);
    border-radius: 30px;
    padding: 5px;
}

.cardBoxSec {
    background: #ffffff;
    border-radius: 28px;
    padding: 20px 13px 10px 13px;
}

.sec-title {
    position: relative;
    z-index: 5;
    margin-bottom: -55px;
}

.sec05-title {
    position: relative;
    z-index: 20;
    margin-bottom: -35px;
}

.nocarslide {
    border: 1px solid rgba(11, 72, 77, 0.4);
}



@media screen and (max-width: 767px) {
    .cardBoxFst {
        border-radius: 25px;
        padding: 5px;
        margin-top: -8px;
    }

    .cardBoxSec {
        border-radius: 23px;
        padding: 8px 11px;

    }

    .dMbNone {
        display: none;
    }
}

/* kvTopBN */
#kvTopBN {
    background-image: url(../images/kv-bg.jpg);
    background-size: cover;
    background-position: center;
    box-shadow: 0 17px 16px rgba(90, 90, 90, 0.2);
    /* z-index: 5; */
}

@media screen and (max-width: 767px) {
    #kvTopBN {
        background-image: url(../images/kv-bg-mb.jpg);
    }
}


/* method */
#method {
    background-image: url(../images/bg2.png);
    background-size: 2400px;
    background-position: bottom center;
    background-repeat: no-repeat;
}

section#method a {
    padding: 0 3px;
    color: #d82046;
}

section#method a:hover {
    color: white;
    background-color: #d82046;
    text-shadow: none;
    border-radius: 99px;
}


/* 斷點區 */

@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) {}


/* 閃光 */
@keyframes flashLight2 {
    0% {
        filter: brightness(1);
    }

    18% {
        filter: brightness(1);
    }

    19% {
        filter: brightness(2);
    }

    20% {
        filter: brightness(1);
    }

    21% {
        filter: brightness(2);
    }

    22% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1);
    }

    51% {
        filter: brightness(2);
    }

    52% {
        filter: brightness(1);
    }

    53% {
        filter: brightness(2);
    }

    54% {
        filter: brightness(1);
    }

    78% {
        filter: brightness(1);
    }

    80% {
        filter: brightness(2);
    }

    82% {
        filter: brightness(1);
    }

    99% {
        filter: brightness(1);
    }

}

.flashLight {
    /* mix-blend-mode: hard-light; */
    animation: flashLight2 8s infinite ease-in-out;
}