123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- // @import '~antd/lib/style/themes/default.less';
- .main {
- width: 100%;
- height: 100%;
- padding: 32px 0 24px;
- display: flex;
- justify-content: center;
- align-items: center;
- background-image: url('@/Project/assets/login-bg.png');
- background-repeat: no-repeat;
- background-position: 50%;
- background-size: 100%;
- }
- .prefixIcon {
- // position: absolute;
- // top: 50%;
- // z-index: 2;
- // display: flex;
- // align-items: center;
- color: #42a0e0;
- font-size: 18px;
- // line-height: 0;
- // transform: translateY(-50%);
- // padding-left: 18px;
- }
- .content {
- width: 428px;
- height: 495px;
- border-radius: 8px;
- padding-top: 162px;
- background: #fff url('@/Project/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;
- }
- }
- }
|