/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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: 2400px;
    background-position: top center;

}


main {
    background-image: url(../images/topbg.png), url(../images/image.png);
    background-size: 2400px, 2400px;
    background-position: top center, top center;
    background-repeat: no-repeat, repeat;

}





@media screen and (max-width: 767px) {
    body {
        background-image: url(../images/bg.jpg);
        background-size: 1000px;
        background-position: top center;

    }

    main {
        background-image: url(../images/topbg-mb.png), url(../images/image.png);
        background-size: contain, 2400px;
        background-position: top center, top center;
        background-repeat: no-repeat, repeat;

    }
}





.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 */
.nocarslide {
    border: 1px solid rgba(11, 72, 77, 0.4);
}

.cardBox {
    background: #fff;
    border: 4px solid #0b484d;
    border-radius: 30px;
    padding: 70px 10px 10px 10px;
    margin-top: -75px;
    box-shadow: 0 5px white;
}

@media screen and (max-width: 991px) {

    .dLgNone {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .cardBox {
        background: #fff;
        border: 4px solid #0b484d;
        border-radius: 20px;
        padding: 30px 10px 10px 10px;
        margin-top: -30px;
    }

    .dMdNone {
        display: none;
    }
}

/* kv */
#kvTopBN {
    background-image: url(../images/kv-bg.png);
    background-size: cover;
    background-position: top center;
}

.title {
    background-image: url(../images/info.png);
    background-size: cover;
}

@media screen and (max-width: 767px) {
    #kvTopBN {
        background-image: url(../images/kv-bg-mb.png);
        background-size: cover;
        background-position: top center;
    }

    .title {
        background-image: url(../images/info-mb.png);
        background-size: cover;
    }
}


/* method */
#method {
    background-image: url(../images/botbg.png);
    background-size: 2400px;
    background-position: bottom center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    #method {
        background-image: url(../images/botbg-mb.png);
        background-size: contain;
        background-position: bottom center;
        background-repeat: no-repeat;
    }
}

section#method a {
    padding: 0 3px;
    color: rgb(255, 0, 0);
}

section#method a:hover {
    color: white;
    background-color: rgb(255, 0, 0);
    text-shadow: none;
}


/* 斷點區 */

@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) {}

/* 動畫 */

/* 左右扇形移動 */
.wobble-hor-bottom-2 {
    -webkit-animation: wobble-hor-bottom-2 5s cubic-bezier(.25, .46, .45, .94) infinite both;
    animation: wobble-hor-bottom-2 5s cubic-bezier(.25, .46, .45, .94) infinite both
}

@-webkit-keyframes wobble-hor-bottom-2 {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    15% {
        -webkit-transform: translateX(-30px) rotate(-6deg);
        transform: translateX(-30px) rotate(-6deg)
    }

    30% {
        -webkit-transform: translateX(15px) rotate(6deg);
        transform: translateX(15px) rotate(6deg)
    }

    45% {
        -webkit-transform: translateX(-15px) rotate(-3.6deg);
        transform: translateX(-15px) rotate(-3.6deg)
    }

    60% {
        -webkit-transform: translateX(9px) rotate(2.4deg);
        transform: translateX(9px) rotate(2.4deg)
    }

    75% {
        -webkit-transform: translateX(-6px) rotate(-1.2deg);
        transform: translateX(-6px) rotate(-1.2deg)
    }
}

@keyframes wobble-hor-bottom-2 {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%
    }

    15% {
        -webkit-transform: translateX(-30px) rotate(-6deg);
        transform: translateX(-30px) rotate(-6deg)
    }

    30% {
        -webkit-transform: translateX(15px) rotate(6deg);
        transform: translateX(15px) rotate(6deg)
    }

    45% {
        -webkit-transform: translateX(-15px) rotate(-3.6deg);
        transform: translateX(-15px) rotate(-3.6deg)
    }

    60% {
        -webkit-transform: translateX(9px) rotate(2.4deg);
        transform: translateX(9px) rotate(2.4deg)
    }

    75% {
        -webkit-transform: translateX(-6px) rotate(-1.2deg);
        transform: translateX(-6px) rotate(-1.2deg)
    }
}
