/*右側標語*/
.slogan_banner h4 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    width: 100%;
    text-align: right;
    margin-bottom: 15px;
    text-shadow: 1px 2px 5px rgb(0 0 0 / 50%);
}
.slogan_banner {
    position: absolute;
    bottom: 300px;
    right: 150px;
    opacity: 0;
    animation-name: flyUp;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
.slogan_banner span {
    color: #fff;
    letter-spacing: 1px;
    font-size: 14px;
    text-shadow: 1px 2px 5px rgb(0 0 0 / 50%);
}

@keyframes flyUp{
0%{
    transform: translateY(30px);
    opacity: 0;
}
100%{
    transform: translateY(0);
    opacity: 1;
}
}


/*1700px*/
@media(max-width:1700px){
    .slogan_banner {
        bottom: 35%;
        right: 10%;
        opacity: 1;
        animation-name: none;
        transform: scale(0.8) !important;
    }
}

/*1100px*/
@media(max-width:1100px){
    .slogan_banner {
        bottom: 33%;
        right: 5%;
        transform: scale(0.6) !important;
    }
}

/*500px*/
@media(max-width:500px){
    .slogan_banner {
        bottom: 29%;
        right: -5%;
        transform: scale(0.4) !important;
    }
}

/*400px*/
@media(max-width:400px){
    .slogan_banner {
        bottom: 26%;
        right: -15%;
        transform: scale(0.3) !important;
    }
}

/*320px*/
@media(max-width:320px){
    .slogan_banner {
        bottom: 26%;
        right: -21%;
    }
}