@import url('https://fonts.googleapis.com/css?family=Noto+Serif+TC:600&display=swap');

#scene {
    min-height: 80vh;
}

#scene .layer {
    opacity: 0;
    animation-fill-mode: both;
    position: absolute;
    width: 100%;
}

#scene .layer img {
    width: 100%;
}

#scene .layer.cloud {
    animation-name: cloud;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    opacity: 0;
    animation-direction: alternate-reverse;
    bottom: 0;
}

@-webkit-keyframes cloud {

    0% {
        transform: translateX(-5%);
        opacity: 0.1;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;

    }

}


#scene .layer.circle {
    width: 60%;
    padding-top: 60%;
    /*background-color: red;*/
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: -webkit-linear-gradient(10deg, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.3) 100%);
    background: -o-linear-gradient(10deg, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(10deg, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.3) 100%);

    animation-name: fadeInUp50;
    animation-duration: 3s;
    transition: all 1s;
}

@-webkit-keyframes fadeInUp50 {

    0% {
        transform: translateY(-5%) translate(-50%, -50%);
        opacity: 0.1;
    }

    100% {
        transform: translateY(0%) translate(-50%, -50%);
        opacity: 1;

    }

}

#scene .layer.circle:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 100%;
    background-image: url(../images/home/banner/logo_mark.png);
    background-position: center;
    -webkit-background-size: 66%;
    background-size: 66%;
    background-repeat: no-repeat;
}

#scene .layer.circle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 100%;
    /*background-color: red;*/
    background-image: url(../images/home/banner/circle_golden.png);
    -webkit-background-size: contain;
    background-size: contain;
    animation-name: circle_golden;
    animation-fill-mode: both;
    animation-duration: 10s;
    animation-delay: 5s;
}


@-webkit-keyframes circle_golden {

    0% {
        transform: rotate(0);
        opacity: 0;
    }

    100% {
        transform: rotate(360deg);
        opacity: 1;

    }

}


#scene .layer.golden {
    bottom: -20%;
    left: -5%;
    transition: all 2s;
}

.show #scene .layer.golden {
    left: 0;
    opacity: 1;
    transition: all 5s 1.5s;
}


#scene .layer.Txt {
    position: absolute;
    left: 15%;
    width: auto;
    top: 50%;
    opacity: 0;
    transition: all 2s;
}

.show #scene .layer.Txt {
    opacity: 1;
    top: 25%;
    transition: all 2s 2.7s;
}

@-webkit-keyframes fadeInUp {

    0% {
        transform: translateY(15%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;

    }

}

#scene .layer.Txt .title {
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    font-family: 'Noto Serif TC', serif;
    display: inline-block;
    margin: 0 3px;
    letter-spacing: 3px;

}

#scene .layer.Txt:after {
    content: '';
    position: absolute;
    top: 150%;
    width: 300px;
    max-width: 300px;
    right: -40%;
    padding-top: 100%;
    background-image: url(../images/home/banner/text.png);
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    opacity: 0;
    transition: all 2s;
}

.show #scene .layer.Txt:after {
    top: 100%;
    opacity: 1;
    transition: all 1s 1s;
}

#scene .layer.Txt .subTitle {
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: normal;
    letter-spacing: 5px;
    margin: 0;
}

#scene .layer.Txt .subTitle span {
    display: block;

}

#scene .layer.Txt .subTitle span:after {
    content: '';
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8rem;
    background-color: #eee;
}

@media(max-width: 991px) {
    #scene {
        min-height: 50vh;
    }

    #scene .layer.circle {
        width: 70%;
        padding-top: 70%;
        left: 60%;
        top: 60%;
    }

    #scene .layer.circle:before {
        -webkit-background-size: 55%;
        background-size: 55%;
    }

    #scene .layer.golden {
        bottom: 0%;
    }

    #scene .layer.Txt {
        top: 18%;
    }

    #scene .layer.Txt:after {
        max-width: 160px;
    }

    #scene .layer.Txt .title {
        font-size: 1.5rem;
    }

    #scene .layer.Txt .subTitle {
        font-size: 0.9rem;
    }
}