1234567891011121314151617181920212223242526272829303132333435 |
- .scroll-view_H{
- white-space: nowrap;
- position: fixed;
- top: 80rpx;
- left: 0;
- z-index: 10;
- }
- .scroll-view-item{
- height: 300rpx;
- }
- .scroll-view-item_H{
- position: relative;
- display: inline-block;
- padding: 10rpx 28rpx;
- height: 40rpx;
- font-size: 28rpx;
- color: #777777;
- background: #2b2b2b;
- }
- .scroll-view-item_H:after {
- content: '';
- position: absolute;
- width: 70%;
- height: 4rpx;
- left: 15%;
- bottom: 6rpx;
- background: transparent;
- }
- .scroll-view-item_H.active {
- color: #fff
- }
- .scroll-view-item_H.active:after {
- background: #fff;
- }
|