123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- .wx-flex {
- display: flex;
- align-items: center
- }
- .wx-flex__item {
- flex: 1
- }
- .thin-border-bottom {
- position: relative
- }
- .thin-border-bottom:after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- height: 1px;
- border-bottom: 1px solid #EAEAEA;
- color: #e5e5e5;
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- z-index: 2
- }
- .index-group__title {
- padding: 0 24rpx;
- }
- .index-group__content {
- font-size: 0
- }
- .index-group__item {
- padding: 30rpx 24rpx;
- font-size: 30rpx
- }
- .index-group__item.thin-border-bottom:after {
- left: 24rpx
- }
- .anchor-bar__wrp {
- position: absolute;
- top: 0;
- bottom: 0;
- right: 0;
- width: 60rpx;
- z-index: 999;
- height: 100%;
- }
- .anchor-item {
- font-size: 0;
- text-align: center;
- position: relative
- }
- .anchor-item__inner {
- line-height: 28rpx;
- height: 28rpx;
- width: 28rpx;
- border-radius: 50%;
- display: inline-block;
- font-size: 20rpx;
- margin: 2rpx 0;
- font-weight: 500
- }
- .tapped .anchor-item__pop {
- display: block
- }
- .anchor-item__pop {
- position: absolute;
- font-size: 64rpx;
- width: 100rpx;
- height: 100rpx;
- line-height: 100rpx;
- color: #fff;
- background-color: #C9C9C9;
- border-radius: 50%;
- right: 80rpx;
- top: 50%;
- transform: translateY(-50%);
- display: none
- }
- .anchor-item__pop:after {
- content: "";
- display: block;
- position: absolute;
- width: 0;
- height: 0;
- left: 80rpx;
- border: 40rpx solid;
- border-color: transparent transparent transparent #C9C9C9;
- top: 50%;
- transform: translateY(-50%)
- }
- .anchor-item.selected .anchor-item__inner {
- color: #fff;
- background-color: #249EFB
- }
- .index-group__list {
- padding-right: 50rpx;
- }
- .index-group__item {
- padding: 28rpx 0 8rpx 20rpx;
- line-height: 40rpx;
- }
- .index-group__item text {
- display: inline-block;
- min-width: 32rpx;
- height: 32rpx;
- line-height: 32rpx;
- background: #D4E4ED;
- margin-left: 8rpx;
- font-family: PingFangSC-Regular;
- font-size: 22rpx;
- color: #9DB6CF;
- border-radius: 16rpx;
- padding: 0 2rpx;
- text-align: center;
- }
- scroll-view {
- height: 100%;
- }
|