.short-video-comp {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10em;
}

.short-video-comp .short-video-comp-cover {
    margin-top: 5.5vh;
    border-radius: 0.5em;
    max-height: 60vh;
    max-width: 80vw;
}

.short-video-comp .short-video-comp-title {
    margin-top: 1em;
    width: 80%;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.short-video-comp .short-video-title {
    margin-top: 0.8em;
    width: 80%;
    font-size: 0.9em;
    line-height: 1.6em;
    text-align: center;
    color: grey;
}

div.short-video-comp div.goto_download_app_button {
    margin-top: 1em;
    font-size: 1vmax;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
    color: #2B2F67;
}

/*打开App和下载App*/
div.short-video-comp div.open_or_download_app {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    bottom: 30px;
    font-size: 13px;
    /*safe area*/
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
}

div.short-video-comp div.open_or_download_app_buttons {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 2.7vh;
}

div.short-video-comp div.open_or_download_app div.open_app,
div.short-video-comp a.open_app {
    border: 1px solid #333;
    border-radius: 30px;
    width: 33%;
    text-align: center;
    padding: 8px 4px;
    margin-right: 6px;
    background: white;
    color: black;
}

div.short-video-comp div.open_or_download_app div.download_app {
    border: 1px solid #333;
    border-radius: 30px;
    width: 33%;
    text-align: center;
    padding: 8px 4px;
    margin-left: 6px;
    color: white;
    background: #333;
}

@media screen and (max-width: 768px) {
    div.hideWhenShortVideoComp {
        display: none!important;
    }

    div.goto_download_app_button {
        display: none!important;
    }
}

@media screen and (min-width: 769px) {
    div.short-video-comp div.open_or_download_app {
        display: none;
    }

    .short-video-comp .short-video-title {
        width: 40%;
    }
}
