index.less 5.4 KB

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