| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | .scroll {    display: flex;    flex-wrap: nowrap;    width: 100vw;    height: 120rpx;    background-color: #ffffff;}.scroll .item {    flex-shrink: 0;    display: flex;    flex-direction: column;    align-items: center;    height: 100%;    width: 172rpx;    padding-top: 16rpx;    text-align: center;    box-sizing: border-box;}.scroll .item .icon {    width: 46rpx;    height: 46rpx;    border: 1px solid red;}.scroll .item .num {    width: 80%;    height: 46rpx;    font-size: 28rpx;    font-family: PingFang SC-Bold, PingFang SC;    font-weight: bold;    color: #333333;}.scroll .item .label {    height: 34rpx;    font-size: 24rpx;    font-family: PingFang SC-Regular, PingFang SC;    color: #999999;    margin-top: 8rpx;}.scroll .active {    border-bottom: 4rpx solid #3874F6;}.scroll .active .label,.scroll .active .num ,.scroll .active .icon {    color: #3874F6 !important;}.slot-box {    width: 100vw;    height: 200rpx;}.line-1 {    overflow: hidden;    white-space: nowrap;    text-overflow: ellipsis;}
 |