login.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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 39rpx;
  70. }
  71. image {
  72. width: 34rpx;
  73. height: 34rpx;
  74. }
  75. .text-wrap {
  76. display: flex;
  77. flex-flow: row wrap;
  78. font-size: 0;
  79. }
  80. text {
  81. line-height: 34rpx;
  82. font-size: 28rpx;
  83. }
  84. }
  85. .footer {
  86. display: flex;
  87. flex-direction: column;
  88. align-items: center;
  89. margin-top: 104rpx;
  90. }
  91. .login {
  92. width: 504rpx;
  93. height: 76rpx;
  94. border-radius: 38rpx;
  95. font-size: 32rpx;
  96. &[type='primary'] {
  97. color: #FFFFFF;
  98. background-color: rgba(145, 179, 121, 1);
  99. }
  100. &[disabled][type=primary] {
  101. color: #FFFFFF;
  102. background-color: #DFDFDF;
  103. }
  104. }
  105. .auth {
  106. position: relative;
  107. left: 0;
  108. top: 0;
  109. margin-top: 48rpx;
  110. .disabled {
  111. position: absolute;
  112. left: 0;
  113. top: 0;
  114. right: 0;
  115. bottom: 0;
  116. z-index: 1;
  117. }
  118. button {
  119. width: 504rpx;
  120. height: 76rpx;
  121. &[type='default'] {
  122. color: rgba(145, 179, 121, 1);
  123. background-color: transparent;
  124. }
  125. }
  126. text {
  127. font-size: 28rpx;
  128. }
  129. image {
  130. width: 24rpx;
  131. height: 22rpx;
  132. }
  133. }