login.less 1.3 KB

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