12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- .main {
- width: 100%;
- height: 100vh;
- display: flex;
- justify-content: center;
- align-items: center;
- background-image: url('@/assets/login-bg.png');
- background-repeat: no-repeat;
- background-position: 50%;
- background-size: 100%;
- }
- .prefixIcon {
- color: #42a0e0;
- font-size: 18px;
- }
- .content {
- width: 428px;
- min-height: 450px;
- border-radius: 8px;
- padding-top: 162px;
- padding-bottom: 20px;
- background: #fff url('@/assets/login-box-top.png') no-repeat top center;
- @media screen and (max-width: 576px) {
- width: 95%;
- }
- .inp_box {
- width: 80%;
- margin: 0 auto;
- padding-top: 40px;
- a {
- color: #999;
- }
- }
- .inp {
- input {
- border-radius: 0px;
- padding: 2px 4px;
- }
- i {
- color: #42a0e0;
- font-size: 18px;
- }
- }
- .icon {
- margin-left: 16px;
- color: rgba(0, 0, 0, 0.2);
- font-size: 24px;
- vertical-align: middle;
- cursor: pointer;
- transition: color 0.3s;
- &:hover {
- color: #1890ff;
- }
- }
- .other {
- margin-top: 24px;
- line-height: 22px;
- text-align: left;
- .register {
- float: right;
- }
- }
- }
|