@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;
}

.card {
    width: 100%;
    padding: 2vw 0;
    border-top: solid 2px Black;
    position: relative;
    box-sizing: border-box;
}

@media all and (max-width: 610px) {
    .card {
        padding: 10px 0;
    }
}

.card .cardBlock {
    width: 100%;
    height: 40vw;
    display: flex;
    flex-direction: row;
}

@media all and (max-width: 610px) {
    .card .cardBlock {
        display: flex;
        flex-direction: column-reverse;
        height: 331vw;
    }
}

.card .cardBlock .card1 {
    width: 37.6%;
    margin-right: 0.8%;
    cursor: pointer;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card1 {
        width: 100%;
        height: 100vw;
        margin-top: 1.5vw;
    }
}

.card .cardBlock .card1:hover .block {
    background-color: rgba(238, 238, 238, 0.3);
    transition: 0.5s;
}

.card .cardBlock .card1:hover .block .content {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s;
}

.card .cardBlock .card1 .block {
    width: 100%;
    height: 100%;
    background-color: rgba(238, 238, 238, 0.7);
    position: relative;
    box-sizing: border-box;
    padding: 2.5vw;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card1 .block {
        padding: 5vw;
    }
}

.card .cardBlock .card1 .block .Title {
    position: absolute;
    font-size: 2vw;
    width: 85%;
    font-weight: 800;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card1 .block .Title {
        width: 90%;
        font-size: 23px;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .card .cardBlock .card1 .block .Title {
        height: 14%;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 610px),
all and (-ms-high-contrast: active) and (max-width: 610px) {
    .card .cardBlock .card1 .block .Title {
        height: 15.8%;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 350px),
all and (-ms-high-contrast: active) and (max-width: 350px) {
    .card .cardBlock .card1 .block .Title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.card .cardBlock .card1 .block .subTitle {
    position: absolute;
    width: 85%;
    top: 22%;
    font-size: 16px;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card1 .block .subTitle {
        width: 90%;
        font-size: 15px;
        top: 25%;
    }
}

@media all and (max-width: 350px) {
    .card .cardBlock .card1 .block .subTitle {
        top: 29%;
    }
}

.card .cardBlock .card1 .block .content {
    width: 85%;
    position: absolute;
    top: 65%;
    font-size: 1vw;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    line-height: 2vw;
    letter-spacing: 0.1vw;
    opacity: 1;
    transition: 0.5s;
}

@media all and (max-width: 1200px) {
    .card .cardBlock .card1 .block .content {
        font-size: 1.2vw;
        letter-spacing: 0.2vw;
    }
}

@media all and (max-width: 900px) {
    .card .cardBlock .card1 .block .content {
        line-height: 2.8vw;
        letter-spacing: 0.2vw;
        -webkit-line-clamp: 4;
        font-size: 1.5vw;
    }
}

@media all and (max-width: 610px) {
    .card .cardBlock .card1 .block .content {
        width: 90%;
        font-size: 15px;
        line-height: 28px;
    }
}

@media all and (max-width: 350px) {
    .card .cardBlock .card1 .block .content {
        top: 60%;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .card .cardBlock .card1 .block .content {
        height: 30%;
    }
}

.card .cardBlock .card2 {
    width: 37.6%;
    margin-right: 0.8%;
    cursor: pointer;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card2 {
        width: 100%;
        height: 100vw;
        margin-top: 1.5vw;
    }
}

.card .cardBlock .card2:hover .block {
    background-color: rgba(238, 238, 238, 0.3);
    transition: 0.5s;
}

.card .cardBlock .card2:hover .block .content {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s;
}

.card .cardBlock .card2 .block {
    width: 100%;
    height: 100%;
    background-color: rgba(238, 238, 238, 0.7);
    position: relative;
    box-sizing: border-box;
    padding: 2.5vw;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card2 .block {
        padding: 5vw;
    }
}

.card .cardBlock .card2 .block .Title {
    position: absolute;
    font-size: 2vw;
    width: 85%;
    font-weight: 800;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card2 .block .Title {
        width: 90%;
        font-size: 23px;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .card .cardBlock .card2 .block .Title {
        height: 14%;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 610px),
all and (-ms-high-contrast: active) and (max-width: 610px) {
    .card .cardBlock .card2 .block .Title {
        height: 15.8%;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 350px),
all and (-ms-high-contrast: active) and (max-width: 350px) {
    .card .cardBlock .card2 .block .Title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.card .cardBlock .card2 .block .subTitle {
    position: absolute;
    width: 85%;
    top: 22%;
    font-size: 1vw;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card2 .block .subTitle {
        width: 90%;
        font-size: 16px;
        top: 25%;
    }
}

@media all and (max-width: 350px) {
    .card .cardBlock .card2 .block .subTitle {
        top: 29%;
    }
}

.card .cardBlock .card2 .block .content {
    width: 85%;
    position: absolute;
    top: 65%;
    font-size: 1vw;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    line-height: 2vw;
    letter-spacing: 0.1vw;
    opacity: 1;
    transition: 0.5s;
}

@media all and (max-width: 1200px) {
    .card .cardBlock .card2 .block .content {
        font-size: 1.2vw;
        letter-spacing: 0.2vw;
    }
}

@media all and (max-width: 900px) {
    .card .cardBlock .card2 .block .content {
        line-height: 2.8vw;
        letter-spacing: 0.2vw;
        -webkit-line-clamp: 4;
        font-size: 1.5vw;
    }
}

@media all and (max-width: 610px) {
    .card .cardBlock .card2 .block .content {
        width: 90%;
        font-size: 15px;
        line-height: 28px;
    }
}

@media all and (max-width: 350px) {
    .card .cardBlock .card2 .block .content {
        top: 60%;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .card .cardBlock .card2 .block .content {
        height: 30%;
    }
}

.card .cardBlock .card3 {
    width: 24.6%;
    display: flex;
    flex-direction: column;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card3 {
        width: 100%;
        height: 130vw;
    }
}

.card .cardBlock .card3 .cardtop {
    width: 100%;
    height: 50%;
    margin-bottom: 3.5%;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card3 .cardtop {
        height: 30%;
        margin: 1.5vw 0 1.5vw 0;
    }
}

.card .cardBlock .card3 .cardtop .block_black {
    width: 100%;
    height: 100%;
    //background-color: #333333;
    position: relative;
    box-sizing: border-box;
    padding: 2vw;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card3 .cardtop .block_black {
        padding: 7vw;
    }
}

.card .cardBlock .card3 .cardtop .block_black .Title {
    position: absolute;
    font-size: 2vw;
    top: 52%;
    color: white;
    width: 80%;
    font-weight: 800;
    letter-spacing: 1px;
    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) {
    .card .cardBlock .card3 .cardtop .block_black .Title {
        font-size: 2.5vw;
        top: 48%;
    }
}

@media all and (max-width: 900px) {
    .card .cardBlock .card3 .cardtop .block_black .Title {
        top: 35%;
    }
}

@media all and (max-width: 610px) {
    .card .cardBlock .card3 .cardtop .block_black .Title {
        font-size: 25px;
        top: 30%;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .card .cardBlock .card3 .cardtop .block_black .Title {
        height: 14%;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 610px),
all and (-ms-high-contrast: active) and (max-width: 610px) {
    .card .cardBlock .card3 .cardtop .block_black .Title {
        height: 28%;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 350px),
all and (-ms-high-contrast: active) and (max-width: 350px) {
    .card .cardBlock .card3 .cardtop .block_black .Title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.card .cardBlock .card3 .cardtop .block_black .subTitle {
    position: absolute;
    top: 82%;
    color: white;
    width: 90%;
    font-size: 18px;
}

@media all and (max-width: 1200px) {
    .card .cardBlock .card3 .cardtop .block_black .subTitle {
        top: 78%;
    }
}

@media all and (max-width: 900px) {
    .card .cardBlock .card3 .cardtop .block_black .subTitle {
        top: 72%;
    }
}

@media all and (max-width: 610px) {
    .card .cardBlock .card3 .cardtop .block_black .subTitle {
        top: 70%;
    }
}

.card .cardBlock .card3 .cardBottom {
    width: 100%;
    height: 50%;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card3 .cardBottom {
        height: 70%;
    }
}

.card .cardBlock .card3 .cardBottom:hover .block {
    background-color: rgba(238, 238, 238, 0.3);
    transition: 0.5s;
}

.card .cardBlock .card3 .cardBottom .block {
    width: 100%;
    height: 100%;
    background-color: rgba(238, 238, 238, 0.7);
    position: relative;
    box-sizing: border-box;
    padding: 2vw;
    transition: 0.5s;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card3 .cardBottom .block {
        padding: 5vw;
    }
}

.card .cardBlock .card3 .cardBottom .block .Title {
    position: absolute;
    font-size: 2vw;
    top: 52%;
    width: 80%;
    font-weight: 800;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card3 .cardBottom .block .Title {
        width: 90%;
        font-size: 23px;
        top: 55%;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .card .cardBlock .card3 .cardBottom .block .Title {
        height: 14%;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 610px),
all and (-ms-high-contrast: active) and (max-width: 610px) {
    .card .cardBlock .card3 .cardBottom .block .Title {
        height: 28%;
    }
}

@media all and (-ms-high-contrast: none) and (max-width: 350px),
all and (-ms-high-contrast: active) and (max-width: 350px) {
    .card .cardBlock .card3 .cardBottom .block .Title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.card .cardBlock .card3 .cardBottom .block .subTitle {
    position: absolute;
    top: 82%;
    width: 90%;
    font-size: 1vw;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media all and (max-width: 610px) {
    .card .cardBlock .card3 .cardBottom .block .subTitle {
        width: 90%;
        font-size: 16px;
    }
}

@media all and (max-width: 350px) {
    .card .cardBlock .card3 .cardBottom .block .subTitle {
        top: 85%;
    }
}

@keyframes left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}