| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .Login{
- width: 100%;
- height: 100%;
- background-image: url('../../assets/img/login/bg.jpg');
- background-size: cover;
- position: relative;
- :global{
- .main{
- padding-top: 20px;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- width: 100%;
- height: 380px;
- background-color: rgba(255,255,255,.8);
- backdrop-filter: blur(4px);
- text-align: center;
- &>h1{
- font-size: 44px;
- color: var(--themeColor);
- }
- &>p{
- margin: 10px 0 40px;
- font-size: 18px;
- }
- .inputBox{
- width: 1000px;
- margin: 0 auto;
- display: flex;
- justify-content: space-between;
- .ant-input-prefix{
- margin-right: 10px;
- .anticon {
- width: 24px;
- height: 24px;
- svg{
- width: 100%;
- height: 100%;
- }
- }
- }
- .ant-input{
- font-size: 18px;
- width: 45%;
- height: 60px;
- line-height: 60px;
- }
- .ant-input-affix-wrapper{
- padding:0 11px;
- width: 45%;
- height: 60px;
- .ant-input{
- background-color: transparent;
- width: 100%;
- height: 60px;
- }
- }
- }
- .loginBtn{
- margin-top: 50px;
- .ant-btn{
- width: 400px;
- height: 60px;
- }
- }
- }
- }
- }
|