1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- @import "../../../../src/theme.less";
- :host {
- width: 100%;
- }
- .login {
- position: absolute; /*兼容chrome39*/
- width: 100%; /*兼容chrome39*/
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- .loginBox {
- flex: 1;
- .title {
- text-align: center;
- margin-bottom: 24px;
- font-size: 28px;
- color: @primary-color;
- img {
- height: 48px;
- margin-right: 8px;
- }
- }
- .content {
- background: url(../../../assets/images/bg_login.png) center no-repeat;
- background-size: contain;
- display: flex;
- justify-content: center;
- align-items: center;
- .form_wrap {
- width: 480px;
- height: 400px;
- padding: 32px 40px;
- background-color: #ffffff;
- border-radius: 8px;
- border: solid 1px #e5e5e5;
- p {
- font-size: 24px;
- color: #68686b;
- text-align: center;
- }
- .form {
- .inp {
- height: 52px;
- font-size: 16px;
- }
- .loginBtn {
- button {
- width: 100%;
- height: 52px;
- background-color: #8e9d9e;
- border-radius: 26px;
- border: 1px solid #8e9d9e;
- font-size: 20px;
- color: #fff;
- }
- }
- }
- .tips {
- font-size: 12px;
- color: #68686b;
- margin-top: 24px;
- }
- }
- }
- .bottom {
- font-size: 12px;
- color: @primary-color;
- text-align: center;
- margin-top: 16px;
- display: flex;
- align-items: center;
- justify-content: center;
- a,
- strong {
- margin-left: 16px;
- }
- a {
- text-decoration: underline;
- }
- }
- }
- }
|