person.scss 2.7 KB

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