businessHome.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .wrapper {
  2. padding: 66rpx 0 100rpx;
  3. }
  4. .width-690 {
  5. width: 690rpx;
  6. margin: 0 auto;
  7. }
  8. .user-info {
  9. display: flex;
  10. align-items: center;
  11. }
  12. .portrait {
  13. width: 100rpx;
  14. height: 100rpx;
  15. border-radius: 50%;
  16. overflow: hidden;
  17. image {
  18. display: block;
  19. width: 100%;
  20. height: 100%;
  21. background: pink;
  22. }
  23. }
  24. .user-name-wrap {
  25. margin-left: 12rpx;
  26. .name {
  27. line-height: 48rpx;
  28. font-size: 32rpx;
  29. color: rgba(37, 31, 57, 1);
  30. }
  31. .account {
  32. margin-top: 4rpx;
  33. line-height: 40rpx;
  34. font-size: 24rpx;
  35. color: rgba(67, 70, 101, 1);
  36. }
  37. }
  38. .dashboard {
  39. display: flex;
  40. flex-direction: column;
  41. align-items: center;
  42. justify-content: space-between;
  43. width: 100%;
  44. height: 329rpx;
  45. padding: 46rpx 0 33rpx;
  46. margin-top: 52rpx;
  47. border-radius: 32rpx;
  48. background: pink;
  49. .data,
  50. .btn {
  51. display: flex;
  52. flex-direction: column;
  53. align-items: center;
  54. }
  55. .label {
  56. line-height: 40rpx;
  57. font-size: 28rpx;
  58. color: rgba(157, 151, 177, 1);
  59. }
  60. .value {
  61. margin-top: 6rpx;
  62. line-height: 80rpx;
  63. font-size: 64rpx;
  64. color: rgba(37, 31, 57, 1);
  65. }
  66. image {
  67. width: 40rpx;
  68. height: 40rpx;
  69. background: pink;
  70. }
  71. .check {
  72. line-height: 40rpx;
  73. font-size: 24rpx;
  74. color: rgba(157, 151, 177, 1);
  75. }
  76. }