.main-sect { /* main的section */
	padding: 40px;
}
.about-sect-title { /* sect標題 */
    width: 100%;
    margin-bottom: 40px;  
    font-size: 1.5rem;
    line-height: 2.5rem;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}
.about-sect-cont { /* sect內容容器 */

}
.about-sect-1 {  /* 只用來裝標題的section */
    
}
.about-sect-2 {  /* 關於我們 */ /* 這裡會有摺疊的div */
    background-color: #fff;
}
.about-sect-3 {  /* 民宿特色 */ /* 這裡會有摺疊的div */
    background-color: #f8f8f8;
}
.about-sect-4 {  /* 主人的話 */ /* 這裡會有摺疊的div */
    /* 背景為主題色不用在這裡設定 */
}
.about-sect-5 {  /* 民宿設施 */
    background-color: #f2f2f2;
}
.js-about-unfold-inner img {
    max-width: 100%;
}
/* unfold-btn 的設定 */
.about-unfold-div { /* 文章過長控制div */
    position: relative;
}
.about-unfold-btn { /* 文章過長按鈕 */
    position: absolute;
    display: block;
    width: 100%;
    height: 2rem;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    text-align: center;
    text-decoration: none;
}
.about-unfold-btn::before { /* 文章過長按鈕 */
    position: absolute;
    content: '';
    display: block;
    width: 0;
    height: 0;
    top: 12px;
    right: 0;
    left: 0;
    margin: auto;
    border: 12px solid transparent;
    z-index: 2;
}
.about-unfold-btn::after { /* 文章過長按鈕 */
    position: absolute;
    content: '';
    display: block;
    width: 0;
    height: 0;
    top: 9px;
    right: 0;
    left: 0;
    margin: auto;
    border: 13px solid transparent;
    z-index: 3;
}

/* unfold-btn 的背景顏色控制 */
.about-sect-2 .about-unfold-btn { /* 關於我們的section */
    background-color: #fff;
}
.about-sect-2 .about-unfold-btn::after { /* 關於我們的文章過長按鈕(模擬向下箭頭) */
    border-top-color: #fff;
}
.about-sect-3 .about-unfold-btn { /* 民宿特色的section */
    background-color: #f8f8f8;
}
.about-sect-3 .about-unfold-btn::after { /* 民宿特色的文章過長按鈕(模擬向下箭頭) */
    border-top-color: #f8f8f8;
}
.about-sect-4 .about-unfold-btn { /* 主人的話的section */
    background-color: transparent; /* 背景為主色 所以在顏色css中設定 */
}
.about-sect-4 .about-unfold-btn::after { /* 主人的話的文章過長按鈕(模擬向下箭頭) */
    border-top-color: transparent; /* 背景為主色 所以在顏色css中設定 */
}
/* slider */
.bnb-intro-photos.owl-carousel .owl-item .img-item {
    position: relative;
    width: 100%;
    padding-top: 62.57143%;
    background-color: #e0e0e0;
}
.bnb-intro-photos.owl-carousel .owl-item .img-item img {
    position: absolute;
    width: auto;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    cursor: pointer;
    margin: auto;
}

@media screen and (min-width: 1280px) {
    .main-sect { /* main的section */
        padding: 40px 20%;
    }
}
@media screen and (min-width: 1000px) and (max-width: 1279px) {
    .main-sect { /* main的section */
        padding: 40px 12%;
    }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
    .main-sect { /* main的section */
        padding: 40px 5%;
    }
}
@media screen and (min-width: 768px) {

}
@media screen and (max-width: 767px) {
    .master-pc-banner { /* 關於我們 - 有首頁的banner */

    }
    .main { /* 關於我們 - 本頁不用空出header的空間 */
        
    }
    .main-sect { /* main的section */
        padding: 40px 5%;
    }
    .about-sect-title { /* sect標題 */
        font-size: 1.2rem;
    }   
}