index.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .word {
  2. display: flex;
  3. width: 750rpx;
  4. overflow: hidden;
  5. /* 系统 */
  6. .system {
  7. width: 240rpx;
  8. box-sizing: border-box;
  9. font-size: 28rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #333333;
  12. .classify {
  13. width: 100%;
  14. .label {
  15. height: 50rpx;
  16. width: 100%;
  17. padding-left: 15rpx;
  18. line-height: 50rpx;
  19. background-color: rgb(226, 225, 225);
  20. }
  21. }
  22. .option {
  23. text-align: left;
  24. padding-left: 25rpx;
  25. }
  26. }
  27. /* 左边滚动区域 */
  28. .left-list {
  29. width: 100%;
  30. width: 180rpx;
  31. }
  32. /* 选择项 */
  33. .option {
  34. position: relative;
  35. width: 100%;
  36. height: 90rpx;
  37. line-height: 90rpx;
  38. text-align: center;
  39. font-size: 28rpx;
  40. font-family: PingFang SC-Regular, PingFang SC;
  41. color: #333333;
  42. padding-left: 10rpx;
  43. padding-right: 4rpx;
  44. box-sizing: border-box;
  45. }
  46. .current {
  47. color: var(--assist) !important;
  48. }
  49. .current::after {
  50. content: '';
  51. position: absolute;
  52. display: block;
  53. height: 90rpx;
  54. width: 8rpx;
  55. background: var(--assist);
  56. left: 0;
  57. top: 0;
  58. }
  59. .right-list {
  60. flex: 1;
  61. .group {
  62. background-color: #fff;
  63. padding-left: 30rpx;
  64. box-sizing: border-box;
  65. padding-bottom: 20rpx;
  66. margin-bottom: 20rpx;
  67. .label {
  68. display: flex;
  69. align-items: center;
  70. height: 90rpx;
  71. border-top: 1rpx solid #EEEEEE;
  72. margin-top: 28rpx;
  73. margin-bottom: -20rpx;
  74. .label-text {
  75. font-family: PingFang SC-Regular, PingFang SC;
  76. color: #333333 !important;
  77. }
  78. }
  79. .label:first-child {
  80. border-top: none;
  81. margin-top: 0rpx;
  82. }
  83. }
  84. }
  85. }
  86. .label-class {
  87. width: 100% !important;
  88. }