person.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. .next {
  14. width: 35rpx;
  15. height: 35rpx;
  16. position: absolute;
  17. right: -74rpx;
  18. top: 12rpx;
  19. z-index: -1
  20. }
  21. }
  22. .tel {
  23. margin-top: 20rpx;
  24. }
  25. }
  26. .head-img {
  27. width: 180rpx;
  28. height: 180rpx;
  29. border-radius: 50%;
  30. image {
  31. width: 180rpx;
  32. height: 180rpx;
  33. border-radius: 50%;
  34. }
  35. }
  36. }
  37. .user-login {
  38. display: flex;
  39. height: 260rpx;
  40. padding: 10rpx 30rpx;
  41. border-bottom: 1px solid #ebeef5;
  42. background-size: cover;
  43. position: relative;
  44. .login-btn {
  45. background-color: rgba($color: #000000, $alpha: 0);
  46. height: 200px;
  47. position: absolute;
  48. line-height: 100px;
  49. top: 14%;
  50. font-weight: 400;
  51. letter-spacing: 5rpx;
  52. }
  53. .next{
  54. width: 50rpx;
  55. height: 50rpx;
  56. position: absolute;
  57. top: 122rpx;
  58. right: 385rpx;
  59. }
  60. .defult-user{
  61. width: 150rpx;
  62. height: 150rpx;
  63. position: absolute;
  64. top: 70rpx;
  65. right: 65rpx;
  66. }
  67. }
  68. .order {
  69. display: flex;
  70. width: 100%;
  71. height: 120rpx;
  72. background-color: #fff;
  73. border-bottom: 1px solid #ebeef5;
  74. justify-content: flex-start;
  75. position: relative;
  76. .icons {
  77. width: 40rpx;
  78. height: 40rpx;
  79. margin: 40rpx 30rpx;
  80. }
  81. .order-text {
  82. line-height: 120rpx;
  83. letter-spacing: 3rpx;
  84. }
  85. .next-gray {
  86. width: 30rpx;
  87. height: 30rpx;
  88. position: absolute;
  89. right: 30rpx;
  90. top: 45rpx;
  91. }
  92. }
  93. .assess {
  94. display: flex;
  95. width: 100%;
  96. height: 120rpx;
  97. background-color: #fff;
  98. border-bottom: 1px solid #ebeef5;
  99. justify-content: flex-start;
  100. position: relative;
  101. .icons {
  102. width: 55rpx;
  103. height: 55rpx;
  104. margin: 32rpx 23rpx;
  105. }
  106. .assess-text {
  107. line-height: 120rpx;
  108. letter-spacing: 3rpx;
  109. }
  110. .next-gray {
  111. width: 30rpx;
  112. height: 30rpx;
  113. position: absolute;
  114. right: 30rpx;
  115. top: 45rpx;
  116. }
  117. }
  118. }