index.wxss 911 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .wux-cascader-view {
  2. position: relative;
  3. font-size: 28rpx;
  4. line-height: 1.5;
  5. color: rgba(0,0,0,.85);
  6. background-color: #fff;
  7. overflow: hidden
  8. }
  9. .wux-cascader-view__hd {
  10. position: relative;
  11. width: 100%
  12. }
  13. .wux-cascader-view__hd::after {
  14. content: " ";
  15. position: absolute;
  16. left: 0;
  17. bottom: 0;
  18. right: 0;
  19. height: 1PX;
  20. border-bottom: 1PX solid #d9d9d9;
  21. color: #d9d9d9;
  22. transform-origin: 0 100%;
  23. transform: scaleY(.5)
  24. }
  25. .wux-cascader-view__bd {
  26. width: 100%;
  27. display: flex;
  28. background-color: #f5f5f5
  29. }
  30. .wux-cascader-view__inner-scroll {
  31. display: block;
  32. height: inherit;
  33. width: 50%;
  34. flex: 0 0 50%;
  35. background-color: #fff
  36. }
  37. .wux-cascader-view__inner-scroll--full {
  38. width: 100%;
  39. flex: 0 0 100%;
  40. background-color: #fff!important
  41. }
  42. .wux-cascader-view__inner-scroll:nth-child(2n) {
  43. background-color: #f5f5f5
  44. }
  45. .wux-cascader-view__scroll-view {
  46. max-height: 540rpx
  47. }