index.module.less 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. .settingContainer {
  2. position: relative;
  3. width: 430px;
  4. height: min(86vh, 340px);
  5. background: #fff;
  6. border-radius: 26px;
  7. padding: 20px 0;
  8. .title {
  9. position: absolute;
  10. left: 50%;
  11. top: -6px;
  12. margin-left: -70px;
  13. z-index: 9;
  14. width: 140px;
  15. height: 34px;
  16. background: url('../images/icon-set-title.png') no-repeat center center / contain;
  17. }
  18. .iconClose {
  19. position: absolute;
  20. right: 13px;
  21. top: 13px;
  22. z-index: 9;
  23. display: inline-block;
  24. width: 31px;
  25. height: 32px;
  26. background: url('../images/icon-close.png') no-repeat center center / contain;
  27. }
  28. }
  29. .settingContent {
  30. padding: 0 26px;
  31. overflow-y: auto;
  32. height: 100%;
  33. }
  34. .settingParams {
  35. // padding: 20px 26px;
  36. padding-bottom: 53px;
  37. }
  38. .parmaTitle {
  39. font-size: 14px;
  40. font-weight: 600;
  41. color: #131415;
  42. line-height: 20px;
  43. padding-bottom: 8px;
  44. }
  45. .paramContent {
  46. display: flex;
  47. align-items: center;
  48. flex-wrap: wrap;
  49. gap: 0 12px;
  50. padding-bottom: 18px;
  51. .btn {
  52. width: 64px;
  53. height: 26px;
  54. font-size: 12px;
  55. font-weight: 600;
  56. color: rgba(0, 0, 0, 0.7);
  57. line-height: 17px;
  58. background: #F5F6F7;
  59. border: none;
  60. padding: 0;
  61. &.active {
  62. background: #19AEFF;
  63. color: #FFFFFF;
  64. }
  65. }
  66. &.tempo {
  67. gap: 8px 8px;
  68. padding-bottom: 0;
  69. }
  70. .active {
  71. background: #D0EBFF;
  72. }
  73. img {
  74. width: 46px;
  75. height: 46px;
  76. background: #F5F6F7;
  77. border-radius: 4px;
  78. }
  79. }
  80. .btnGroup {
  81. position: fixed;
  82. bottom: 0;
  83. left: 0;
  84. right: 0;
  85. z-index: 9;
  86. display: flex;
  87. align-items: center;
  88. justify-content: center;
  89. padding: 14px 0;
  90. background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  91. border-radius: 0 0 26px 26px;
  92. .btnSubmit {
  93. width: 143px;
  94. height: 45px;
  95. line-height: 45px;
  96. border-radius: 20px;
  97. background: url('../images/btn-5.png') no-repeat center center / contain;
  98. border: none;
  99. }
  100. }