.main-sect { /* main的section */
	padding: 40px;
	text-align: center;
}
.activity-select {
    position: relative;
}
.activity-sect-title-1 { /* 區塊(公用樣式) */
    position: relative;
    width: 100%;
    font-size: 1.5rem;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
}
.activity-sect-title-1::after { /* 目前當前美食的名稱 仿相簿標題的右側箭頭 */
    position: absolute;
    content: '';
    display: block;
    width: 24px;
    height: 14px;
    top: 12px;
    right: 12px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.activity-select.active .activity-sect-title-1::after {
    transition: .3s;
    transform-origin: 50% 50%;
    transform: rotate(180deg);
    -ms-transform-origin: 50% 50%;
    -ms-transform: rotate(180deg);
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: rotate(180deg);
}
.activity-sect-decoration {
	display: none;
}
.activity-tab-box {
    display: none;
}
.activity-select.active .activity-tab-box { /* 相簿連結選單(ul容器) */
    position: absolute;
    display: block;
    width: 100%;
    top: 2.5rem;
    border: 1px solid #e0e0e0;
    border-bottom: 2px solid rgba(180,180,180,.5);
    box-shadow: 0px 4px 3px rgba(180,180,180,.5);
    z-index: 500;
    text-align: center;
}
.activity-tab-box .active {
    background-color: #f0f0f0;
}
.activity-tab-box a {
    display: block;
    width: 100%;
    height: 32px;
    line-height: 32px;
    color: #000;
    background-color: #FFF;
}
.activity-tab-box a:hover { /* 相簿連結選單(連接區塊:hover) */
    color: #000;
    background-color: #f0f0f0;
}

/* information */
.activity-intro {
    /* display: flex; */
    width: 100%;
    margin-bottom: 5%;
    /* align-items: stretch; */
}
.activity-intro::after {
    content: '';
    display: block;
    clear: both;
}
.activity-intro-box {
    float: left;
    width: 48%;
    margin: 0 1%;
}
.activity-intro-box-1 {
    position: relative;
}
.activity-main-thumbnail { /* 主圖容器 */
    position: relative;
    width: 100%;
    padding-top: 62.5%;
    overflow: hidden;
    background-color: #f0f0f0;
}
.activity-main-thumbnail img { /* 主圖 */
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.activity-intro-box-2 {
    padding: 6px;
    /* overflow-y: hidden; */
}
.activity-intro-tab-box {
    width: 100%;
    text-align: center;
}
.activity-intro-tab {
    float: left;
    display: block;
    position: relative;
    padding: 6px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.activity-intro-tab.active {
    position: relative;
    z-index: 33;
    color: #000;
    background-color: #fff;
}
.activity-intro-tab.active::after {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    right: 0;
    border: 5px solid #fff;
}
.activity-intro-content-box {
    position: relative;
    width: 100%;
    z-index: 30;
    overflow: auto;
}
.activity-intro-content {
    display: none;
    -webkit-overflow-scrolling: touch;
}
.activity-intro-content-1 {
    height: 100%;
    padding: 10px;
    text-align: left;
    background-color: #fff;
}
.activity-intro-content-2 {
    height: 100%;
    padding: 4px;
    background-color: #fff;
}
.activity-intro-content.active {
    display: block;
    overflow: auto;
    min-height: 100%;
}
.activity-intro-content-2.show-btn {
    position: relative;
}
.activity-intro-content-2::before {
    display: block;
    content: '';
    opacity: 0;
    transition: all 0.6s;
}
.activity-intro-content-2::after {
    display: block;
    content: '';
    opacity: 0;
    transition: all 0.6s;
}
.activity-intro-content-2.show-btn::before {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.56);
    transition: all 0.6s;
}
.activity-intro-content-2.show-btn::after {
    position: absolute;
    display: block;
    content: '顯示價目表';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    opacity: 1;
    width: 20%;
    min-width: 120px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #555;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.6s;
}

/* table */
.activity-intro-content-2 .activity-pricelist-table {
    width: 100%;
    text-align: center;
}
.activity-intro-content-2 .activity-pricelist-table td,
.activity-intro-content-2 .activity-pricelist-table th {
    padding: 4px 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background-color: #f3f3f3;
    white-space: nowrap;
}
.activity-intro-content-2  .activity-pricelist-table tr td:last-of-type,
.activity-intro-content-2  .activity-pricelist-table tr th:last-of-type {
    border-right: none;
}
.activity-pricelist-table .activity-desc-td {
    text-align: left;
}

/* table-lightbox */
.lightbox-box-price {
    /* display: none; */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -200%;
    opacity: 0;
    z-index: 1;
    transition: opacity .4s;
}
.lightbox-box-price.active {
    display: block;
    position: fixed;
    left: 0;
    opacity: 1;
    z-index: 10000;
    transition: opacity .4s;
}
.lightbox-box-mask-price {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
}
.lightbox-inner-box-price {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow-y: auto;
    padding: 56px 3% 56px;
}
.lightbox-box-btn-price {
    position: fixed;
    width: 32px;
    height: 32px;
    top: 12px;
    right: 12px;
    z-index: 11;
    opacity: .66;
    cursor: pointer;
    background: url('../../../images/lb-sld.png') no-repeat;
    background-size: 64px 64px;
    background-position: -32px 0;
}
.lightbox-box-btn-price:hover {
    opacity: 1;
    background-position: -32px -32px;
}
.lightbox-inner-box-price .activity-pricelist-table {
    width: 100%;
    text-align: center;
    padding: 1px;
    background-color: #f0f0f0;
}
.lightbox-inner-box-price .activity-pricelist-table td,
.lightbox-inner-box-price .activity-pricelist-table th {
    margin: 2px;
    padding: 4px 12px;
    background-color: #fff;
    border: 1px solid #f0f0f0;
}

/* 照片清單 */
.activity-photos-list {
    width: 100%;
    font-size: 16px;
}
.activity-photos-list::after {
    content: '';
    display: block;
    clear: both;
}
.activity-photos-item {
    float: left;
    width: 30%;
    margin: 0 1.5% 5%;
    padding: 8px 8px 0;
    font-size: 0.9rem;
    line-height: 1.2;
    background-color: #fff;
    border-bottom: 4px solid #fff;
    box-shadow: 1px 1px 4px rgba(0,0,0,.4);
    cursor: pointer;
}
.activity-item-thumbnail { /* 美食縮圖容器 */
    position: relative;
    width: 100%;
    padding-top: 62.5%;
    overflow: hidden;
    background-color: #f0f0f0;
}
.activity-item-thumbnail img { /* 美食縮圖 */
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.activity-item-desc {
    padding: 8px 0 0;
    height: 74px;
    text-align: left;
}
.activity-photos-item-link-box {
    position: relative;
    text-align: right;
}
.activity-photos-item-link::after {
    content: '';
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    top: -1px;
    margin-left: 4px;
    vertical-align: middle;
    border-radius: 50%;
}
@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: 1000px) {

}

@media screen and (min-width: 768px) and (max-width: 999px) {
    .main-sect { /* main的section */
        padding: 40px 5%;
    }
    .activity-photos-item {
        float: left;
        width: 45%;
        margin: 0 2.5% 5%;
    }
    .activity-item-desc {
        height: 48px;
    }
}
@media screen and (min-width: 768px) {
    /* 美食連結清單 */
    .activity-select {
        margin-bottom: 40px;
    }
    .activity-intro-box-1:hover::before {
        opacity: 0.75;
        transition: all 0.8s ease;
    }
    .activity-intro-box-1:hover .activity-head {
        opacity: 1;
        transition: all 0.8s ease;
    }
    .activity-intro-box-1 img {
        transition: all 0.8s ease;
    }
    .activity-intro-box-1:hover img {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1);
        transition: all 0.8s ease;
    }
    .activity-intro-box-1::before {
        position: absolute;
        display: block;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 8;
    }
    .activity-head {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: auto;
        padding: 10px 16px;
        -webkit-transform:         translate(-50%, -50%);
            -ms-transform:         translate(-50%, -50%);
                transform:         translate(-50%, -50%);
        opacity: 0;
        color: #fff;
        border: 1px solid #fff;
        z-index: 10;
    }
}
@media screen and (max-width: 767px) {
    .main { /* 美食 - 空出header的空間 */
        padding-top: 44px;
    }
    .main-sect { /* main的section */
        padding: 40px 5%;
    }
    .m-activity-sect-title-div { /* 美食饗宴(activity) 手機才會出現的banner */
        position: relative;
        width: 100%;
        padding-top: 46.875%;
        background-image: url('../images/activity-m-bg.jpg');
        background-size: 100% 100%;
        text-align: center;
    }
    .m-activity-sect-title-div::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, .5);
        z-index: 2;
    }
    .m-activity-sect-icon {
        position: absolute;
        width: 32px;
        height: 32px;
        top: 33%;
        right: 0;
        left: 0;
        margin: auto;
        background: url('../images/mob-page-activity-icons.png') scroll no-repeat;
        background-size: 32px 32px;
        background-position: 0 0;
        z-index: 3;
    }
    .m-activity-sect-title { /* 最新消息 手機才會出現的banner 的文字 */
        position: absolute;
        top: 62%;
        right: 0;
        left: 0;
        margin: auto;
        color: #FFF;
        font-family: 'Comic Sans MS', 'Copperplate', "Noto Sans TC", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", "新細明體", tahoma, Arial, Sans-Serif;
        font-size: 1.25rem;
        font-weight: bold;
        z-index: 3;
    }
    /* 美食 的手機畫面不會有 banner (跟其他頁面不太一樣) */
    .main-sect.activity-sect-1 { /* sect-1(後來才發現設計錯誤所以只能這樣改寫) */
        padding: 0 0 40px;
    }
    .master-pc-banner { /* 美食 - 不會有首頁的banner */
        display: none;
    }
    .activity-sect-title-1 {
        font-size: 1.2rem;
        background-color: #f3f3f3;
    }
    .activity-intro {
        padding-top: 40px;
    }
    .activity-intro-box {
        width: 100%;
        margin: 0 auto 5%;
    }
    .activity-photos-item {
        width: 100%;
        margin: 0 auto 5%;
    }
    .activity-item-desc {
        height: 48px;
    }
    .activity-head { /* 美食標題(3a沒有) */
        display: none;
    }
    /* .lightbox-active .activity-lightbox-show {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    } */
}