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.

131 lines
2.4 KiB

5 years ago
/* 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: 0 0 31rpx;
border:none;
position: relative;
/* padding: 31rpx 0; */
2 years ago
/* padding: 31rpx 21rpx; */
/* border-top: 1rpx solid #ccc; */
5 years ago
}
.date-item {
2 years ago
width: 120rpx;
height: 133rpx;
5 years ago
border-radius: 10rpx;
2 years ago
/* border: 1rpx solid #333; */
5 years ago
text-align: center;
font-size: 27rpx;
color: #000;
margin-right: 20rpx;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
2 years ago
background: #F5F5F5;
flex-shrink: 0;
5 years ago
}
.date-item.active {
border-color: #0B898E;
color: #fff;
background: #0B898E;
}
.date-item.disable {
border-color: #CCCCCC;
2 years ago
color: #999;
5 years ago
}
.date-item .price {
font-size: 25rpx;
color: #D62828;
}
.date-item.active .price {
color: #fff;
}
2 years ago
.date-item.active view {
color: #fff;
}
5 years ago
.date-item.disable .price {
2 years ago
color: #999;
}
.date-item.disable .short-date {
color: #999;
5 years ago
}
.more-item {
2 years ago
/* width: 125rpx; */
/* margin-right: 0; */
position: absolute;
2 years ago
right: 0;
top: 0;
2 years ago
text-align: center;
padding: 0 0rpx 0 16rpx;
2 years ago
display: flex;
font-weight: 400;
font-size: 27rpx;
color: #0B898E;
align-items: center;
height: 133rpx;
background: white;
border-radius: 10rpx;
5 years ago
}
.date-times {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 21rpx;
/* padding-top: 34rpx; */
5 years ago
padding-bottom: 10rpx;
2 years ago
/* border-top: 1rpx dashed #ccc; */
5 years ago
flex-wrap: wrap;
}
.date-time {
width: 315rpx;
line-height: 58rpx;
2 years ago
/* border: 1px solid #333; */
5 years ago
border-radius: 10rpx;
text-align: center;
font-size: 25rpx;
flex-shrink: 0;
margin-bottom: 24rpx;
color: #000;
2 years ago
background-color: #F5F5F5;
5 years ago
}
.date-time.disable {
2 years ago
/* border-color: #ccc;
color: #666666; */
background: #F5F5F5;
font-weight: 400;
font-size: 25rpx;
color: #999999;
5 years ago
}
.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;
2 years ago
}
.short-date {
font-weight: 500;
font-size: 27rpx;
color: #000000;
5 years ago
}