index.less 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. @import '../../../src/themeColor.less';
  2. .sld_det_lr_wrap {
  3. display: flex;
  4. flex-wrap: wrap;
  5. flex-direction: row;
  6. justify-content: flex-start;
  7. align-items: flex-start;
  8. border-left:1px solid @theme-light4Color;
  9. padding-top: 1px;
  10. width:100%;
  11. }
  12. .sld_det_lr_item_wrap {
  13. display: flex;
  14. flex-wrap: nowrap;
  15. flex-direction: row;
  16. justify-content: flex-start;
  17. align-items: center;
  18. border: 1px solid @theme-light4Color;
  19. background-color: #fff;
  20. border-left: 0;
  21. border-right: 0;
  22. }
  23. .sld_det_r_item {
  24. flex-direction: column;
  25. justify-content: center;
  26. align-items: flex-end;
  27. padding-right: 20px;
  28. display: flex;
  29. border:1px solid @theme-light4Color;
  30. background: #fff;
  31. border-top: 0;
  32. border-bottom: 0;
  33. }
  34. .sld_det_r_item_spe{
  35. border: 0;
  36. background-color: #F7F7FC;
  37. }
  38. .sld_det_r_item_det{
  39. padding-left: 20px;
  40. min-height: 100px;
  41. padding-top: 10px;
  42. padding-bottom: 10px;
  43. align-items: flex-start;
  44. }
  45. .sld_det_r_text {
  46. font-size: 13px !important;
  47. color: #333;
  48. }
  49. .item{
  50. width:80%;
  51. }
  52. .spec_wrap{
  53. display: flex;
  54. flex-direction: column;
  55. align-items: flex-start;
  56. justify-content: flex-start;
  57. }
  58. .spec_r_wrap{
  59. width:100%;
  60. display: flex;
  61. flex-direction: column;
  62. justify-content: flex-start;
  63. align-items: flex-start;
  64. .spec_l{
  65. width:100px;
  66. justify-content: flex-end;
  67. align-items: center;
  68. padding-top: 10px;
  69. }
  70. .spec_item_wrap{
  71. display: flex;
  72. justify-content: flex-start;
  73. align-items: flex-start;
  74. width: 100%;
  75. padding: 0 10px;
  76. .spec_val_title{
  77. color: #333;
  78. font-size: 14px;
  79. display: inline-block;
  80. margin-left: 10px;
  81. font-weight: bold;
  82. flex-shrink: 0;
  83. }
  84. }
  85. }
  86. .show_bot_border{
  87. border-bottom: 1px dashed #DCDCDC;
  88. }
  89. .show_bot_border:last-child{
  90. border-bottom: 1px dashed #fff;
  91. }
  92. .left_operate_tip{
  93. font-size: 10px;
  94. color: #666;
  95. }
  96. .spec_item_wrap{
  97. :global{
  98. .ant-select.ant-select-enabled{
  99. margin-bottom: 10px;
  100. }
  101. }
  102. }
  103. .spec_bg,.spec_item_wrap{
  104. :global{
  105. .ant-select-selection--multiple .ant-select-selection__choice{
  106. padding: 0 !important;
  107. background-color: #fff !important;
  108. border: none !important;
  109. }
  110. .ant-select-selection--multiple > ul > li, .ant-select-selection--multiple .ant-select-selection__rendered > ul > li{
  111. line-height: 24px !important;
  112. }
  113. .ant-select-selection--multiple .ant-select-selection__choice__remove{
  114. display: none !important;
  115. }
  116. .ant-select.ant-select-enabled{
  117. width: 130px !important;
  118. height: 30px !important;
  119. flex-shrink: 0;
  120. margin-right: 20px;
  121. }
  122. }
  123. }
  124. .spec_bg{
  125. background: rgba(@theme-light4RgbColor);
  126. width: 100%;
  127. height: 46px;
  128. line-height: 46px;
  129. margin: 20px 20px 10px 0;
  130. position: relative;
  131. .del_spec{
  132. position: absolute;
  133. right: 20px;
  134. top: 4px;
  135. display: none;
  136. cursor: pointer;
  137. }
  138. .spec_name_tile{
  139. color: #333;
  140. margin-left: 20px;
  141. font-size: 14px;
  142. font-weight: bold;
  143. }
  144. .add_spec{
  145. color: @theme-color;
  146. width: 120px;
  147. height: 36px;
  148. line-height: 36px;
  149. background: #fff;
  150. border: 1px solid @theme-color;
  151. border-radius: 3px;
  152. text-align: center;
  153. font-size: 14px;
  154. font-weight: bold;
  155. margin-top: 5px;
  156. margin-left: 5px;
  157. cursor: pointer;
  158. }
  159. }
  160. .spec_bg:hover{
  161. .del_spec{
  162. display: inline-block;
  163. }
  164. }
  165. .spec_bg:last-child{
  166. margin-bottom: 20px;
  167. }
  168. .add_spec_val{
  169. color: @theme-color;
  170. font-size: 14px;
  171. font-weight: bold;
  172. flex-shrink: 0;
  173. margin-bottom: 10px;
  174. cursor: pointer;
  175. }
  176. .spec_val_item_wrap,.add_spec_val_wrap{
  177. position: relative;
  178. .spec_val_del{
  179. position: absolute;
  180. top: -6px;
  181. right: 12px;
  182. z-index: 2;
  183. display: none;
  184. cursor: pointer;
  185. }
  186. }
  187. .spec_val_item_wrap:hover,.add_spec_val_wrap:hover{
  188. .spec_val_del{
  189. display: inline-block;
  190. }
  191. }