.profile-info-box{
    width: 380px;
    margin: 0 auto;
    font-size: 16px;
}
.profile-avatar{
    width: 180px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.profile-avatar img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
}
.profile-avatar .profile-avatar-modify-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    font-size: 18px;
    text-decoration: underline;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
}
.profile-avatar #uploadAvatar{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0;
    cursor: pointer;
}
.profile-name{
    width: 100%;
    text-align: center;
    color: var(--framing-main-color);
    font-size: 18px;
}
.profile-item-value{
    line-height: 36px;
}
.profile-item-value em{
    font-size: 12px;
    cursor: pointer;
    color: var(--framing-main-color);
}
.profile-info-box .layui-form-radioed>i,.profile-info-box .layui-form-radio:hover *,.profile-info-box .layui-form-radioed{
    color: var(--framing-main-color)!important;
}
.profile-info-box .layui-input-block{
    position: relative;
}

.profile-info-box .layui-input-block p {
    line-height: 36px;
}
.profile-info-box .layui-input:focus{
    border-color: var(--framing-main-color)!important;
    box-shadow: 0px 0px 2px 1px rgba(var(--framing-main-color-opacity),0.7) !important;
}

.form-submit-button{
    border-radius: 10px;
    width: 180px;
    background: var(--framing-main-color);
    font-weight: bold;
}
#modifyPasswordForm .layui-form-label{
    width: 120px;
    white-space: nowrap;
}
#modifyPasswordForm .layui-input-block{
    margin-left: 150px;
}
input[name=cusName]{
    margin: 0 auto;
    width: 180px;
    padding: 0 15px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .profile-avatar .profile-avatar-modify-box,.profile-name{
        font-size: 16px;
    }
    .profile-info-box{
        max-width: 100%;
        font-size: 14px;
    }
    .form-submit-button{
        font-size: 12px;
        height: 32px;
        line-height: 32px;
        width: 160px;
    }

}