login.wxss 749 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. page {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. align-items: center;
  6. justify-content: center;
  7. background: url(/static/img/login_bg.png);
  8. background-size: cover;
  9. padding: 0;
  10. margin-top: 0;
  11. }
  12. .login {
  13. width: 880px;
  14. height: 560px;
  15. background: #fff;
  16. box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  17. border-radius: 20px;
  18. }
  19. .title {
  20. font-size: 22px;
  21. font-weight: 800;
  22. margin-bottom: 100px;
  23. }
  24. .login_form .el-input__inner {
  25. border: none;
  26. border-bottom: 1px solid #d9d9d9;
  27. border-radius: 0;
  28. padding-left: 6px;
  29. font-size: 14px;
  30. width: 260px;
  31. color: #ff6a6c;
  32. }
  33. .login_btn {
  34. width: 260px;
  35. height: 40px;
  36. background-color: #ff6a6c;
  37. border-radius: 4px;
  38. font-size: 18px;
  39. font-weight: 800;
  40. color: #fff;
  41. }