.desktop {
    display: block;
}
.mobile {
    display: none;
}
.redirect-page {
    width: 1050px;
    margin: 0 auto;
    margin-top: 30px;
}
.redirect-page .both-logo {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.redirect-page .logo {
    padding: 0 15px;
}
.redirect-page .logo img {
    width: 330px;
}
.redirect-text {
    text-align: center;
    padding-top: 70px;
    font-family: 'Roboto', 'Cormorant Garamond', 'NotoSansTC', 'NotoSansSC', 'NotoSerifTC', 'NotoSerifSC';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 40px;
}
.redirect-text .en {
    /*font-size: 20px;*/
    line-height: 28px;
}
.redirect-text div {
    margin: 30px 0;
}
.back-btn {
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    text-decoration: none;
    letter-spacing: 0.025em;
    height: 40px;
    bottom: 0;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #666;
    color: white;
    cursor: pointer;
    padding: 9px 15px;
    border-radius: 3px 3px 0 0;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
.redirect-page a{
	color: #179E58;
}

@media (max-width: 767px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .redirect-page {
        width: 90%;
        margin: 0 auto;
        margin-top: 30px;
    }
    .redirect-page .logo img {
        width: 100px;
    }
    .redirect-page .logo:nth-child(2) img {
        width: 60px;
    }
    .redirect-text {
        padding-top: 0;
        font-size: 18px;
        line-height: 32px;
    }
    .redirect-text .en {
        font-size: 16px;
        line-height: 26px;
    }
}