index.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* 用户头像 */
  2. .picture {
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-between;
  6. width: 750rpx;
  7. height: 120rpx;
  8. padding: 0 30rpx;
  9. background-color: #ffffff;
  10. box-sizing: border-box;
  11. .label {
  12. font-size: 28rpx;
  13. font-family: PingFang SC-Regular, PingFang SC;
  14. color: #666666;
  15. line-height: 28rpx;
  16. }
  17. .picture_right {
  18. display: flex;
  19. align-items: center;
  20. color: #CCCCCC;
  21. .user-img {
  22. width: 64rpx !important;
  23. height: 64rpx !important;
  24. border-radius: 50% !important;
  25. margin-right: 15rpx;
  26. }
  27. }
  28. }
  29. /* 职务 */
  30. .duty-box {
  31. width: 750rpx;
  32. height: 90rpx;
  33. background-color: #ffffff;
  34. .con {
  35. display: flex;
  36. align-items: center;
  37. justify-content: space-between;
  38. width: calc(100% - 60rpx);
  39. height: 100%;
  40. margin-left: 30rpx;
  41. font-size: 28rpx;
  42. font-family: PingFang SC-Regular, PingFang SC;
  43. .duty-name {
  44. color: #666666;
  45. }
  46. .job {
  47. color: #262626;
  48. }
  49. }
  50. }
  51. /* 保存按钮 */
  52. .save-but {
  53. width: 500rpx;
  54. height: 90rpx;
  55. background: #FA8C16;
  56. border-radius: 45rpx !important;
  57. opacity: 0.85;
  58. margin-top: 100rpx;
  59. }