login.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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: 34rpx;
  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. &[disabled][type=primary] {
  46. color: #fff;
  47. opacity: 0.7;
  48. }
  49. }
  50. .protocol-section {
  51. width: 100%;
  52. text-align: center;
  53. font-size: 26rpx;
  54. padding-top: 44rpx;
  55. color: #777777;
  56. line-height: 36rpx;
  57. .radioSection {
  58. height: 36rpx;
  59. display: inlin-flex;
  60. align-items: center;
  61. justify-content: center;
  62. }
  63. .radio {
  64. width: 28rpx;
  65. height: 28rpx;
  66. margin-right: 12rpx;
  67. transform: translateY(4rpx)
  68. }
  69. .protocol {
  70. color: #0AAF20;
  71. }
  72. }
  73. }