index.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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. white-space: nowrap;
  125. &.not{
  126. color: #dedede !important;
  127. }
  128. }
  129. .tig{
  130. display: flex;
  131. align-items: center;
  132. margin-left: 20rpx;
  133. background: #FFFFFF;
  134. border: 1px solid #B3B3B3;
  135. border-radius: 20rpx;
  136. font-size: 22rpx;
  137. font-family: PingFang SC;
  138. font-weight: bold;
  139. color: #B3B3B3;
  140. padding: 0 10rpx;
  141. letter-spacing: 1px;
  142. }
  143. .stauts-wrap{
  144. margin-left: auto;
  145. .msg{
  146. font-size: 24rpx;
  147. font-family: PingFang SC;
  148. font-weight: 500;
  149. color: #B3B3B3;
  150. }
  151. }
  152. &.active{
  153. .value{
  154. color: #79A9CE;
  155. }
  156. .tig{
  157. color: #79A9CE;
  158. border: 1px solid #79A9CE;
  159. }
  160. .stauts-wrap{
  161. .msg{
  162. color: #79A9CE;
  163. }
  164. }
  165. }
  166. }
  167. }
  168. .button-wrap{
  169. padding-top: 30rpx;
  170. }
  171. .sing-btn{
  172. display: flex;
  173. align-items: center;
  174. justify-content: center;
  175. width: 300rpx;
  176. height: 80rpx;
  177. background: #79A9CE;
  178. border-radius: 10rpx;
  179. font-size: 30rpx;
  180. font-family: PingFang SC;
  181. font-weight: bold;
  182. color: #FEFEFE;
  183. &.button-hover{
  184. position: relative;
  185. top: 3px;
  186. }
  187. }
  188. }