login.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .logo {
  28. width: 100%;
  29. height: 340rpx;
  30. text-align: center;
  31. display: -webkit-box;
  32. display: -webkit-flex;
  33. display: flex;
  34. -webkit-box-align: center;
  35. -webkit-align-items: center;
  36. align-items: center;
  37. padding-top: 240rpx;
  38. }
  39. .logo image {
  40. width: 280rpx;
  41. margin: 0 auto;
  42. height: 120rpx;
  43. }
  44. .set {
  45. position: absolute;
  46. right: 50rpx;
  47. top: 100rpx;
  48. }
  49. .bg {
  50. width: 100%;
  51. position: fixed;
  52. bottom: 0;
  53. z-index: -1;
  54. }
  55. .bg image {
  56. width: 100%;
  57. }
  58. .u-input__right-icon {
  59. line-height: 35px !important;
  60. }
  61. .uni-form-item {
  62. width: 100%;
  63. }
  64. .uni-form-item .username {
  65. width: 80%;
  66. margin: 0 auto;
  67. display: -webkit-box;
  68. display: -webkit-flex;
  69. display: flex;
  70. margin-bottom: 40rpx;
  71. padding-bottom: 10rpx;
  72. border-bottom: 2rpx solid #C3C3C3;
  73. }
  74. .uni-form-item .username .u-icon__icon {
  75. margin-top: 17rpx;
  76. }
  77. .uni-form-item .username .uni-input {
  78. width: 100%;
  79. }
  80. .uni-form-item .passwold {
  81. width: 80%;
  82. margin: 0 auto;
  83. display: -webkit-box;
  84. display: -webkit-flex;
  85. display: flex;
  86. margin-bottom: 40rpx;
  87. padding-bottom: 10rpx;
  88. border-bottom: 2rpx solid #C3C3C3;
  89. }
  90. .uni-form-item .passwold .u-icon__icon {
  91. margin-top: 17rpx;
  92. }
  93. .uni-form-item .passwold .uni-input {
  94. width: 100%;
  95. }
  96. .uni-form-item .aboutpass {
  97. width: 80%;
  98. margin: 0 auto;
  99. display: -webkit-box;
  100. display: -webkit-flex;
  101. display: flex;
  102. -webkit-box-pack: end;
  103. -webkit-justify-content: flex-end;
  104. justify-content: flex-end;
  105. }
  106. .uni-form-item .aboutpass ._p {
  107. color: #C0C0C0;
  108. font-size: 28rpx;
  109. }
  110. .uni-form-item .aboutpass .u-checkbox__label {
  111. font-size: 28rpx;
  112. color: #C0C0C0;
  113. margin-right: 0;
  114. }
  115. .uni-form-item .uni-btn-v {
  116. width: 80%;
  117. margin: 112rpx auto 0;
  118. position: relative;
  119. z-index: 100;
  120. }
  121. .uni-form-item .uni-btn-v button {
  122. width: 100%;
  123. height: 72rpx;
  124. line-height: 75rpx;
  125. background-color: #5DC18B;
  126. color: #FFFFFF;
  127. border-radius: 36rpx;
  128. font-size: 28rpx;
  129. }
  130. .setbg {
  131. width: 100%;
  132. height: 100vh;
  133. position: absolute;
  134. top: 0;
  135. z-index: 99999;
  136. }
  137. .setbg .mengban {
  138. width: 100%;
  139. height: 100vh;
  140. position: absolute;
  141. top: 0;
  142. background-color: rgba(0, 0, 0, 0.5);
  143. }
  144. .setbg .set_http {
  145. position: absolute;
  146. width: 90%;
  147. left: 5%;
  148. top: 30%;
  149. }
  150. .setbg .set_http .set_http_top {
  151. display: -webkit-box;
  152. display: -webkit-flex;
  153. display: flex;
  154. -webkit-justify-content: space-around;
  155. justify-content: space-around;
  156. background-color: #5DC18B;
  157. height: 60px;
  158. line-height: 60px;
  159. color: #FFFFFF;
  160. border-top-right-radius: 20px;
  161. border-top-left-radius: 20px;
  162. font-size: 32rpx;
  163. }
  164. .setbg .set_http .set_http_bot {
  165. height: 150px;
  166. background-color: #FFFFFF;
  167. border-bottom-right-radius: 20px;
  168. border-bottom-left-radius: 20px;
  169. padding: 30px;
  170. }
  171. .setbg .set_http .set_http_bot .set_http_bot_input {
  172. margin-top: 20rpx;
  173. border: 2rpx solid #bdb6a6;
  174. border-radius: 20rpx;
  175. padding: 10rpx 40rpx 0 20rpx;
  176. font-size: 32rpx;
  177. height: 30px;
  178. display: -webkit-box;
  179. display: -webkit-flex;
  180. display: flex;
  181. -webkit-box-pack: justify;
  182. -webkit-justify-content: space-between;
  183. justify-content: space-between;
  184. }
  185. .setbg .set_http .set_http_bot .set_http_bot_input input {
  186. width: 90%;
  187. }
  188. .setbg .set_http .scroll-Y {
  189. border: 2rpx solid #d0d0d0;
  190. border-radius: 20rpx;
  191. }
  192. .setbg .set_http .scroll-Y .scroll-view-item {
  193. padding-left: 20rpx;
  194. height: 70rpx;
  195. font-size: 28rpx;
  196. line-height: 70rpx;
  197. border-bottom: 2rpx solid #d0d0d0;
  198. }
  199. .upgradeBox {
  200. padding: 15rpx;
  201. }