selectRule.acss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .all{
  2. background-color: #fff;
  3. height: 100%;
  4. margin-top: 40rpx;
  5. border-radius: 20rpx 20rpx 0 0;
  6. padding-top: 80rpx;
  7. z-index: 999
  8. }
  9. .close{
  10. width: 40rpx;
  11. height: 40rpx;
  12. position: absolute;
  13. right: 30rpx;
  14. top: 70rpx;
  15. }
  16. .left{
  17. background: #f1f1f1;
  18. height: calc(100vh - 212rpx);
  19. }
  20. .left .yi{
  21. padding: 20rpx 24rpx;
  22. position: relative;
  23. }
  24. .left .er{
  25. border-bottom: 1px solid #f1f1f1;
  26. background-color: #fff;
  27. padding: 20rpx 0rpx;
  28. padding-left: 40rpx;
  29. position: relative;
  30. }
  31. .left .active::before{
  32. position: absolute;
  33. content: " ";
  34. width: 6rpx;
  35. height: 22rpx;
  36. background: #26A2FF;
  37. left: 10rpx;
  38. top:50%;
  39. margin-top: -11rpx;
  40. }
  41. .left .itemActive{
  42. color: #26A2FF;
  43. }
  44. .right{
  45. height: calc(100vh - 212rpx);
  46. }
  47. .search{
  48. background-color: #f1f1f1;
  49. border-radius: 6rpx;
  50. width: 80%;
  51. margin: 0 auto;
  52. padding:6rpx 10rpx;
  53. }
  54. .search input{
  55. background-color: #f1f1f1;
  56. }
  57. .search image{
  58. width: 30rpx;
  59. height: 30rpx;
  60. margin-left: 10rpx;
  61. }
  62. .content{
  63. margin-top: 16rpx;
  64. border-top: 1px solid #f1f1f1;
  65. }
  66. .radio{
  67. width: 80rpx;
  68. text-align: center;
  69. box-sizing: border-box;
  70. }
  71. .items{
  72. padding: 14rpx;
  73. border-bottom: 1px solid #f1f1f1;
  74. }
  75. .num{
  76. font-size: 24rpx;
  77. }
  78. .items-top{
  79. padding:20rpx 28rpx;
  80. border-bottom: 1px solid #f1f1f1;
  81. }
  82. .nodata{
  83. text-align: center;
  84. padding: 40rpx;
  85. }