login.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. uni-button[type=primary].data-v-b237504c {
  28. background: -webkit-linear-gradient(top, #5a52c5 0%, #8257ed 100%);
  29. background: linear-gradient(180deg, #5a52c5 0%, #8257ed 100%);
  30. }
  31. page.data-v-b237504c {
  32. font-size: 28rpx;
  33. }
  34. .wrap.data-v-b237504c {
  35. margin: 0 40rpx;
  36. }
  37. .full-img.data-v-b237504c {
  38. width: 100%;
  39. height: auto;
  40. }
  41. .f-tac.data-v-b237504c {
  42. text-align: center;
  43. }
  44. .write-radius.data-v-b237504c {
  45. background-color: #fff;
  46. border-radius: 24rpx;
  47. padding: 24rpx;
  48. margin-bottom: 24rpx;
  49. }
  50. .bottom-btn-wrap.data-v-b237504c {
  51. height: 110rpx;
  52. }
  53. .bottom-btn.data-v-b237504c {
  54. height: 110rpx;
  55. line-height: 110rpx;
  56. position: fixed;
  57. left: 0;
  58. bottom: 0;
  59. width: 100%;
  60. }
  61. /* @import url("login.scss"); */
  62. page.data-v-b237504c {
  63. background-color: #f8f8f8;
  64. }
  65. .til.data-v-b237504c {
  66. margin: 24rpx 0;
  67. }
  68. .login.data-v-b237504c {
  69. padding-top: 24rpx;
  70. }
  71. .uni-input.data-v-b237504c {
  72. border-radius: 100rpx;
  73. background-color: #ffffff;
  74. height: 88rpx;
  75. padding-left: 80rpx;
  76. }
  77. .uni-form-item.data-v-b237504c {
  78. position: relative;
  79. margin-bottom: 40rpx;
  80. }
  81. .btn.data-v-b237504c {
  82. border-radius: 100rpx;
  83. }
  84. .uni-form-item-wrap.data-v-b237504c {
  85. margin-bottom: 80rpx;
  86. }
  87. .eyebtn.data-v-b237504c {
  88. position: absolute;
  89. height: 100%;
  90. width: 50px;
  91. top: 0;
  92. right: 0;
  93. background: transparent;
  94. cursor: pointer;
  95. border: 0;
  96. padding: 0;
  97. margin: 0;
  98. outline: 0;
  99. }
  100. .eyebtn.data-v-b237504c::before,
  101. .eyebtn.data-v-b237504c::after {
  102. content: '';
  103. position: absolute;
  104. top: 0;
  105. left: 0;
  106. bottom: 0;
  107. right: 0;
  108. margin: auto;
  109. }
  110. .eyebtn.password.data-v-b237504c::before {
  111. width: 20px;
  112. height: 20px;
  113. background: #e0e0e0;
  114. border-radius: 15px 0 15px 0;
  115. -webkit-transform: rotate(45deg);
  116. transform: rotate(45deg);
  117. -webkit-transition: height .168s;
  118. transition: height .168s;
  119. }
  120. .eyebtn.password.data-v-b237504c::after {
  121. width: 10px;
  122. height: 10px;
  123. border-radius: 50%;
  124. background: #424242;
  125. }
  126. .eyebtn.text.data-v-b237504c::before {
  127. width: 15px;
  128. height: 15px;
  129. background: transparent;
  130. border: 3px solid #e0e0e0;
  131. border-radius: 15px 0 15px 0;
  132. -webkit-transform: rotate(45deg);
  133. transform: rotate(45deg);
  134. }
  135. .eyebtn.text.data-v-b237504c::after {
  136. width: 3px;
  137. height: 30px;
  138. border-radius: 0;
  139. -webkit-transform: rotate(30deg);
  140. transform: rotate(30deg);
  141. background: #e0e0e0;
  142. -webkit-transition: height .132s;
  143. transition: height .132s;
  144. }