/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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/body_bg.webp); */
    background-color: #F8F4E8;
    background-position: center;
    background-size: 2400px;
}

main {
    background-image: url(../images/bg-image.png), url(../images/bg.jpg);
    background-size: 2400px, cover;
    background-position: top center, top center;
}


/* 按鈕顏色 */
.btnset a {
    color: #3544a7;
    border: 3px solid #3544a7;
    background-color: #fff;
    box-shadow: 0px 5px #3544a7;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .btnset a {
        font-size: 1.4rem;
        margin: 1px;
    }
}

.btnset a:hover {
    color: white;
    border: 3px solid #18246e;
    background-color: #3544a7;
    box-shadow: 0px 5px #18246e;
}

/*來去逛逛滑鼠移入*/

.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 */
@media screen and (max-width: 767px) {
    .dMdNone {
        display: none;
    }
}

.greytext {
    text-decoration: line-through;
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    .productSetprice .priceBox {
        flex-direction: column !important;
    }

    /* .greytext {
        display: flex;
        justify-content: center;
    } */
}

/* KV */
#kvTopBN {
    background-image: url(../images/kv-bg.jpg);
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 767px) {
    #kvTopBN {
        background-image: url(../images/kv-bg-mb.jpg);
        background-size: cover;
        background-position: center;
    }
}

/* sec02 */
.sec02-tag {
    position: relative;
    z-index: 1;
}

.sec02-product {
    margin: 0 3px;
    margin-top: -35px;
    position: relative;
    z-index: 0;
}

.sec02-swiper {
    padding-top: 40px;
    border: #ef7d00 4px solid;
    border-radius: 20px;
}

/* sec03 */
.sec03-bg {
    background-image: url(../images/sec03-bg.png);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.sec03-product {
    background-color: white;
    border: #f9d5e5 4px solid;
    border-radius: 20px;
    /* padding: 5px; */
}

#sec03 .carsboxbg {
    background: none;
}


/* sec04 */
.sec04-bg {
    background-image: url(../images/sec04-bg.png);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.sec04-product {
    background-color: white;
    border: #e52929 4px solid;
    border-radius: 20px;
    /* padding: 5px; */
}

#sec04 .carsboxbg {
    background: none;
}

/* method */
section#method a {
    background-color: red;
    color: white;
}

section#method a:hover {
    background-color: white;
    color: red;
}

/* 斷點區 */

@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) {}