login.less 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: 32rpx;
  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. width: 100%;
  48. text-align: center;
  49. line-height: 36rpx;
  50. .radioSection {
  51. height: 36rpx;
  52. display: inlin-flex;
  53. align-items: center;
  54. justify-content: center;
  55. }
  56. .radio {
  57. width: 28rpx;
  58. height: 28rpx;
  59. margin-right: 12rpx;
  60. transform: translateY(4rpx)
  61. }
  62. .protocol {
  63. color: #FE2451;
  64. }
  65. }
  66. }