@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC&display=swap");
* {
    font-family: 微軟正黑體;
    letter-spacing: 1.5px;
}

a {
    text-decoration: none;
    color: black;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translate(0, -5%);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slide-fade1 {
    0% {
        transform: translate(-10%, 0);
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes shakeleft {
    0% {
        opacity: 0.5;
        margin-left: -3%;
    }
    50% {
        margin-left: -5%;
        opacity: 1;
    }
    100% {
        opacity: 0.5;
        margin-left: -3%;
    }
}

@keyframes shakeright {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10%, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}

.fade-enter,
.fade-leave-to {
    opacity: 0;
}

.fade-enter-active,
.fade-leave-active {
    transition: all 0.5s ease;
}

.whiteFade-enter,
.whiteFade-leave-to {
    opacity: 0;
}

.whiteFade-enter-active {
    transition: all 1s ease;
}

.rightIn-enter {
    transform: translateX(10%);
    opacity: 0;
}

.rightIn-leave-to {
    opacity: 0;
}

.rightIn-enter-active {
    transition: all 0.8s ease;
}

.noEnterFade-enter,
.noEnterFade-leave-to {
    opacity: 0;
}

.noEnterFade-leave-active {
    transition: all 0.5s ease;
}

.noLeaveFade-enter,
.noLeaveFade-leave-to {
    opacity: 0;
}

.noLeaveFade-enter-active {
    transition: all 0.5s ease;
}

.loadingfade-leave-to {
    opacity: 0;
}

.loadingfade-leave-active {
    transition: all 0.5s ease;
}

.hl {
    width: 100%;
    border-top: solid 2px black;
    height: 25vw;
    padding: 2vw 0;
    box-sizing: border-box;
}

@media all and (max-width: 610px) {
    .hl {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 2vw 0;
    }
}

.hl .hlBlock {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
}

@media all and (max-width: 610px) {
    .hl .hlBlock {
        display: flex;
        flex-direction: column;
    }
}

.hl .hlBlock .link {
    width: 25%;
    height: 100%;
    background-color: #333333;
    padding: 2vw;
    box-sizing: border-box;
    position: relative;
    margin-right: 0.8vw;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .link {
        width: 100%;
        height: 40vw;
        padding: 7vw;
        margin-right: 0;
    }
}

.hl .hlBlock .link .title {
    position: absolute;
    top: 52%;
    font-size: 2vw;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 1200px) {
    .hl .hlBlock .link .title {
        font-size: 2.5vw;
        top: 48%;
    }
}

@media all and (max-width: 900px) {
    .hl .hlBlock .link .title {
        top: 35%;
    }
}

@media all and (max-width: 610px) {
    .hl .hlBlock .link .title {
        font-size: 25px;
        top: 30%;
    }
}

.hl .hlBlock .link .more {
    position: absolute;
    top: 82%;
    color: white;
    font-size: 18px;
}

@media all and (max-width: 1200px) {
    .hl .hlBlock .link .more {
        top: 78%;
    }
}

@media all and (max-width: 900px) {
    .hl .hlBlock .link .more {
        top: 72%;
    }
}

@media all and (max-width: 610px) {
    .hl .hlBlock .link .more {
        font-size: 18px;
        top: 70%;
    }
}

.hl .hlBlock .Slink {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-right: 0.8vw;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink {
        width: 100%;
        margin-right: 0;
    }
}

.hl .hlBlock .Slink .top {
    width: 100%;
    flex: 1;
    box-sizing: border-box;
    margin-bottom: 0.8vw;
    cursor: pointer;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink .top {
        flex: initial;
        height: 30vw;
        margin-top: 1vw;
    }
}

.hl .hlBlock .Slink .top:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: rgba(55, 55, 55, 0.7);
    transition: 0.5s;
    opacity: 1;
}

.hl .hlBlock .Slink .top:hover:after {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink .top:hover .top_title {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink .top .top_title {
    width: 20%;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    position: absolute;
    margin-top: 4.5vw;
    margin-left: 2vw;
    transition: 0.5s;
    opacity: 1;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 1200px) {
    .hl .hlBlock .Slink .top .top_title {
        margin-top: 4vw;
    }
}

@media all and (max-width: 900px) {
    .hl .hlBlock .Slink .top .top_title {
        margin-top: 3vw;
    }
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink .top .top_title {
        width: 83%;
        margin-top: 12.5vw;
        margin-left: 7vw;
    }
}

.hl .hlBlock .Slink .bottom {
    width: 100%;
    flex: 1;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink .bottom {
        flex: initial;
        height: 30vw;
        margin-top: 0.3vw;
    }
}

.hl .hlBlock .Slink .bottom:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: rgba(55, 55, 55, 0.7);
    transition: 0.5s;
    opacity: 1;
}

.hl .hlBlock .Slink .bottom:hover:after {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink .bottom:hover .bottom_title {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink .bottom .bottom_title {
    width: 20%;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    position: absolute;
    margin-top: 4.5vw;
    margin-left: 2vw;
    transition: 0.5s;
    opacity: 1;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 1200px) {
    .hl .hlBlock .Slink .bottom .bottom_title {
        margin-top: 4vw;
    }
}

@media all and (max-width: 900px) {
    .hl .hlBlock .Slink .bottom .bottom_title {
        margin-top: 3vw;
    }
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink .bottom .bottom_title {
        width: 83%;
        margin-top: 12.5vw;
        margin-left: 7vw;
    }
}

.hl .hlBlock .Slink2 {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-right: 0.8vw;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink2 {
        width: 100%;
        margin-right: 0;
    }
}

.hl .hlBlock .Slink2 .top {
    width: 100%;
    flex: 1;
    box-sizing: border-box;
    margin-bottom: 0.8vw;
    cursor: pointer;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink2 .top {
        flex: initial;
        height: 30vw;
        margin-top: 1vw;
    }
}

.hl .hlBlock .Slink2 .top:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: rgba(55, 55, 55, 0.7);
    transition: 0.5s;
    opacity: 1;
}

.hl .hlBlock .Slink2 .top:hover:after {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink2 .top:hover .top_title {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink2 .top .top_title {
    width: 20%;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    position: absolute;
    margin-top: 4.5vw;
    margin-left: 2vw;
    transition: 0.5s;
    opacity: 1;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 1200px) {
    .hl .hlBlock .Slink2 .top .top_title {
        margin-top: 4vw;
    }
}

@media all and (max-width: 900px) {
    .hl .hlBlock .Slink2 .top .top_title {
        margin-top: 3vw;
    }
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink2 .top .top_title {
        width: 83%;
        margin-top: 12.5vw;
        margin-left: 7vw;
    }
}

.hl .hlBlock .Slink2 .bottom {
    width: 100%;
    flex: 1;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink2 .bottom {
        flex: initial;
        height: 30vw;
        margin-top: 0.3vw;
    }
}

.hl .hlBlock .Slink2 .bottom:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: rgba(55, 55, 55, 0.7);
    transition: 0.5s;
    opacity: 1;
}

.hl .hlBlock .Slink2 .bottom:hover:after {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink2 .bottom:hover .bottom_title {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink2 .bottom .bottom_title {
    width: 20%;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    position: absolute;
    margin-top: 4.5vw;
    margin-left: 2vw;
    transition: 0.5s;
    opacity: 1;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 1200px) {
    .hl .hlBlock .Slink2 .bottom .bottom_title {
        margin-top: 4vw;
    }
}

@media all and (max-width: 900px) {
    .hl .hlBlock .Slink2 .bottom .bottom_title {
        margin-top: 3vw;
    }
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink2 .bottom .bottom_title {
        width: 83%;
        margin-top: 12.5vw;
        margin-left: 7vw;
    }
}

.hl .hlBlock .Slink3 {
    width: 25%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink3 {
        width: 100%;
        margin-right: 0;
    }
}

.hl .hlBlock .Slink3 .top {
    width: 100%;
    flex: 1;
    box-sizing: border-box;
    margin-bottom: 0.8vw;
    cursor: pointer;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink3 .top {
        flex: initial;
        height: 30vw;
        margin-top: 1vw;
    }
}

.hl .hlBlock .Slink3 .top:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: rgba(55, 55, 55, 0.7);
    transition: 0.5s;
    opacity: 1;
}

.hl .hlBlock .Slink3 .top:hover:after {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink3 .top:hover .top_title {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink3 .top .top_title {
    width: 20%;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    position: absolute;
    margin-top: 4.5vw;
    margin-left: 2vw;
    transition: 0.5s;
    opacity: 1;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 1200px) {
    .hl .hlBlock .Slink3 .top .top_title {
        margin-top: 4vw;
    }
}

@media all and (max-width: 900px) {
    .hl .hlBlock .Slink3 .top .top_title {
        margin-top: 3vw;
    }
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink3 .top .top_title {
        width: 83%;
        margin-top: 12.5vw;
        margin-left: 7vw;
    }
}

.hl .hlBlock .Slink3 .bottom {
    width: 100%;
    flex: 1;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink3 .bottom {
        flex: initial;
        height: 30vw;
        margin-top: 0.3vw;
    }
}

.hl .hlBlock .Slink3 .bottom:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: rgba(55, 55, 55, 0.7);
    transition: 0.5s;
    opacity: 1;
}

.hl .hlBlock .Slink3 .bottom:hover:after {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink3 .bottom:hover .bottom_title {
    opacity: 0;
    transition: 0.5s;
}

.hl .hlBlock .Slink3 .bottom .bottom_title {
    width: 20%;
    font-size: 20px;
    color: white;
    letter-spacing: 1px;
    position: absolute;
    margin-top: 4.5vw;
    margin-left: 2vw;
    transition: 0.5s;
    opacity: 1;
    z-index: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 1200px) {
    .hl .hlBlock .Slink3 .bottom .bottom_title {
        margin-top: 4vw;
    }
}

@media all and (max-width: 900px) {
    .hl .hlBlock .Slink3 .bottom .bottom_title {
        margin-top: 3vw;
    }
}

@media all and (max-width: 610px) {
    .hl .hlBlock .Slink3 .bottom .bottom_title {
        width: 83%;
        margin-top: 12.5vw;
        margin-left: 7vw;
    }
}