|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* pages/guess/guess.wxss */
- image{
- display: block;
- }
- view{
- -webkit-overflow-scrolling: touch;
- }
- .main{
- height: calc(100vh - 120rpx);
- overflow: auto;
- position: relative;
- }
- .pageBg{
- width: 750rpx;
- height: 1390rpx;
- }
- .gameRule{
- width: 750rpx;
- height: 2513rpx;
- margin-top: -1rpx;
- }
- .startBtn{
- position: fixed;
- left: 50%;
- transform: translateX(-50%);
- bottom: 170rpx;
- width: 710rpx;
- height: 71rpx;
- }
- .drawBtn{
- width: 81rpx;
- height: 81rpx;
- position: fixed;
- right: 35rpx;
- top: 220rpx;
- }
- .yuyue{
- width: 81rpx;
- height: 81rpx;
- position: fixed;
- right: 35rpx;
- top: 334rpx;
- }
- .ruleFrame{
- position: fixed;
- top:0;
- left: 0;
- height: calc(100vh - 120rpx);
- overflow: auto;
- }
- .ruleFrame2{
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: rgba(0,0,0,0.5);
- z-index: 9;
- }
- .tipWindow{
- position: relative;
- width: 501rpx;
- height: 395rpx;
- }
- .tipWindowBg{
- width: 100%;
- height: 100%;
- }
- .tipWindowClose{
- position: absolute;
- top: -32rpx;
- right: -32rpx;
- width: 42rpx;
- height: 42rpx;
- }
|