person.scss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .container {
  2. .person {
  3. display: flex;
  4. height: 260rpx;
  5. padding: 10rpx 30rpx;
  6. justify-content: space-between;
  7. align-items: center;
  8. .person-info {
  9. padding-left: 40rpx;
  10. .user-name {
  11. position: relative;
  12. margin-top: 10rpx;
  13. image {
  14. width: 35rpx;
  15. height: 35rpx;
  16. position: absolute;
  17. left: 88rpx;
  18. top: 12rpx;
  19. }
  20. }
  21. .tel {
  22. margin-top: 20rpx;
  23. }
  24. }
  25. .head-img {
  26. width: 200rpx;
  27. height: 200rpx;
  28. border-radius: 50%;
  29. image {
  30. width: 200rpx;
  31. height: 200rpx;
  32. }
  33. }
  34. }
  35. .order {
  36. display: flex;
  37. width: 100%;
  38. height: 120rpx;
  39. background-color: #fff;
  40. border-bottom: 1px solid #ebeef5;
  41. justify-content: flex-start;
  42. position: relative;
  43. .icons {
  44. width: 40rpx;
  45. height: 40rpx;
  46. margin: 40rpx 30rpx;
  47. }
  48. .order-text {
  49. line-height: 120rpx;
  50. letter-spacing: 3rpx;
  51. }
  52. .next-gray {
  53. width: 30rpx;
  54. height: 30rpx;
  55. position: absolute;
  56. right: 30rpx;
  57. top: 45rpx;
  58. }
  59. }
  60. .assess {
  61. display: flex;
  62. width: 100%;
  63. height: 120rpx;
  64. background-color: #fff;
  65. border-bottom: 1px solid #ebeef5;
  66. justify-content: flex-start;
  67. position: relative;
  68. .icons {
  69. width: 55rpx;
  70. height: 55rpx;
  71. margin: 32rpx 23rpx;
  72. }
  73. .assess-text {
  74. line-height: 120rpx;
  75. letter-spacing: 3rpx;
  76. }
  77. .next-gray {
  78. width: 30rpx;
  79. height: 30rpx;
  80. position: absolute;
  81. right: 30rpx;
  82. top: 45rpx;
  83. }
  84. }
  85. }