findpass.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. /*自定义主题色 */
  27. page {
  28. background-color: #ffffff;
  29. }
  30. .content {
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. height: 100vh;
  35. width: 100%;
  36. justify-content: space-between;
  37. }
  38. .pageTop {
  39. display: flex;
  40. flex-direction: column;
  41. width: 100%;
  42. }
  43. .content .head {
  44. text-align: center;
  45. width: 100%;
  46. height: 522rpx;
  47. background-size: cover;
  48. box-sizing: border-box;
  49. }
  50. .content .head image {
  51. width: 150rpx;
  52. height: 150rpx;
  53. border-radius: 10rpx;
  54. box-shadow: 0px 0px 20rpx rgba(0, 0, 0, 0.2);
  55. }
  56. .title {
  57. color: #141414;
  58. margin: 50rpx 0rpx 30rpx 0rpx;
  59. font-size: 38rpx;
  60. font-weight: 500;
  61. }
  62. .desc {
  63. color: #686866;
  64. padding: 0 0 30rpx 0rpx;
  65. font-size: 28rpx;
  66. }
  67. .loginBox {
  68. padding: 10px 10px 30rpx;
  69. width: calc(100% - 20px);
  70. margin-top: 0rpx;
  71. background: #FDFDFD;
  72. border-radius: 7rpx;
  73. }
  74. .line {
  75. height: 0.5rpx;
  76. background-color: #efefef;
  77. margin-top: 10rpx;
  78. }
  79. .input-account {
  80. margin-top: 20rpx;
  81. margin-bottom: 0rpx;
  82. border-radius: 40rpx;
  83. border: solid 0rpx #efefef;
  84. height: 80rpx;
  85. width: 100%;
  86. background-size: 30rpx 30rpx;
  87. background-position: 30rpx;
  88. }
  89. .input-yzcode {
  90. margin-top: 20rpx;
  91. margin-bottom: 0rpx;
  92. border-radius: 40rpx;
  93. border: solid 0rpx #efefef;
  94. height: 80rpx;
  95. width: 100%;
  96. background-size: 30rpx 30rpx;
  97. background-position: 30rpx;
  98. }
  99. .input-pwd {
  100. margin-top: 40rpx;
  101. margin-bottom: 20rpx;
  102. border-radius: 40rpx;
  103. border: solid 0rpx #efefef;
  104. height: 80rpx;
  105. width: 100%;
  106. background-size: 30rpx 30rpx;
  107. background-position: 30rpx;
  108. }
  109. input {
  110. margin-left: 80rpx;
  111. height: 80rpx;
  112. line-height: 80rpx;
  113. }
  114. .footer {
  115. color: #686866;
  116. width: 100%;
  117. position: fixed;
  118. text-align: center;
  119. bottom: 60rpx;
  120. font-size: 28rpx;
  121. }
  122. .btns {
  123. margin: 60rpx 0rpx;
  124. }
  125. .login-btn {
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. width: 100%;
  130. height: 80rpx;
  131. background: linear-gradient(to right, #FF5C03 0%, #FF5C03 100%);
  132. background: -moz-linear-gradient(to right, #FF5C03 0%, #FF5C03 100%);
  133. box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
  134. border-radius: 40rpx;
  135. font-size: 30rpx;
  136. font-family: PingFang SC;
  137. font-weight: 500;
  138. color: white;
  139. }
  140. .reg-box {
  141. padding-bottom: 20rpx;
  142. margin: 0 10px;
  143. }
  144. .reg-box .reg-btn {
  145. font-size: 16px;
  146. color: #FF5C03;
  147. }
  148. .pageBottom {
  149. height: 260rpx;
  150. width: 75%;
  151. display: flex;
  152. flex-direction: column;
  153. }
  154. .tips {
  155. color: #999;
  156. font-size: 36rpx;
  157. }
  158. .menu {
  159. margin-top: 30rpx;
  160. }
  161. .menu image {
  162. width: 78rpx;
  163. height: 78rpx;
  164. }