.profile_container{
    padding-top: 80px;
    width: 1200px;
    margin: auto;
    display: flex;
    font-size: 20px;
}

.profile_container .left{
    width: 150px;
    border-right: 1px solid #eee;
}

.profile_container .left .detail, .profile_container .left .setting{
    line-height: 35px;
    padding: 0 13px 0;
    cursor: pointer;
}
.profile_container .left .active{
    background-color: #D64357;
    color: white;
}

.profile_container .right {
    margin-left: 20px;
    flex-grow: 1;
}
.profile_container .right .title{
    font-size: 30px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.profile_container .right .container{
    margin-top: 20px;
    height: 600px;
}

.profile_container .right .setting_box{
    display: none;
}

.profile_container .right .setting_box .tabs{
    display: flex;
    align-items: center;
}
.profile_container .right .setting_box .tabs div{
    cursor: pointer;
    padding: 0 10px 0;
}

.profile_container .right .setting_box .tabs .active{
    color: #D64357;
}

.profile_container .right .input_box{
    display: flex;
    align-items: center;
    height: 45px;
}
.profile_container .right .input_box .label{
    width: 100px;
}

.profile_container .right .input_box input{
    width: 200px;
    line-height: 30px;
    border: 1px solid #eee;
    text-indent: 1em;
}

.profile_container .edit_password_container{
    display: none;
}

.profile_container .right .btn{
    margin-top: 10px;
    width: 80px;
    height: 30px;
    background-color: #D64357;
    border-radius: 7px;
    text-align: center;
    line-height: 30px;
    color: white;
    cursor: pointer;
}