
/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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: #072d76;
    background-position: center;
    background-size: 2400px;
}

main .visualBox {
    background-image: url(../images/kv_bg.png);
    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;
}

/* 其他東西自己寫這↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */


.kv_bg {
    background-image: url(../images/kv_bg.png);
    overflow: hidden;
    background-position: top center;
    position: relative;
    background-repeat: repeat-x;
}

.bg_bg{
    background-image: url(../images/body_bg.jpg);
    background-position: center;
    min-height: 600px; 
    background-attachment: fixed;
    background-size: cover;
}

.line_bg{
    background-image: url(../images/line_bg.jpg);
    height: 9px;
}

.animation_light{    
    animation: teeter3 2s infinite alternate;
  }
.animation_ufo {
    animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
    -moz-animation-animation-delay: 1.4s;
    -ms-animation-animation-delay: 1.4s;
    animation: teeter .5s infinite alternate;
  }
@keyframes teeter {

	0% {
		transform: translateY(0vh);
	}

	100% {
		transform: translateY(2vh);
	}
}

  @keyframes teeter3 {

    0% {
      -webkit-filter:brightness(1);
      }
  
      3% {
      -webkit-filter:brightness(2);
    }
      
      10% {
      -webkit-filter:brightness(1);
      }
      
      97% {
      -webkit-filter:brightness(1);
    }
  
    100% {
      -webkit-filter:brightness(2);
    }
  }

.shadow{
    -webkit-filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.5))
}

.padd-less{
    margin-top: -3%;
    margin-bottom: 3.5%;
}


/* 斷點區 */

@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){
    .kv_bg {
        background-image: url(../images/kv_bg-mo.png);
        overflow: hidden;
        background-position: top center;
        position: relative;
        background-repeat: repeat-x;
        background-size: contain;
    }
    .padd-less{
        margin-top: -3%;
        margin-bottom: 0;
    }    
}

@media screen and (max-width: 640px){
    
}

@media screen and (max-width: 480px){

}