/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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
*/



/* 全站背景 */
html {
    scroll-behavior: smooth;
}

body {
    background-image: url(../images/body_bg.jpg);
    background-color: #c7e8f7;
    background-position: top center;
    background-size: 2000px;
}

main {
    background-image: url(../images/topBn_bgrepeat.webp);
    background-size: 100% 100%;
    overflow: hidden;
    background-position: top center;
    position: relative;
    background-repeat: repeat-x;
}


#kvTopBN {
    background-image: url(../images/kvbbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

@media screen and (max-width: 640px) {
    #kvTopBN {
        background-image: none;
    }

}

/* 按鈕顏色 */
.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;
}

.titleset {
    z-index: 1;
    position: relative;
}

.lightlight {
    margin-top: -15px;
    border: solid 5px #075F9E;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.4);
}

.lightlight2{
    margin-top: -25px;
}

.carsboxbg {
    background-color: transparent;
}

.nature {
    background-image: url(../images/naturebg.jpg);
    background-size: cover;
    border-radius: 30px 30px 0 0;
    background-position: bottom center;
}

.nature2 {
    background-image: url(../images/naturebg.jpg);
    background-size: cover;
    background-position: top center;
    border-radius: 30px 0 0 30px;
}

.carsboxbg.carsboxbg22 {
    padding-left: 8px;
    padding-bottom: 20px;
    padding-top: 15px;
}

.hotbrandBox li.nav-item {
    width: 32%;
    text-align: center;
    /* background: #0d57a7; */
    /* color: #fff; */
}

.hotbrandBox li.nav-item a {
    color: #fff;
    background: #0d57a7;
    border: 1px solid #fff;
    border-bottom: none;
    line-height: 1.2;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    /* color: #0d57a7; */
    color: #000;
}

/* 斷點區 */

@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) {
    body {
        background-size: 200%;
    }

    footer {
        padding-bottom: 15px;
    }

    .actablebox {
        font-size: 14px;
    }

    .actablebox th.table-title {
        font-size: 1.2rem;
    }

    .visualBox {
        background-image: none;
    }

    .nature2 {
        border-radius: 30px 30px 0 0;
    }

}

@media screen and (max-width: 640px) {
    .logooutbox .logoinn {
        flex-basis: 24%;
    }
}

@media screen and (max-width: 480px) {}