You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

96 lines
1.6 KiB

/* pages/order/components/date/index.wxss */
.date-box {
margin: 30rpx 25rpx;
background: white;
border-radius: 9rpx;
}
.box-title {
height: 113rpx;
margin: 0 20rpx;
font-size: 31rpx;
color: #000;
font-weight: 500;
display: flex;
align-items: center;
}
.dates-boxes {
display: flex;
align-items: center;
padding: 31rpx 21rpx;
border-top: 1rpx solid #ccc;
}
.date-item {
width: 162rpx;
height: 97rpx;
border-radius: 10rpx;
border: 1rpx solid #333;
text-align: center;
font-size: 27rpx;
color: #000;
margin-right: 20rpx;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.date-item.active {
border-color: #0B898E;
color: #fff;
background: #0B898E;
}
.date-item.disable {
border-color: #CCCCCC;
color: #666;
}
.date-item .price {
font-size: 25rpx;
color: #D62828;
}
.date-item.active .price {
color: #fff;
}
.date-item.disable .price {
color: #666;
}
.more-item {
width: 99rpx;
margin-right: 0;
}
.date-times {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 21rpx;
padding-top: 34rpx;
padding-bottom: 10rpx;
border-top: 1rpx dashed #ccc;
flex-wrap: wrap;
}
.date-time {
width: 315rpx;
line-height: 58rpx;
border: 1px solid #333;
border-radius: 10rpx;
text-align: center;
font-size: 25rpx;
flex-shrink: 0;
margin-bottom: 24rpx;
color: #000;
}
.date-time.disable {
border-color: #ccc;
color: #666666;
}
.date-time.active {
border-color: #0B898E;
background: #0B898E;
color: #fff;
}
.calendar-content {
background: white;
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding-bottom: 50rpx;
}