| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .scroll {
- position: relative;
- width:100%;
- height: 84rpx;
- background-color: #ffffff;
- z-index: 9;
- .box {
- display: flex;
- >.parallel:first-child {
- margin-left: 15rpx;
- }
- .parallel {
- flex-shrink: 0;
- position: relative;
- height: 64rpx;
- background: #EEEEEE;
- border-radius: 8rpx;
- transform: skew(-8deg, 0);
- margin-top: 20rpx;
- box-sizing: border-box;
- padding: 0 10rpx;
- margin-right: 20rpx;
- .mian {
- display: flex;
- align-items: center;
- height: 100%;
- padding: 0 30rpx;
- transform: skew(8deg, 0);
- .label {
- flex: 1;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- margin: 0 10rpx;
- text-align: center;
- }
- }
- }
- .active {
- background-color: #3874F6;
- .mian {
- .label {
- color: #FFFFFF;
- }
- }
- }
- }
- }
- .select {
- position: absolute;
- width: 64rpx;
- height: 64rpx;
- line-height: 64rpx;
- text-align: center;
- right: -20rpx;
- top: 20rpx;
- background-color: #ffffff;
- transform: rotate(90deg);
- color: #3874F6;
- }
|