| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .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;
- }
- .safety {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- height: 40rpx;
- }
|