login.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* pages/login/login.wxss */
  2. page {
  3. height: 100%;
  4. }
  5. .container {
  6. height: 100%;
  7. padding-top: 282rpx;
  8. position: relative;
  9. box-sizing: border-box;
  10. }
  11. .container-top {
  12. width: 750rpx;
  13. height: 406rpx;
  14. position: fixed;
  15. left: 0;
  16. top: 0;
  17. z-index: -1;
  18. }
  19. .container-top image {
  20. height: 407rpx;
  21. width: 628rpx;
  22. position: absolute;
  23. right: 0;
  24. top: 0;
  25. }
  26. .content {
  27. padding: 0 64rpx;
  28. }
  29. .logo image {
  30. width: 140rpx;
  31. height: 78rpx;
  32. margin-left: 2rpx;
  33. }
  34. .title {
  35. font-size: 48rpx;
  36. font-family: PingFangSC-Medium, PingFang SC;
  37. font-weight: 500;
  38. color: #000000;
  39. margin: 20rpx 0;
  40. }
  41. .content-main-input {
  42. width: 622rpx;
  43. height: 104rpx;
  44. font-size: 34rpx;
  45. font-family: PingFangSC-Regular, PingFang SC;
  46. font-weight: 400;
  47. color: #000000;
  48. background: #ffffff;
  49. border-bottom: 1rpx solid #e8e8e8;
  50. margin-bottom: 40rpx;
  51. display: flex;
  52. align-items: center;
  53. justify-content: space-between;
  54. }
  55. .content-main-input text {
  56. font-size: 26rpx;
  57. font-family: PingFangSC-Medium, PingFang SC;
  58. font-weight: 500;
  59. color: #096dd9;
  60. }
  61. text.color {
  62. color: rgba(0, 0, 0, 0.25);
  63. }
  64. .placeholder-class {
  65. font-size: 34rpx;
  66. font-family: PingFangSC-Regular, PingFang SC;
  67. font-weight: 400;
  68. color: rgba(0, 0, 0, 0.25);
  69. }
  70. .tips {
  71. font-size: 26rpx;
  72. font-family: PingFangSC-Regular, PingFang SC;
  73. font-weight: 400;
  74. color: #000000;
  75. display: flex;
  76. align-items: center;
  77. }
  78. .tips text {
  79. color: #096dd9;
  80. }
  81. .checkbox {
  82. width: 24rpx;
  83. height: 24rpx;
  84. border-radius: 4rpx;
  85. border: 2rpx solid #8c8c8c;
  86. margin-right: 10rpx;
  87. display: flex;
  88. align-items: center;
  89. justify-content: center;
  90. }
  91. .checked {
  92. width: 14rpx;
  93. height: 14rpx;
  94. background: #1890ff;
  95. border-radius: 2rpx;
  96. }
  97. .container-bottom {
  98. width: 750rpx;
  99. height: 529rpx;
  100. position: fixed;
  101. bottom: 0;
  102. left: 0;
  103. z-index: -1;
  104. }
  105. .container-bottom image {
  106. height: 100%;
  107. width: 100%;
  108. }
  109. .bottom {
  110. width: 100%;
  111. font-size: 26rpx;
  112. font-family: PingFangSC-Regular, PingFang SC;
  113. font-weight: 400;
  114. color: rgba(0, 0, 0, 0.45);
  115. position: absolute;
  116. left: 0;
  117. bottom: 0;
  118. display: flex;
  119. align-items: center;
  120. justify-content: center;
  121. flex-direction: column;
  122. margin-bottom: 91rpx;
  123. }
  124. .bottom .button {
  125. width: 622rpx;
  126. height: 102rpx;
  127. border-radius: 18rpx;
  128. line-height: 102rpx;
  129. text-align: center;
  130. background: #d9d9d9;
  131. font-size: 38rpx;
  132. font-family: PingFangSC-Medium, PingFang SC;
  133. font-weight: 500;
  134. color: #ffffff;
  135. margin-bottom: 20rpx;
  136. }
  137. .bottom .button-login {
  138. background: #1890ff;
  139. }