login.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /* pages/login/login.wxss */
  2. form {
  3. display: block;
  4. }
  5. .login {
  6. min-height: 100%;
  7. padding: 50rpx 24rpx 0 24rpx;
  8. box-sizing: border-box;
  9. position: relative;
  10. background: url(https://voms.cdn.bosind.com/mini/login_back.png) no-repeat;
  11. background-size: 100% auto;
  12. }
  13. .backImg {
  14. width: 100%;
  15. position: absolute;
  16. left: 0;
  17. top: 0;
  18. z-index: 0 !important;
  19. margin: 0 !important;
  20. padding: 0 !important;
  21. }
  22. .login>image {
  23. /* width: 182rpx; */
  24. height: 55rpx;
  25. margin-top: 50rpx;
  26. margin-left: 28rpx;
  27. margin-bottom: 70rpx;
  28. }
  29. .title {
  30. font-weight: 500;
  31. font-size: 44rpx;
  32. color: #000000;
  33. line-height: 1.5;
  34. margin-left: 28rpx;
  35. }
  36. .brief {
  37. font-weight: 400;
  38. font-size: 32rpx;
  39. color: #A2A2A2;
  40. line-height: 1.5;
  41. margin-left: 28rpx;
  42. }
  43. .form {
  44. padding: 52rpx;
  45. box-sizing: border-box;
  46. background-color: white;
  47. }
  48. .phone {
  49. display: inline-block;
  50. font-weight: 500;
  51. font-size: 32rpx;
  52. color: #0D0D0D;
  53. line-height: 1.5;
  54. border-bottom: 8rpx solid white;
  55. }
  56. .phone.active{
  57. border-bottom: 8rpx solid #F5971C;
  58. }
  59. .text {
  60. font-weight: 500;
  61. font-size: 24rpx;
  62. color: #424242;
  63. line-height: 40rpx;
  64. margin-top: 60rpx;
  65. }
  66. .input {
  67. width: 600rpx;
  68. height: 88rpx;
  69. display: flex;
  70. position: relative;
  71. }
  72. input {
  73. min-width: 376rpx;
  74. height: 100%;
  75. font-size: 28rpx;
  76. color: #0D0D0D;
  77. padding-left: 10rpx;
  78. border-radius: 6rpx;
  79. border: 1rpx solid rgba(28, 55, 90, 0.16);
  80. flex: 1;
  81. }
  82. .input button,
  83. .input image {
  84. width: 192rpx;
  85. height: 88rpx;
  86. background: #494949;
  87. border-radius: 6rpx;
  88. font-weight: 500;
  89. font-size: 24rpx !important;
  90. color: #FFFFFF;
  91. line-height: 88rpx;
  92. padding: 0;
  93. margin-left: 32rpx;
  94. }
  95. .submit {
  96. width: 600rpx;
  97. height: 112rpx;
  98. background: #00B1FE;
  99. border-radius: 8rpx 8rpx 8rpx 8rpx;
  100. font-weight: 600;
  101. font-size: 32rpx;
  102. color: #FFFFFF;
  103. padding: 0;
  104. line-height: 112rpx;
  105. margin-top: 100rpx;
  106. }
  107. .password {
  108. padding-right: 60rpx;
  109. }
  110. .eyes {
  111. /* width: 22rpx; */
  112. /* height: 16rpx; */
  113. width: 60rpx;
  114. height: 100%;
  115. text-align: center;
  116. font-size: 16rpx;
  117. padding-top: 36rpx;
  118. position: absolute;
  119. right: 0;
  120. z-index: 1000;
  121. color: #a8a8a8;
  122. box-sizing: border-box;
  123. }
  124. .xy-popup {
  125. display: flex;
  126. align-items: center;
  127. justify-self: center;
  128. justify-content: center;
  129. background: rgba(0, 0, 0, 0.2);
  130. }