12345678910111213141516171819202122232425262728293031323334353637 |
- .scroll-view_H{
- white-space: nowrap;
- position: fixed;
- top: 80rpx;
- left: 0;
- z-index: 10;
- /* background: #fff; */
- /* box-shadow: 0 0 3rpx #fff; */
- }
- .scroll-view-item{
- height: 300rpx;
- }
- .scroll-view-item_H{
- position: relative;
- display: inline-block;
- padding: 10rpx 28rpx;
- height: 40rpx;
- font-size: 28rpx;
- color: #666;
- 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;
- }
|