| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- page {
- font-size: 0;
- }
- .header {
- height: 360rpx;
- display: flex;
- margin-top: 84rpx;
- width: 100%;
- justify-content: center;
- position: relative;
- }
- .left,
- .right {
- height: 360rpx;
- width: 360rpx;
- position: absolute;
- top: 0;
- }
- .left {
- left: 0;
- }
- .right {
- right: 0;
- }
- .login_logo {
- width: 240rpx;
- height: 56rpx;
- position: absolute;
- left: 255rpx;
- bottom: 52rpx;
- }
- .content {
- display: flex;
- width: 100%;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .content .company {
- font-size: 42rpx;
- font-family: SourceHanSansCN-Medium;
- font-weight: bold;
- color: rgba(51, 51, 51, 1);
- }
- .content .info {
- font-size: 28rpx;
- font-family: SourceHanSansCN-Regular;
- font-weight: 400;
- color: #666;
- }
- .bottom {
- width: 570rpx;
- height: 88rpx;
- font-size: 34rpx;
- color: #fff;
- background: #0177ff;
- border-radius: 10rpx;
- margin-top: 170rpx;
- }
|