index.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. .mimic {
  30. width: 100vw;
  31. background-color: #fff;
  32. font-size: 26rpx;
  33. padding: 0rpx 30rpx;
  34. box-sizing: border-box;
  35. .box {
  36. display: flex;
  37. justify-content: space-between;
  38. box-sizing: border-box;
  39. height: 80rpx;
  40. line-height: 80rpx;
  41. border-bottom: 1rpx solid rgb(245, 245, 245);
  42. }
  43. }
  44. /* 职务 */
  45. .duty-box {
  46. width: 750rpx;
  47. height: 90rpx;
  48. background-color: #ffffff;
  49. .con {
  50. display: flex;
  51. align-items: center;
  52. justify-content: space-between;
  53. width: calc(100% - 60rpx);
  54. height: 100%;
  55. margin-left: 30rpx;
  56. font-size: 28rpx;
  57. font-family: PingFang SC-Regular, PingFang SC;
  58. .duty-name {
  59. color: #666666;
  60. }
  61. .job {
  62. color: #262626;
  63. }
  64. }
  65. }
  66. /* 保存按钮 */
  67. .save-but {
  68. width: 500rpx;
  69. height: 90rpx;
  70. background: #FA8C16;
  71. border-radius: 45rpx !important;
  72. opacity: 0.85;
  73. margin-top: 100rpx;
  74. }