1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /**app.wxss**/
- page,view,text,input,scroll-view,form{
- box-sizing: border-box;
- font-size: 28rpx;
- color: #333;
- }
- page{
- background: #EEEEEE;
- padding: 20rpx 30rpx 0;
- }
- .search{
- position: relative;
- }
- .search input{
- display: block;
- height: 64rpx;
- background: #fff;
- border-radius: 15rpx;
- width: 100%;
- padding: 0 24rpx;
- }
- .search image{
- width: 34rpx;
- position: absolute;
- right: 24rpx;
- top: 0;
- bottom: 0;
- margin: auto;
- z-index: 999;
- }
- .login{
- position: fixed;
- width: 100%;
- height: 100vh;
- z-index: 10;
- background: rgba(0, 0, 0, .5);
- left: 0;
- top: 0;
- }
- .login>view{
- width: 90%;
- background: #fff;
- border-radius: 4px;
- text-align: center;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- height: 400rpx;
- padding: 40rpx;
- }
- .login .xx{
- display: block;
- padding: 0px 20px 20px;
- }
- .login button{
- width: 100% !important;
- height: 80rpx;
- color: #fff;
- background-color: #3780CD;
- border-radius: 18rpx;
- padding: 0;
- line-height: 80rpx;
- }
- image{
- max-height: 100%;
- }
- .login image{
- width: 300rpx;
- max-height: 100rpx;
- }
- .xx{
- margin: 30rpx 0 40rpx;
- }
- .nowrap{
- text-overflow: ellipsis !important;
- overflow: hidden !important;
- white-space: nowrap !important;
- padding-right: 20rpx !important;
- }
- .fixed{
- position: fixed;
- top: 0;
- left: 0;
- height: 100vh;
- overflow: hidden;
- width: 100%;
- padding: 30rpx;
- }
|