.main-sect { /* main的section */
    padding: 40px;
}
.cuisine-info-sect-1 {  /* 相簿的第一個區塊(也只有一個) */
    
}
.cuisine-info-sect-title-1 { /* 相簿的標題 */
    position: relative;
    margin-bottom: 40px;
    padding: 20px 0;
    font-size: 1.5rem;
    font-weight: bold;
}
.cuisine-info-sect-title-1::after {
    content: '';
    position: absolute;
    display: block;
    width: 70px;
    height: 2px;
    left: 0;
    bottom: 0;
}
.cuisine-info-sect-title-1::before {
    content: '';
    position: absolute;
    display: block;
    width: 230px;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #f0f0f0;
}
.cuisine-info-sect-decoration { /* 2a 獨有 */
    display: none;
}

/* 美食連結清單 */
.cuisine-info-tab-box { /* 相簿連結選單 */
    text-align: right;
    margin-bottom: 20px;
}
.cuisine-info-tab-box a { /* 相簿連結選單 */
    position: relative;
    display: inline-block;
    min-height: 32px;
    line-height: 32px;
    /* 數值微調 2018-09-07-from Jackie request */
    /* 改成底色為主題色 2018-10-27-from Jackie request */
    padding: 0 16px;
    margin-right: 10px;
    margin-bottom: 12px;
    /* 2018-12-22 */
    color: #666;
    border: 1px solid #666;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/* 2018-12-22 */
.cuisine-info-tab-box a.active::after {
    position: absolute;
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin: auto;
    right: 0;
    left: 0;
    bottom: -5px;
    border: 5px solid transparent;
    border-bottom: none;
}

/* 相片圖文清單 */
.cuisine-info-list { /* 相片圖文清單(ul容器) */
    position: relative;
}
.cuisine-info-list::after { /* clear */
    content: '';
    display: block;
    clear: both;
}
.cuisine-info-list>li { /* 相片圖文清單(li) */
    float: left;
    position: relative;
    width: 48%;
    margin: 0 1% 5%;
}
.cuisine-info-list-img { /* 美食相片圖文清單的圖容器 */
    display: block;
    position: relative;
    width: 100%;
    padding-top: 62.5%;
    overflow: hidden;
    background-color: #f0f0f0;
}
.cuisine-info-list-img img { /* 美食相片圖文清單的圖 */
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.cuisine-info-list-txt {
    text-align: center;
}
.cuisine-info-head {

}
.cuisine-info-list-link-box {

}
.cuisine-info-list-link {

}
.cuisine-info-desc {
    display: none;
}

@media screen and (min-width: 1000px) {
    .main-sect { /* main的section */
        padding: 40px 12%;
    }
    .cuisine-info-sect-1 {  /* 相簿的第一個區塊(也只有一個) */
        padding-top: 0;
    }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
    .main-sect { /* main的section */
        padding: 40px 5%;
    }
    .cuisine-info-sect-1 {  /* 相簿的第一個區塊(也只有一個) */
        padding-top: 0;
    }
}
@media screen and (min-width: 768px) {
    .main-sect { /* main的section */ 
        
    }
    .cuisine-info-tab-box a:hover { /* 相簿連結選單 */
        /* 2018-12-22 */
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .cuisine-info-list-txt { /* 美食清單的文字主容器 */
        /* 數值微調 2018-09-07-from Jackie request */
        position: absolute;
        width: 52%;
        height: 66%;
        top: 17%;
        right: 0;
        left: 0;
        margin: auto;
        padding: 15px 20px 0;
        /* opacity: 0; */
        overflow: hidden;
        font-size: 1rem;
        text-align: center;
        z-index: 5;
        transition: all 0.8s ease;
    }
    .cuisine-info-list-img::before {
        position: absolute;
        content: '';
        display: block;
        width: 52%;
        height: 66%;
        top: 17%;
        right: 0;
        left: 0;
        margin: auto;
        z-index: 4;
        transition: all 0.8s ease;
    }
    li:hover .cuisine-info-list-img::before { /* 美食清單的文字主容器 */
        width: 100%;
        height: 100%;
        top: 0;
    }
    .cuisine-info-list-img img {
        transition: all 0.8s ease;
    }
    li:hover .cuisine-info-list-img img {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1);
        transition: all 0.8s ease;
    }
    .cuisine-info-list-link { /* 美食清單的連結icon */
        content: '';
        position: absolute;
        display: block;
        width: 24px;
        height: 24px;
        right: 0;
        bottom: 20px;
        left: 0;
        margin: 10px auto;
        background: url('../images/i5.png') no-repeat center center;
        background-size: 100% 100%;
    }
}
@media screen and (max-width: 767px) {
    .main-sect { /* main的section */
        padding: 40px 5%;
    }
    .cuisine-info-sect-1 {  /* 相簿的第一個區塊(也只有一個) */
        padding-top: 0;
    }
    .cuisine-info-tab-box a { /* 相簿連結選單 */
        padding: 0;
        margin-right: 16px;
        color: #000;
    }
    .masonry-sizer {
        width: 100%;
    }
    .cuisine-info-list>li {
        width: 100%;
        margin-bottom: 5%;
    }
    .gutter-sizer { /* 間隔sizer */
        width: 0;
    }
    .cuisine-info-list-txt { /* 美食清單的文字主容器 */
        /* 數值微調 2018-09-07-from Jackie request */
        position: absolute;
        width: 52%;
        height: 60%;
        top: 20%;
        left: 0;
        right: 0;
        margin: auto;
        padding: 10px 20px 0;
        overflow: hidden;
        font-size: 1rem;
        text-align: center;
        z-index: 5;
    }
    .cuisine-info-list-img::before { /* 美食清單的文字主容器(主題色背景) */
        position: absolute;
        content: '';
        display: block;
        width: 52%;
        height: 60%;
        top: 20%;
        right: 0;
        left: 0;
        margin: auto;
        z-index: 4;
    }
    .cuisine-info-list-link { /* 美食清單的連結icon */
        content: '';
        position: absolute;
        display: block;
        width: 24px;
        height: 24px;
        right: 0;
        bottom: 20px;
        left: 0;
        margin: 10px auto;
        background: url('../images/i5.png') no-repeat center center;
        background-size: 100% 100%;
    }
}