login.less 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* pages/login/login.wxss */
  2. .container {
  3. background: #FFFFFF;
  4. }
  5. .appInfo {
  6. display: flex;
  7. align-items: center;
  8. flex-direction: column;
  9. padding-top: 210rpx;
  10. image {
  11. width: 148rpx;
  12. height: 148rpx;
  13. border-radius: 32rpx;
  14. overflow: hidden;
  15. }
  16. .appname {
  17. padding-top: 40rpx;
  18. font-weight: 600;
  19. font-size: 44rpx;
  20. color: #333333;
  21. line-height: 60rpx;
  22. }
  23. }
  24. .login-section {
  25. padding-top: 180rpx;
  26. padding: 180rpx 40rpx 0;
  27. button {
  28. width: 100%;
  29. line-height: 94rpx;
  30. background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
  31. box-shadow: 0rpx 14rpx 14rpx 0rpx rgba(0, 0, 0, 0.18);
  32. border-radius: 30rpx;
  33. border: 8rpx solid #FFFFFF;
  34. font-weight: 600;
  35. font-size: 36rpx;
  36. color: #FEFFCA;
  37. padding-top: 0;
  38. padding-bottom: 0;
  39. &[disabled][type=primary] {
  40. color: #FEFFCA;
  41. background: linear-gradient(90deg, #544F4A 0%, #302F2B 100%);
  42. opacity: 0.7;
  43. }
  44. }
  45. .protocol-section {
  46. padding-top: 80rpx;
  47. font-size: 26rpx;
  48. color: #3C3C3C;
  49. width: 100%;
  50. text-align: center;
  51. line-height: 36rpx;
  52. .radioSection {
  53. height: 36rpx;
  54. display: inlin-flex;
  55. align-items: center;
  56. justify-content: center;
  57. }
  58. .radio {
  59. width: 28rpx;
  60. height: 28rpx;
  61. margin-right: 12rpx;
  62. transform: translateY(4rpx)
  63. }
  64. .protocol {
  65. color: #A76D1C;
  66. }
  67. }
  68. }