1234567891011121314151617181920212223242526272829 |
- @import "./groud.scss";
- .footer {
- display: flex;
- justify-content: space-around;
- width: 100%;
- box-sizing: border-box;
- padding: 10rpx;
- box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 8rpx;
- .v-but {
- width: 190rpx;
- height: 90rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 1px solid #CCCCCC;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- }
- .confirm {
- border: none;
- background: #3874F6;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- }
|