login.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. .wrapper {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. padding-top: 108rpx;
  6. }
  7. .title {
  8. width: 100%;
  9. padding-left: 39rpx;
  10. line-height: 72rpx;
  11. font-size: 48rpx;
  12. color: rgba(51, 51, 51, 1);
  13. }
  14. input {
  15. height: 72rpx;
  16. background-color: transparent;
  17. padding: 15rpx 10rpx;
  18. font-size: 28rpx;
  19. color: rgba(68, 68, 68, 1);
  20. border-bottom: 1rpx solid rgba(153, 153, 153, 1);
  21. }
  22. .placeholder {
  23. color: #999999;
  24. font-size: 28rpx;
  25. }
  26. .mobile {
  27. display: block;
  28. width: 672rpx;
  29. margin-top: 92rpx;
  30. }
  31. .code-box {
  32. display: flex;
  33. justify-content: space-between;
  34. align-items: center;
  35. width: 672rpx;
  36. margin-top: 50rpx;
  37. .ver-code {
  38. width: 388rpx;
  39. }
  40. button {
  41. width: 285rpx;
  42. height: 72rpx;
  43. justify-content: flex-end;
  44. &[type='default'] {
  45. color: rgba(68, 68, 68, 1);
  46. background-color: transparent;
  47. }
  48. &[disabled][type='default'] {
  49. color: #999999;
  50. background-color: transparent;
  51. }
  52. }
  53. text {
  54. font-size: 28rpx;
  55. }
  56. text:nth-of-type(2) {
  57. width: 72rpx;
  58. }
  59. }
  60. .agreement-wrap {
  61. display: flex;
  62. align-items: center;
  63. width: 100%;
  64. margin-top: 18rpx;
  65. .checked-wrap {
  66. display: flex;
  67. align-items: center;
  68. height: 34rpx;
  69. padding: 0 19rpx 0 50rpx;
  70. }
  71. image {
  72. width: 17rpx;
  73. height: 18rpx;
  74. background: pink;
  75. }
  76. .text-wrap {
  77. display: flex;
  78. flex-flow: row wrap;
  79. font-size: 0;
  80. }
  81. text {
  82. line-height: 34rpx;
  83. font-size: 28rpx;
  84. }
  85. }
  86. .footer {
  87. display: flex;
  88. flex-direction: column;
  89. align-items: center;
  90. margin-top: 104rpx;
  91. }
  92. .login {
  93. width: 504rpx;
  94. height: 76rpx;
  95. border-radius: 38rpx;
  96. font-size: 32rpx;
  97. &[type='primary'] {
  98. color: #FFFFFF;
  99. background-color: rgba(145, 179, 121, 1);
  100. }
  101. &[disabled][type=primary] {
  102. color: #FFFFFF;
  103. background-color: #DFDFDF;
  104. }
  105. }
  106. .auth {
  107. position: relative;
  108. left: 0;
  109. top: 0;
  110. margin-top: 48rpx;
  111. .disabled {
  112. position: absolute;
  113. left: 0;
  114. top: 0;
  115. right: 0;
  116. bottom: 0;
  117. z-index: 1;
  118. }
  119. button {
  120. width: 504rpx;
  121. height: 76rpx;
  122. &[type='default'] {
  123. color: rgba(145, 179, 121, 1);
  124. background-color: transparent;
  125. }
  126. }
  127. text {
  128. font-size: 28rpx;
  129. }
  130. image {
  131. width: 21rpx;
  132. height: 24rpx;
  133. background: pink;
  134. }
  135. }