index.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. .sign-page{
  2. min-height: 100vh;
  3. background-color: #fff;
  4. .image-inner{
  5. width: auto;
  6. height: auto;
  7. }
  8. .head-wrap{
  9. position: relative;
  10. font-size: 0;
  11. margin: 0 45rpx;
  12. border-radius: 20rpx;
  13. // filter: drop-shadow(0 0 2px #000);
  14. box-shadow: 0 0 8px 0 #dedede;
  15. margin-bottom: 0px;
  16. }
  17. .head-content{
  18. position: relative;
  19. z-index: 2;
  20. display: flex;
  21. align-items: center;
  22. padding-top: 46rpx;
  23. padding-right: 40rpx;
  24. padding-left: 40rpx;
  25. padding-bottom: 27px;
  26. .avatar{
  27. width: 98rpx;
  28. height: 98rpx;
  29. border-radius: 50%;
  30. background-color: #dedede;
  31. box-shadow: 1px 1px 4px 0 #999;
  32. }
  33. .name{
  34. margin-left: 29rpx;
  35. font-size: 30rpx;
  36. font-family: PingFang SC;
  37. font-weight: bold;
  38. color: #333333;
  39. }
  40. .phone{
  41. margin-left: auto;
  42. font-size: 26rpx;
  43. font-family: PingFang SC;
  44. font-weight: 500;
  45. color: #666666;
  46. }
  47. .login-btn{
  48. border-radius: 25px;
  49. padding: 12rpx 46rpx;
  50. margin-left: auto;
  51. font-size: 32rpx;
  52. color: #444;
  53. background-color: #dedede;
  54. box-shadow: 1px 1px 4px 0 #999;
  55. }
  56. }
  57. .head-bg{
  58. position: absolute;
  59. z-index: 1;
  60. bottom: 0px;
  61. left: 0;
  62. right: 0;
  63. .image-inner{
  64. width: 100%;
  65. }
  66. }
  67. .views-wrap{
  68. padding-top: 29rpx;
  69. }
  70. .records-wrap{
  71. padding: 50rpx 0rpx 0;
  72. }
  73. .records-body{
  74. margin-top: 30rpx;
  75. }
  76. .box-head{
  77. margin-left: 45rpx ;
  78. }
  79. .record-item{
  80. display: flex;
  81. flex-direction: column;
  82. background: #F8F9FC;
  83. border-radius: 20rpx;
  84. border: 1px solid #efefef;
  85. box-shadow: 0px 0px 4px 0 rgba(144,144,144,.2);
  86. margin-left: 45rpx ;
  87. margin-right: 45rpx ;
  88. & + .record-item{
  89. margin-top: 20rpx;
  90. }
  91. .title-wrap{
  92. padding: 0 32rpx;
  93. display: flex;
  94. align-items: center;
  95. height: 76rpx;
  96. .name{
  97. font-size: 26rpx;
  98. font-family: PingFang SC;
  99. font-weight: 500;
  100. color: #333333;
  101. }
  102. .status{
  103. margin-left: auto;
  104. font-size: 26rpx;
  105. font-family: PingFang SC;
  106. font-weight: bold;
  107. color: #79A9CE;
  108. &.waiting{
  109. color: #79A9CE;
  110. }
  111. &.end{
  112. color: #333333;
  113. }
  114. &.over{
  115. color: #999999;;
  116. }
  117. }
  118. }
  119. .divide{
  120. height: 1rpx;
  121. background: #DFE0E4;
  122. margin: 0 31rpx;
  123. }
  124. .content-wrap{
  125. padding: 16rpx 32rpx 20rpx;
  126. display: flex;
  127. flex-direction: column;
  128. }
  129. .row{
  130. display: flex;
  131. // margin-top: 23rpx;
  132. line-height: 1.8;
  133. .label{
  134. font-size: 28rpx;
  135. font-family: PingFang SC;
  136. font-weight: 500;
  137. color: #999999;
  138. }
  139. .text{
  140. font-size: 28rpx;
  141. font-family: PingFang SC;
  142. font-weight: 500;
  143. color: #333333;
  144. }
  145. }
  146. }
  147. .empty-wrap{
  148. padding-top: 40rpx;
  149. display: flex;
  150. flex-direction: column;
  151. align-items: center;
  152. .inner-img{
  153. width: 50vw;
  154. }
  155. .text{
  156. position: relative;
  157. top: -30rpx;
  158. color: #666;
  159. }
  160. }
  161. }