login.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* pages/login/login.wxss */
  2. .container {
  3. background: #FFFFFF;
  4. position: relative;
  5. }
  6. .appBg{
  7. position: absolute;
  8. left: 0;
  9. top: 0;
  10. width: 100%;
  11. height: 368rpx;
  12. background: linear-gradient( 180deg, #76EE12 0%, #FFFFFF 100%);
  13. opacity: 0.5;
  14. z-index: 1;
  15. }
  16. .appInfo {
  17. position: relative;
  18. z-index: 2;
  19. display: flex;
  20. align-items: center;
  21. flex-direction: column;
  22. padding-top: 180rpx;
  23. .appImg {
  24. width: 160rpx;
  25. height: 160rpx;
  26. }
  27. .appname {
  28. margin-top: 24rpx;
  29. width: 248rpx;
  30. height: 43rpx;
  31. }
  32. }
  33. .login-section {
  34. padding: 200rpx 60rpx 0;
  35. button {
  36. width: 100%;
  37. line-height: 88rpx;
  38. background: url(https://oss.dayaedu.com/ktyq/1738898417485.png) no-repeat;
  39. background-size: 100% 100%;
  40. font-weight: 500;
  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.7;
  49. }
  50. }
  51. .protocol-section {
  52. width: 100%;
  53. text-align: center;
  54. font-size: 26rpx;
  55. padding-top: 80rpx;
  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: 28rpx;
  66. height: 28rpx;
  67. margin-right: 12rpx;
  68. transform: translateY(4rpx)
  69. }
  70. .protocol {
  71. color: #0AAF20;
  72. }
  73. }
  74. }