login.less 1.5 KB

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