index.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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: 32rpx;
  23. font-family: PingFang SC;
  24. font-weight: bold;
  25. color: #212121;
  26. }
  27. .extra{
  28. margin-left: auto;
  29. font-size: 26rpx;
  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: 30rpx;
  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: 30rpx;
  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. position: relative;
  92. .cover-swiper{
  93. position: absolute;
  94. right: 0;
  95. top: 0;
  96. bottom: 0;
  97. width: 80rpx;
  98. background-color: transparent;
  99. z-index: 3;
  100. }
  101. // padding-left: 30px;
  102. flex: 1;
  103. height: 100%;
  104. .picker-view{
  105. height: 100%;
  106. }
  107. .picker-item{
  108. padding-left: 30rpx;
  109. padding-right: 14rpx;
  110. display: flex;
  111. align-items: center;
  112. height: 100%;
  113. border-radius: 4px;
  114. &.hover-active{
  115. background-color: rgba(122,122,122,.1);
  116. }
  117. .value{
  118. font-size: 30rpx;
  119. font-family: PingFang SC;
  120. font-weight: bold;
  121. color: #212121;
  122. letter-spacing: 1rpx;
  123. flex-basis: 3em;
  124. &.not{
  125. color: #dedede !important;
  126. }
  127. }
  128. .tig{
  129. display: flex;
  130. align-items: center;
  131. margin-left: 20rpx;
  132. background: #FFFFFF;
  133. border: 1px solid #B3B3B3;
  134. border-radius: 20rpx;
  135. font-size: 22rpx;
  136. font-family: PingFang SC;
  137. font-weight: bold;
  138. color: #B3B3B3;
  139. padding: 0 10rpx;
  140. letter-spacing: 1px;
  141. }
  142. .stauts-wrap{
  143. margin-left: auto;
  144. .msg{
  145. font-size: 24rpx;
  146. font-family: PingFang SC;
  147. font-weight: 500;
  148. color: #B3B3B3;
  149. }
  150. }
  151. &.active{
  152. .value{
  153. color: #79A9CE;
  154. }
  155. .tig{
  156. color: #79A9CE;
  157. border: 1px solid #79A9CE;
  158. }
  159. .stauts-wrap{
  160. .msg{
  161. color: #79A9CE;
  162. }
  163. }
  164. }
  165. }
  166. }
  167. .button-wrap{
  168. padding-top: 30rpx;
  169. }
  170. .sing-btn{
  171. display: flex;
  172. align-items: center;
  173. justify-content: center;
  174. width: 300rpx;
  175. height: 80rpx;
  176. background: #79A9CE;
  177. border-radius: 10rpx;
  178. font-size: 30rpx;
  179. font-family: PingFang SC;
  180. font-weight: bold;
  181. color: #FEFEFE;
  182. &.button-hover{
  183. position: relative;
  184. top: 3px;
  185. }
  186. }
  187. }