1234567891011121314151617181920212223242526272829303132333435 |
- .footer {
- position: fixed;
- width: 100vw;
- height: 130rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- bottom: 0;
- background-color: #fff;
- .but {
- width: 500rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 100rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- }
- .tab-class {
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #999999;
- }
- .tab-active-class {
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #3874F6;
- }
|