1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .scroll {
- position: sticky;
- top: 0;
- display: flex;
- flex-wrap: nowrap;
- width: 100vw;
- height: 120rpx;
- background-color: #ffffff;
- z-index: 9;
- box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8rpx;
- }
- .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;
- }
- .scroll .item .icon .iconfont {
- font-size: 36rpx;
- color: #000;
- }
- .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;
- min-height: 200rpx;
- }
- .line-1 {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
|