12345678910111213141516171819202122232425 |
- /**app.wxss**/
- page {
- width: 750rpx;
- height: 100%;
- box-sizing: border-box;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- .page {
- width: 100%;
- height: 100%;
- .faceBtn {
- position: absolute;
- bottom: 190rpx;
- left: 126rpx;
- color: #ffffff;
- width: 500rpx;
- text-align: center;
- height: 72rpx;
- line-height: 72rpx;
- border-radius: 36rpx;
- background: linear-gradient(180deg, #26B4EC 0%, #2F8AFF 100%);
- }
- }
|