index.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. .sign-page{
  2. min-height: 100vh;
  3. background: #F5F7FB;
  4. .view-wrap{
  5. padding-top: 34rpx;
  6. padding-bottom: 60rpx;
  7. }
  8. .card{
  9. padding: 26rpx 30rpx 20rpx;
  10. background-color: #fff;
  11. margin: 0 35rpx;
  12. border-radius: 20rpx;
  13. box-shadow: 0 0 8rpx 0 rgba(144,144,144,.1);
  14. }
  15. .form-item{
  16. padding-bottom: 30rpx;
  17. .form-item__title{
  18. display: flex;
  19. align-items: center;
  20. height: 68rpx;
  21. .name{
  22. font-size: 30rpx;
  23. font-family: PingFang SC;
  24. font-weight: bold;
  25. color: #212121;
  26. }
  27. .extra{
  28. margin-left: auto;
  29. font-size: 24rpx;
  30. font-family: PingFang SC;
  31. font-weight: bold;
  32. color: #79A9CE;
  33. }
  34. }
  35. .form-item__input__wrap{
  36. .form-item__input{
  37. display: flex;
  38. height: 80rpx;
  39. background: #F5F7FB;
  40. border-radius: 10rpx;
  41. .input{
  42. flex: 1;
  43. height: 100%;
  44. padding-left: 10px;
  45. font-size: 28rpx;
  46. font-family: PingFang SC;
  47. font-weight: bold;
  48. color: #000;
  49. }
  50. .icon{
  51. align-self: center;
  52. margin-right: 10px;
  53. }
  54. .input-placeholder{
  55. font-size: 28rpx;
  56. font-family: PingFang SC;
  57. font-weight: bold;
  58. color: #B8BBBF;
  59. }
  60. }
  61. }
  62. }
  63. .date-name{
  64. padding-top: 16rpx;
  65. padding-bottom: 20rpx;
  66. font-size: 30rpx;
  67. font-family: PingFang SC;
  68. font-weight: bold;
  69. color: #212121;
  70. }
  71. .date-divide{
  72. height: 1px;
  73. background: #F5F7FB;
  74. margin-bottom: 20rpx;
  75. }
  76. .divide{
  77. height: 20rpx;
  78. }
  79. .date-time-wrap{
  80. display: flex;
  81. height: 601rpx;
  82. .label{
  83. font-size: 30rpx;
  84. font-family: PingFang SC;
  85. font-weight: bold;
  86. color: #212121;
  87. align-self: center;
  88. }
  89. }
  90. .time-range{
  91. // padding-left: 30px;
  92. flex: 1;
  93. height: 100%;
  94. .picker-view{
  95. height: 100%;
  96. }
  97. .picker-item{
  98. padding-left: 30rpx;
  99. padding-right: 14rpx;
  100. display: flex;
  101. align-items: center;
  102. height: 100%;
  103. border-radius: 4px;
  104. &.hover-active{
  105. background-color: rgba(122,122,122,.1);
  106. }
  107. .value{
  108. font-size: 30rpx;
  109. font-family: PingFang SC;
  110. font-weight: bold;
  111. color: #212121;
  112. letter-spacing: 1rpx;
  113. flex-basis: 3em;
  114. &.not{
  115. color: #dedede !important;
  116. }
  117. }
  118. .tig{
  119. display: flex;
  120. align-items: center;
  121. margin-left: 20rpx;
  122. background: #FFFFFF;
  123. border: 1px solid #B3B3B3;
  124. border-radius: 20rpx;
  125. font-size: 22rpx;
  126. font-family: PingFang SC;
  127. font-weight: bold;
  128. color: #B3B3B3;
  129. padding: 0 10rpx;
  130. letter-spacing: 1px;
  131. }
  132. .stauts-wrap{
  133. margin-left: auto;
  134. .msg{
  135. font-size: 24rpx;
  136. font-family: PingFang SC;
  137. font-weight: 500;
  138. color: #B3B3B3;
  139. }
  140. }
  141. &.active{
  142. .value{
  143. color: #79A9CE;
  144. }
  145. .tig{
  146. color: #79A9CE;
  147. border: 1px solid #79A9CE;
  148. }
  149. .stauts-wrap{
  150. .msg{
  151. color: #79A9CE;
  152. }
  153. }
  154. }
  155. }
  156. }
  157. .button-wrap{
  158. padding-top: 30rpx;
  159. }
  160. .sing-btn{
  161. display: flex;
  162. align-items: center;
  163. justify-content: center;
  164. width: 300rpx;
  165. height: 80rpx;
  166. background: #79A9CE;
  167. border-radius: 10rpx;
  168. font-size: 30rpx;
  169. font-family: PingFang SC;
  170. font-weight: bold;
  171. color: #FEFEFE;
  172. &.button-hover{
  173. position: relative;
  174. top: 3px;
  175. }
  176. }
  177. }