
/* 當你想為某一個區塊或方塊，增加背景，請在該區塊/方塊上增加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.jpg);
    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;
}

.part1 {
    position: relative;
    background-color: #ffffff;
    border: 5px solid #5fbcbb;
    margin-top: -50px;
    padding-top: 20px;
    margin-bottom: 60px;
    padding-bottom: 25px;
    border-radius: 200px;
}

.upup{
    position: relative;
    z-index: 2;
}

.part2 {
    position: relative;
    background-color: #5fbcbb;
    border: 5px solid #ffffff;
    margin-top: 0px;
    padding-top: 20px;
    margin-bottom: 60px;
    padding-bottom: 25px;
    border-radius: 50px;
}

.part3 {
    position: relative;
    background-color: #2955a4;
    border: 5px solid #ffffff;
    margin-top: 0px;
    padding-top: 20px;
    margin-bottom: 60px;
    padding-bottom: 25px;
    border-radius: 50px;
}

.part4 {
    position: relative;
    background-color: #cacaca;
    /* border: 5px solid #ffffff; */
    margin-top: -30px;
    padding-top: 8px;
    margin-bottom: 5px;
    padding-bottom: 0px;
    border-radius: 0px;
}





/* 按鈕顏色 */
.btnset a {
    color: #5fbcbb;
    border: 3px solid #5fbcbb;
    background-color: #fff;
    box-shadow: 3px 5px #5fbcbb;
    line-height: 1.2;
}/*來去逛逛*/

.btnset a:hover {
/*    color: rgb(44, 40, 1);*/
    color:#fff;
    border: 3px solid #5fbcbb;
    background-color: #5fbcbb;
    box-shadow: 3px 5px #5fbcbb;
}/*來去逛逛滑鼠移入*/

.nocarslideinnBox01 {
    background-color: #084B7D;
    padding: 10px;
}

/* 其他東西自己寫這↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */


.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){

    .part1-mo {

        position: relative;
        background-color: #ffffff;
        border: 2px solid #5fbcbb;
        margin-top: -24px;
        padding-top: 11px;
        margin-bottom: 35px;
        padding-bottom: 5px;
        border-radius: 17px;
    
    }

    .part2-mo {
        position: relative;
        background-color: #5fbcbb;
        border: 2px solid #ffffff;
        margin-top: 0px;
        padding-top: 20px;
        margin-bottom: 60px;
        padding-bottom: 25px;
        border-radius: 17px;
    }
    
    .part3-mo {
        position: relative;
        background-color: #2955a4;
        border: 2px solid #ffffff;
        margin-top: -45px;
        padding-top: 20px;
        margin-bottom: 60px;
        padding-bottom: 25px;
        border-radius: 17px;
    }
    
    .part4-mo {
    position: relative;
    background-color: #cacaca;
    /* border: 5px solid #ffffff; */
    margin-top: 0px;
    padding-top: 8px;
    margin-bottom: 5px;
    padding-bottom: 0px;
    border-radius: 0px;
    }
    
    
}

@media screen and (max-width: 640px){
    
}

@media screen and (max-width: 480px){

}