/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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: 2400px;
}

main {
    background-image: url(../images/bg2.png);
    background-size: 2400px;
    background-position: top center;
    background-repeat: repeat;
}


/* 按鈕顏色 */
.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 */
.pdCard {
    border-radius: 40px;
    border: 4px #fff solid;
    outline: 5px #fff solid;
    filter: drop-shadow(0 10px 0px rgba(77, 72, 72, 0.2));
    margin-top: 5px;
}

@media screen and (max-width: 767px) {
    .dMdNone {
        display: none;
    }

    .pdCard {
        border-radius: 30px;
        border-width: 3px;
        outline-width: 4px;
    }
}



/* KV */
#kvTopBN {
    background-image: url(../images/kv-bg.png);
    background-size: cover;
    background-position: bottom center;
}

#kvTopBN .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (max-width: 767px) {
    #kvTopBN {
        background-image: url(../images/kv-bg-mb.png);
        background-size: cover;
        background-position: bottom center;
    }
}



/* sec01 */
#sec01-1 {
    background-image: url(../images/sec01-1-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.cardBorderSec01-1 {
    border-color: #76a959;
}

#sec01-2 {
    background-image: url(../images/sec01-2-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.cardBorderSec01-2 {
    border-color: #f27758;
}

/* sec02 */
.sec02ProductBg {
    background-image: url(../images/sec02-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cardBorderSec02 {
    border: 4px #4191d6 solid;
    margin-top: 30px;
}

@media screen and (max-width: 1199px) {
    .cardBorderSec02 {
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .cardBorderSec02 {
        margin-top: -15px;
    }
}


/* sec03 */
.sec03Pd {
    outline-color: #a7126d;
    background-image: url(../images/sec03-bg.jpg);
    background-size: cover;
    background-position: bottom center;
    margin-top: -45px;
}

@media screen and (max-width: 767px) {
    .sec03Pd {
        background-image: url(../images/sec03-bg-mb.jpg);
        background-size: cover;
        background-position: bottom center;
        margin-top: -30px;
    }

}


/* 斷點區 */

@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) {}