login.less 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. padding-top: 44rpx;
  44. width: 100%;
  45. text-align: center;
  46. font-size: 26rpx;
  47. color: #777777;
  48. line-height: 36rpx;
  49. .radioSection {
  50. height: 36rpx;
  51. display: inlin-flex;
  52. align-items: center;
  53. justify-content: center;
  54. }
  55. .radio {
  56. width: 28rpx;
  57. height: 28rpx;
  58. margin-right: 12rpx;
  59. transform: translateY(4rpx)
  60. }
  61. .protocol {
  62. color: #A76D1C;
  63. }
  64. }
  65. }