1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- view,navigator{
- box-sizing: border-box;
- font-size: 28rpx;
- color: #333;
- }
- .login{
- position: fixed;
- width: 100%;
- height: 100vh;
- z-index: 10;
- background: rgba(0, 0, 0, .5);
- left: 0;
- top: 0;
- }
- .login>view{
- width: 80%;
- background: #fff;
- border-radius: 4px;
- text-align: center;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- height: 150px;
- padding-top: 20px;
- }
- .login .xx{
- display: block;
- padding: 0px 20px 20px;
- }
- .login button{
- width: 100% !important;
- height: 48px;
- color: #fff;
- background-color: #358BFF;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- padding: 0;
- line-height: 48px;
- }
- image{
- max-height: 100%;
- }
- .login image{
- width: 100rpx;
- height: 100rpx;
- }
- .slogen{
- position: relative;
- top: -20px;
- padding-left: 5px;
- }
|