debug-styles.scss 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551
  1. /* 调试样式文件 - 增强版本,确保布局正确显示 */
  2. @use '../ios-theme.scss' as *;
  3. /* 重置所有可能冲突的样式 - 使用最高优先级 */
  4. * {
  5. box-sizing: border-box !important;
  6. }
  7. /* 重置主内容区域样式 */
  8. .main-content {
  9. width: 100% !important;
  10. margin: 0 !important;
  11. padding: 0 !important;
  12. }
  13. /* 重置内容包装器样式 */
  14. .content-wrapper {
  15. width: 100% !important;
  16. margin: 0 !important;
  17. padding: 0 !important;
  18. }
  19. /* 重置项目详情容器 */
  20. .project-detail-container {
  21. padding: 20px !important;
  22. width: 100% !important;
  23. margin: 0 !important;
  24. }
  25. /* 重置标签页内容容器 */
  26. .tab-content {
  27. width: 100% !important;
  28. padding: 0 !important;
  29. margin: 0 !important;
  30. }
  31. /* 重置项目进度标签页内容 */
  32. .progress-tab-content {
  33. width: 100% !important;
  34. padding: 0 !important;
  35. margin: 0 !important;
  36. }
  37. /* 上传区域样式优化 - 确保在并排显示时内容清晰可读 */
  38. .upload-section {
  39. /* 基础样式保持不变 */
  40. margin-bottom: 16px !important;
  41. /* 针对四个卡片并排时的特殊优化 */
  42. .stage-progress-container:has(.vertical-stage-block:nth-child(4):last-child) & {
  43. /* 笔记本端和PC端的上传区域优化 */
  44. @media (min-width: 1366px) {
  45. margin-bottom: 12px !important;
  46. .upload-dropzone {
  47. min-height: 120px !important;
  48. padding: 12px !important;
  49. .upload-text {
  50. font-size: 12px !important;
  51. line-height: 1.4 !important;
  52. }
  53. .upload-hint {
  54. font-size: 11px !important;
  55. margin-top: 4px !important;
  56. }
  57. }
  58. }
  59. /* 24寸PC端的上传区域优化 */
  60. @media (min-width: 1920px) {
  61. margin-bottom: 16px !important;
  62. .upload-dropzone {
  63. min-height: 140px !important;
  64. padding: 16px !important;
  65. .upload-text {
  66. font-size: 13px !important;
  67. line-height: 1.4 !important;
  68. }
  69. .upload-hint {
  70. font-size: 12px !important;
  71. margin-top: 6px !important;
  72. }
  73. }
  74. }
  75. /* 较小屏幕时保持紧凑布局 */
  76. @media (max-width: 1365px) {
  77. margin-bottom: 10px !important;
  78. .upload-dropzone {
  79. min-height: 100px !important;
  80. padding: 10px !important;
  81. .upload-text {
  82. font-size: 11px !important;
  83. line-height: 1.3 !important;
  84. }
  85. .upload-hint {
  86. font-size: 10px !important;
  87. margin-top: 3px !important;
  88. }
  89. }
  90. }
  91. }
  92. }
  93. /* 阶段标题样式优化 */
  94. .vertical-stage-header {
  95. /* 针对四个卡片并排时的标题优化 */
  96. .stage-progress-container:has(.vertical-stage-block:nth-child(4):last-child) & {
  97. margin-bottom: 12px !important;
  98. h4 {
  99. font-size: 14px !important;
  100. line-height: 1.3 !important;
  101. margin: 0 !important;
  102. /* 笔记本端和PC端的标题优化 */
  103. @media (min-width: 1366px) {
  104. font-size: 15px !important;
  105. }
  106. /* 24寸PC端的标题优化 */
  107. @media (min-width: 1920px) {
  108. font-size: 16px !important;
  109. }
  110. }
  111. }
  112. }
  113. /* 强制覆盖主内容布局样式 - 使用最高优先级 */
  114. .progress-tab-content > .main-content-layout {
  115. display: flex !important;
  116. flex-wrap: nowrap !important;
  117. gap: 20px !important;
  118. margin-top: 20px !important;
  119. width: 100% !important;
  120. background-color: transparent !important; /* 去除调试底色 */
  121. padding: 20px !important;
  122. border-radius: 8px !important;
  123. }
  124. /* 强制覆盖左侧列样式 - 使用最高优先级 */
  125. .progress-tab-content > .main-content-layout > .left-column {
  126. width: 28% !important;
  127. min-width: 28% !important;
  128. max-width: 28% !important;
  129. display: flex !important;
  130. flex-direction: column !important;
  131. gap: 16px !important;
  132. background-color: transparent !important; // 去除左侧粉色底色
  133. padding: 8px !important;
  134. border-radius: 6px !important;
  135. }
  136. /* 强制覆盖右侧列样式 - 使用最高优先级 */
  137. .progress-tab-content > .main-content-layout > .right-column {
  138. width: 72% !important;
  139. min-width: 72% !important;
  140. max-width: 72% !important;
  141. display: flex !important;
  142. flex-direction: column !important;
  143. gap: 16px !important;
  144. background-color: transparent !important; // 去除右侧调试底色
  145. padding: 8px !important;
  146. border-radius: 6px !important;
  147. }
  148. /* 优化卡片样式 */
  149. .left-column .card,
  150. .right-column .card {
  151. background-color: white !important;
  152. border-radius: 8px !important;
  153. padding: 16px !important;
  154. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  155. border: 1px solid #eaeaea !important;
  156. }
  157. /* 客户信息卡片内部元素优化 */
  158. .left-column .project-info-card .info-grid {
  159. display: grid !important;
  160. grid-template-columns: 1fr 1fr !important;
  161. gap: 8px !important;
  162. margin-bottom: 12px !important;
  163. }
  164. .left-column .project-info-card .info-item {
  165. display: flex !important;
  166. flex-direction: column !important;
  167. padding: 8px !important;
  168. background: #f8f9fa !important;
  169. border-radius: 6px !important;
  170. border: 1px solid #e9ecef !important;
  171. font-size: 12px !important;
  172. }
  173. .left-column .project-info-card .info-item label {
  174. font-weight: 500 !important;
  175. color: #6c757d !important;
  176. margin-bottom: 4px !important;
  177. font-size: 11px !important;
  178. }
  179. .left-column .project-info-card .info-item span {
  180. color: #212529 !important;
  181. font-weight: 600 !important;
  182. font-size: 12px !important;
  183. }
  184. .left-column .project-info-card .tags-container {
  185. margin-top: 8px !important;
  186. }
  187. .left-column .project-info-card .tag-section {
  188. margin-bottom: 8px !important;
  189. }
  190. .left-column .project-info-card .tag-section h3 {
  191. font-size: 12px !important;
  192. font-weight: 600 !important;
  193. color: #495057 !important;
  194. margin-bottom: 6px !important;
  195. }
  196. .left-column .project-info-card .tags .tag {
  197. font-size: 10px !important;
  198. padding: 4px 8px !important;
  199. margin: 2px 4px 2px 0 !important;
  200. background-color: rgba(24, 144, 255, 0.08) !important;
  201. color: #1890ff !important;
  202. border-radius: 4px !important;
  203. }
  204. .left-column .project-info-card .need-list {
  205. margin: 0 !important;
  206. padding-left: 12px !important;
  207. }
  208. .left-column .project-info-card .need-list li {
  209. font-size: 11px !important;
  210. color: #495057 !important;
  211. margin-bottom: 3px !important;
  212. }
  213. .left-column .project-info-card .requirement-sync-info {
  214. margin-top: 8px !important;
  215. padding: 8px !important;
  216. background: #f1f3f4 !important;
  217. border-radius: 6px !important;
  218. }
  219. .left-column .project-info-card .requirement-sync-info h4 {
  220. font-size: 11px !important;
  221. font-weight: 600 !important;
  222. color: #495057 !important;
  223. margin-bottom: 6px !important;
  224. }
  225. /* 确保响应式布局正常工作 */
  226. @media (max-width: 1024px) {
  227. .progress-tab-content > .main-content-layout {
  228. flex-direction: column !important;
  229. }
  230. .progress-tab-content > .main-content-layout > .left-column,
  231. .progress-tab-content > .main-content-layout > .right-column {
  232. width: 100% !important;
  233. min-width: 100% !important;
  234. max-width: 100% !important;
  235. }
  236. }
  237. /* ===================== 四大板块:工具条与内容样式(调试版) ===================== */
  238. .sections-toolbar {
  239. display: flex;
  240. gap: $ios-spacing-md;
  241. padding: $ios-spacing-sm;
  242. background: $ios-background-secondary;
  243. border-radius: $ios-radius-lg;
  244. border: 1px solid $ios-border;
  245. margin: $ios-spacing-md 0 $ios-spacing-lg;
  246. }
  247. .section-btn {
  248. appearance: none;
  249. border: 1px solid $ios-border;
  250. background: $ios-background;
  251. color: $ios-text-primary;
  252. padding: $ios-spacing-sm $ios-spacing-lg;
  253. border-radius: $ios-radius-md;
  254. font-size: $ios-font-size-sm;
  255. font-weight: $ios-font-weight-medium;
  256. cursor: pointer;
  257. transition: all 0.15s ease;
  258. }
  259. .section-btn:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
  260. .section-btn.completed { background: #e6f7e6; color: $ios-success; border-color: rgba(0,0,0,0.06); }
  261. .section-btn.active { background: #fff2f0; color: #ff4d4f; border-color: #ff4d4f; }
  262. .section-btn.pending { background: $ios-background; color: $ios-text-secondary; }
  263. .sections-content { margin-top: $ios-spacing-md; }
  264. .section-panel {
  265. background: $ios-background;
  266. border: 1px solid $ios-border;
  267. border-radius: $ios-radius-lg;
  268. padding: $ios-spacing-lg;
  269. }
  270. /* 交付执行:三列布局 */
  271. .delivery-grid {
  272. display: grid;
  273. grid-template-columns: repeat(3, 1fr);
  274. gap: $ios-spacing-lg;
  275. }
  276. @media (max-width: 1024px) {
  277. .delivery-grid { grid-template-columns: 1fr; }
  278. }
  279. .delivery-col {
  280. background: $ios-background-secondary;
  281. border: 1px solid $ios-border;
  282. border-radius: $ios-radius-md;
  283. padding: $ios-spacing-md;
  284. display: flex;
  285. flex-direction: column;
  286. gap: $ios-spacing-md;
  287. }
  288. .delivery-stage-header {
  289. display: flex;
  290. align-items: center;
  291. gap: $ios-spacing-sm;
  292. }
  293. .delivery-stage-header .dot {
  294. width: 10px; height: 10px; border-radius: 50%; background: $ios-border;
  295. }
  296. .delivery-stage-header .dot.completed { background: $ios-success; }
  297. .delivery-stage-header .dot.active { background: $ios-primary; }
  298. .delivery-stage-body { display: flex; flex-direction: column; gap: $ios-spacing-md; }
  299. /* 统一纵向内容容器 */
  300. .section-vertical { display: flex; flex-direction: column; gap: $ios-spacing-lg; }
  301. .vertical-stage-block {
  302. background: $ios-background-secondary;
  303. border: 1px solid $ios-border;
  304. border-radius: $ios-radius-md;
  305. padding: $ios-spacing-md;
  306. }
  307. .vertical-stage-header { display: flex; align-items: center; gap: $ios-spacing-sm; margin-bottom: $ios-spacing-sm; }
  308. .vertical-stage-header .dot { width: 10px; height: 10px; border-radius: 50%; background: $ios-border; }
  309. .vertical-stage-header .dot.completed { background: $ios-success; }
  310. .vertical-stage-header .dot.active { background: $ios-primary; }
  311. .vertical-stage-body { display: flex; flex-direction: column; gap: $ios-spacing-md; }
  312. /* 缩略图列表适配到新容器 */
  313. .section-panel .thumb-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: $ios-spacing-md; }
  314. .section-panel .thumb-item { background: white; border: 1px solid $ios-border; border-radius: $ios-radius-sm; overflow: hidden; display: flex; flex-direction: column; }
  315. .section-panel .thumb-item img { width: 100%; height: 120px; object-fit: cover; }
  316. .section-panel .thumb-meta { display: flex; justify-content: space-between; padding: $ios-spacing-xs $ios-spacing-sm; font-size: $ios-font-size-xs; color: $ios-text-secondary; }
  317. /* 上传区小幅适配 */
  318. .section-panel .upload-header {
  319. display: flex;
  320. align-items: center;
  321. justify-content: space-between;
  322. gap: $ios-spacing-sm;
  323. padding: $ios-spacing-sm $ios-spacing-md;
  324. background: $ios-background;
  325. border: 1px dashed $ios-border;
  326. border-radius: $ios-radius-sm;
  327. }
  328. /* 强调版:客户信息卡片更突出、边缘更清晰 */
  329. /* 顶部强调条、圆角与阴影调整,以及关键信息高亮 */
  330. .left-column .project-info-card.card {
  331. border: 1px solid $ios-border !important;
  332. border-radius: 12px !important; /* 圆角加大 */
  333. box-shadow: 0 10px 24px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.05) !important; /* 阴影减弱些 */
  334. position: relative;
  335. }
  336. .left-column .project-info-card.card::before {
  337. content: "";
  338. position: absolute;
  339. top: 0; left: 0; right: 0;
  340. height: 4px; /* 顶部强调条 */
  341. background: $ios-primary;
  342. border-top-left-radius: 12px;
  343. border-top-right-radius: 12px;
  344. }
  345. /* 关键信息轻微高亮:客户姓名 */
  346. .left-column .project-info-card .info-item.key-info span {
  347. font-weight: $ios-font-weight-semibold;
  348. color: $ios-text-primary;
  349. }
  350. .left-column .project-info-card .info-item.key-info label {
  351. color: $ios-primary;
  352. }
  353. /* 标签轻微高亮:提升标签显著性但不过度 */
  354. .left-column .project-info-card .tags .tag {
  355. background-color: rgba(24, 144, 255, 0.08); /* 以主色系的淡背景形成层级 */
  356. color: $ios-primary;
  357. }
  358. .left-column .project-info-card.card h2 {
  359. color: $ios-primary !important; /* 标题与强调条呼应 */
  360. }
  361. /* 客户信息卡片头部和同步状态 */
  362. .left-column .project-info-card .card-header {
  363. display: flex !important;
  364. justify-content: space-between !important;
  365. align-items: center !important;
  366. margin-bottom: 16px !important;
  367. padding-bottom: 12px !important;
  368. border-bottom: 1px solid #f0f0f0 !important;
  369. transition: all 0.3s ease !important;
  370. }
  371. .left-column .project-info-card .card-header:hover {
  372. background-color: rgba(0, 0, 0, 0.02) !important;
  373. }
  374. .left-column .project-info-card .card-header h2 {
  375. margin: 0 !important;
  376. font-size: 18px !important;
  377. font-weight: 600 !important;
  378. color: #262626 !important;
  379. }
  380. .left-column .project-info-card .card-header .header-actions {
  381. display: flex !important;
  382. align-items: center !important;
  383. gap: 12px !important;
  384. }
  385. .left-column .project-info-card .sync-status {
  386. display: flex !important;
  387. align-items: center !important;
  388. font-size: 12px !important;
  389. color: #8c8c8c !important;
  390. }
  391. .left-column .project-info-card .sync-status.syncing {
  392. color: #1890ff !important;
  393. }
  394. .left-column .project-info-card .sync-indicator {
  395. display: flex !important;
  396. align-items: center !important;
  397. gap: 4px !important;
  398. }
  399. .left-column .project-info-card .sync-spinner {
  400. width: 12px !important;
  401. height: 12px !important;
  402. border: 2px solid #f0f0f0 !important;
  403. border-top: 2px solid #1890ff !important;
  404. border-radius: 50% !important;
  405. animation: spin 1s linear infinite !important;
  406. }
  407. .left-column .project-info-card .sync-time {
  408. display: flex !important;
  409. align-items: center !important;
  410. gap: 4px !important;
  411. }
  412. .left-column .project-info-card .icon-sync {
  413. width: 12px !important;
  414. height: 12px !important;
  415. background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238c8c8c'%3E%3Cpath d='M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z'/%3E%3C/svg%3E") no-repeat center !important;
  416. background-size: contain !important;
  417. }
  418. /* 展开/收起图标样式 */
  419. .left-column .project-info-card .toggle-icon {
  420. display: flex !important;
  421. align-items: center !important;
  422. justify-content: center !important;
  423. width: 24px !important;
  424. height: 24px !important;
  425. border-radius: 50% !important;
  426. background-color: rgba(0, 0, 0, 0.04) !important;
  427. transition: all 0.3s ease !important;
  428. cursor: pointer !important;
  429. }
  430. .left-column .project-info-card .toggle-icon:hover {
  431. background-color: rgba(0, 0, 0, 0.08) !important;
  432. }
  433. .left-column .project-info-card .toggle-icon svg {
  434. transition: transform 0.3s ease !important;
  435. color: #666 !important;
  436. }
  437. .left-column .project-info-card .toggle-icon.expanded svg {
  438. transform: rotate(180deg) !important;
  439. }
  440. /* 折叠展开动画效果 */
  441. .left-column .project-info-card .info-grid {
  442. max-height: 1000px !important;
  443. overflow: hidden !important;
  444. transition: max-height 0.3s ease, opacity 0.3s ease !important;
  445. opacity: 1 !important;
  446. }
  447. .left-column .project-info-card .info-grid.collapsed {
  448. max-height: 0 !important;
  449. opacity: 0 !important;
  450. }
  451. .left-column .project-info-card .tags-container {
  452. max-height: 1000px !important;
  453. overflow: hidden !important;
  454. transition: max-height 0.3s ease, opacity 0.3s ease !important;
  455. opacity: 1 !important;
  456. }
  457. .left-column .project-info-card .tags-container.collapsed {
  458. max-height: 0 !important;
  459. opacity: 0 !important;
  460. margin-top: 0 !important;
  461. }
  462. @keyframes spin {
  463. 0% { transform: rotate(0deg); }
  464. 100% { transform: rotate(360deg); }
  465. }
  466. /* 方案展示相关样式 */
  467. .proposal-confirm-card {
  468. .analysis-progress {
  469. padding: 24px;
  470. background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  471. border-radius: 12px;
  472. margin-bottom: 20px;
  473. border: 1px solid #e1e8ff;
  474. .progress-header {
  475. display: flex;
  476. justify-content: space-between;
  477. align-items: center;
  478. margin-bottom: 16px;
  479. h4 {
  480. margin: 0;
  481. color: #2c3e50;
  482. font-size: 16px;
  483. font-weight: 600;
  484. }
  485. .progress-percentage {
  486. font-size: 18px;
  487. font-weight: 700;
  488. color: #3498db;
  489. }
  490. }
  491. .progress-bar {
  492. width: 100%;
  493. height: 8px;
  494. background: #e9ecef;
  495. border-radius: 4px;
  496. overflow: hidden;
  497. margin-bottom: 12px;
  498. .progress-fill {
  499. height: 100%;
  500. background: linear-gradient(90deg, #3498db 0%, #2ecc71 100%);
  501. border-radius: 4px;
  502. transition: width 0.3s ease;
  503. }
  504. }
  505. .progress-description {
  506. margin: 0;
  507. color: #6c757d;
  508. font-size: 14px;
  509. text-align: center;
  510. }
  511. }
  512. .proposal-display {
  513. .proposal-overview {
  514. background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  515. border-radius: 12px;
  516. padding: 24px;
  517. margin-bottom: 24px;
  518. border: 1px solid #e9ecef;
  519. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  520. .overview-header {
  521. display: flex;
  522. justify-content: space-between;
  523. align-items: flex-start;
  524. margin-bottom: 20px;
  525. h3 {
  526. margin: 0;
  527. color: #2c3e50;
  528. font-size: 20px;
  529. font-weight: 700;
  530. }
  531. .proposal-meta {
  532. display: flex;
  533. gap: 12px;
  534. align-items: center;
  535. .version {
  536. background: #e3f2fd;
  537. color: #1976d2;
  538. padding: 4px 12px;
  539. border-radius: 16px;
  540. font-size: 12px;
  541. font-weight: 600;
  542. }
  543. .feasibility-score {
  544. background: #e8f5e8;
  545. color: #2e7d32;
  546. padding: 4px 12px;
  547. border-radius: 16px;
  548. font-size: 12px;
  549. font-weight: 600;
  550. }
  551. }
  552. }
  553. .quick-summary {
  554. display: grid;
  555. grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  556. gap: 16px;
  557. .summary-item {
  558. display: flex;
  559. flex-direction: column;
  560. gap: 4px;
  561. .label {
  562. font-size: 12px;
  563. color: #6c757d;
  564. font-weight: 600;
  565. text-transform: uppercase;
  566. letter-spacing: 0.5px;
  567. }
  568. .value {
  569. font-size: 14px;
  570. color: #2c3e50;
  571. font-weight: 500;
  572. line-height: 1.4;
  573. }
  574. }
  575. }
  576. }
  577. .proposal-details {
  578. .detail-section {
  579. background: #fff;
  580. border-radius: 12px;
  581. padding: 24px;
  582. margin-bottom: 20px;
  583. border: 1px solid #e9ecef;
  584. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  585. .section-header {
  586. display: flex;
  587. justify-content: space-between;
  588. align-items: center;
  589. margin-bottom: 20px;
  590. padding-bottom: 12px;
  591. border-bottom: 2px solid #f8f9fa;
  592. h4 {
  593. margin: 0;
  594. color: #2c3e50;
  595. font-size: 18px;
  596. font-weight: 700;
  597. }
  598. .section-count,
  599. .style-name,
  600. .harmony-type,
  601. .total-area,
  602. .total-budget {
  603. background: #f8f9fa;
  604. color: #495057;
  605. padding: 6px 12px;
  606. border-radius: 20px;
  607. font-size: 13px;
  608. font-weight: 600;
  609. }
  610. }
  611. // 材质网格样式
  612. .materials-grid {
  613. display: grid;
  614. grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  615. gap: 16px;
  616. .material-card {
  617. background: #f8f9fa;
  618. border-radius: 8px;
  619. padding: 16px;
  620. border-left: 4px solid #dee2e6;
  621. transition: all 0.3s ease;
  622. &.primary {
  623. border-left-color: #28a745;
  624. background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
  625. }
  626. &.secondary {
  627. border-left-color: #ffc107;
  628. background: linear-gradient(135deg, #fffdf8 0%, #fff3cd 100%);
  629. }
  630. &:hover {
  631. transform: translateY(-2px);
  632. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  633. }
  634. .material-header {
  635. display: flex;
  636. justify-content: space-between;
  637. align-items: center;
  638. margin-bottom: 12px;
  639. h5 {
  640. margin: 0;
  641. color: #2c3e50;
  642. font-size: 16px;
  643. font-weight: 600;
  644. }
  645. .usage-percentage {
  646. background: #007bff;
  647. color: white;
  648. padding: 4px 8px;
  649. border-radius: 12px;
  650. font-size: 12px;
  651. font-weight: 700;
  652. }
  653. }
  654. .material-specs {
  655. margin-bottom: 12px;
  656. .spec-item {
  657. display: flex;
  658. justify-content: space-between;
  659. margin-bottom: 6px;
  660. .spec-label {
  661. color: #6c757d;
  662. font-size: 13px;
  663. font-weight: 500;
  664. }
  665. .spec-value {
  666. color: #2c3e50;
  667. font-size: 13px;
  668. font-weight: 600;
  669. }
  670. }
  671. }
  672. .material-properties {
  673. display: flex;
  674. gap: 8px;
  675. flex-wrap: wrap;
  676. .property-tag {
  677. background: #e9ecef;
  678. color: #495057;
  679. padding: 4px 8px;
  680. border-radius: 12px;
  681. font-size: 11px;
  682. font-weight: 500;
  683. }
  684. }
  685. }
  686. }
  687. // 设计风格样式
  688. .style-elements {
  689. margin-bottom: 20px;
  690. .style-element {
  691. background: #f8f9fa;
  692. border-radius: 8px;
  693. padding: 16px;
  694. margin-bottom: 12px;
  695. .element-header {
  696. display: flex;
  697. justify-content: space-between;
  698. align-items: center;
  699. margin-bottom: 8px;
  700. .element-name {
  701. font-weight: 600;
  702. color: #2c3e50;
  703. font-size: 14px;
  704. }
  705. .influence-score {
  706. background: #007bff;
  707. color: white;
  708. padding: 2px 8px;
  709. border-radius: 10px;
  710. font-size: 12px;
  711. font-weight: 600;
  712. }
  713. }
  714. .element-description {
  715. color: #6c757d;
  716. font-size: 13px;
  717. margin-bottom: 8px;
  718. line-height: 1.4;
  719. }
  720. .influence-bar {
  721. width: 100%;
  722. height: 4px;
  723. background: #e9ecef;
  724. border-radius: 2px;
  725. overflow: hidden;
  726. .influence-fill {
  727. height: 100%;
  728. background: linear-gradient(90deg, #007bff 0%, #28a745 100%);
  729. border-radius: 2px;
  730. transition: width 0.3s ease;
  731. }
  732. }
  733. }
  734. }
  735. .style-characteristics {
  736. display: grid;
  737. grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  738. gap: 12px;
  739. .characteristic-item {
  740. background: #f8f9fa;
  741. padding: 12px;
  742. border-radius: 8px;
  743. text-align: center;
  744. border: 2px solid transparent;
  745. &.high {
  746. border-color: #28a745;
  747. background: linear-gradient(135deg, #f8fff9 0%, #e8f5e8 100%);
  748. }
  749. &.medium {
  750. border-color: #ffc107;
  751. background: linear-gradient(135deg, #fffdf8 0%, #fff3cd 100%);
  752. }
  753. .char-feature {
  754. display: block;
  755. font-size: 12px;
  756. color: #6c757d;
  757. font-weight: 600;
  758. margin-bottom: 4px;
  759. }
  760. .char-value {
  761. display: block;
  762. font-size: 14px;
  763. color: #2c3e50;
  764. font-weight: 700;
  765. }
  766. }
  767. }
  768. // 色彩方案样式
  769. .color-palette {
  770. display: grid;
  771. grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  772. gap: 16px;
  773. margin-bottom: 20px;
  774. .color-item {
  775. background: #fff;
  776. border-radius: 8px;
  777. padding: 16px;
  778. border: 1px solid #e9ecef;
  779. transition: all 0.3s ease;
  780. &.dominant {
  781. border-color: #007bff;
  782. box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
  783. }
  784. &.accent {
  785. border-color: #28a745;
  786. box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1);
  787. }
  788. &:hover {
  789. transform: translateY(-2px);
  790. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  791. }
  792. .color-swatch {
  793. width: 100%;
  794. height: 60px;
  795. border-radius: 6px;
  796. margin-bottom: 12px;
  797. border: 1px solid rgba(0, 0, 0, 0.1);
  798. }
  799. .color-info {
  800. text-align: center;
  801. margin-bottom: 8px;
  802. .color-name {
  803. font-weight: 600;
  804. color: #2c3e50;
  805. font-size: 14px;
  806. margin-bottom: 4px;
  807. }
  808. .color-percentage {
  809. font-size: 18px;
  810. font-weight: 700;
  811. color: #007bff;
  812. margin-bottom: 4px;
  813. }
  814. .color-role {
  815. font-size: 11px;
  816. color: #6c757d;
  817. text-transform: uppercase;
  818. letter-spacing: 0.5px;
  819. }
  820. }
  821. .color-codes {
  822. display: flex;
  823. flex-direction: column;
  824. gap: 2px;
  825. .hex-code,
  826. .rgb-code {
  827. font-family: 'Courier New', monospace;
  828. font-size: 11px;
  829. color: #6c757d;
  830. text-align: center;
  831. }
  832. }
  833. }
  834. }
  835. .color-psychology {
  836. display: grid;
  837. grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  838. gap: 16px;
  839. .psychology-item {
  840. background: #f8f9fa;
  841. padding: 12px;
  842. border-radius: 8px;
  843. display: flex;
  844. flex-direction: column;
  845. gap: 4px;
  846. .label {
  847. font-size: 12px;
  848. color: #6c757d;
  849. font-weight: 600;
  850. }
  851. .value {
  852. font-size: 14px;
  853. color: #2c3e50;
  854. font-weight: 600;
  855. }
  856. }
  857. }
  858. // 空间布局样式
  859. .space-dimensions {
  860. display: grid;
  861. grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  862. gap: 12px;
  863. margin-bottom: 20px;
  864. .dimension-item {
  865. background: #f8f9fa;
  866. padding: 12px;
  867. border-radius: 8px;
  868. text-align: center;
  869. .dim-label {
  870. display: block;
  871. font-size: 12px;
  872. color: #6c757d;
  873. font-weight: 600;
  874. margin-bottom: 4px;
  875. }
  876. .dim-value {
  877. display: block;
  878. font-size: 16px;
  879. color: #2c3e50;
  880. font-weight: 700;
  881. }
  882. }
  883. }
  884. .functional-zones {
  885. display: grid;
  886. grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  887. gap: 16px;
  888. .zone-card {
  889. background: #f8f9fa;
  890. border-radius: 8px;
  891. padding: 16px;
  892. border-left: 4px solid #007bff;
  893. .zone-header {
  894. display: flex;
  895. justify-content: space-between;
  896. align-items: center;
  897. margin-bottom: 12px;
  898. h5 {
  899. margin: 0;
  900. color: #2c3e50;
  901. font-size: 16px;
  902. font-weight: 600;
  903. }
  904. .zone-stats {
  905. display: flex;
  906. gap: 8px;
  907. .zone-area {
  908. background: #007bff;
  909. color: white;
  910. padding: 4px 8px;
  911. border-radius: 12px;
  912. font-size: 12px;
  913. font-weight: 600;
  914. }
  915. .zone-percentage {
  916. background: #28a745;
  917. color: white;
  918. padding: 4px 8px;
  919. border-radius: 12px;
  920. font-size: 12px;
  921. font-weight: 600;
  922. }
  923. }
  924. }
  925. .zone-requirements,
  926. .zone-furniture {
  927. margin-bottom: 12px;
  928. .requirements-label,
  929. .furniture-label {
  930. font-size: 12px;
  931. color: #6c757d;
  932. font-weight: 600;
  933. margin-bottom: 6px;
  934. }
  935. .requirements-tags {
  936. display: flex;
  937. gap: 6px;
  938. flex-wrap: wrap;
  939. .requirement-tag {
  940. background: #e9ecef;
  941. color: #495057;
  942. padding: 4px 8px;
  943. border-radius: 12px;
  944. font-size: 11px;
  945. font-weight: 500;
  946. }
  947. }
  948. .furniture-list {
  949. color: #2c3e50;
  950. font-size: 13px;
  951. line-height: 1.4;
  952. }
  953. }
  954. }
  955. }
  956. // 预算与时间线样式
  957. .budget-breakdown {
  958. margin-bottom: 20px;
  959. .budget-item {
  960. background: #f8f9fa;
  961. border-radius: 8px;
  962. padding: 16px;
  963. margin-bottom: 12px;
  964. display: grid;
  965. grid-template-columns: 1fr auto auto;
  966. gap: 16px;
  967. align-items: center;
  968. .budget-category {
  969. font-weight: 600;
  970. color: #2c3e50;
  971. font-size: 14px;
  972. }
  973. .budget-amount {
  974. font-weight: 700;
  975. color: #28a745;
  976. font-size: 16px;
  977. }
  978. .budget-percentage {
  979. background: #007bff;
  980. color: white;
  981. padding: 4px 8px;
  982. border-radius: 12px;
  983. font-size: 12px;
  984. font-weight: 600;
  985. }
  986. .budget-bar {
  987. grid-column: 1 / -1;
  988. width: 100%;
  989. height: 6px;
  990. background: #e9ecef;
  991. border-radius: 3px;
  992. overflow: hidden;
  993. margin-top: 8px;
  994. .budget-fill {
  995. height: 100%;
  996. background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  997. border-radius: 3px;
  998. transition: width 0.3s ease;
  999. }
  1000. }
  1001. }
  1002. }
  1003. .timeline {
  1004. display: flex;
  1005. gap: 12px;
  1006. flex-wrap: wrap;
  1007. .timeline-item {
  1008. background: #f8f9fa;
  1009. padding: 12px 16px;
  1010. border-radius: 8px;
  1011. text-align: center;
  1012. flex: 1;
  1013. min-width: 120px;
  1014. .phase-name {
  1015. font-size: 13px;
  1016. color: #2c3e50;
  1017. font-weight: 600;
  1018. margin-bottom: 4px;
  1019. }
  1020. .phase-duration {
  1021. font-size: 14px;
  1022. color: #007bff;
  1023. font-weight: 700;
  1024. }
  1025. }
  1026. }
  1027. }
  1028. }
  1029. .proposal-actions {
  1030. display: flex;
  1031. gap: 12px;
  1032. justify-content: center;
  1033. padding: 20px 0;
  1034. .confirm-btn,
  1035. .adjust-btn {
  1036. padding: 12px 24px;
  1037. border-radius: 8px;
  1038. font-weight: 600;
  1039. font-size: 14px;
  1040. border: none;
  1041. cursor: pointer;
  1042. transition: all 0.3s ease;
  1043. &.primary {
  1044. background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  1045. color: white;
  1046. &:hover {
  1047. transform: translateY(-2px);
  1048. box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  1049. }
  1050. }
  1051. &.secondary {
  1052. background: #f8f9fa;
  1053. color: #6c757d;
  1054. border: 1px solid #dee2e6;
  1055. &:hover {
  1056. background: #e9ecef;
  1057. color: #495057;
  1058. }
  1059. }
  1060. }
  1061. }
  1062. }
  1063. }
  1064. /* 活动阶段卡片:浅红底色突显(更显眼版) */
  1065. .delivery-col.active,
  1066. .vertical-stage-block.active {
  1067. background: #ffeaea; /* 比 #fff2f0 更显眼 */
  1068. border-color: #ffccc7; /* 维持柔和的红系边框 */
  1069. box-shadow: 0 8px 22px rgba(255, 85, 62, 0.12), 0 2px 8px rgba(255, 85, 62, 0.10);
  1070. position: relative; /* 提供定位上下文给badge */
  1071. padding-right: $ios-spacing-lg; /* 让出badge空间,避免内容压贴 */
  1072. }
  1073. /* 活动阶段标题与圆点颜色呼应 */
  1074. .delivery-col.active .delivery-stage-header h3,
  1075. .vertical-stage-block.active .vertical-stage-header h3 { color: #ff4d4f; }
  1076. .delivery-col.active .dot,
  1077. .vertical-stage-block.active .dot { background: #ff4d4f; }
  1078. /* 右上角状态badge:进行中 */
  1079. .delivery-col.active::after,
  1080. .vertical-stage-block.active::after {
  1081. content: '进行中';
  1082. position: absolute;
  1083. top: 8px;
  1084. right: 8px;
  1085. padding: 2px 8px;
  1086. background: #ff4d4f;
  1087. color: #fff;
  1088. border-radius: 999px;
  1089. font-size: 12px;
  1090. line-height: 1.4;
  1091. font-weight: 600;
  1092. box-shadow: 0 4px 10px rgba(255, 77, 79, 0.25);
  1093. }
  1094. /* 阶段卡片横向排列(按板块的阶段数量自适应列数) */
  1095. .stage-progress-container {
  1096. display: grid !important;
  1097. gap: 12px !important;
  1098. align-items: stretch !important; // 保证同一行的卡片等高
  1099. margin-top: 0 !important; // 删除标题后,移除上边距以优化空间利用
  1100. /* 针对交付执行阶段的四个卡片进行特殊处理 */
  1101. &:has(.vertical-stage-block:nth-child(4):last-child) {
  1102. /* 当有且仅有4个卡片时,强制并排显示 */
  1103. grid-template-columns: repeat(4, 1fr) !important;
  1104. /* 笔记本端适配(1366px及以上) */
  1105. @media (min-width: 1366px) {
  1106. grid-template-columns: repeat(4, 1fr) !important;
  1107. gap: 16px !important;
  1108. }
  1109. /* 24寸PC端适配(1920px及以上) */
  1110. @media (min-width: 1920px) {
  1111. grid-template-columns: repeat(4, 1fr) !important;
  1112. gap: 20px !important;
  1113. }
  1114. /* 较小屏幕的降级处理(小于1366px) */
  1115. @media (max-width: 1365px) {
  1116. grid-template-columns: repeat(2, 1fr) !important;
  1117. gap: 12px !important;
  1118. }
  1119. }
  1120. /* 其他情况保持原有的自适应布局 */
  1121. &:not(:has(.vertical-stage-block:nth-child(4):last-child)) {
  1122. grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  1123. }
  1124. }
  1125. .vertical-stage-block {
  1126. display: flex !important;
  1127. flex-direction: column !important;
  1128. height: 100% !important;
  1129. padding: 12px !important;
  1130. background: white !important;
  1131. border-radius: 8px !important;
  1132. border: 1px solid #e9ecef !important;
  1133. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08) !important;
  1134. /* 确保卡片内容在并排显示时保持可读性 */
  1135. min-width: 0 !important; /* 防止内容溢出 */
  1136. /* 针对四个卡片并排时的特殊样式 */
  1137. .stage-progress-container:has(.vertical-stage-block:nth-child(4):last-child) & {
  1138. /* 笔记本端和PC端的内容优化 */
  1139. @media (min-width: 1366px) {
  1140. padding: 16px !important;
  1141. min-height: 300px !important; /* 确保卡片有足够高度 */
  1142. }
  1143. /* 24寸PC端的内容优化 */
  1144. @media (min-width: 1920px) {
  1145. padding: 20px !important;
  1146. min-height: 320px !important;
  1147. }
  1148. /* 较小屏幕时保持紧凑布局 */
  1149. @media (max-width: 1365px) {
  1150. padding: 12px !important;
  1151. min-height: 280px !important;
  1152. }
  1153. }
  1154. }
  1155. .vertical-stage-header {
  1156. display: flex !important;
  1157. align-items: center !important;
  1158. gap: 8px !important;
  1159. margin-bottom: 8px !important;
  1160. padding-bottom: 6px !important;
  1161. border-bottom: 1px solid #f1f3f4 !important;
  1162. }
  1163. .vertical-stage-header h3 {
  1164. font-size: 13px !important;
  1165. font-weight: 600 !important;
  1166. color: #495057 !important;
  1167. margin: 0 !important;
  1168. }
  1169. .vertical-stage-header .dot {
  1170. width: 8px !important;
  1171. height: 8px !important;
  1172. border-radius: 50% !important;
  1173. background: #dee2e6 !important;
  1174. flex-shrink: 0 !important;
  1175. }
  1176. .vertical-stage-header .dot.completed {
  1177. background: #28a745 !important;
  1178. }
  1179. .vertical-stage-header .dot.active {
  1180. background: #ff4d4f !important;
  1181. }
  1182. .vertical-stage-body {
  1183. display: flex !important;
  1184. flex-direction: column !important;
  1185. gap: 8px !important;
  1186. flex: 1 1 auto !important;
  1187. }
  1188. /* 活动阶段卡片优化 */
  1189. .vertical-stage-block.active {
  1190. background: #fff2f0 !important;
  1191. border-color: #ffccc7 !important;
  1192. box-shadow: 0 2px 8px rgba(255, 77, 79, 0.2) !important;
  1193. }
  1194. .vertical-stage-block.active .vertical-stage-header h3 {
  1195. color: #ff4d4f !important;
  1196. }
  1197. .vertical-stage-block.active .dot {
  1198. background: #ff4d4f !important;
  1199. }
  1200. /* 订单创建阶段完成后的绿色高亮 */
  1201. .vertical-stage-block.completed {
  1202. background: #f6ffed !important;
  1203. border-color: #b7eb8f !important;
  1204. box-shadow: 0 2px 8px rgba(183, 235, 143, 0.3) !important;
  1205. }
  1206. .vertical-stage-block.completed .vertical-stage-header h3 {
  1207. color: #389e0d !important;
  1208. font-weight: 600 !important;
  1209. }
  1210. .vertical-stage-block.completed .dot {
  1211. background: #52c41a !important;
  1212. }
  1213. /* 需求沟通阶段激活时的高亮 */
  1214. .vertical-stage-block[id="stage-requirements-talk"].active {
  1215. background: linear-gradient(135deg, #fff2f0 0%, #ffe6e6 100%) !important;
  1216. border-color: #ff7875 !important;
  1217. box-shadow: 0 4px 16px rgba(255, 77, 79, 0.2) !important;
  1218. transform: translateY(-2px) !important;
  1219. transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  1220. }
  1221. .vertical-stage-block[id="stage-requirements-talk"].active .vertical-stage-header h3 {
  1222. color: #ff4d4f !important;
  1223. font-weight: 700 !important;
  1224. }
  1225. .vertical-stage-block[id="stage-requirements-talk"].active .dot {
  1226. background: #ff4d4f !important;
  1227. box-shadow: 0 0 0 4px rgba(255, 77, 79, 0.2) !important;
  1228. }
  1229. /* 方案确认卡片样式 - 与客户信息卡片保持一致 */
  1230. .left-column .proposal-confirm-card {
  1231. background-color: white !important;
  1232. border-radius: 8px !important;
  1233. padding: 16px !important;
  1234. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  1235. border: 1px solid #eaeaea !important;
  1236. margin-top: 16px !important;
  1237. }
  1238. .left-column .proposal-confirm-card .card-header {
  1239. display: flex !important;
  1240. justify-content: space-between !important;
  1241. align-items: center !important;
  1242. margin-bottom: 16px !important;
  1243. padding-bottom: 12px !important;
  1244. border-bottom: 1px solid #f0f0f0 !important;
  1245. }
  1246. .left-column .proposal-confirm-card .card-header h2 {
  1247. margin: 0 !important;
  1248. font-size: 18px !important;
  1249. font-weight: 600 !important;
  1250. color: #262626 !important;
  1251. }
  1252. .left-column .proposal-confirm-card .sync-status {
  1253. display: flex !important;
  1254. align-items: center !important;
  1255. font-size: 12px !important;
  1256. color: #8c8c8c !important;
  1257. }
  1258. .left-column .proposal-confirm-card .info-grid {
  1259. display: grid !important;
  1260. grid-template-columns: 1fr 1fr !important;
  1261. gap: 8px !important;
  1262. margin-bottom: 16px !important;
  1263. }
  1264. .left-column .proposal-confirm-card .info-item {
  1265. display: flex !important;
  1266. flex-direction: column !important;
  1267. padding: 8px !important;
  1268. background: #f8f9fa !important;
  1269. border-radius: 6px !important;
  1270. border: 1px solid #e9ecef !important;
  1271. font-size: 12px !important;
  1272. }
  1273. .left-column .proposal-confirm-card .info-item label {
  1274. font-weight: 500 !important;
  1275. color: #6c757d !important;
  1276. margin-bottom: 4px !important;
  1277. font-size: 11px !important;
  1278. }
  1279. .left-column .proposal-confirm-card .info-item span {
  1280. color: #212529 !important;
  1281. font-weight: 600 !important;
  1282. font-size: 12px !important;
  1283. }
  1284. .left-column .proposal-confirm-card .color-preview {
  1285. width: 16px !important;
  1286. height: 16px !important;
  1287. border-radius: 4px !important;
  1288. border: 1px solid #ddd !important;
  1289. margin-top: 4px !important;
  1290. }
  1291. .left-column .proposal-confirm-card .proposal-actions {
  1292. margin-top: 16px !important;
  1293. padding-top: 12px !important;
  1294. border-top: 1px solid #f0f0f0 !important;
  1295. text-align: center !important;
  1296. }
  1297. .left-column .proposal-confirm-card .confirm-btn {
  1298. background: #1890ff !important;
  1299. color: white !important;
  1300. border: none !important;
  1301. padding: 8px 24px !important;
  1302. border-radius: 6px !important;
  1303. font-size: 14px !important;
  1304. font-weight: 500 !important;
  1305. cursor: pointer !important;
  1306. transition: background-color 0.3s ease !important;
  1307. }
  1308. .left-column .proposal-confirm-card .confirm-btn:hover {
  1309. background: #40a9ff !important;
  1310. }
  1311. .left-column .proposal-confirm-card .waiting-state {
  1312. text-align: center !important;
  1313. padding: 24px 16px !important;
  1314. color: #8c8c8c !important;
  1315. }
  1316. .left-column .proposal-confirm-card .waiting-content h5 {
  1317. margin: 0 0 8px 0 !important;
  1318. font-size: 16px !important;
  1319. font-weight: 600 !important;
  1320. color: #595959 !important;
  1321. }
  1322. .left-column .proposal-confirm-card .waiting-content p {
  1323. margin: 0 0 12px 0 !important;
  1324. font-size: 14px !important;
  1325. line-height: 1.4 !important;
  1326. }
  1327. .left-column .proposal-confirm-card .progress-info {
  1328. font-size: 12px !important;
  1329. color: #1890ff !important;
  1330. font-weight: 500 !important;
  1331. }