authentication.wxss 915 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. page {
  2. width: 100%;
  3. background: rgba(245, 245, 245, 1);
  4. height: 100%;
  5. }
  6. .box {
  7. display: flex;
  8. flex-direction: column;
  9. align-items: center;
  10. }
  11. .mobile_login {
  12. width: 535rpx;
  13. font-size: 32rpx;
  14. font-family: PingFang SC;
  15. font-weight: 500;
  16. color: rgba(170, 170, 170, 1);
  17. margin-top: 20rpx;
  18. text-align: center;
  19. }
  20. button {
  21. width: 535rpx;
  22. height: 76rpx;
  23. background: rgba(24, 213, 185, 1);
  24. border-radius: 10rpx;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. color: #fff;
  29. font-size: 32rpx;
  30. font-family: PingFang SC;
  31. margin-top: 50rpx;
  32. }
  33. .button-hover {
  34. background: rgba(24, 213, 185, 1);
  35. color: #fff;
  36. }
  37. .box .bike {
  38. width: 562rpx;
  39. height: 502rpx;
  40. margin-top: 80rpx;
  41. }
  42. button text {
  43. padding-left: 15rpx;
  44. }
  45. .bottom {
  46. position: fixed;
  47. width: 100%;
  48. text-align: center;
  49. bottom: 80rpx;
  50. font-size: 26rpx;
  51. }
  52. .bottom text {
  53. color: #FFA404;
  54. }