login.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. .bg {
  28. width: 100%;
  29. height: 100vh;
  30. position: absolute;
  31. top: 0;
  32. left: 0;
  33. }
  34. .bg .bgimg {
  35. width: 100%;
  36. height: 100%;
  37. }
  38. .apptitle {
  39. font-size: 52rpx;
  40. color: #fff;
  41. width: 80%;
  42. margin: 600rpx auto 40rpx;
  43. }
  44. .logo {
  45. width: 100%;
  46. height: 340rpx;
  47. text-align: center;
  48. display: flex;
  49. align-items: center;
  50. padding-top: 240rpx;
  51. }
  52. .logo image {
  53. width: 280rpx;
  54. margin: 0 auto;
  55. height: 120rpx;
  56. }
  57. .set {
  58. position: absolute;
  59. right: 50rpx;
  60. top: 150rpx;
  61. }
  62. .bg {
  63. width: 100%;
  64. position: fixed;
  65. bottom: 0;
  66. left: 0;
  67. z-index: -1;
  68. }
  69. .bg image {
  70. width: 100%;
  71. }
  72. .u-input__right-icon {
  73. line-height: 35px !important;
  74. }
  75. .uni-form-item {
  76. width: 100%;
  77. }
  78. .uni-form-item .username {
  79. width: 80%;
  80. margin: 0 auto;
  81. display: flex;
  82. margin-bottom: 40rpx;
  83. padding-bottom: 10rpx;
  84. border-bottom: 2rpx solid rgba(249, 249, 249, 0.4);
  85. }
  86. .uni-form-item .username .u-icon__icon {
  87. margin-top: 17rpx;
  88. }
  89. .uni-form-item .username .uni-input {
  90. width: 100%;
  91. color: #fff;
  92. }
  93. .uni-form-item .username .u-input__input {
  94. color: #fff !important;
  95. }
  96. .uni-form-item .passwold {
  97. width: 80%;
  98. margin: 0 auto;
  99. display: flex;
  100. margin-bottom: 40rpx;
  101. padding-bottom: 10rpx;
  102. border-bottom: 2rpx solid rgba(249, 249, 249, 0.4);
  103. }
  104. .uni-form-item .passwold .u-icon__icon {
  105. margin-top: 17rpx;
  106. }
  107. .uni-form-item .passwold .u-input__input {
  108. color: #fff;
  109. }
  110. .uni-form-item .passwold .uni-input {
  111. width: 100%;
  112. color: #fff;
  113. }
  114. .uni-form-item .passwold .uicon-eye {
  115. color: #fff !important;
  116. }
  117. .uni-form-item .aboutpass {
  118. width: 80%;
  119. margin: 0 auto;
  120. display: flex;
  121. justify-content: flex-end;
  122. }
  123. .uni-form-item .aboutpass ._p {
  124. color: #fff;
  125. font-size: 28rpx;
  126. }
  127. .uni-form-item .aboutpass .uicon-checkbox-mark {
  128. border-color: #FF0000;
  129. }
  130. .uni-form-item .aboutpass .u-checkbox__label {
  131. font-size: 28rpx;
  132. color: #fff;
  133. margin-right: 0;
  134. }
  135. .uni-form-item .uni-btn-v {
  136. width: 80%;
  137. margin: 112rpx auto 0;
  138. position: relative;
  139. z-index: 100;
  140. }
  141. .uni-form-item .uni-btn-v button {
  142. width: 100%;
  143. height: 90rpx;
  144. line-height: 90rpx;
  145. color: #FFFFFF;
  146. font-size: 36rpx;
  147. background-image: linear-gradient(to bottom, rgba(249, 249, 249, 0.6), rgba(249, 249, 249, 0.1));
  148. color: #5DC18B;
  149. }
  150. .setbg {
  151. width: 100%;
  152. height: 100vh;
  153. position: absolute;
  154. top: 0;
  155. z-index: 99999;
  156. }
  157. .setbg .mengban {
  158. width: 100%;
  159. height: 100vh;
  160. position: absolute;
  161. top: 0;
  162. background-color: rgba(0, 0, 0, 0.5);
  163. }
  164. .setbg .set_http {
  165. position: absolute;
  166. width: 90%;
  167. left: 5%;
  168. top: 30%;
  169. }
  170. .setbg .set_http .set_http_top {
  171. display: flex;
  172. justify-content: space-around;
  173. background-color: #5DC18B;
  174. height: 60px;
  175. line-height: 60px;
  176. color: #FFFFFF;
  177. border-top-right-radius: 20px;
  178. border-top-left-radius: 20px;
  179. font-size: 32rpx;
  180. }
  181. .setbg .set_http .set_http_bot {
  182. height: 150px;
  183. background-color: #FFFFFF;
  184. border-bottom-right-radius: 20px;
  185. border-bottom-left-radius: 20px;
  186. padding: 30px;
  187. }
  188. .setbg .set_http .set_http_bot .set_http_bot_input {
  189. margin-top: 20rpx;
  190. border: 2rpx solid #bdb6a6;
  191. border-radius: 20rpx;
  192. padding: 10rpx 40rpx 0 20rpx;
  193. font-size: 32rpx;
  194. height: 30px;
  195. display: flex;
  196. justify-content: space-between;
  197. }
  198. .setbg .set_http .set_http_bot .set_http_bot_input input {
  199. width: 90%;
  200. }
  201. .setbg .set_http .scroll-Y {
  202. border: 2rpx solid #d0d0d0;
  203. border-radius: 20rpx;
  204. }
  205. .setbg .set_http .scroll-Y .scroll-view-item {
  206. padding-left: 20rpx;
  207. height: 70rpx;
  208. font-size: 28rpx;
  209. line-height: 70rpx;
  210. border-bottom: 2rpx solid #d0d0d0;
  211. }
  212. .upgradeBox {
  213. padding: 15rpx;
  214. }