div.profile_menu {
    position: fixed;
    width: 18vw;
}

img.photo {
    width: 14.4vw;
    margin-left: 3.6vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

div.personal_information {
    width: 14.4vw;
    margin: 1.5vh 0 3vh 3.6vw;
}

div.personal_information_label {
    display: inline-block;
    vertical-align: top;
}

div.personal_information_content {
    display: inline-block;
    width: 70%;
}

div.recharge_coin_container {
    display: inline-flex;
}

p.vip_button {
    color: #2B2F67;
    cursor: pointer;
}

p.recharge_button {
    margin-left: 0.3vw;
    color: #2B2F67;
    cursor: pointer;
}

div.personal_information_content p {
    word-break: break-word;
}

div.personal_information_content input {
    width: 100%;
    font-size: 0.8vw;
}

div.nickname {
    margin-bottom: 0.5vh;
}

div.nickname p {
    font-size: 1.4vw;
    font-weight: bold;
}

div.nickname input {
    padding: 0;
    vertical-align: middle;
    width: 100%;
    font-size: 1.4vw;
    font-family: "San Francisco";
    font-weight: bold;
    margin-top: -2px;
    margin-left: -2px;
}

div.sex, div.music_styles, div.interests, div.signature {
    font-size: 1vw;
}

div.profile_tab {
    height: 5.8vh;
    min-height: 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.profile_tab.active {
    color: #ffffff;
    background: #6e6e6e;
}

div.profile_tab_text {
    text-align: right;
    display: inline-block;
    vertical-align: middle;
    width: 16.5vw;
    font-size: 2.15vh;
}

div.profile_sub_pages {
    position: absolute;
    width: 70vw;
    margin-left: 20vw;
    margin-bottom: 30vh;
    border-left: 1px solid #f2f2f2;
    padding-left: 2.2%;
}

div.uploaded_personal_work, div.upload_personal_work {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-right: 2.5vw;
    width: 9vw;
}

div.uploaded_personal_work input {
    width: 6.8vw;
    text-align: center;
}

img.CD, img.upload_CD  {
    display: block;
    margin: 0 auto;
    height: 9vw;
    cursor: pointer;
}

div.uploaded_personal_work_title, div.upload_personal_work_label {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 1.6vh;
    margin-bottom: 3vh;
    font-weight: 400;
    font-size: 1.16vw;
}

div.upload_personal_work_form {
    width: 57vw;
    margin-left: 5vw;
    height: 50vh;
}

div.upload_personal_work_form label {
    display: block;
    font-family: ShangYa;
    font-size: 1.1vw;
    font-weight: 700;
    margin-bottom: 1.5vh;
    text-align: center;
}

input.upload_personal_work_form_title {
    display: block;
    width: 30vw;
    height: 3vh;
    min-height: 20px;
    margin: 0 auto 1.5vh;
    font-size: 1.1vw;
    background: transparent;
}

textarea.upload_personal_work_form_text {
    display: block;
    margin: 0 auto;
    font-size: 1.1vw;
    width: 54.15vw;
    height: 32vh;
}

label.upload_style_in_text {
    width: calc(95% + 6px);
    height: 9vh;
    margin: 1.5vh auto 1.5vh;
    min-height: 50px;
    background-color: #f3f3f3;
    cursor: pointer;
}

label.upload_style_in_text:hover {
    background-color: #ececec;
}

div.published_articles,
div.joined_divisions_of_labour,
div.posted_theme_music_requests {
    width: 90%;
    margin-bottom: 33vh;
}

div.joined_division_of_labour {
    margin-bottom: 1vh;
    display: table;
    cursor: pointer;
}

div.published_article,
div.posted_theme_music_request,
div.posted_theme_music_request_to_be_approved {
    margin-bottom: 1vh;
    display: table;
    cursor: pointer;
}

div.published_article_title,
div.posted_theme_music_request_title,
div.posted_theme_music_request_to_be_approved_title,
div.joined_division_of_labour {
    font-size: 1.2vw;
}

div.posted_theme_music_request_title,
div.posted_theme_music_request_to_be_approved_title {
    font-weight: bold;
}

div.joined_division_of_labour_to_be_approved_in_label,
div.joined_division_of_labour_to_be_approved_out_label,
div.posted_theme_music_requests_to_be_approved_label {
    font-size: 1.3vw;
    font-weight: 600;
    margin-top: 3.8vh;
    margin-bottom: 1vh;
}

/* 以下是修改头像部分的css*/
div.update_avatar_icon_container {
    opacity: 0;
    width: 14.4vw;
    height: 14.4vw;
    position: absolute;
    top: 0;
    left: 3.6vw;
    background: -webkit-radial-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15), rgba(0,0,0,0.4));
    background: -o-radial-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15), rgba(0,0,0,0.4));
    background: -moz-radial-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15), rgba(0,0,0,0.4));
    background: radial-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15), rgba(0,0,0,0.4));
    cursor: pointer;
    transition: 0.3s linear opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
div.update_avatar_icon_container:hover {
    opacity: 1;
}
img.update_avatar_icon {
    width: 3vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
div.update_avatar_container_background {
    background-color: #fff;
    width: 14.4vw;
    height: 14.4vw;
    position: absolute;
    top: 0;
    left: 3.6vw;
}
div.update_avatar_container {
    width: 14.4vw;
    height: 14.4vw;
    position: absolute;
    top: 0;
    left: 3.6vw;
    box-shadow: 0px 0px 1px #555;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: 50%;
    background-position-y: 50%;
    cursor: all-scroll;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
div.center_of_update_avatar_container {
    height: 33.33%;
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: -66.66%;
    opacity: 0.7;
}
div.middle_of_update_avatar_container {
    width: 33.33%;
    height: 100%;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    margin-left: 33.33%;
    opacity: 0.7;
}
div.avatar_uploading_status {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 0;
}
div.avatar_uploading_status p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-family: ShangYa;
    font-size: 1.4vw;
    color: #fefefe;
    width: 100%;
    text-align: center;
}
img.cancel_update_avatar {
    width: 1.6vw;
    position: absolute;
    top: -0.8vw;
    right: -0.8vw;
    cursor: pointer;
}

div.joined_albums {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 22vh;
}

div.joined_album {
    width: 13vw;
    margin-right: 2.5vw;
    margin-bottom: 3vh;
}

div.joined_album div.album_cover_container {
    position: relative;
    top: -1vh;
    width: 100%;
    cursor: pointer;
}

div.joined_album img.album_image {
    width: 100%;
}

div.joined_album p.album_title {
    text-align: center;
    margin-top: -1vh;
}

@media screen and (max-width: 1024px) {
    div.personal_information_content {
        width: 64%;
    }
}

@media screen and (max-width: 768px) {
    div.profile_menu {
        width: 20vw;
    }
    div.profile_sub_pages {
        margin-left: 22vw;
    }
    img.photo, div.personal_information {
        width: 16.4vw;
    }
    div.profile_tab_text {
        width: 17.5vw;
        font-size: 12px;
    }
    div.update_avatar_icon_container,
    div.update_avatar_container_background,
    div.update_avatar_container {
        width: 16.4vw;
        height: 16.4vw;
    }
    /* 设置字体，不能无限小*/
    div.nickname p {
        font-size: 14px;
    }
    div.uploaded_personal_work_title,
    div.upload_personal_work_label {
        font-size: 10px;
    }
    div.personal_information_label,
    div.personal_information_content {
        font-size: 9px;
    }
    div.published_article_title,
    div.posted_theme_music_request_title,
    div.posted_theme_music_request_to_be_approved_title,
    div.joined_division_of_labour,
    div.joined_division_of_labour_to_be_approved_in_label {
        font-size: 12px;
    }

    div.posted_theme_music_requests_to_be_approved_label {
        font-size: 16px;
    }

    div.joined_albums {
        margin-left: 2%;
    }

    div.joined_album {
        width: 17vw;
    }
}

@media screen and (max-width: 670px) {
    div.personal_information_label {
        float: left;
    }

    div.personal_information_content {
        display: inline;
    }

    div.joined_albums {
        margin-left: 3%;
    }

    div.joined_album {
        width: 18.5vw;
        margin-right: 4vw;
    }
}

@media screen and (max-width: 425px) {
    div.profile_menu {
        width: 28vw;
    }
    div.profile_sub_pages {
        margin-left: 30vw;
        padding-left: 3vw;
        width: 67vw;
    }
    img.photo, div.personal_information {
        width: 24.4vw;
    }
    div.profile_tab_text {
        width: 24.5vw;
    }
    div.update_avatar_icon_container,
    div.update_avatar_container_background,
    div.update_avatar_container {
        width: 24.4vw;
        height: 24.4vw;
    }

    div.joined_albums {
        margin-left: 4%;
    }

    div.joined_album {
        width: 25vw;
    }
}

@media screen and (max-width: 320px) {
    div.profile_menu {
        width: 89.594px;
    }
    div.profile_sub_pages {
        margin-left: 96px;
    }
    img.photo, div.personal_information {
        width: 78.078px;
    }
    div.profile_tab_text {
        width: 78.391px;
    }
    div.update_avatar_icon_container,
    div.update_avatar_container_background,
    div.update_avatar_container {
        width: 78.078px;
        height: 78.078px;
    }
    img.CD, img.upload_CD {
        height: 28.797px;
    }
    div.uploaded_personal_work_title {
        font-size: 9px;
    }
    div.uploaded_personal_work, div.upload_personal_work {
        width: 32px;
    }

    div.joined_albums {
        margin-left: 10%;
    }

    div.joined_album {
        width: 42vw;
    }
}
