div.article {
    margin-bottom: 30vh;
    margin-left: 2%;
    width: 60vw;
    display: flex;
    flex-direction: column;
}

div.single_article {
    margin: 0 auto 30vh;
}

div.article_title {
    font-size: 2vw;
    font-weight: bold;
}

div.article div.creation_time {
    font-size: 1.1vw;
    color: #bbb;
}

div.article div.authors {
    display: flex;
    margin-top: 12px;
}

div.article div.author {
    margin-right: 16px;
    width: 7vw;
    cursor: pointer;
}

div.article img.author_photo {
    width: 100%;
    border-radius: 5px;
}

div.article div.author_nickname {
    font-size: 1.1vw;
    color: #666;
    text-align: center;
    white-space: nowrap;
}

div.article div.article_audio {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-right: 21px;
}

div.article div.article_audio_filename_and_credits {
    vertical-align: center;
    margin-left: 0.7vw;
}

div.article div.article_audio_filename {
    font-size: 1.1vw;
    font-weight: normal;
}

div.article div.article_audio_credits {
    font-size: 0.8vw;
    margin-top: 1px;
    color: rgb(155, 155, 155);
}

div.article div.article_album {
    margin-top: 5px;
    padding: 5px 3px;
    color: rgb(94, 107, 146);
    font-size: 1vw;
    cursor: pointer;
}

div.article img.melody {
    width: 15vw;
    align-self: center;
}

/*文章样式*/
div.article div.article_context {
    display: flex;
    flex-direction: column;
}

div.article div.article_context .context {
    align-self: center;
    width: 98%;
    font-size: 16px;
    line-height: 28px;
    color: black;
    box-sizing: border-box;
}

div.article div.article_context img {
    display: block;
    margin: 18px auto 10px;
    max-width: 100%;
    object-fit: contain;
}

div.article div.article_context p {
    font-size: inherit;
    line-height: inherit;
    margin-top: 16px;
}

div.article div.article_context hr {
    height: 0;
    border-bottom: 1px solid gray;
}

div.article div.article_context .intro {
    margin: 0 auto;
    width: 92%;
}

div.article div.article_context .lyric {
   text-align: center;
}

div.article div.article_context .imageLabel {
    font-size: 15px;
    color: #888888;
    text-align: center;
    line-height: 17px;
}

div.article div.article_context .imageDescription {
    margin-top: 5px;
    font-size: 12px;
    color: #888888;
    text-align: center;
    line-height: 16px;
}

div.article div.article_context img.fix_website {
    margin: 18px auto 10px!important;
}

div.article div.goto_download_app_container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 7px;
}

div.article div.goto_download_app_tip {
    margin-top: 7px;
    font-size: 1vw;
    color: #222;
}

div.article div.goto_download_app_button {
    margin-top: 2px;
    font-size: 1vw;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
    color: #2B2F67;
}

div.article div.mobile_open_in_app_tip {
    margin-top: 7px;
    font-size: 1vw;
    color: #222;
    text-align: center;
}

div.article div.open_or_download_app {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 13px;
    margin-top: 21px;
}

div.article div.open_app,
div.article 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.article 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 (min-width: 1024px) {
    div.article div.article_context img {
        max-width: 70%;
    }
}

@media screen and (min-width: 1440px) {
    div.article div.article_context img {
        max-width: 60%;
    }
}

@media screen and (min-width: 1600px) {
    div.article div.article_context .context {
        font-size: 1.2vw;
        line-height: 2.2vw;
    }

    div.article div.article_context .imageLabel {
        font-size: 1vw;
    }
}

@media screen and (max-width: 1024px) {
    div.article div.article_title {
        font-size: 21px;
    }

    div.article div.author {
        width: 8vw;
    }

    div.article div.author_nickname,
    div.article div.article_album {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    div.article {
        width: 70vw;
    }

    div.article div.article_title {
        font-size: 18px;
    }

    div.article div.article_audio_filename {
        font-size: 13px;
    }

    div.article div.article_audio_credits {
        font-size: 12px;
        zoom: 0.9;
    }

    div.article div.author {
        width: 74px;
    }

    div.article img.melody {
        width: 25vw;
    }

    div.article div.goto_download_app_tip,
    div.article div.goto_download_app_button,
    div.article div.mobile_open_in_app_tip {
        font-size: 12px;
    }
}

@media screen and (max-width: 630px) {
    div.single_article {
        width: 86%;
    }

    div.profile_article {
        width: 100%;
    }

    div.article div.article_audio_credits {
        zoom: 0.8;
    }

    div.article div.article_context .context {
        font-size: 15px;
    }

    div.article img.melody {
        width: 28vw;
    }
}

@media screen and (max-width: 425px) {
    div.single_article {
        width: 90%;
    }

    div.profile_article {
        margin-left: 0;
        width: 96%;
    }

    div.article div.article_audio_filename_and_credits {
        margin-left: 1.7vw;
    }

    div.article img.melody {
        width: 32vw;
        margin-top: 6px;
        margin-bottom: 6px;
    }
}
