login.less 1.4 KB

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