login.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* pages/user/login/login.wxss */
  2. page{
  3. background: #F7F7F7;
  4. }
  5. .pageContainer{
  6. position: relative;
  7. height: 100vh;
  8. }
  9. .backImg{
  10. position: absolute;
  11. z-index: -1;
  12. bottom: 0;
  13. right: 0;
  14. left: 0;
  15. width: 100%;
  16. height: 348rpx;
  17. }
  18. .loginBtn{
  19. width: 683rpx !important;
  20. height: 84rpx !important;
  21. background: #e73e2d !important;
  22. margin: 120rpx auto 0 auto !important;
  23. padding: 0 !important;
  24. border-radius: 48rpx !important;
  25. color: #fff !important;
  26. font-size: 32rpx !important;
  27. font-weight: bold;
  28. }
  29. .pageBox{
  30. text-align: center;
  31. padding-top: 160rpx;
  32. display: flex;
  33. flex-direction: column;
  34. align-items: center;
  35. }
  36. .logoBox{
  37. position: absolute;
  38. z-index: 99;
  39. bottom: 50rpx;
  40. right: 0;
  41. left: 0;
  42. text-align: center;
  43. }
  44. .logo{
  45. width: 88rpx;
  46. height: 88rpx;
  47. border-radius: 50%;
  48. }
  49. .logoTitle{
  50. font-size: 24rpx;
  51. color: #5f6268;
  52. }
  53. .title{
  54. font-size: 72rpx;
  55. font-weight: bold;
  56. color: #e73e2d;
  57. margin-top: 10rpx;
  58. }
  59. .toolBox{
  60. width: 100%;
  61. font-size: 28rpx;
  62. color: #5f6268;
  63. letter-spacing: 4px;
  64. padding-top: 20rpx;
  65. }
  66. .selectBox{
  67. padding: 24rpx 12rpx 24rpx 44rpx;
  68. }
  69. .explainText{
  70. font-size: 24rpx;
  71. color: #909297;
  72. }
  73. .explainText .lan{
  74. color: rgba(0,160,233,1);
  75. }
  76. .phoneLogin{
  77. width: 683rpx;
  78. position: relative;
  79. height: 84rpx;
  80. border-radius: 48rpx;
  81. border: 2rpx solid #D0D0D0;
  82. font-size: 32rpx;
  83. font-weight: bold;
  84. color: #909297;
  85. margin: 24rpx auto 0 auto;
  86. }