123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- @import "/wxParse/wxParse.wxss";
-
- page {
- font-family: PingFangSC-Regular;
- background-color: #f4f4f4;
- }
-
- button:after {
- display: none;
- }
-
- .empty-content {
- text-align: center;
- }
-
- .empty-content-text {
- display: inline-block;
- font-size: 28rpx;
- color: #888;
- margin-top: 150rpx;
- }
-
- .mod {
- margin: 20rpx;
- padding: 20rpx;
- background-color: #fff;
- border-radius: 4rpx;
- }
-
- .mod-hd {
- font-size: 30rpx;
- color: #666666;
- line-height: 1;
- overflow: hidden;
- }
-
- .mod-hd .dot {
- font-size: 16rpx;
- margin-right: 8rpx;
- vertical-align: 4rpx;
- }
-
- .mod-bd {
- font-size: 24rpx;
- color: #999999;
- margin-top: 8rpx;
- }
-
- /* 加减器 */
- .num-counter {
- display: inline-block;
- border-radius: 4rpx;
- border: solid 1rpx #d6d6d6;
- font-size: 0;
- overflow: hidden;
- line-height: 42rpx;
- }
-
- .num-counter .minus,
- .num-counter .plus {
- display: inline-block;
- vertical-align: top;
- width: 44rpx;
- height: 44rpx;
- line-height: 42rpx;
- text-align: center;
- font-size: 28rpx;
- color: #999999;
- background-color: #e5e5e5;
- }
-
- .num-counter .plus {
- color: #fff;
- background-color: #00a0e9;
- }
-
- .num-counter .input-num {
- display: inline-block;
- vertical-align: top;
- width: 60rpx;
- height: 44rpx;
- line-height: 44rpx;
- text-align: center;
- font-size: 30rpx;
- color: #999999;
- border: none;
- border-left: solid 1rpx #d6d6d6;
- border-right: solid 1rpx #d6d6d6;
- min-height: auto;
- background-color: #fff;
- }
-
- /* 预约 */
- .booking .input-item {
- height: 80rpx;
- line-height: 80rpx;
- display: flex;
- padding: 0 40rpx;
- position: relative;
- background-color: #fff;
- }
-
- .booking .input-item.space-between {
- justify-content: space-between;
- }
-
- .booking .input-item .label {
- width: 168rpx;
- font-size: 28rpx;
- color: #666666;
- position: relative;
- margin-right: 50rpx;
- }
-
- .booking .input-item .label:after {
- content: '';
- height: 40rpx;
- width: 2rpx;
- transform: scaleX(.5);
- background-color: #cccccc;
- position: absolute;
- right: 0;
- top: 24rpx;
- }
-
- .booking .input-text {
- font-size: 28rpx;
- height: 80rpx;
- }
-
- .input-placeholder {
- color: #cccccc;
- }
-
- .booking .num-counter {
- vertical-align: middle;
- }
-
- .booking .input-item:after {
- content: '';
- bottom: 0;
- left: 40rpx;
- right: 40rpx;
- height: 2rpx;
- transform: scaleY(.5);
- background-color: #cccccc;
- position: absolute;
- }
-
- .booking .input-item:last-child:after {
- display: none;
- }
-
- .total {
- height: 100rpx;
- margin-top: 20rpx;
- line-height: 97rpx;
- background-color: #fff;
- display: flex;
- }
-
- .total-price {
- width: 340rpx;
- text-align: center;
- font-size: 38rpx;
- color: #333333;
- }
-
- .total-price .red {
- color: #ff5400;
- }
-
- .total-price .unit {
- font-size: 24rpx;
- color: #ff5400;
- }
-
- .total .btn-pay {
- flex: 1;
- background-color: #00a0e9;
- font-size: 32rpx;
- color: #fff;
- text-align: center;
- }
-
- .total .btn-cart {
- flex: 1;
- background-color: #6ecdf9;
- font-size: 32rpx;
- color: #fff;
- text-align: center;
- }
-
- .slide-image {
- width: 750rpx;
- height: 446rpx;
- }
|