@charset "UTF-8";

#section-location {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.section-landmarks {
    position: relative;
    min-height: 1024px;
}

.gestures {
    pointer-events: none;
    color: #fff;
    font-size: 20px;
    text-align: center;
    position: absolute;
    transform: translateY(80%);

    width: 100%;
    /*z-index: 100;*/
    z-index: 2;
    opacity: 1;
    -webkit-transition: margin-top 0.2s cubic-bezier(0, 0, 0.18, 1) 0s, opacity 0.2s cubic-bezier(0, 0, 0.18, 1) 0s;
    transition: margin-top 0.2s cubic-bezier(0, 0, 0.18, 1) 0s, opacity 0.2s cubic-bezier(0, 0, 0.18, 1) 0s;
    -webkit-animation: gestures-flick 1s ease-in-out infinite alternate;
    animation: gestures-flick 1s ease-in-out infinite alternate;
}


@media (max-width: 767px) {
    .gestures {
        position: absolute;
        left: 0;
        width: 100%;
        z-index: 20;
    }

    /* 第一張：區域地圖 */
    .map-section-traffic .gestures {
        top: 850px;
    }

    /* 第二張：歷年建案 */
    .map-section-building .gestures {
        top: 300px;
    }
}
.gestures-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* icon 和文字的間距，可自行調整 */
}

.gestures .finger {
    height: 2rem;
    display: block;
}

.animated .gestures {
    opacity: .3;
    -webkit-transition: margin-top 1s cubic-bezier(0, 0, 0.18, 1) 1.5s, opacity 1s cubic-bezier(0, 0, 0.18, 1) 1.5s;
    transition: margin-top 1s cubic-bezier(0, 0, 0.18, 1) 1.5s, opacity 1s cubic-bezier(0, 0, 0.18, 1) 1.5s;
}

@-webkit-keyframes gestures-flick {
    0% {
        margin-left: -35px;
    }

    100% {
        margin-left: -15px;
    }
}

@keyframes gestures-flick {
    0% {
        margin-left: -35px;
    }

    100% {
        margin-left: -15px;
    }
}




.section-landmarks .wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: hidden;
    /*background: #0039A8;*/
    /*background: #29332a;*/
    background: #0051A3;
    -webkit-overflow-scrolling: touch;
}



.section-landmarks .landscape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;

    width: 1920px;
    height: 1024px;
    /*padding-top: 210px;*/
    /*background: url(../images/A/view.jpg) 0 bottom no-repeat;*/
    /* background-image: url(../images/img/sky.png); */
    background-position: bottom;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

/* .section-landmarks .landscape:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/img/Sky_text.svg);
} */

@media (max-width: 767px) {
    .section-landmarks .wrapper {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    .section-landmarks .landscape {
        width: 1920px;
        max-width: none;
    }
}

@media (max-width: 990px) {
    .section-landmarks .landscape {
        width: 1920px;
        height: 1024px;
        max-width: none;
    }

    .section-landmarks {
        min-height: 1024px;
    }

    .section-landmarks .wrapper {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
    }
}


.section-landmarks .landscape ul {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    opacity: 0;
}


.section-landmarks .landscape ul li {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    display: inline-block;
    position: absolute;
    padding: 10px;
    /*background-color: rgba(255, 255, 255, 0.5);*/
    /*border: 1px solid #fff;*/
    /*border-radius: 22px;*/
    color: #fff;
    /*font-weight: bold;*/
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    line-height: 1em;
    letter-spacing: 2px;
    text-orientation: upright;
    white-space: nowrap;

}

.section-landmarks .landscape ul li span {
    font-weight: 700;
    color: #f5ea0a;
}

.section-landmarks .landscape ul li:before {
    bottom: -100px;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    border-radius: 50%;
    display: none;
    opacity: 0;
}

.section-landmarks .landscape ul li:after {
    top: 100%;
    left: 50%;
    width: 1px;
    height: 135px;
    margin-left: -1px;
}

.section-landmarks .landscape ul li:nth-child(-n+10)::before {
    bottom: -40px;
}

.section-landmarks .landscape ul li:before,
.section-landmarks .landscape ul li:after {
    content: "";
    display: block;
    position: absolute;
    background-color: #f5ea0a;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5)
}

.section-landmarks .landscape ul li.highlight {
    padding: 20px 10px;

    background-color: #f05984;
    border-color: #f05984;
    font-size: 1.5rem;
    left: 1460px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5)
}

.section-landmarks .landscape ul li.highlight:before,
.section-landmarks .landscape ul li.highlight:after {
    background-color: #f05984;
}


.section-landmarks .landscape ul li.highlight {
    left: 1010px;
    bottom: 330px;

}


@media(min-width: 1880px) {
    .section-landmarks .wrapper {
        overflow: hidden;
    }
}