| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 | /* 用户头像 */.picture {    display: flex;    align-items: center;    justify-content: space-between;    width: 750rpx;    height: 120rpx;    padding: 0 30rpx;    background-color: #ffffff;    box-sizing: border-box;    .label {        font-size: 28rpx;        font-family: PingFang SC-Regular, PingFang SC;        color: #666666;        line-height: 28rpx;    }    .picture_right {        display: flex;        align-items: center;        color: #CCCCCC;        .user-img {            width: 64rpx !important;            height: 64rpx !important;            border-radius: 50% !important;            margin-right: 15rpx;        }    }}/* 职务 */.duty-box {    width: 750rpx;    height: 90rpx;    background-color: #ffffff;    .con {        display: flex;        align-items: center;        justify-content: space-between;        width: calc(100% - 60rpx);        height: 100%;        margin-left: 30rpx;        font-size: 28rpx;        font-family: PingFang SC-Regular, PingFang SC;        .duty-name {            color: #666666;        }        .job {            color: #262626;        }    }}/* 保存按钮 */.save-but {    width: 500rpx;    height: 90rpx;    background: #FA8C16;    border-radius: 45rpx !important;    opacity: 0.85;    margin-top: 100rpx;}
 |