1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /***** 这里放页面样式 *****/
- .mobile-login-page {
- width: 100%;
- height: 100%;
- background: #FFF;
- text-align: center;
- position: absolute;
- overflow: auto;
- .login-top {
- height: 540rpx;
- background-size: cover;
- background-image: url("../static/images/login/login-bj-sj.png");
- // logo
- }
- .login-logo {
- width: 266rpx;
- max-height: 100rpx;
- margin-top: 156rpx;
- }
- .login-text {
- display: block;
- font-size: 64rpx;
- color: #FFF;
- margin: 24rpx 0 0;
- font-weight: 700
- }
- // 登录区域
- .login-body {
- width: 100%;
- padding: 0 60px;
- box-sizing: border-box;
- margin: 140rpx auto 0;
- .input-container {
- display: flex;
- align-items: center;
- /* 垂直对齐 */
- position: relative;
- height: 100rpx;
- border-radius: 50rpx;
- background-color: #F7F7F7;
- padding: 0;
- margin-bottom: 40rpx;
- }
- .input-icon {
- margin-left: 20rpx;
- /* 图标和输入框之间的间距 */
- color: #999;
- }
- }
- // 输入框
- .login-btn {
- width: 100%;
- height: 100rpx;
- margin-top: 60rpx;
- font-size: 36rpx;
- letter-spacing: 7.2rpx;
- background: linear-gradient(0deg, #436aff 0%, #234ff7 100%);
- border-radius: 50rpx;
- border: 0;
- color: #F7F7F7;
- line-height: 100rpx;
- }
- .login-change {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .checkbox-zhanghao {
- font-size: 24rpx;
- color: #565656;
- }
- }
- }
|