login.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. }
  36. .protocol-section {
  37. padding-top: 80rpx;
  38. font-size: 26rpx;
  39. color: #3C3C3C;
  40. line-height: 36rpx;
  41. .radioSection {
  42. height: 36rpx;
  43. display: inlin-flex;
  44. align-items: center;
  45. justify-content: center;
  46. }
  47. .radio {
  48. width: 28rpx;
  49. height: 28rpx;
  50. margin-right: 12rpx;
  51. transform: translateY(4rpx)
  52. }
  53. .protocol {
  54. color: #FE2451;
  55. }
  56. }
  57. }