login.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* pages/login/login.wxss */
  2. .container {
  3. background: #FFFFFF;
  4. }
  5. .appInfo {
  6. display: flex;
  7. align-items: center;
  8. flex-direction: column;
  9. padding-top: 150rpx;
  10. image {
  11. width: 148rpx;
  12. height: 148rpx;
  13. overflow: hidden;
  14. }
  15. .appname {
  16. padding-top: 46rpx;
  17. font-weight: 600;
  18. font-size: 44rpx;
  19. color: #333333;
  20. line-height: 60rpx;
  21. line-height: 56rpx;
  22. }
  23. }
  24. .login-section {
  25. padding: 128rpx 40rpx 0;
  26. button {
  27. width: 100%;
  28. line-height: 88rpx;
  29. background: linear-gradient( 90deg, #544F4A 0%, #302F2B 100%);
  30. border-radius: 44rpx;
  31. font-weight: 500;
  32. font-size: 32rpx;
  33. color: #FBEAC9;
  34. padding-top: 0;
  35. padding-bottom: 0;
  36. &[disabled][type=primary] {
  37. color: #fff;
  38. background: linear-gradient( 90deg, #544F4A 0%, #302F2B 100%);
  39. opacity: 0.3;
  40. }
  41. }
  42. .protocol-section {
  43. position: absolute;
  44. bottom: 100rpx;
  45. left: 0;
  46. width: 100%;
  47. text-align: center;
  48. font-size: 26rpx;
  49. color: #777777;
  50. line-height: 36rpx;
  51. .radioSection {
  52. height: 36rpx;
  53. display: inlin-flex;
  54. align-items: center;
  55. justify-content: center;
  56. }
  57. .radio {
  58. width: 28rpx;
  59. height: 28rpx;
  60. margin-right: 12rpx;
  61. transform: translateY(4rpx)
  62. }
  63. .protocol {
  64. color: #A76D1C;
  65. }
  66. }
  67. }