index.less 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. .create {
  2. width: 100%;
  3. height: 100%;
  4. background-color: rgb(236, 236, 236, 0.2);
  5. border-radius: 8px;
  6. overflow-y: auto;
  7. .card {
  8. background-color: #FFF;
  9. }
  10. }
  11. .settingsBody {
  12. user-select: none;
  13. margin-top: 16px;
  14. width: 100%;
  15. overflow: hidden;
  16. overflow-x: auto;
  17. --w5: 216px;
  18. --w100: 100%;
  19. .settingsBody_content {
  20. width: 100%;
  21. overflow: hidden;
  22. border: 1px solid #f0f0f0;
  23. border-radius: 6px;
  24. display: flex;
  25. box-sizing: border-box;
  26. min-width: 1400px;
  27. >div {
  28. display: flex;
  29. box-sizing: border-box;
  30. }
  31. }
  32. .settingsBody_content_right {
  33. width: 100%;
  34. min-width: 238px;
  35. max-width: 100%;
  36. overflow-x: auto;
  37. }
  38. .settingsBody_content_row {
  39. border-left: 1px solid #f0f0f0;
  40. box-sizing: border-box;
  41. display: flex;
  42. width: calc(100% / 4);
  43. .title {
  44. height: 50px;
  45. padding: 5px 10px;
  46. color: #333;
  47. background-color: #fff;
  48. border-bottom: 1px solid #ebeef5;
  49. display: flex;
  50. justify-content: space-between;
  51. align-items: center;
  52. >span {
  53. font-size: 14px;
  54. font-weight: 600;
  55. }
  56. .selected {
  57. margin-left: 8px;
  58. font-size: 12px;
  59. font-weight: 500;
  60. color: #999;
  61. }
  62. }
  63. &:first-child {
  64. border-left: none;
  65. }
  66. }
  67. .settingsBody_content_col {
  68. // width: 350px;
  69. // max-width: 350px;
  70. // min-width: 350px;
  71. // width: var(--w100) / 4;
  72. // max-width: calc(var(--w100) / 4);
  73. // min-width: var(--w100) / 4;
  74. width: 100%;
  75. .detail {
  76. position: relative;
  77. }
  78. .detail_title {
  79. font-weight: bold;
  80. color: #000;
  81. font-size: 12px;
  82. padding: 6px 10px;
  83. }
  84. .ad_config {
  85. position: absolute;
  86. top: 0;
  87. left: 0;
  88. display: flex;
  89. align-items: center;
  90. width: 100%;
  91. height: 100%;
  92. background: #fff;
  93. z-index: 10;
  94. }
  95. .ad_config_item {
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. width: 100%;
  100. height: 100%;
  101. text-align: center;
  102. cursor: pointer;
  103. background-color: #f5f5f5;
  104. font-size: 12px;
  105. &:hover {
  106. background-color: #f2f2f2;
  107. }
  108. }
  109. &:hover .detail_footer {
  110. box-shadow: 0 0 4px 1px rgba(0, 0, 0, .08);
  111. }
  112. &:not(:last-child) {
  113. .detail,
  114. .detail_footer {
  115. border-right: 1px solid #ebeef5;
  116. }
  117. }
  118. }
  119. }
  120. .detail_body {
  121. height: 305px;
  122. padding: 12px 6px;
  123. overflow: hidden;
  124. overflow-y: auto;
  125. color: #666;
  126. >p,
  127. h3,
  128. .tpP {
  129. word-break: break-all;
  130. margin-bottom: 0;
  131. margin-top: 0;
  132. line-height: 20px;
  133. font-size: 12px;
  134. }
  135. h3 {
  136. font-size: 14px;
  137. font-weight: bold;
  138. color: #000;
  139. }
  140. .empty_block {
  141. width: 100%;
  142. height: 100%;
  143. display: flex;
  144. justify-content: center;
  145. align-items: center;
  146. }
  147. .text {
  148. width: 100%;
  149. height: 32px;
  150. padding-right: 8px;
  151. padding-left: 8px;
  152. margin-bottom: 4px;
  153. font-weight: 400;
  154. color: #666;
  155. background-color: #f1f1f1;
  156. border-radius: 4px;
  157. font-size: 12px;
  158. line-height: 32px;
  159. }
  160. }
  161. .detail_footer {
  162. height: 32px;
  163. font-size: 14px;
  164. line-height: 32px;
  165. user-select: none;
  166. display: flex;
  167. justify-content: center;
  168. align-items: center;
  169. gap: 10px;
  170. }
  171. .detail_body_m {
  172. display: flex;
  173. // flex-direction: column;
  174. flex-wrap: wrap;
  175. row-gap: 10px;
  176. >div {
  177. min-width: 90px;
  178. }
  179. .video {
  180. display: flex;
  181. justify-content: space-between;
  182. padding-right: 15px;
  183. >div {
  184. max-width: 80px;
  185. max-height: 60px;
  186. img {
  187. max-width: 80px;
  188. max-height: 60px;
  189. }
  190. }
  191. }
  192. .imageList {
  193. display: flex;
  194. gap: 6px;
  195. }
  196. .cover_image {
  197. display: flex;
  198. align-items: center;
  199. justify-content: center;
  200. background-color: #e6e6e6;
  201. border-radius: 6px;
  202. width: 80px;
  203. height: 60px;
  204. overflow: hidden;
  205. >img {
  206. max-width: 96%;
  207. max-height: 96%;
  208. }
  209. }
  210. }
  211. .settingsBody_content_group {
  212. width: calc(var(--w100) / 2);
  213. .settingsBody_content_group_title {
  214. color: #333;
  215. border-bottom: 1px solid #ebeef5;
  216. height: 25px;
  217. display: flex;
  218. justify-content: center;
  219. align-items: center;
  220. padding: 0 10px;
  221. border-left: 1px solid #f0f0f0;
  222. >span {
  223. font-size: 14px;
  224. font-weight: 600;
  225. }
  226. }
  227. .settingsBody_content_group_row {
  228. display: flex;
  229. width: 100%;
  230. }
  231. .settingsBody_content_row {
  232. width: 50%;
  233. .title {
  234. height: 25px;
  235. >span {
  236. font-size: 12px;
  237. font-weight: 600;
  238. }
  239. }
  240. }
  241. }
  242. .bts {
  243. margin-top: 10px;
  244. display: flex;
  245. justify-content: flex-end;
  246. }