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.
41 lines
801 B
41 lines
801 B
2 years ago
|
.num-list {
|
||
|
display: flex;
|
||
|
width: 100%;
|
||
|
justify-content: space-between;
|
||
|
position: relative;
|
||
|
}
|
||
|
.num-list .num-item {
|
||
|
}
|
||
|
.num-list .num-item:after {
|
||
|
content: '';
|
||
|
display: block;
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
top: calc(50% - 45rpx);
|
||
|
width: 1rpx;
|
||
|
height: 90rpx;
|
||
|
background: #C1C1C1;
|
||
|
opacity: 0.66;
|
||
|
}
|
||
|
.num-list .num-item:nth-of-type(1):after {
|
||
|
left: 33.333333%;
|
||
|
}
|
||
|
.num-list .num-item:nth-of-type(2):after {
|
||
|
left: 66.666666%;
|
||
|
}
|
||
|
.num-list .num-item:last-child:after {
|
||
|
display: none;
|
||
|
}
|
||
|
.num-list .num-item .txt {
|
||
|
font-size: 28rpx;
|
||
|
font-weight: 500;
|
||
|
color: #999999;
|
||
|
line-height: 38rpx;
|
||
|
margin-bottom: 30rpx;
|
||
|
}
|
||
|
.num-list .num-item .num {
|
||
|
font-size: 42rpx;
|
||
|
font-weight: bold;
|
||
|
color: #333333;
|
||
|
line-height: 42rpx;
|
||
|
}
|