| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- page {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- background: url(/static/img/login_bg.png);
- background-size: cover;
- padding: 0;
- margin-top: 0;
- }
- .login {
- width: 880px;
- height: 560px;
- background: #fff;
- box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
- border-radius: 20px;
- }
- .title {
- font-size: 22px;
- font-weight: 800;
- margin-bottom: 100px;
- }
- .login_form .el-input__inner {
- border: none;
- border-bottom: 1px solid #d9d9d9;
- border-radius: 0;
- padding-left: 6px;
- font-size: 14px;
- width: 260px;
- color: #ff6a6c;
- }
- .login_btn {
- width: 260px;
- height: 40px;
- background-color: #ff6a6c;
- border-radius: 4px;
- font-size: 18px;
- font-weight: 800;
- color: #fff;
- }
|