榆山数据端小程序
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.
 
 

177 lines
4.5 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;
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
}
.street-item .street-name .left .name {
width: 400rpx;
height: 32rpx;
margin-left: 10rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
}
.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 {
width: 200rpx;
height: 25rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
margin: 10rpx 0;
}
.street-item .street-detail .detail-item .num {
width: 100rpx;
height: 25rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
margin: 10rpx 0;
}
.street-item .street-content {
width: 100%;
box-sizing: border-box;
padding: 30rpx 30rpx 36rpx;
background: #fffbfb;
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 {
height: 28rpx;
width: 200rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
}
.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 {
width: 100rpx;
height: 24rpx;
margin-left: 30rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
}
.street-item .street-content .content-item .organization-time .num {
width: 50rpx;
height: 24rpx;
margin-left: 30rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
}
.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 {
width: 100rpx;
height: 24rpx;
margin-left: 30rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
}
.street-item .street-content .content-item .enter-time .num {
width: 40rpx;
height: 24rpx;
margin-left: 30rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
}
@keyframes loading {
0% {
background-position: 100% 50%
}
100% {
background-position: 0 50%
}
}
/**
border-radius: 8rpx;
background: linear-gradient(90deg, #f2f2f2 25%, #e6e6e6 37%, #f2f2f2 63%);
animation: loading 1.4s ease infinite;
background-size: 400% 100%;
*/