list.wxss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ::-webkit-scrollbar {
  2. width: 0;
  3. height: 0;
  4. color: transparent;
  5. }
  6. .alphabet-list .section-item .section-item-header {
  7. display: flex;
  8. align-items: center;
  9. font-size: 30rpx;
  10. color: #a8a8a8;
  11. background-color:#f1f1f1;
  12. padding: 15rpx 35rpx;
  13. }
  14. .alphabet-list .section-item .section-item-cells {
  15. padding-left: 35rpx;
  16. background: #fff;
  17. }
  18. .alphabet-list .section-item .section-item-cells .section-item-cell{
  19. font-size: 28rpx;
  20. line-height: 1.0;
  21. color: #333333;
  22. padding: 20rpx 0;
  23. display: flex;
  24. align-items: center;
  25. }
  26. .alphabet-list .section-item .section-item-cells .section-item-cell text{
  27. display: inline-block;
  28. white-space: nowrap;
  29. overflow: hidden;
  30. text-overflow: ellipsis;
  31. }
  32. .border-bottom {
  33. position: relative;
  34. border:none;
  35. }
  36. .border-bottom:after{
  37. content: '';
  38. position: absolute;
  39. bottom: 0;
  40. background: rgb(237, 237, 237);
  41. width: 100%;
  42. height: 1px;
  43. right: 0;
  44. transform: scaleY(0.5);
  45. transform-origin: 0 0;
  46. }
  47. .alphanet-selector {
  48. position: absolute;
  49. top: 50%;
  50. right: 20rpx;
  51. transform: translateY(-50%);
  52. display: flex;
  53. flex-direction: column;
  54. align-items: center;
  55. justify-content: flex-start;
  56. z-index: 100;
  57. box-sizing: border-box;
  58. }
  59. .bg{background-color: rgba(0,0,0, 0.2); color: #fff; border-radius: 10rpx;}
  60. .alphanet-selector .selector-one {
  61. font-size:28rpx;
  62. text-align: center;
  63. width: 48rpx;
  64. height: 48rpx;
  65. }
  66. .alphanet-selector .active{color: #ee3a43}
  67. .show-alpha{
  68. width: 150rpx;
  69. height: 150rpx;
  70. background-color: rgba(0,0,0, 0.4);
  71. font-size: 50px;
  72. color: #fff;
  73. text-align: center;
  74. line-height: 150rpx;
  75. position: fixed;
  76. top: 50%;
  77. left: 50%;
  78. transform: translate(-50%,-50%);
  79. border-radius: 20rpx;
  80. }
  81. .icon-address{font-size: 40rpx; vertical-align: middle; margin-right: 10rpx;}