1234567891011121314151617181920212223242526272829303132333435 |
- /* pages/home/index.wxss */
- .page {
- position: relative;
- background-size: 100% 100%;
- background-repeat: no-repeat;
- padding-top: 86rpx;
- box-sizing: border-box;
- .buttom {
- background-size: 100% 100%;
- background-repeat: no-repeat;
- position: absolute;
- bottom: 180rpx;
- left: 50%;
- transform: translateX(-50%);
- color: #FFFFFF;
- text-align: center;
- font-size: 28rpx;
- font-weight: 500;
- width: 340rpx;
- height: 80rpx;
- line-height: 80rpx;
- box-sizing: border-box;
- }
- .support {
- position: absolute;
- width: 100%;
- text-align: center;
- color: #FFFFFF;
- bottom: 57rpx;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- }
|