/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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-2.jpg);
    background-position: top center;
    background-size: cover;
}

@media screen and (max-width: 767px){
    body {
        background-image: url(../images/bg-mb-2.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);
    }
}

.mt-less{
    margin-top: -50px;
}

@media screen and (max-width: 767px){
    .mt-less{
        margin-top: 0px;
    }
}

.pd-bg-mb{
    background-image: url(../images/pd-bg-mb.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-mb-2{
    background-image: url(../images/pd-bg-mb-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


.pd-bg-1 {
    background-image: url(../images/pd-bg-1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-2 {
    background-image: url(../images/pd-bg-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-3 {
    background-image: url(../images/pd-bg-3.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-4 {
    background-image: url(../images/pd-bg-4.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-5 {
    background-image: url(../images/pd-bg-5.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-6 {
    background-image: url(../images/pd-bg-6.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-7 {
    background-image: url(../images/pd-bg-7.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-8 {
    background-image: url(../images/pd-bg-8.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-9 {
    background-image: url(../images/pd-bg-9.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-10 {
    background-image: url(../images/pd-bg-10.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-11 {
    background-image: url(../images/pd-bg-11.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.pd-bg-12 {
    background-image: url(../images/pd-bg-12.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}



/* 按鈕顏色 */
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){

}