login.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. page {
  2. background-color:#fff;
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .page {
  7. background-color:#fff;
  8. width: 100%;
  9. height:100vh;
  10. }
  11. .header {
  12. display: flex;
  13. flex-direction: column;
  14. justify-content: flex-start;
  15. align-items: center;
  16. width: 750rpx;height: 220rpx;
  17. padding-top: calc(var(--status-bar-height) + 90rpx);
  18. // .left {
  19. // display: flex;flex-direction: row;width:100rpx;height:60rpx;
  20. // justify-content: center;
  21. // padding-left:50rpx;
  22. // image {
  23. // width:36rpx;height:36rpx;
  24. // }
  25. // }
  26. .title {
  27. text-align: center;
  28. width: 100%;
  29. font-weight: 600;
  30. font-family: PingFang SC, PingFang SC;
  31. font-weight: 500;
  32. font-size: 48rpx;
  33. color: #1F1F1F;
  34. }
  35. .subtitle {
  36. font-size: 24rpx;
  37. font-weight: 400;
  38. color: #959595;
  39. text-align: center;
  40. margin-top: 20rpx;
  41. width: 100%;
  42. }
  43. }
  44. .thread {
  45. height: 20rpx;
  46. }
  47. .thread2 {
  48. height: 60rpx;
  49. }
  50. .tbody {
  51. display: flex;flex-direction: column;justify-content: center;align-items: center;
  52. image {
  53. width:152rpx;height:152rpx;
  54. }
  55. .mobile {
  56. font-weight: bold;margin-top:84rpx;
  57. font-size: 52rpx;
  58. color: #FFFFFF;
  59. }
  60. .tips {
  61. font-weight: 400;margin-top:76rpx;
  62. font-size: 24rpx;
  63. color: #D0D0D0;
  64. }
  65. .btn_submit {
  66. width: 660rpx;height: 96rpx;margin-top:38rpx;
  67. // background: linear-gradient( 142deg, #FF5967 0%, #FF2A95 100%);
  68. background-color: #1f1f1f;
  69. border-radius: 28rpx 28rpx 28rpx 28rpx;
  70. border-radius: 58rpx;
  71. display: flex;flex-direction: column;justify-content: center;align-items: center;
  72. font-weight: bold;
  73. font-size: 32rpx;
  74. color: #FFFFFF;
  75. transition: all 0.2s ease;
  76. position: relative;
  77. overflow: hidden;
  78. }
  79. .other {
  80. margin-top:38rpx;
  81. display: flex;flex-direction: row;justify-content: center;align-items: center;
  82. color:#fff;font-size:24rpx;
  83. .line {
  84. width:2rpx;height:24rpx;background-color: #fff;margin-left: 30rpx;margin-right: 30rpx;
  85. }
  86. }
  87. .name {
  88. width:690rpx;display: flex;flex-direction: row;justify-content: space-between;align-items: flex-start;
  89. color:#fff;font-size: 28rpx;margin-top: 20rpx;
  90. .right {
  91. font-size: 28rpx;
  92. color: #FF2A95;
  93. }
  94. }
  95. .item {
  96. width: 690rpx;height: 84rpx;margin-top: 20rpx;
  97. background: #282828;position: relative;
  98. border-radius: 24rpx 24rpx 24rpx 24rpx;
  99. input {
  100. width:100%;height:100%;padding-left: 20rpx;font-size: 28rpx;color:#fff;
  101. }
  102. .btn {
  103. position: absolute;right:20rpx;top:0rpx;
  104. font-weight: 400;
  105. font-size: 28rpx;line-height: 84rpx;
  106. color: #fff;
  107. }
  108. .arrow {
  109. width:36rpx;position: absolute;right:20rpx;top:24rpx;
  110. }
  111. }
  112. .other_list {
  113. width: 690rpx;display: flex;flex-direction: row;justify-content: space-between;align-items: center;margin-top:38rpx;
  114. .left {
  115. font-weight: bold;
  116. font-size: 28rpx;
  117. color: #0084FF;
  118. }
  119. .right {
  120. font-weight: bold;
  121. font-size: 28rpx;
  122. color: #FFFFFF;
  123. }
  124. }
  125. .wechat {
  126. width: 88rpx;height: 88rpx;margin-top:200rpx;
  127. background: rgba(255,255,255,0);
  128. border: 2rpx solid #D0D0D0;border-radius: 44rpx;
  129. display: flex;flex-direction: row;justify-content: center;align-items: center;
  130. image {
  131. width:62rpx;
  132. }
  133. }
  134. .agree {
  135. width:100%;text-align: center;color: #1f1f1f;font-size: 22rpx;margin-top: 40rpx;
  136. display: flex;flex-direction: row;justify-content: center;align-items: center;
  137. .agree2 {
  138. display: flex;flex-direction: row;justify-content: center;align-items: center;
  139. }
  140. .xy {
  141. color:#0084FF;
  142. }
  143. image {
  144. width:32rpx;margin-right: 8rpx;
  145. }
  146. }
  147. // 自定义输入框样式
  148. .item{
  149. background-color: #fff;
  150. border: solid 4rpx #000000;
  151. border-radius: 74rpx;
  152. ::v-deep.uni-input-placeholder{
  153. color: #999;
  154. }
  155. ::v-deep.uni-input-input{
  156. color: #1f1f1f;
  157. }
  158. .btn{
  159. background: #1f1f1f;
  160. display: inline-block;
  161. line-height: 1;
  162. display: flex;
  163. align-items: center;
  164. justify-content: center;
  165. top: 50%;
  166. right: 8rpx;
  167. transform: translateY(-50%);
  168. padding: 18rpx 25rpx;
  169. height: auto;
  170. border-radius: 74rpx;
  171. }
  172. }
  173. }
  174. .blankHeight {
  175. width:750rpx;height:180rpx;
  176. }