index.module.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .Login{
  2. width: 100%;
  3. height: 100%;
  4. background-image: url('../../assets/img/login/bg.jpg');
  5. background-size: cover;
  6. position: relative;
  7. :global{
  8. .main{
  9. padding-top: 20px;
  10. position: absolute;
  11. top: 50%;
  12. transform: translateY(-50%);
  13. width: 100%;
  14. height: 380px;
  15. background-color: rgba(255,255,255,.8);
  16. backdrop-filter: blur(4px);
  17. text-align: center;
  18. &>h1{
  19. font-size: 44px;
  20. color: var(--themeColor);
  21. }
  22. &>p{
  23. margin: 10px 0 40px;
  24. font-size: 18px;
  25. }
  26. .inputBox{
  27. width: 1000px;
  28. margin: 0 auto;
  29. display: flex;
  30. justify-content: space-between;
  31. .ant-input-prefix{
  32. margin-right: 10px;
  33. .anticon {
  34. width: 24px;
  35. height: 24px;
  36. svg{
  37. width: 100%;
  38. height: 100%;
  39. }
  40. }
  41. }
  42. .ant-input{
  43. font-size: 18px;
  44. width: 45%;
  45. height: 60px;
  46. line-height: 60px;
  47. }
  48. .ant-input-affix-wrapper{
  49. padding:0 11px;
  50. width: 45%;
  51. height: 60px;
  52. .ant-input{
  53. background-color: transparent;
  54. width: 100%;
  55. height: 60px;
  56. }
  57. }
  58. }
  59. .loginBtn{
  60. margin-top: 50px;
  61. .ant-btn{
  62. width: 400px;
  63. height: 60px;
  64. }
  65. }
  66. }
  67. }
  68. }