login.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. page {
  28. height: 100%;
  29. background: #FFF;
  30. }
  31. .footers {
  32. padding-left: 140rpx;
  33. margin-top: 32rpx;
  34. font-size: 24rpx;
  35. color: #666666;
  36. text-align: center;
  37. display: flex;
  38. }
  39. .confirm-btn-weixin {
  40. width: 200px;
  41. height: 42px;
  42. line-height: 42px;
  43. border-radius: 30px;
  44. margin-top: 40rpx;
  45. background: linear-gradient(to left, #f15b6c 0, #e10a07 100%);
  46. color: #fff;
  47. font-size: 32rpx;
  48. }
  49. .confirm-btn-weixin:after {
  50. border-radius: 60px;
  51. }
  52. .confirm-btn {
  53. width: 200px;
  54. height: 42px;
  55. line-height: 42px;
  56. border-radius: 30px;
  57. margin-top: 300rpx;
  58. background: linear-gradient(to left, #f15b6c 0, #e10a07 100%);
  59. color: #fff;
  60. font-size: 32rpx;
  61. }
  62. .confirm-btn:after {
  63. border-radius: 60px;
  64. }
  65. .headers {
  66. text-align: center;
  67. }
  68. .headers > image {
  69. width: 400rpx;
  70. height: 400rpx;
  71. }
  72. .footer {
  73. padding-left: 60rpx;
  74. margin-top: 48rpx;
  75. font-size: 24rpx;
  76. color: #666666;
  77. text-align: center;
  78. display: flex;
  79. }
  80. page {
  81. background: #fff;
  82. }
  83. .send-msg {
  84. border-radius: 30px;
  85. color: black;
  86. background: white;
  87. height: 30px;
  88. font-size: 14px;
  89. line-height: 30px;
  90. }
  91. .container {
  92. top: 0;
  93. padding-top: 32rpx;
  94. position: relative;
  95. width: 100%;
  96. height: 100%;
  97. overflow: hidden;
  98. }
  99. .container .mp_wxBox .headers {
  100. margin: 35% auto 50rpx;
  101. text-align: center;
  102. border-radius: 60rpx;
  103. width: 650rpx;
  104. height: 300rpx;
  105. line-height: 450rpx;
  106. }
  107. .container .mp_wxBox .headers image {
  108. width: 300rpx;
  109. height: 300rpx;
  110. }
  111. .container .mp_wxBox .content {
  112. text-align: center;
  113. }
  114. .container .mp_wxBox text {
  115. display: block;
  116. color: #9d9d9d;
  117. margin-top: 40rpx;
  118. }
  119. .container .mp_wxBox .bottom {
  120. line-height: 80rpx;
  121. border-radius: 80rpx;
  122. margin: 70rpx 50rpx;
  123. height: 80rpx;
  124. font-size: 35rpx;
  125. }
  126. .wrapper {
  127. position: relative;
  128. z-index: 90;
  129. background: #fff;
  130. padding-bottom: 20px;
  131. }
  132. .input-content {
  133. padding: 0 20px;
  134. }
  135. .confirm-btn {
  136. width: 300px;
  137. height: 42px;
  138. line-height: 42px;
  139. border-radius: 30px;
  140. margin-top: 40px;
  141. background: linear-gradient(to left, #3f5ecb 0, #5074FF 100%);
  142. color: #fff;
  143. }
  144. .confirm-btn:after {
  145. border-radius: 60px;
  146. }