| 1234567891011121314151617181920212223242526272829303132333435 |
- /* pages/liveMiddle/liveMiddle.wxss */
- .button{
- position: fixed;
- bottom: 267rpx;
- left:50%;
- transform: translateX(-50%);
- }
- .btn{
- width: 217rpx;
- height: 63rpx;
- background-image: linear-gradient(to left,#FE934C,#FD3A31);
- border-radius: 32rpx;
- text-align: center;
- line-height: 63rpx;
- color: #ffffff;
- font-size: 28rpx;
- margin-bottom: 30rpx;
- }
- .btn1{
- width: 217rpx;
- height: 63rpx;
- background: #F6F8FF;
- border-radius: 32rpx;
- text-align: center;
- line-height: 63rpx;
- color: #FD4534;
- font-size: 28rpx;
- }
- .background {
- width: 100%;
- height: 100%;
- position:fixed;
- background-size:100% 100%;
- z-index: -1;
- }
|