123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /* pages/login/login.wxss */
- .body {
- width: 100%;
- height: 100%;
- background-size: 100% 100%;
- z-index: -99;
- padding-top: 228rpx;
- box-sizing: border-box;
- }
- .app-title {
- width: 100%;
- text-align: center;
- }
- .login {
- padding: 0 80rpx;
- width: 100%;
- box-sizing: border-box;
- margin-top: 100rpx;
- }
- form {
- padding: 0;
- margin: 0;
- width: 100%;
- height: 100%;
- }
- .login-row {
- width: 99%;
- display: inline-flex;
- align-items: center;
- border-bottom: solid 1rpx #FFFFFF30;
- padding-bottom: 16rpx;
- padding-left: 24rpx;
- box-sizing: border-box;
- }
- .login-row:nth-child(2) {
- margin-top: 70rpx;
- }
- .login-phone {
- width: 35rpx;
- height: 48rpx;
- }
- .login-input {
- width: 90%;
- height: 60rpx;
- margin-left: 24rpx;
- color: #FFFFFF;
- }
- .send_btn {
- color: #FFFFFF;
- line-height: 60rpx;
- position: absolute;
- margin-left: 30rpx;
- right: 90rpx;
- }
- .login-btn {
- color: #FFFFFF;
- margin-top: 90rpx;
- margin-left: 0 !important;
- width: 100% !important;
- height: 80rpx !important;
- letter-spacing: 20rpx;
- text-align: center;
- background: none;
- background-size: 100% 100%;
- font-size: 32rpx;
- }
- .line-row {
- display: inline-flex;
- box-sizing: border-box;
- width: 100%;
- align-items: center;
- text-align: center;
- justify-content: center;
- margin-top: 250rpx;
- padding: 0 100rpx;
- }
- .line {
- width: 33%;
- height: 2rpx;
- text-align: center;
- background-color: #fff;
- }
- .line-row text {
- color: #ffffff;
- margin: 0 15rpx;
- font-size: 34rpx;
- }
- .fast-login {
- height: 100rpx;
- width: 100%;
- margin-top: 46rpx;
- text-align: center;
- }
- .wxBtn {
- width: 100rpx !important;
- height: 100rpx !important;
- border: none !important;
- padding: 0;
- background-size: 100% 100%;
- }
- .app-bottom {
- color: #FFFFFF72;
- bottom: 40rpx;
- font-size: 28rpx;
- width: 100%;
- position: absolute;
- text-align: center;
- }
|