index.scss 2.0 KB

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