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.
46 lines
967 B
46 lines
967 B
.chartNum{
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 0.25rem;
|
|
}
|
|
.box-items {
|
|
position: relative;
|
|
display: flex;
|
|
height: 0.6rem;
|
|
text-align: center;
|
|
}
|
|
/*滚动数字设置*/
|
|
.number-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
text-align: center;
|
|
width: 0.45rem;
|
|
height: 0.6rem;
|
|
line-height: 0.6rem;
|
|
margin-right: 0.125rem;
|
|
border: 1px solid #2C75E0;
|
|
}
|
|
.number-item span{
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 100%;
|
|
writing-mode: vertical-rl;
|
|
text-orientation: upright;
|
|
overflow: hidden;
|
|
}
|
|
.number-item span i{
|
|
font-style: normal;
|
|
position: absolute;
|
|
top: 0.1rem;
|
|
left: 50%;
|
|
font-size: 0.325rem;
|
|
font-weight: bold;
|
|
color: #1AC9FF;
|
|
transform: translate(-50%,0);
|
|
transition: transform 1s ease-in-out;
|
|
letter-spacing: 10px;
|
|
}
|
|
.number-item:last-child {
|
|
margin-right: 0;
|
|
}
|