/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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.png);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

main {
    background-image: url(../images/topBn_bgrepeat.webp);
    background-size: 100% 100%;
    overflow: hidden;
    background-position: top center;
    position: relative;
    background-repeat: repeat-x;
}

.s3-title-bg{
    background-image: url(../images/title-3bg.png);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    border-radius: 30px;
}

.s3-card-bg{
    background-image: url(../images/s3-card-bg.jpg);
    background-size: 1110px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
}

.s4-card-bg{
    background-image: url(../images/s4-card-bg.png);
    background-size: cover;
    background-position:bottom center;
    background-repeat: no-repeat;
    border-radius: 30px;
}

.s5-card-bg{
    background-image: url(../images/s5-card-bg.png);
    background-size: 1440px;
    background-position:bottom center;
    background-repeat: no-repeat;
    border-radius: 30px;
}

.s3-bg{
    background-image: url(../images/s3-bg.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.s4-bg{
    background-image: url(../images/s4-bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.s5-bg{
    background-image: url(../images/s5-bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.s2-box{
    background-color: #a6d1ed;
    border-radius: 30px 30px 12px 12px;
}

.s4-box{
    background-color: #ffe7f1;
    border-radius: 30px 30px 12px 12px;
}

.s5-box{
    background-color: #dfc19a;
    border-radius: 30px 30px 12px 12px;
}


.floating-box {
    -webkit-animation: baloon_1 5s infinite;
    -moz-animation: baloon_1 5s infinite;
    -ms-animation: baloon_1 5s infinite;
    -o-animation: baloon_1 5s infinite;
    animation: baloon_1 5s infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes baloon_1 {

    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-20px);
    }

}

.floating-box-2 {
    -webkit-animation: baloon_2 5s infinite;
    -moz-animation: baloon_2 5s infinite;
    -ms-animation: baloon_2 5s infinite;
    -o-animation: baloon_2 5s infinite;
    animation: baloon_2 5s infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes baloon_2 {

    0% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(20px);
    }

}



.methodbox-bg{
    background-image: url(../images/methodbox-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}


.kv_pd_bg{
    background-image: url(../images/kv_pd_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.mix-blend{
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
    -o-webkit-mix-blend-mode: screen;
    -moz-mix-blend-mode: screen;
}

.mt-less{
    margin-top: -20px;
}

.mt-less2{
    margin-top: 0px;
}



section#method a{
    color: #1f7935;
    background-color: #fff7b5;
}

section#method a:hover{
    color: #fff7b5;
    background-color: #1f7935;
}


/* .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;
}

.visualBox{
    background-image: url(../images/kvbg.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    /* background-size: 1440px; */
    background-size: cover;
}
.swiper-pagination.qq.swiper-pagination-clickable.swiper-pagination-bullets{
    bottom: 15px;
}
.box-atop{
    background-image: url(../images/box-atop.jpg);
    background-repeat: repeat-y;
    margin-top: -50px;
    padding-top: 50px;
    padding-bottom: 30px;
}
.box-abottom{
    background-image: url(../images/box-abottom.png);
    background-repeat: no-repeat;
    margin-top: -30px;
    padding-top: 30px;
}
.dui-container{
    position: relative;
    min-height: 100%;
    width: 100%;
    }
.left-leaf{
    position: fixed;
    bottom: 0px;
    left: -25%;
    }
.right-leaf{
    position: fixed;
    bottom: 0px;
    right: -30%;
    }    

/* 斷點區 */

@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){
    .mt-less2{
    margin-top: -20px;
}

.s3-card-bg{
    background-image: url(../images/s3-card-bg-mb.png);
    background-size: contain;
    background-position: center;
}

.s5-card-bg{
    background-image: url(../images/s5-card-bg-mb.png);
    background-size: cover;
    /* background-position:bottom center; */
}

.brands-bg{
    background-image: url(../images/brands-bg-mb.png);
    /* background-size: contain;
    background-position: top center;
    background-repeat: no-repeat; */
}

.s2-bg{
    background-image: url(../images/s2-bg-mb.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/* body {
    background-image: url(../images/body-bg-mb.png);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
} */

    .actablebox{
        font-size: 14px;
    }
    .actablebox th.table-title{
        font-size: 1.2rem;
    }
    footer {
        padding-bottom: 15px;
    }


}

@media screen and (max-width: 640px){
    .logooutbox .logoinn{
        flex-basis: 24%;
    }
}

@media screen and (max-width: 480px){

}