login.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* pages/login/login.wxss */
  2. .container {
  3. background: #FFFFFF;
  4. height: 100vh;
  5. position: relative;
  6. display: flex;
  7. flex-direction: column;
  8. .containerBox {
  9. flex-grow: 1;
  10. display: flex;
  11. flex-direction: column;
  12. }
  13. }
  14. .appInfo {
  15. position: relative;
  16. z-index: 2;
  17. display: flex;
  18. align-items: center;
  19. flex-direction: column;
  20. padding-top: 180rpx;
  21. .appImg {
  22. width: 160rpx;
  23. height: 160rpx;
  24. }
  25. .appname {
  26. margin-top: 50rpx;
  27. font-weight: 600;
  28. font-size: 40rpx;
  29. color: #000000;
  30. line-height: 56rpx;
  31. }
  32. }
  33. .login-section {
  34. margin: 180rpx 56rpx 0;
  35. button {
  36. width: 100%;
  37. line-height: 84rpx;
  38. background: url(https://oss.dayaedu.com/ktyq/1739519619501.png) no-repeat;
  39. background-size: 100% 100%;
  40. font-weight: 600;
  41. font-size: 32rpx;
  42. color: #FFFFFF;
  43. padding-top: 0;
  44. padding-bottom: 0;
  45. border-radius: 78rpx;
  46. &[disabled][type=primary] {
  47. color: #fff;
  48. opacity: 0.4;
  49. }
  50. }
  51. .protocol-section {
  52. width: 100%;
  53. text-align: center;
  54. font-size: 26rpx;
  55. padding-top: 50rpx;
  56. color: #999999;
  57. line-height: 36rpx;
  58. .radioSection {
  59. height: 36rpx;
  60. display: inlin-flex;
  61. align-items: center;
  62. justify-content: center;
  63. }
  64. .radio {
  65. width: 32rpx;
  66. height: 32rpx;
  67. margin-right: 12rpx;
  68. transform: translateY(6rpx)
  69. }
  70. .protocol {
  71. color: #FE462E;
  72. }
  73. }
  74. }