login.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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: 160rpx;
  12. height: 160rpx;
  13. }
  14. .appname {
  15. padding-top: 40rpx;
  16. font-weight: 600;
  17. font-size: 40rpx;
  18. color: #333333;
  19. line-height: 56rpx;
  20. }
  21. }
  22. .login-section {
  23. padding-top: 180rpx;
  24. padding: 180rpx 40rpx 0;
  25. button {
  26. width: 100%;
  27. line-height: 88rpx;
  28. background: linear-gradient( 270deg, #FF204B 0%, #FE5B71 100%);
  29. border-radius: 44rpx;
  30. font-weight: 500;
  31. font-size: 32rpx;
  32. color: #FFFFFF;
  33. padding-top: 0;
  34. padding-bottom: 0;
  35. &[disabled][type=primary] {
  36. color: #fff;
  37. background: linear-gradient( 270deg, #FF204B 0%, #FE5B71 100%);
  38. opacity: 0.8;
  39. }
  40. }
  41. .protocol-section {
  42. padding-top: 80rpx;
  43. font-size: 26rpx;
  44. color: #3C3C3C;
  45. line-height: 36rpx;
  46. .radioSection {
  47. height: 36rpx;
  48. display: inlin-flex;
  49. align-items: center;
  50. justify-content: center;
  51. }
  52. .radio {
  53. width: 28rpx;
  54. height: 28rpx;
  55. margin-right: 12rpx;
  56. transform: translateY(4rpx)
  57. }
  58. .protocol {
  59. color: #FE2451;
  60. }
  61. }
  62. }