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.
150 lines
3.3 KiB
150 lines
3.3 KiB
.street-item {
|
|
width: 100%;
|
|
background: #fff;
|
|
box-sizing: border-box;
|
|
padding: 0 30rpx;
|
|
overflow: hidden;
|
|
}
|
|
.street-item .street-name {
|
|
width: 100%;
|
|
height: 92rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
.street-item .street-name .left {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.street-item .street-name .left .order {
|
|
width: 50rpx;
|
|
height: 32rpx;
|
|
background: #E13223;
|
|
color: #fff;
|
|
font-size: 30rpx;
|
|
text-align: center;
|
|
line-height: 32rpx;
|
|
border-radius: 8rpx;
|
|
transform: skewX(-15deg);
|
|
}
|
|
.street-item .street-name .left .order-img {
|
|
width: 40rpx;
|
|
height:46rpx;
|
|
}
|
|
.street-item .street-name .left .order-img image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.street-item .street-name .left .order-num {
|
|
color: #333;
|
|
font-size: 36rpx;
|
|
font-weight: 600;
|
|
}
|
|
.street-item .street-name .left .name {
|
|
color: #333;
|
|
font-size: 32rpx;
|
|
margin-left: 10rpx;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.street-item .street-detail {
|
|
width:100%;
|
|
min-height: 100rpx;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(33.3%, 1fr));
|
|
grid-row-gap: 15rpx;
|
|
grid-template-rows: auto;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.street-item .street-detail .detail-item {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
.street-item .street-detail .detail-item + .detail-item:after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 17rpx;
|
|
width: 1rpx;
|
|
height: 66rpx;
|
|
background: #e8e7ea;
|
|
}
|
|
.street-item .street-detail .detail-item:nth-of-type(4):after, .street-item .street-detail .detail-item:nth-of-type(7):after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 17rpx;
|
|
width: 0rpx !important;
|
|
height: 0rpx !important;
|
|
}
|
|
.street-item .street-detail .detail-item .title {
|
|
color: #333;
|
|
font-size: 28rpx;
|
|
line-height: 50rpx;
|
|
}
|
|
.street-item .street-detail .detail-item .num {
|
|
color: #EF692E;
|
|
font-size: 44rpx;
|
|
line-height: 60rpx;
|
|
}
|
|
.street-item .street-detail .detail-item:nth-of-type(1) .num {
|
|
color: #DC1E20;
|
|
}
|
|
|
|
.street-item .street-content {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 30rpx 30rpx 36rpx;
|
|
background: #f8f6f9;
|
|
border-radius: 10rpx;
|
|
margin-bottom: 35rpx;
|
|
}
|
|
.street-item .street-content .content-item {
|
|
width: 100%;
|
|
min-height:36rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.street-item .street-content .content-item + .content-item {
|
|
margin-top: 25rpx;
|
|
}
|
|
.street-item .street-content .content-item .name {
|
|
color: #666;
|
|
font-size: 28rpx;
|
|
line-height: 36rpx;
|
|
width: 200rpx;
|
|
border-right: 1rpx solid #e6e3e6;
|
|
}
|
|
.street-item .street-content .content-item .organization-time {
|
|
width: calc((100% - 200rpx) / 2);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.street-item .street-content .content-item .organization-time .title {
|
|
color: #bbb;
|
|
font-size: 24rpx;
|
|
margin-left: 30rpx;
|
|
}
|
|
.street-item .street-content .content-item .organization-time .num {
|
|
color: #DC1E20;
|
|
font-size: 30rpx;
|
|
margin-left: 10rpx;
|
|
}
|
|
.street-item .street-content .content-item .enter-time {
|
|
width: calc((100% - 200rpx) / 2);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.street-item .street-content .content-item .enter-time .title {
|
|
color: #bbb;
|
|
font-size: 24rpx;
|
|
margin-left: 30rpx;
|
|
}
|
|
.street-item .street-content .content-item .enter-time .num {
|
|
color: #EF692E;
|
|
font-size: 30rpx;
|
|
margin-left: 10rpx;
|
|
}
|