
/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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 .visualBox {
    background-image: url(../images/topBn_bgrepeat.webp);
    background-size: 100% 100%;
    overflow: hidden;
    background-position: top center;
    position: relative;
    background-repeat: repeat-x;
}


/* 按鈕顏色 */
.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;
}

/* 其他東西自己寫這↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */


.squarepppinfoinn-box.pppinfobox{
    background: #075F9E;
    text-decoration: none;
    color: #fff;
}

.visualBox {
    background-image: url(../images/kv_bg.png);
    background-size: cover;
    overflow: hidden;
    background-position: top center;
    position: relative;
    background-repeat: repeat-x;
    background-color: #f6bc4f;
    animation: bg steps(3) 5s infinite;
}


@keyframes bg {
    to {
        background-position: -2000px 0; //算好移動到最後一張的寬度
    }

}

.field{
    background-image: url(../images/field_bg.png);
    background-color: #f6bc4f;
    background-position: top center;
}

.bt_field{
    background-image: url(../images/bt_field_bg.jpg);
    background-position: top center;
    background-size: contain;
}
.korea{
    border: #8d6e40 5px solid;
    border-radius: 20px;
    margin-top: -5%;
    padding-top: 3%;
}

.titleset{
    position: relative;
    z-index: 2;
}

.bg-green{
    background-color: #88ceb8;
    padding: 4% 15px 0;
}


.bg-qq{
    border: #a65c49 2px solid;
    background-color: #a65c49;
    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){
    
}

@media screen and (max-width: 640px){
    .logooutbox .logoinn {
        flex: 0 0 33%;
    }
    .visualBox {
        background-size: 1500%;}
   .korea{
    border: #8d6e40 3px solid;
    margin-top: -10%;
    padding-top: 5%;
}     
}

@media screen and (max-width: 480px){

}