index.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .wx-flex {
  2. display: flex;
  3. align-items: center
  4. }
  5. .wx-flex__item {
  6. flex: 1
  7. }
  8. .thin-border-bottom {
  9. position: relative
  10. }
  11. .thin-border-bottom:after {
  12. content: "";
  13. position: absolute;
  14. left: 0;
  15. bottom: 0;
  16. right: 0;
  17. height: 1px;
  18. border-bottom: 1px solid #EAEAEA;
  19. color: #e5e5e5;
  20. -webkit-transform-origin: 0 0;
  21. transform-origin: 0 0;
  22. -webkit-transform: scaleY(.5);
  23. transform: scaleY(.5);
  24. z-index: 2
  25. }
  26. .index-group__title {
  27. padding: 0 24rpx;
  28. }
  29. .index-group__content {
  30. font-size: 0
  31. }
  32. .index-group__item {
  33. padding: 30rpx 24rpx;
  34. font-size: 30rpx
  35. }
  36. .index-group__item.thin-border-bottom:after {
  37. left: 24rpx
  38. }
  39. .anchor-bar__wrp {
  40. position: absolute;
  41. top: 0;
  42. bottom: 0;
  43. right: 0;
  44. width: 60rpx;
  45. z-index: 999;
  46. height: 100%;
  47. }
  48. .anchor-item {
  49. font-size: 0;
  50. text-align: center;
  51. position: relative
  52. }
  53. .anchor-item__inner {
  54. line-height: 28rpx;
  55. height: 28rpx;
  56. width: 28rpx;
  57. border-radius: 50%;
  58. display: inline-block;
  59. font-size: 20rpx;
  60. margin: 2rpx 0;
  61. font-weight: 500
  62. }
  63. .tapped .anchor-item__pop {
  64. display: block
  65. }
  66. .anchor-item__pop {
  67. position: absolute;
  68. font-size: 64rpx;
  69. width: 100rpx;
  70. height: 100rpx;
  71. line-height: 100rpx;
  72. color: #fff;
  73. background-color: #C9C9C9;
  74. border-radius: 50%;
  75. right: 80rpx;
  76. top: 50%;
  77. transform: translateY(-50%);
  78. display: none
  79. }
  80. .anchor-item__pop:after {
  81. content: "";
  82. display: block;
  83. position: absolute;
  84. width: 0;
  85. height: 0;
  86. left: 80rpx;
  87. border: 40rpx solid;
  88. border-color: transparent transparent transparent #C9C9C9;
  89. top: 50%;
  90. transform: translateY(-50%)
  91. }
  92. .anchor-item.selected .anchor-item__inner {
  93. color: #fff;
  94. background-color: #249EFB
  95. }
  96. .index-group__list {
  97. padding-right: 50rpx;
  98. }
  99. .index-group__item {
  100. padding: 28rpx 0 8rpx 20rpx;
  101. line-height: 40rpx;
  102. }
  103. .index-group__item text {
  104. display: inline-block;
  105. min-width: 32rpx;
  106. height: 32rpx;
  107. line-height: 32rpx;
  108. background: #D4E4ED;
  109. margin-left: 8rpx;
  110. font-family: PingFangSC-Regular;
  111. font-size: 22rpx;
  112. color: #9DB6CF;
  113. border-radius: 16rpx;
  114. padding: 0 2rpx;
  115. text-align: center;
  116. }
  117. scroll-view {
  118. height: 100%;
  119. }