| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- @charset "UTF-8";
- /**
- * 主题色配置
- * 默认在 uni.scss 全局引入:@import '@/theme.scss';
- * <script> 下使用主题变量:import x from '@/theme.scss';
- */
- .page {
- background-color: #f8f8f8;
- font-family: PingFangSC;
- }
- .safeAreaPad {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- .book-order {
- min-height: 100vh;
- background: #f5f5f5;
- padding: 20rpx 30rpx;
- padding-bottom: calc(env(safe-area-inset-bottom) + 190rpx);
- }
- .section-card {
- background: #fff;
- margin-bottom: 20rpx;
- padding: 30rpx;
- border-radius: 10rpx;
- box-sizing: border-box;
- }
- .u-required {
- color: #FF0000;
- margin-left: 8rpx;
- }
- .time-card {
- height: 80rpx;
- background: #F8F8F8;
- border-radius: 10rpx;
- }
- .free-pickup .pickup-title {
- font-weight: bold;
- font-size: 28rpx;
- color: #333333;
- margin-bottom: 10rpx;
- }
- .free-pickup .pickup-desc {
- font-family: PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #999999;
- }
- .express-desc {
- font-size: 24rpx;
- color: #666;
- line-height: 1.4;
- }
- .bottom-bar {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- background: #fff;
- padding: 20rpx 30rpx;
- padding-bottom: env(safe-area-inset-bottom);
- }
- .bottom-bar .agreement {
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #333333;
- }
- .bottom-bar .agreement-link {
- color: #07c160;
- }
- .bottom-bar .order-summary {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #999999;
- }
- .bottom-bar .order-summary .price {
- color: #ff0000;
- margin: 0 10rpx;
- }
|