global.scss 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013
  1. @use 'sass:math';
  2. @function px2rpx($px) {
  3. @return $px * 2rpx;
  4. }
  5. :root {
  6. --color-red-400: oklch(70.4% .191 22.216);
  7. --color-orange-600: oklch(64.6% .222 41.116);
  8. --color-amber-50: oklch(98.7% .022 95.277);
  9. --color-amber-400: oklch(82.8% .189 84.429);
  10. --color-yellow-100: oklch(97.3% .071 103.193);
  11. --color-yellow-400: oklch(85.2% .199 91.936);
  12. --color-yellow-500: oklch(79.5% .184 86.047);
  13. --color-green-300: oklch(87.1% .15 154.449);
  14. --color-green-400: oklch(79.2% .209 151.711);
  15. --color-sky-100: oklch(95.1% .026 236.824);
  16. --color-sky-400: oklch(74.6% .16 232.661);
  17. --color-blue-500: oklch(62.3% .214 259.815);
  18. --color-blue-600: oklch(54.6% .245 262.881);
  19. --color-indigo-50: oklch(96.2% .018 272.314);
  20. --color-indigo-100: oklch(93% .034 272.788);
  21. --color-indigo-400: oklch(67.3% .182 276.935);
  22. --color-indigo-600: oklch(51.1% .262 276.966);
  23. --color-violet-400: oklch(70.2% .183 293.541);
  24. --color-purple-300: oklch(82.7% .119 306.383);
  25. --color-purple-500: oklch(62.7% .265 303.9);
  26. --color-purple-600: oklch(55.8% .288 302.321);
  27. --color-fuchsia-400: oklch(74% .238 322.16);
  28. --color-fuchsia-600: oklch(59.1% .293 322.896);
  29. --color-pink-100: oklch(94.8% .028 342.258);
  30. --color-pink-300: oklch(82.3% .12 346.018);
  31. --color-pink-500: oklch(0.59 0.22 25.62);
  32. --color-pink-600: oklch(0.67 0.21 36.35);
  33. --color-rose-500: oklch(64.5% .246 16.439);
  34. --color-slate-50: oklch(98.4% .003 247.858);
  35. --color-slate-100: oklch(96.8% .007 247.896);
  36. --color-slate-200: oklch(92.9% .013 255.508);
  37. --color-slate-300: oklch(86.9% .022 252.894);
  38. --color-slate-400: oklch(70.4% .04 256.788);
  39. --color-slate-500: oklch(55.4% .046 257.417);
  40. --color-slate-600: oklch(44.6% .043 257.281);
  41. --color-slate-700: oklch(37.2% .044 257.287);
  42. --color-slate-800: oklch(27.9% .041 260.031);
  43. --color-slate-900: oklch(20.8% .042 265.755);
  44. --color-gray-200: oklch(92.8% .006 264.531);
  45. --color-zinc-100: oklch(96.7% .001 286.375);
  46. --color-black: #000;
  47. --color-gray: #F2F2F2;
  48. --color-gray-second: #6B7188;
  49. --color-white: #fff;
  50. --font-size-10: px2rpx(10);
  51. --font-size-12: px2rpx(12);
  52. --font-size-13: px2rpx(13);
  53. --font-size-14: px2rpx(14);
  54. --font-size-15: px2rpx(15);
  55. --font-size-16: px2rpx(16);
  56. --font-size-18: px2rpx(18);
  57. --font-size-20: px2rpx(20);
  58. --font-size-22: px2rpx(22);
  59. --font-size-24: px2rpx(24);
  60. --font-size-26: px2rpx(26);
  61. --font-size-28: px2rpx(28);
  62. --font-size-32: px2rpx(32);
  63. --font-size-36: px2rpx(36);
  64. --font-size-40: px2rpx(40);
  65. --el-component-size: px2rpx(40);
  66. --ease-in: cubic-bezier(.4, 0, 1, 1);
  67. --ease-out: cubic-bezier(0, 0, .2, 1);
  68. --ease-in-out: cubic-bezier(.4, 0, .2, 1);
  69. --animate-spin: spin 1s linear infinite;
  70. --animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
  71. --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
  72. --blur-sm: 8px;
  73. --default-transition-duration: .15s;
  74. --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  75. --default-font-family: var(--font-sans);
  76. --default-mono-font-family: var(--font-mono);
  77. --font-inter: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  78. --color-navy-50: #e7e9ef;
  79. --color-navy-100: #fff;
  80. --color-navy-200: #a3adc2;
  81. --color-navy-300: #697a9b;
  82. --color-navy-400: #5c6b8a;
  83. --color-navy-450: #465675;
  84. --color-navy-500: #3a3c43;
  85. --color-navy-600: #313e59;
  86. --color-navy-700: #242726;
  87. --color-navy-750: #222e45;
  88. --color-navy-800: #202b40;
  89. --color-navy-900: #141a18;
  90. --color-slate-150: #e9eef5;
  91. --color-primary: #4f46e5;
  92. --color-primary-focus: #4338ca;
  93. --color-secondary-light: #ff57d8;
  94. --color-secondary: #141a18;
  95. --color-secondary-focus: #242726;
  96. --color-accent-light: #242726;
  97. --color-accent: #5f5af6;
  98. --color-accent-focus: #4d47f5;
  99. --color-info: #0ea5e9;
  100. --color-info-focus: #0284c7;
  101. --color-success: #1ac23a;
  102. --color-success-focus: #17a732;
  103. --color-warning: #ff9800;
  104. --color-warning-focus: #e68200;
  105. --color-error: #e32326;
  106. --color-error-focus: #f03000;
  107. --color-bg-main: #f8f9f9;
  108. --text-tiny: .625rem;
  109. --text-tiny--line-height: .8125rem;
  110. --text-tiny-plus: .6875rem;
  111. --text-tiny-plus--line-height: .875rem;
  112. --text-xs-plus: .8125rem;
  113. --text-xs-plus--line-height: 1.125rem;
  114. --text-sm-plus: .9375rem;
  115. --text-sm-plus--line-height: 1.375rem;
  116. --animate-shimmer: shimmer 2s linear infinite;
  117. // 状态背景色
  118. --status-warning-bg: var(--color-amber-50);
  119. --status-success-bg: var(--color-green-300);
  120. --status-processing-bg: var(--color-sky-100);
  121. --status-danger-bg: var(--color-pink-100);
  122. --status-expired-bg: var(--color-slate-200);
  123. --status-cancelled-bg: var(--color-slate-100);
  124. // 状态文字颜色
  125. --status-warning-text: var(--color-orange-600);
  126. --status-success-text: var(--color-green-400);
  127. --status-processing-text: var(--color-blue-600);
  128. --status-danger-text: var(--color-rose-500);
  129. --status-expired-text: var(--color-slate-600);
  130. --status-cancelled-text: var(--color-slate-500);
  131. // 状态边框颜色
  132. --status-warning-border: var(--color-amber-400);
  133. --status-success-border: var(--color-green-400);
  134. --status-processing-border: var(--color-sky-400);
  135. --status-danger-border: var(--color-pink-300);
  136. --status-expired-border: var(--color-slate-400);
  137. --status-cancelled-border: var(--color-slate-300);
  138. --bs-secondary: #ef4223;
  139. --btn-color: #f5f5f5;
  140. --btn-border-color: #97A1C0;
  141. --table-th-color: #f3f3f3;
  142. // 新的
  143. --bs-blue: #0d6efd;
  144. --bs-indigo: #6610f2;
  145. --bs-purple: #6f42c1;
  146. --bs-pink: #d63384;
  147. --bs-red: #dc3545;
  148. --bs-orange: #fd7e14;
  149. --bs-yellow: #ffc107;
  150. --bs-green: #198754;
  151. --bs-teal: #20c997;
  152. --bs-cyan: #0dcaf0;
  153. --bs-black: #000;
  154. --bs-white: #ffffff;
  155. --bs-gray: #6c757d;
  156. --bs-gray-dark: #343a40;
  157. --bs-gray-100: #f8f9fa;
  158. --bs-gray-200: #e9ecef;
  159. --bs-gray-300: #dee2e6;
  160. --bs-gray-400: #ced4da;
  161. --bs-gray-500: #adb5bd;
  162. --bs-gray-600: #6c757d;
  163. --bs-gray-700: #495057;
  164. --bs-gray-800: #343a40;
  165. --bs-gray-900: #212529;
  166. --bs-secondary: #e61f1e;
  167. --bs-success: #22B07E;
  168. --bs-info: #02B4FA;
  169. --bs-warning: #FDBB1F;
  170. --bs-danger: #FF401C;
  171. --bs-light: #ECF2FD;
  172. --bs-dark: #0C243C;
  173. --bs-white: #ffffff;
  174. --bs-gray: #97A1C0;
  175. --bs-secondary-rgb: 49, 106, 255;
  176. --bs-secondary-rgb: 255, 129, 16;
  177. --bs-success-rgb: 34, 176, 126;
  178. --bs-info-rgb: 2, 180, 250;
  179. --bs-warning-rgb: 253, 187, 31;
  180. --bs-danger-rgb: 255, 64, 28;
  181. --bs-light-rgb: 236, 242, 253;
  182. --bs-dark-rgb: 12, 36, 60;
  183. --bs-white-rgb: 255, 255, 255;
  184. --bs-gray-rgb: 151, 161, 192;
  185. --bs-secondary-text-emphasis: #142a66;
  186. --bs-secondary-text-emphasis: #663406;
  187. --bs-success-text-emphasis: #0e4632;
  188. --bs-info-text-emphasis: #014864;
  189. --bs-warning-text-emphasis: #654b0c;
  190. --bs-danger-text-emphasis: #661a0b;
  191. --bs-light-text-emphasis: #495057;
  192. --bs-dark-text-emphasis: #495057;
  193. --bs-secondary-bg-subtle: #eaf0ff;
  194. --bs-success-bg-subtle: #e9f7f2;
  195. --bs-info-bg-subtle: #e6f8ff;
  196. --bs-warning-bg-subtle: #fff8e9;
  197. --bs-danger-bg-subtle: rgba(108, 133, 149, 0.12);
  198. --bs-light-bg-subtle: #fcfcfd;
  199. --bs-dark-bg-subtle: #ced4da;
  200. --bs-secondary-border-subtle: #ccdaff;
  201. --bs-secondary-border-subtle: #ffe0c3;
  202. --bs-success-border-subtle: #c8ebdf;
  203. --bs-info-border-subtle: #c0ecfe;
  204. --bs-warning-border-subtle: #ffeec7;
  205. --bs-danger-border-subtle: #ffcfc6;
  206. --bs-light-border-subtle: #e9ecef;
  207. --bs-dark-border-subtle: #adb5bd;
  208. --bs-white-rgb: 255, 255, 255;
  209. --bs-black-rgb: 0, 0, 0;
  210. --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  211. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  212. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  213. --bs-body-font-family: "Plus Jakarta Sans", sans-serif;
  214. --bs-body-font-size: 0.875rem;
  215. --bs-body-font-weight: 500;
  216. --bs-body-line-height: 1.6;
  217. --bs-body-color: #97A1C0;
  218. --bs-body-color-rgb: 151, 161, 192;
  219. --bs-body-bg: #fff;
  220. --bs-body-bg-rgb: 255, 255, 255;
  221. --bs-emphasis-color: #000;
  222. --bs-emphasis-color-rgb: 0, 0, 0;
  223. --bs-secondary-color: rgba(151, 161, 192, 0.75);
  224. --bs-secondary-color-rgb: 151, 161, 192;
  225. --bs-secondary-bg: #f9f9f9;
  226. --bs-secondary-bg-rgb: 249, 249, 249;
  227. --bs-tertiary-color: rgba(151, 161, 192, 0.5);
  228. --bs-tertiary-color-rgb: 151, 161, 192;
  229. --bs-tertiary-bg: #f8f9fa;
  230. --bs-tertiary-bg-rgb: 248, 249, 250;
  231. --bs-heading-color: #0C243C;
  232. --bs-link-color: #316AFF;
  233. --bs-link-color-rgb: 49, 106, 255;
  234. --bs-link-decoration: none;
  235. --bs-link-hover-color: #2755cc;
  236. --bs-link-hover-color-rgb: 39, 85, 204;
  237. --bs-code-color: #d63384;
  238. --bs-highlight-color: #97A1C0;
  239. --bs-highlight-bg: #fff3cd;
  240. --bs-border-width: 1px;
  241. --bs-border-style: solid;
  242. --bs-border-color: #E8EBF1;
  243. --bs-border-color-translucent: rgba(0, 0, 0, 0.1);
  244. --bs-border-radius: 0.375rem;
  245. --bs-border-radius-sm: 0.25rem;
  246. --bs-border-radius-lg: 0.625rem;
  247. --bs-border-radius-xl: 1rem;
  248. --bs-border-radius-xxl: 2rem;
  249. --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  250. --bs-border-radius-pill: 50rem;
  251. --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  252. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  253. --bs-box-shadow-lg: 0 0.26rem 1.126rem 0 rgba(45, 42, 60, 0.15);
  254. --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  255. --bs-focus-ring-width: 0.1rem;
  256. --bs-focus-ring-opacity: 0.25;
  257. --bs-focus-ring-color: rgba(49, 106, 255, 0.25);
  258. --bs-form-valid-color: #22B07E;
  259. --bs-form-valid-border-color: #22B07E;
  260. --bs-form-invalid-color: #FF401C;
  261. --bs-form-invalid-border-color: #FF401C;
  262. --bs-link-color: #316AFF;
  263. --bs-link-color-rgb: 49, 106, 255;
  264. --bs-link-hover-color: #2a5ad9;
  265. --bs-link-hover-color-rgb: 42, 90, 217;
  266. --bs-secondary: #e61f1e;
  267. --bs-light: #ECF2FD;
  268. --bs-primary-rgb: 253, 106, 3;
  269. --bs-secondary-rgb: #ef4223;
  270. --bs-light-rgb: 236, 242, 253;
  271. --bs-secondary-text-emphasis: #142a66;
  272. --bs-light-text-emphasis: #5e6165;
  273. --bs-secondary-bg-subtle: #eaf0ff;
  274. --bs-light-bg-subtle: #f9fbfe;
  275. --bs-secondary-border-subtle: #d6e1ff;
  276. --bs-secondary-border-subtle: #fff2e7;
  277. --bs-light-border-subtle: #f9fbfe;
  278. --bs-btn-primary-hover: #2c5fe6;
  279. --bs-btn-primary-border-hover: #2b5de0;
  280. --bs-btn-primary-active: #2b5de0;
  281. --bs-btn-secondary-hover: #d93618;
  282. --bs-btn-secondary-border-hover: #d93618;
  283. --bs-btn-secondary-active: #d93618;
  284. --cwg-placeholder-color: #909193;
  285. --cwg-gray-color: #495057;
  286. }
  287. .dark {
  288. --color-red-400: oklch(70.4% .191 22.216);
  289. --color-orange-600: oklch(64.6% .222 41.116);
  290. --color-amber-50: oklch(98.7% .022 95.277);
  291. --color-amber-400: oklch(82.8% .189 84.429);
  292. --color-yellow-100: oklch(97.3% .071 103.193);
  293. --color-yellow-400: oklch(85.2% .199 91.936);
  294. --color-yellow-500: oklch(79.5% .184 86.047);
  295. --color-green-300: oklch(87.1% .15 154.449);
  296. --color-green-400: oklch(79.2% .209 151.711);
  297. --color-sky-100: oklch(95.1% .026 236.824);
  298. --color-sky-400: oklch(74.6% .16 232.661);
  299. --color-blue-500: oklch(62.3% .214 259.815);
  300. --color-blue-600: oklch(54.6% .245 262.881);
  301. --color-indigo-50: oklch(96.2% .018 272.314);
  302. --color-indigo-100: oklch(93% .034 272.788);
  303. --color-indigo-400: oklch(67.3% .182 276.935);
  304. --color-indigo-600: oklch(51.1% .262 276.966);
  305. --color-violet-400: oklch(70.2% .183 293.541);
  306. --color-purple-300: oklch(82.7% .119 306.383);
  307. --color-purple-500: oklch(62.7% .265 303.9);
  308. --color-purple-600: oklch(55.8% .288 302.321);
  309. --color-fuchsia-400: oklch(74% .238 322.16);
  310. --color-fuchsia-600: oklch(59.1% .293 322.896);
  311. --color-pink-100: oklch(94.8% .028 342.258);
  312. --color-pink-300: oklch(82.3% .12 346.018);
  313. --color-pink-500: oklch(0.59 0.22 25.62);
  314. --color-pink-600: oklch(0.67 0.21 36.35);
  315. --color-rose-500: oklch(64.5% .246 16.439);
  316. --color-slate-50: oklch(98.4% .003 247.858);
  317. --color-slate-100: oklch(96.8% .007 247.896);
  318. --color-slate-200: oklch(92.9% .013 255.508);
  319. --color-slate-300: oklch(86.9% .022 252.894);
  320. --color-slate-400: oklch(70.4% .04 256.788);
  321. --color-slate-500: oklch(55.4% .046 257.417);
  322. --color-slate-600: oklch(44.6% .043 257.281);
  323. --color-slate-700: oklch(37.2% .044 257.287);
  324. --color-slate-800: oklch(27.9% .041 260.031);
  325. --color-slate-900: oklch(20.8% .042 265.755);
  326. --color-gray-200: oklch(92.8% .006 264.531);
  327. --color-zinc-100: oklch(96.7% .001 286.375);
  328. --color-black: #000;
  329. --color-white: #fff;
  330. --color-navy-900: #11224d;
  331. --font-size-10: px2rpx(10);
  332. --font-size-12: px2rpx(12);
  333. --font-size-13: px2rpx(13);
  334. --font-size-14: px2rpx(14);
  335. --font-size-15: px2rpx(15);
  336. --font-size-16: px2rpx(16);
  337. --font-size-18: px2rpx(18);
  338. --font-size-20: px2rpx(20);
  339. --font-size-22: px2rpx(22);
  340. --font-size-24: px2rpx(24);
  341. --font-size-26: px2rpx(26);
  342. --font-size-28: px2rpx(28);
  343. --font-size-32: px2rpx(32);
  344. --font-size-36: px2rpx(36);
  345. --font-size-40: px2rpx(40);
  346. --el-component-size: px2rpx(40);
  347. --ease-in: cubic-bezier(.4, 0, 1, 1);
  348. --ease-out: cubic-bezier(0, 0, .2, 1);
  349. --ease-in-out: cubic-bezier(.4, 0, .2, 1);
  350. --animate-spin: spin 1s linear infinite;
  351. --animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
  352. --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
  353. --blur-sm: 8px;
  354. --default-transition-duration: .15s;
  355. --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  356. --default-font-family: var(--font-sans);
  357. --default-mono-font-family: var(--font-mono);
  358. --font-inter: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  359. --color-navy-50: #e7e9ef;
  360. --color-navy-100: #fff;
  361. --color-navy-200: #a3adc2;
  362. --color-navy-300: #697a9b;
  363. --color-navy-400: #5c6b8a;
  364. --color-navy-450: #465675;
  365. --color-navy-500: #3a3c43;
  366. --color-navy-600: #313e59;
  367. --color-navy-700: #242726;
  368. --color-navy-750: #222e45;
  369. --color-navy-800: #202b40;
  370. --color-navy-900: #141a18;
  371. --color-slate-150: #e9eef5;
  372. --color-primary: #4f46e5;
  373. --color-primary-focus: #4338ca;
  374. --color-secondary-light: #ff57d8;
  375. --color-secondary: #141a18;
  376. --color-secondary-focus: #242726;
  377. --color-accent-light: #242726;
  378. --color-accent: #5f5af6;
  379. --color-accent-focus: #4d47f5;
  380. --color-info: #0ea5e9;
  381. --color-info-focus: #0284c7;
  382. --color-success: #1ac23a;
  383. --color-success-focus: #17a732;
  384. --color-warning: #ff9800;
  385. --color-warning-focus: #e68200;
  386. --color-error: #e32326;
  387. --color-error-focus: #f03000;
  388. --color-gray-second: #6B7188;
  389. --color-bg-main: #f8f9f9;
  390. --text-tiny: .625rem;
  391. --text-tiny--line-height: .8125rem;
  392. --text-tiny-plus: .6875rem;
  393. --text-tiny-plus--line-height: .875rem;
  394. --text-xs-plus: .8125rem;
  395. --text-xs-plus--line-height: 1.125rem;
  396. --text-sm-plus: .9375rem;
  397. --text-sm-plus--line-height: 1.375rem;
  398. --animate-shimmer: shimmer 2s linear infinite;
  399. --bs-secondary: #e61f1e;
  400. }
  401. .light {
  402. --bs-blue: #0d6efd;
  403. --bs-indigo: #6610f2;
  404. --bs-purple: #6f42c1;
  405. --bs-pink: #d63384;
  406. --bs-red: #dc3545;
  407. --bs-orange: #fd7e14;
  408. --bs-yellow: #ffc107;
  409. --bs-green: #198754;
  410. --bs-teal: #20c997;
  411. --bs-cyan: #0dcaf0;
  412. --bs-black: #000;
  413. --bs-white: #ffffff;
  414. --bs-gray: #6c757d;
  415. --bs-gray-dark: #343a40;
  416. --bs-gray-100: #f8f9fa;
  417. --bs-gray-200: #e9ecef;
  418. --bs-gray-300: #dee2e6;
  419. --bs-gray-400: #ced4da;
  420. --bs-gray-500: #adb5bd;
  421. --bs-gray-600: #6c757d;
  422. --bs-gray-700: #495057;
  423. --bs-gray-800: #343a40;
  424. --bs-gray-900: #212529;
  425. --bs-secondary: #e61f1e;
  426. --bs-success: #22B07E;
  427. --bs-info: #02B4FA;
  428. --bs-warning: #FDBB1F;
  429. --bs-danger: #FF401C;
  430. --bs-light: #ECF2FD;
  431. --bs-dark: #0C243C;
  432. --bs-white: #ffffff;
  433. --bs-gray: #97A1C0;
  434. --bs-secondary-rgb: 49, 106, 255;
  435. --bs-secondary-rgb: 255, 129, 16;
  436. --bs-success-rgb: 34, 176, 126;
  437. --bs-info-rgb: 2, 180, 250;
  438. --bs-warning-rgb: 253, 187, 31;
  439. --bs-danger-rgb: 255, 64, 28;
  440. --bs-light-rgb: 236, 242, 253;
  441. --bs-dark-rgb: 12, 36, 60;
  442. --bs-white-rgb: 255, 255, 255;
  443. --bs-gray-rgb: 151, 161, 192;
  444. --bs-secondary-text-emphasis: #142a66;
  445. --bs-secondary-text-emphasis: #663406;
  446. --bs-success-text-emphasis: #0e4632;
  447. --bs-info-text-emphasis: #014864;
  448. --bs-warning-text-emphasis: #654b0c;
  449. --bs-danger-text-emphasis: #661a0b;
  450. --bs-light-text-emphasis: #495057;
  451. --bs-dark-text-emphasis: #495057;
  452. --bs-secondary-bg-subtle: #eaf0ff;
  453. --bs-success-bg-subtle: #e9f7f2;
  454. --bs-info-bg-subtle: #e6f8ff;
  455. --bs-warning-bg-subtle: #fff8e9;
  456. --bs-danger-bg-subtle: rgba(108, 133, 149, 0.12);
  457. --bs-light-bg-subtle: #fcfcfd;
  458. --bs-dark-bg-subtle: #ced4da;
  459. --bs-secondary-border-subtle: #ccdaff;
  460. --bs-secondary-border-subtle: #ffe0c3;
  461. --bs-success-border-subtle: #c8ebdf;
  462. --bs-info-border-subtle: #c0ecfe;
  463. --bs-warning-border-subtle: #ffeec7;
  464. --bs-danger-border-subtle: #ffcfc6;
  465. --bs-light-border-subtle: #e9ecef;
  466. --bs-dark-border-subtle: #adb5bd;
  467. --bs-white-rgb: 255, 255, 255;
  468. --bs-black-rgb: 0, 0, 0;
  469. --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  470. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  471. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  472. --bs-body-font-size: 0.875rem;
  473. --bs-body-font-weight: 500;
  474. --bs-body-line-height: 1.6;
  475. --bs-body-color: #858585;
  476. --bs-body-color-rgb: 151, 161, 192;
  477. --bs-body-bg: #fff;
  478. --bs-body: #fdfdfd;
  479. --bs-body-bg-rgb: 255, 255, 255;
  480. --bs-emphasis-color: #000;
  481. --bs-emphasis-color-rgb: 0, 0, 0;
  482. --bs-secondary-color: rgba(151, 161, 192, 0.75);
  483. --bs-secondary-color-rgb: 151, 161, 192;
  484. --bs-secondary-bg: #f9f9f9;
  485. --bs-secondary-bg-rgb: 249, 249, 249;
  486. --bs-tertiary-color: rgba(151, 161, 192, 0.5);
  487. --bs-tertiary-color-rgb: 151, 161, 192;
  488. --bs-tertiary-bg: #f8f9fa;
  489. --bs-tertiary-bg-rgb: 248, 249, 250;
  490. --bs-heading-color: #0C243C;
  491. --bs-link-color: #316AFF;
  492. --bs-link-color-rgb: 49, 106, 255;
  493. --bs-link-decoration: none;
  494. --bs-link-hover-color: #2755cc;
  495. --bs-link-hover-color-rgb: 39, 85, 204;
  496. --bs-code-color: #d63384;
  497. --bs-highlight-color: #97A1C0;
  498. --bs-highlight-bg: #fff3cd;
  499. --bs-border-width: 1px;
  500. --bs-border-style: solid;
  501. --bs-border-color: #e4e4e4;
  502. --bs-border-color-translucent: rgba(0, 0, 0, 0.1);
  503. --bs-border-radius: 0.375rem;
  504. --bs-border-radius-sm: 0.25rem;
  505. --bs-border-radius-lg: 0.625rem;
  506. --bs-border-radius-xl: 1rem;
  507. --bs-border-radius-xxl: 2rem;
  508. --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  509. --bs-border-radius-pill: 50rem;
  510. --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  511. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  512. --bs-box-shadow-lg: 0 0.26rem 1.126rem 0 rgba(45, 42, 60, 0.15);
  513. --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  514. --bs-focus-ring-width: 0.1rem;
  515. --bs-focus-ring-opacity: 0.25;
  516. --bs-focus-ring-color: rgba(49, 106, 255, 0.25);
  517. --bs-form-valid-color: #22B07E;
  518. --bs-form-valid-border-color: #22B07E;
  519. --bs-form-invalid-color: #FF401C;
  520. --bs-form-invalid-border-color: #FF401C;
  521. }
  522. .dark {
  523. color-scheme: dark;
  524. --bs-body-color: #8c96a9;
  525. --bs-body-color-rgb: 140, 150, 169;
  526. --bs-body-bg: #282b44;
  527. --bs-body: #282b44;
  528. --bs-body-bg-rgb: 40, 43, 68;
  529. --bs-emphasis-color: #ffffff;
  530. --bs-emphasis-color-rgb: 255, 255, 255;
  531. --bs-secondary-color: rgba(140, 150, 169, 0.75);
  532. --bs-secondary-color-rgb: 140, 150, 169;
  533. --bs-secondary-bg: #26283e;
  534. --bs-secondary-bg-rgb: 38, 40, 62;
  535. --bs-tertiary-color: rgba(140, 150, 169, 0.5);
  536. --bs-tertiary-color-rgb: 140, 150, 169;
  537. --bs-tertiary-bg: #26283e;
  538. --bs-tertiary-bg-rgb: 38, 40, 62;
  539. --bs-secondary-text-emphasis: #83a6ff;
  540. --bs-secondary-text-emphasis: #ffb370;
  541. --bs-success-text-emphasis: #7ad0b2;
  542. --bs-info-text-emphasis: #67d2fc;
  543. --bs-warning-text-emphasis: #fed679;
  544. --bs-danger-text-emphasis: #ff8c77;
  545. --bs-light-text-emphasis: #888bb2;
  546. --bs-dark-text-emphasis: #999999;
  547. --bs-secondary-bg-subtle: #0a1533;
  548. --bs-success-bg-subtle: #072319;
  549. --bs-info-bg-subtle: #002432;
  550. --bs-warning-bg-subtle: #332506;
  551. --bs-danger-bg-subtle: rgba(108, 133, 149, 0.12);
  552. --bs-light-bg-subtle: #1a1c31;
  553. --bs-dark-bg-subtle: #10101d;
  554. --bs-secondary-border-subtle: #1d4099;
  555. --bs-secondary-border-subtle: #994d0a;
  556. --bs-success-border-subtle: #146a4c;
  557. --bs-info-border-subtle: #016c96;
  558. --bs-warning-border-subtle: #987013;
  559. --bs-danger-border-subtle: #992611;
  560. --bs-light-border-subtle: #484c83;
  561. --bs-dark-border-subtle: #494949;
  562. --bs-heading-color: #fff;
  563. --bs-link-color: #83a6ff;
  564. --bs-link-hover-color: #9cb8ff;
  565. --bs-link-color-rgb: 131, 166, 255;
  566. --bs-link-hover-color-rgb: 156, 184, 255;
  567. --bs-code-color: #e685b5;
  568. --bs-highlight-color: #8c96a9;
  569. --bs-highlight-bg: #664d03;
  570. --bs-border-color: #3a3b4d;
  571. --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  572. --bs-form-valid-color: #75b798;
  573. --bs-form-valid-border-color: #75b798;
  574. --bs-form-invalid-color: #ea868f;
  575. --bs-form-invalid-border-color: #ea868f;
  576. --bs-danger-rgb: 255, 64, 28;
  577. }
  578. .uni-select__input-box {
  579. height: px2rpx(35);
  580. }
  581. .cwg-cursor {
  582. cursor: pointer;
  583. }
  584. body {
  585. min-height: 100vh;
  586. margin: 0 auto !important;
  587. // font-size: px2rpx(12);
  588. line-height: 1;
  589. color: var(--bs-emphasis-color);
  590. }
  591. .bg-body {
  592. --bs-bg-opacity: 1;
  593. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  594. }
  595. .u-input__content__field-wrapper__field {
  596. color: var(--bs-body-color) !important;
  597. }
  598. .u-input {
  599. border: 1px solid var(--bs-border-color);
  600. }
  601. .u-input,
  602. .uni-input-input {
  603. --bs-bg-opacity: 1;
  604. background-color: transparent;
  605. color: var(--bs-emphasis-color) !important;
  606. }
  607. .uni-top-window {
  608. overflow: visible;
  609. }
  610. // uni-left-window,
  611. // uni-top-window {
  612. // --bs-bg-opacity: 1;
  613. // background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  614. // }
  615. uni-left-window {
  616. position: fixed;
  617. top: px2rpx(56);
  618. left: 0;
  619. z-index: 101;
  620. transition: width 281ms cubic-bezier(0.4, 0, 0.2, 1);
  621. }
  622. uni-button[type='primary'] {
  623. background-color: #e61f1e !important;
  624. }
  625. uni-content {
  626. padding-left: px2rpx(280) !important;
  627. }
  628. uni-left-window.collapsed {
  629. width: px2rpx(64) !important;
  630. white-space: nowrap;
  631. overflow: hidden;
  632. }
  633. uni-left-window.collapsed:hover {
  634. //width: px2rpx(280) !important;
  635. //white-space: nowrap;
  636. //overflow: hidden;
  637. }
  638. uni-content.collapsed {
  639. padding-left: px2rpx(64) !important;
  640. }
  641. @media screen and (max-width: 1100px) {
  642. uni-left-window {
  643. width: px2rpx(64) !important;
  644. white-space: nowrap;
  645. overflow: hidden;
  646. }
  647. uni-left-window:hover {
  648. //width: px2rpx(280) !important;
  649. }
  650. uni-content {
  651. padding-left: px2rpx(64) !important;
  652. }
  653. }
  654. @media screen and (max-width: 991px) {
  655. uni-left-window {
  656. width: px2rpx(0) !important;
  657. overflow: hidden;
  658. transition: width 281ms cubic-bezier(0.4, 0, 0.2, 1);
  659. white-space: nowrap;
  660. }
  661. uni-content {
  662. padding-left: px2rpx(0) !important;
  663. }
  664. uni-left-window:hover {
  665. //width: px2rpx(280) !important;
  666. }
  667. }
  668. .search-btn {
  669. background-color: #e61f1e;
  670. }
  671. .body {
  672. position: absolute;
  673. box-sizing: border-box;
  674. width: 100%;
  675. // height: 100vh;
  676. // padding-bottom: var(--tabbar-height);
  677. height: 100vh;
  678. overflow-y: scroll;
  679. transition: all 0.4s;
  680. -webkit-overflow-scrolling: touch;
  681. &.is-tab {
  682. // height: calc(100vh - var(--tabbar-height));
  683. }
  684. }
  685. .wrap {
  686. position: relative;
  687. width: 100%;
  688. height: 100vh;
  689. overflow: hidden;
  690. }
  691. .global-loading {
  692. position: fixed;
  693. top: 0;
  694. left: 0;
  695. z-index: 999;
  696. display: flex;
  697. align-items: center;
  698. justify-content: center;
  699. width: 100vw;
  700. height: 100vh;
  701. background: var(--main-bg);
  702. }
  703. .router-loading {
  704. position: fixed;
  705. top: 0;
  706. left: 0;
  707. z-index: 1000;
  708. display: flex;
  709. align-items: center;
  710. justify-content: center;
  711. width: 100vw;
  712. height: 100vh;
  713. background: var(--main-bg);
  714. }
  715. .full-screen-loading {
  716. position: fixed;
  717. top: 0;
  718. left: 0;
  719. z-index: 1001;
  720. display: flex;
  721. align-items: center;
  722. justify-content: center;
  723. width: 100vw;
  724. height: 100vh;
  725. background: var(--main-bg);
  726. }
  727. .request-loading,
  728. .full-screen-loading {
  729. position: fixed;
  730. top: 50%;
  731. left: 50%;
  732. z-index: 1001;
  733. display: flex;
  734. flex-direction: column;
  735. align-items: center;
  736. justify-content: center;
  737. padding: px2rpx(16) px2rpx(24);
  738. background: rgb(0, 0, 0, 0.88);
  739. backdrop-filter: blur(4px);
  740. box-shadow: 0 4px 12px rgb(0, 0, 0, 0.15);
  741. transform: translate(-50%, -50%);
  742. animation: fadeIn 0.2s ease-in-out;
  743. .van-loading {
  744. margin-bottom: px2rpx(8);
  745. }
  746. .loading-text {
  747. font-size: px2rpx(14);
  748. font-weight: 500;
  749. color: var(--bs-emphasis-color);
  750. text-shadow: 0 px2rpx(1) px2rpx(2) rgb(0, 0, 0, 0.1);
  751. letter-spacing: px2rpx(0.5);
  752. }
  753. &::after {
  754. position: absolute;
  755. inset: px2rpx(-1);
  756. z-index: -1;
  757. content: '';
  758. background: linear-gradient(45deg, rgb(255, 255, 255, 0.1), rgb(255, 255, 255, 0.05));
  759. border-radius: px2rpx(12);
  760. }
  761. }
  762. .full-screen-loading {
  763. width: 100vw;
  764. height: 100vh;
  765. }
  766. @keyframes fadeIn {
  767. from {
  768. opacity: 0;
  769. transform: translate(-50%, -48%);
  770. }
  771. to {
  772. opacity: 1;
  773. transform: translate(-50%, -50%);
  774. }
  775. }
  776. .load-more {
  777. margin: px2rpx(10) 0;
  778. }
  779. /* 通用样式 */
  780. .slide-left-enter,
  781. .slide-right-leave-active {
  782. opacity: 0;
  783. transform: translate(100%, 0);
  784. }
  785. .slide-left-leave-active,
  786. .slide-right-enter {
  787. opacity: 0;
  788. transform: translate(-100%, 0);
  789. }
  790. /* .fade-leave-active below version 2.1.8 */
  791. .fade-enter-active,
  792. .fade-leave-active {
  793. transition: opacity 0.5s;
  794. }
  795. .fade-enter,
  796. .fade-leave-to {
  797. opacity: 0;
  798. }
  799. /* start--文本行数限制--start */
  800. .u-line-1 {
  801. overflow: hidden;
  802. text-overflow: ellipsis;
  803. white-space: nowrap;
  804. }
  805. .u-line-2 {
  806. -webkit-line-clamp: 2;
  807. }
  808. .u-line-3 {
  809. -webkit-line-clamp: 3;
  810. }
  811. .u-line-4 {
  812. -webkit-line-clamp: 4;
  813. }
  814. .u-line-5 {
  815. -webkit-line-clamp: 5;
  816. }
  817. .u-line-2,
  818. .u-line-3,
  819. .u-line-4,
  820. .u-line-5 {
  821. display: flex;
  822. overflow: hidden;
  823. text-overflow: ellipsis;
  824. word-break: break-all;
  825. -webkit-box-orient: vertical; // 设置伸缩盒子元素排列方式
  826. }
  827. /* end--文本行数限制--end */
  828. /* start--Retina 屏幕下的 1px 边框--start */
  829. .u-border,
  830. .u-border-bottom,
  831. .u-border-left,
  832. .u-border-right,
  833. .u-border-top,
  834. .u-border-top-bottom {
  835. position: relative;
  836. }
  837. .u-border-bottom::after,
  838. .u-border-left::after,
  839. .u-border-right::after,
  840. .u-border-top-bottom::after,
  841. .u-border-top::after,
  842. .u-border::after {
  843. position: absolute;
  844. top: 0;
  845. left: 0;
  846. z-index: 2;
  847. box-sizing: border-box;
  848. // 多加0.1%,能解决有时候边框缺失的问题
  849. width: 199.8%;
  850. height: 199.7%;
  851. pointer-events: none;
  852. content: ' ';
  853. border: 0 solid #e4e7ed;
  854. transform: scale(0.5, 0.5);
  855. transform-origin: 0 0;
  856. }
  857. .u-border-top::after {
  858. border-top-width: 1PX;
  859. }
  860. .u-border-left::after {
  861. border-left-width: 1PX;
  862. }
  863. .u-border-right::after {
  864. border-right-width: 1PX;
  865. }
  866. .u-border-bottom::after {
  867. border-bottom-width: 1PX;
  868. }
  869. .u-border-top-bottom::after {
  870. border-width: 1PX 0;
  871. }
  872. .u-border::after {
  873. border-width: 1PX;
  874. }
  875. .cwg-button {
  876. width: 100%;
  877. .u-button {
  878. height: px2rpx(44) !important;
  879. font-size: var(--font-size-16);
  880. font-weight: bold;
  881. color: var(--black);
  882. background-color: #e61f1e !important;
  883. border: none !important;
  884. border-radius: px2rpx(100) !important;
  885. &:active {
  886. opacity: 0.9;
  887. }
  888. }
  889. }
  890. .fixed-btn {
  891. position: fixed;
  892. bottom: 0;
  893. left: 0;
  894. z-index: 1100;
  895. display: flex;
  896. flex-direction: column;
  897. align-items: center;
  898. justify-content: center;
  899. width: 100%;
  900. height: px2rpx(90);
  901. padding: px2rpx(21) px2rpx(30);
  902. color: var(--black);
  903. background-color: var(--black);
  904. box-shadow: 0 -1px 2px rgb(134, 134, 133, 0.25);
  905. box-sizing: border-box;
  906. }
  907. .cwg-upload {
  908. box-sizing: border-box;
  909. display: flex;
  910. flex-direction: column;
  911. align-items: center;
  912. justify-content: center;
  913. width: 100%;
  914. height: px2rpx(160);
  915. padding: px2rpx(16);
  916. border: 1px dashed #beb6b6;
  917. border-radius: px2rpx(4);
  918. .name {
  919. display: flex;
  920. align-items: center;
  921. font-size: px2rpx(16);
  922. font-weight: 600;
  923. line-height: px2rpx(44);
  924. color: var(--bs-emphasis-color);
  925. text-align: center;
  926. }
  927. .back {
  928. display: flex;
  929. align-items: center;
  930. font-size: px2rpx(16);
  931. line-height: px2rpx(24);
  932. color: #474747;
  933. text-align: center;
  934. letter-spacing: 0.005em;
  935. }
  936. }
  937. .g {
  938. display: flex;
  939. img {
  940. height: px2rpx(50);
  941. }
  942. .g-l {
  943. flex: 1;
  944. margin-left: px2rpx(16);
  945. .g-item {
  946. display: flex;
  947. justify-content: space-between;
  948. margin-bottom: px2rpx(16);
  949. }
  950. .label {
  951. font-family: Roboto;
  952. font-size: px2rpx(14);
  953. font-style: normal;
  954. font-weight: 600;
  955. line-height: px2rpx(20);
  956. color: var(--bs-emphasis-color);
  957. text-align: left;
  958. }
  959. .v {
  960. font-family: Roboto;
  961. font-size: px2rpx(14);
  962. font-style: normal;
  963. font-weight: 600;
  964. line-height: px2rpx(20);
  965. color: var(--bs-emphasis-color);
  966. text-align: center;
  967. }
  968. }
  969. }
  970. .fixed-right {
  971. position: fixed;
  972. top: px2rpx(4);
  973. right: px2rpx(10);
  974. z-index: 100;
  975. display: flex;
  976. align-items: center;
  977. justify-content: center;
  978. width: px2rpx(40);
  979. height: px2rpx(40);
  980. color: var(--main-yellow);
  981. cursor: pointer;
  982. i {
  983. display: flex;
  984. align-items: center;
  985. justify-content: center;
  986. width: px2rpx(20);
  987. height: px2rpx(20);
  988. font-size: px2rpx(14);
  989. color: var(--main-yellow);
  990. }
  991. &:hover {
  992. opacity: 0.8;
  993. }
  994. }
  995. .status-default {
  996. display: flex;
  997. gap: px2rpx(10);
  998. align-items: center;
  999. justify-content: center;
  1000. padding: px2rpx(4) px2rpx(8);
  1001. font-family: Roboto;
  1002. font-size: px2rpx(12);
  1003. font-style: normal;
  1004. font-weight: 600;
  1005. line-height: px2rpx(16);
  1006. color: #009deb;
  1007. letter-spacing: px2rpx(0.06);
  1008. background: rgb(0, 157, 235, 0.2);
  1009. border: 0 solid #f4f4f4;
  1010. border-radius: px2rpx(9999);
  1011. }
  1012. .status-success {
  1013. color: #4caf50;
  1014. background: rgb(76, 175, 80, 0.2);
  1015. }
  1016. .status-error {
  1017. color: #d32f2f;
  1018. background: rgb(211, 47, 47, 0.21);
  1019. }
  1020. .status-views {
  1021. display: flex;
  1022. align-items: center;
  1023. justify-content: center;
  1024. width: px2rpx(65.063);
  1025. // height: 36px;
  1026. padding: px2rpx(8) px2rpx(16);
  1027. font-family: Roboto;
  1028. font-size: px2rpx(14);
  1029. font-style: normal;
  1030. font-weight: 600;
  1031. line-height: px2rpx(20);
  1032. color: var(--bs-emphasis-color);
  1033. text-align: center;
  1034. letter-spacing: px2rpx(0.07);
  1035. background: #ea002a;
  1036. border-radius: px2rpx(10);
  1037. }
  1038. .ellipsis {
  1039. width: 100%;
  1040. overflow: hidden;
  1041. text-overflow: ellipsis;
  1042. white-space: nowrap;
  1043. }
  1044. .custom-toast {
  1045. top: 40%;
  1046. display: flex;
  1047. flex-direction: column;
  1048. gap: px2rpx(16);
  1049. align-items: center;
  1050. width: px2rpx(348);
  1051. padding: px2rpx(32) px2rpx(24);
  1052. background: #fff;
  1053. border-radius: px2rpx(20);
  1054. box-shadow: 0 4px 12px rgb(0, 0, 0, 0.1);
  1055. .van-icon__image {
  1056. width: px2rpx(88);
  1057. height: px2rpx(88);
  1058. }
  1059. .van-toast__text {
  1060. font-family: Roboto;
  1061. font-size: px2rpx(14);
  1062. font-style: normal;
  1063. font-weight: 400;
  1064. line-height: px2rpx(20);
  1065. color: #474747;
  1066. text-align: center;
  1067. letter-spacing: px2rpx(0.07);
  1068. }
  1069. }
  1070. .page-header {
  1071. position: fixed;
  1072. top: calc(var(--secure-height, 0px) + env(safe-area-inset-top));
  1073. left: 0;
  1074. z-index: 13;
  1075. display: flex;
  1076. align-items: center;
  1077. width: 100%;
  1078. height: px2rpx(60);
  1079. font-size: var(--font-size-22);
  1080. font-weight: 700;
  1081. color: var(--white);
  1082. text-align: left;
  1083. background: #fff;
  1084. }
  1085. .u-form-item__body {
  1086. padding: 0 !important;
  1087. }
  1088. .u-form-item__body__right__message {
  1089. margin-left: 10px !important;
  1090. }
  1091. .filter-picker {
  1092. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  1093. border: 1px solid #e5e7eb;
  1094. border-radius: px2rpx(8);
  1095. padding: px2rpx(6);
  1096. display: flex;
  1097. align-items: center;
  1098. min-width: px2rpx(60);
  1099. max-width: px2rpx(120);
  1100. flex-shrink: 1;
  1101. overflow: hidden;
  1102. div {
  1103. width: 100% !important;
  1104. }
  1105. }
  1106. .picker-value {
  1107. display: flex;
  1108. align-items: center;
  1109. gap: px2rpx(4);
  1110. width: 100%;
  1111. }
  1112. .picker-text {
  1113. min-width: px2rpx(60);
  1114. max-width: px2rpx(100);
  1115. font-size: px2rpx(12);
  1116. color: #111827;
  1117. overflow: hidden;
  1118. text-overflow: ellipsis;
  1119. white-space: nowrap;
  1120. }
  1121. .picker-icon {
  1122. flex-shrink: 0;
  1123. width: px2rpx(14);
  1124. height: px2rpx(14);
  1125. }
  1126. .status-badge {
  1127. display: flex;
  1128. align-items: center;
  1129. gap: px2rpx(4);
  1130. padding: px2rpx(3) px2rpx(8) px2rpx(3) px2rpx(3);
  1131. border-radius: px2rpx(12);
  1132. }
  1133. .filter-select {
  1134. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  1135. border: 1px solid #e5e7eb;
  1136. border-radius: px2rpx(8);
  1137. padding: px2rpx(6);
  1138. display: flex;
  1139. align-items: center;
  1140. min-width: px2rpx(90);
  1141. max-width: px2rpx(120);
  1142. flex-shrink: 1;
  1143. // overflow: hidden;
  1144. div {
  1145. // width: 100% !important;
  1146. }
  1147. .uni-select {
  1148. width: 100% !important;
  1149. padding: 0 !important;
  1150. border: none !important;
  1151. min-height: px2rpx(14) !important;
  1152. }
  1153. .uni-select__selector {
  1154. min-width: 100px !important;
  1155. max-width: 300px !important;
  1156. width: max-content !important;
  1157. }
  1158. .uni-select__selector-item {
  1159. white-space: nowrap !important;
  1160. padding: 0 12px !important;
  1161. }
  1162. .uni-select__input-text {
  1163. color: var(--bs-body-color);
  1164. font-size: 12px;
  1165. margin: 1px 0;
  1166. padding: 0 !important;
  1167. }
  1168. .padding-top-bottom {
  1169. padding: 0 !important;
  1170. }
  1171. }
  1172. .uni-date-x,
  1173. .uni-select__input-text {
  1174. color: var(--bs-emphasis-color);
  1175. }
  1176. // 公共title样式
  1177. .content-title {
  1178. width: 100%;
  1179. min-height: px2rpx(40);
  1180. line-height: px2rpx(40);
  1181. box-sizing: border-box;
  1182. color: var(--bs-heading-color);
  1183. // color: var(--color-white);
  1184. // background-color: var(--bs-heading-color);
  1185. font-size: px2rpx(20);
  1186. font-weight: bold;
  1187. }
  1188. .s-btn {
  1189. &.reselect {
  1190. background-color: var(--color-zinc-100);
  1191. color: #fff;
  1192. border: none;
  1193. font-size: px2rpx(14);
  1194. padding: px2rpx(8) px2rpx(20);
  1195. border-radius: px2rpx(8);
  1196. &:active {
  1197. background-color: var(--color-zinc-200);
  1198. }
  1199. }
  1200. &[type="primary"] {
  1201. width: 100%;
  1202. height: px2rpx(48);
  1203. background-color: #e61f1e;
  1204. color: #fff;
  1205. border-radius: px2rpx(12);
  1206. font-size: px2rpx(16);
  1207. font-weight: 600;
  1208. display: flex;
  1209. align-items: center;
  1210. justify-content: center;
  1211. border: none;
  1212. margin-top: px2rpx(30);
  1213. transition: all 0.2s;
  1214. &:active {
  1215. transform: scale(0.98);
  1216. background-color: #e61f1e;
  1217. }
  1218. }
  1219. }
  1220. .search-bar {
  1221. display: flex;
  1222. align-items: center;
  1223. justify-content: flex-start;
  1224. flex-wrap: wrap;
  1225. gap: px2rpx(16);
  1226. // margin: px2rpx(16) 0;
  1227. .cwg-combox,
  1228. .uni-easyinput,
  1229. .uni-date {
  1230. width: px2rpx(224) !important;
  1231. flex: none !important;
  1232. }
  1233. .s-btn {
  1234. width: px2rpx(224);
  1235. background-color: var(--color-error);
  1236. color: #fff;
  1237. padding: px2rpx(10) px2rpx(20);
  1238. border: none;
  1239. font-size: px2rpx(15);
  1240. text-align: center;
  1241. cursor: pointer;
  1242. box-sizing: border-box;
  1243. }
  1244. }
  1245. :deep(.uni-row1) {
  1246. width: 100%;
  1247. // margin: 0 px2rpx(-10) !important;
  1248. box-sizing: border-box;
  1249. .uni-col {
  1250. //padding: 0 px2rpx(10) !important;
  1251. box-sizing: border-box;
  1252. }
  1253. .base-info-form>span {
  1254. display: contents;
  1255. }
  1256. .uni-forms-item {
  1257. min-height: px2rpx(79);
  1258. margin-bottom: px2rpx(10);
  1259. }
  1260. .uni-select,
  1261. .uni-combox,
  1262. .uni-easyinput__content,
  1263. .cwg-combox,
  1264. .uni-date-editor--x {
  1265. height: 3rem;
  1266. border: 1px solid var(--bs-border-color) !important;
  1267. border-radius: px2rpx(8);
  1268. font-size: px2rpx(16);
  1269. //background-color: var(--color-zinc-100) !important;
  1270. }
  1271. .cwg-combox {
  1272. border: none !important;
  1273. }
  1274. .uni-date-x {
  1275. border: none !important;
  1276. background-color: rgba(195, 195, 195, 0) !important;
  1277. }
  1278. .uni-easyinput__content {
  1279. padding: 0 !important;
  1280. }
  1281. .checklist-text {
  1282. //color: #666 !important;
  1283. }
  1284. .checklist-box.is--default.is-checked .checkbox__inner {
  1285. border-color: var(--color-error) !important;
  1286. background-color: var(--color-error) !important;
  1287. }
  1288. }
  1289. :deep(.uni-row2) {
  1290. .uni-select,
  1291. .uni-combox,
  1292. .uni-easyinput__content,
  1293. .uni-date-editor--x {
  1294. border: 1px solid var(--color-slate-300) !important;
  1295. background-color: rgba(195, 195, 195, 0) !important;
  1296. }
  1297. .uni-date-x {
  1298. background-color: rgba(195, 195, 195, 0) !important;
  1299. }
  1300. }
  1301. .bg-secondary {
  1302. background-color: var(--color-secondary) !important;
  1303. border: 1px solid #333333;
  1304. color: var(--color-white);
  1305. }
  1306. .underline {
  1307. text-decoration: underline;
  1308. text-decoration-color: currentColor;
  1309. text-underline-offset: px2rpx(2);
  1310. cursor: pointer;
  1311. }
  1312. .info-card {
  1313. // margin-top: px2rpx(4);
  1314. // border-radius: px2rpx(8);
  1315. // background-color: white;
  1316. // padding: px2rpx(8);
  1317. // box-shadow: 0 0 px2rpx(8) rgba(0, 0, 0, 0.1);
  1318. // box-shadow:
  1319. // 0 0 px2rpx(4) rgba(0, 0, 0, 0.06),
  1320. // 0 px2rpx(6) px2rpx(12) rgba(0, 0, 0, 0.08);
  1321. box-sizing: border-box;
  1322. // padding: px2rpx(20);
  1323. // border: 1px solid rgba(108, 133, 149, 0.12);
  1324. border-radius: px2rpx(8);
  1325. }
  1326. .crm-title-box {
  1327. background-color: var(--color-gray-second);
  1328. color: var(--color-white);
  1329. height: 40px;
  1330. display: flex;
  1331. justify-content: space-between;
  1332. align-items: center;
  1333. margin-bottom: 10px;
  1334. border-radius: 2px;
  1335. padding: 0 20px;
  1336. .tit {
  1337. font-size: 14px;
  1338. font-weight: bold;
  1339. color: var(--color-white);
  1340. }
  1341. }
  1342. .status-box {
  1343. display: flex;
  1344. align-items: center;
  1345. gap: px2rpx(4);
  1346. }
  1347. @media screen and (max-width: 991px) {
  1348. .info-card {
  1349. box-sizing: border-box;
  1350. // padding: px2rpx(20);
  1351. border: 0 !important;
  1352. border-radius: 0 !important;
  1353. }
  1354. .status-box {
  1355. display: flex;
  1356. flex-direction: column;
  1357. gap: px2rpx(4);
  1358. }
  1359. }
  1360. // 状态标签基础样式
  1361. .status-badge {
  1362. display: inline-flex;
  1363. align-items: center;
  1364. padding: 4rpx 12rpx;
  1365. border-radius: 4rpx;
  1366. font-size: var(--font-size-24);
  1367. //font-weight: 500;
  1368. line-height: 1.5;
  1369. white-space: nowrap;
  1370. transition: all var(--default-transition-duration) var(--default-transition-timing-function);
  1371. // 当有取消按钮时调整右边距
  1372. &.has-cancel {
  1373. margin-right: 8rpx;
  1374. }
  1375. }
  1376. // 状态标签基础样式
  1377. .status-tag {
  1378. display: inline-block;
  1379. padding: px2rpx(4) px2rpx(8);
  1380. border-radius: px2rpx(5);
  1381. font-size: px2rpx(14);
  1382. text-align: center;
  1383. min-width: px2rpx(80);
  1384. box-sizing: border-box;
  1385. border: 1px solid;
  1386. }
  1387. // 待处理
  1388. .status-pending {
  1389. background-color: #FFFBEB;
  1390. color: #f59e0b;
  1391. border-color: #FDE68A;
  1392. }
  1393. // 处理中
  1394. .status-processing {
  1395. background-color: #EFF6FF;
  1396. color: #3B82F6;
  1397. border-color: #BFDBFE;
  1398. }
  1399. // 成功
  1400. .status-success {
  1401. background-color: #ECFDF5;
  1402. color: #22C55E;
  1403. border-color: #BBF7D0;
  1404. }
  1405. // 失败
  1406. .status-failed {
  1407. background-color: #FEF2F2;
  1408. color: #EF4444;
  1409. border-color: #FECACA;
  1410. }
  1411. // 取消 / 已取消
  1412. .status-cancelled {
  1413. background-color: #F3F4F6;
  1414. color: #6B7280;
  1415. border-color: #E5E7EB;
  1416. }
  1417. // 已过期
  1418. .status-expired,
  1419. .status-canceled {
  1420. background-color: #FAF5FF;
  1421. color: #A855F7;
  1422. border-color: #E9D5FF;
  1423. }
  1424. // 已完成
  1425. .status-completed {
  1426. background-color: #ECFDF5;
  1427. color: #22C55E;
  1428. border-color: #BBF7D0;
  1429. }
  1430. // // 待处理
  1431. // .status-warning {
  1432. // background-color: var(--status-warning-bg);
  1433. // color: var(--status-warning-text);
  1434. // }
  1435. // // 已完成
  1436. // .status-success {
  1437. // background-color: var(--status-success-bg);
  1438. // color: var(--status-success-text);
  1439. // }
  1440. // // 进行中
  1441. // .status-processing {
  1442. // background-color: var(--status-processing-bg);
  1443. // color: var(--status-processing-text);
  1444. // }
  1445. // // 已拒绝
  1446. // .status-danger {
  1447. // background-color: var(--status-danger-bg);
  1448. // color: var(--status-danger-text);
  1449. // }
  1450. // // 已过期
  1451. // .status-expired {
  1452. // background-color: var(--status-expired-bg);
  1453. // color: var(--status-expired-text);
  1454. // }
  1455. // // 已取消
  1456. // .status-cancelled {
  1457. // background-color: var(--status-cancelled-bg);
  1458. // color: var(--status-cancelled-text);
  1459. // }
  1460. // 取消按钮容器
  1461. .cancel-btn-wrapper {
  1462. display: inline-flex;
  1463. align-items: center;
  1464. }
  1465. // 取消按钮样式
  1466. .cancel-btn {
  1467. display: inline-flex;
  1468. align-items: center;
  1469. padding: 4rpx 12rpx;
  1470. border-radius: 8rpx;
  1471. font-size: var(--font-size-24);
  1472. font-weight: 500;
  1473. line-height: 1.5;
  1474. color: #333;
  1475. background-color: var(--btn-color);
  1476. border: 1px solid var(--btn-border-color);
  1477. cursor: pointer;
  1478. transition: all var(--default-transition-duration) var(--default-transition-timing-function);
  1479. white-space: nowrap;
  1480. &:hover {
  1481. color: #333;
  1482. background-color: var(--btn-color);
  1483. border-color: var(--btn-border-color);
  1484. }
  1485. // 添加点击效果
  1486. &:active {
  1487. transform: scale(0.95);
  1488. }
  1489. }
  1490. .pc-header-btn {
  1491. width: px2rpx(40);
  1492. height: px2rpx(40);
  1493. border-radius: px2rpx(4);
  1494. border: 1px solid rgba(108, 133, 149, 0);
  1495. display: flex;
  1496. align-items: center;
  1497. font-size: px2rpx(14);
  1498. cursor: pointer;
  1499. display: flex;
  1500. justify-content: center;
  1501. align-items: center;
  1502. &:hover {
  1503. background: rgba(108, 133, 149, 0.12);
  1504. border-color: rgb(145, 163, 176);
  1505. }
  1506. }
  1507. .popup-content {
  1508. // padding: px2rpx(30) px2rpx(20);
  1509. text-align: center;
  1510. min-width: px2rpx(250);
  1511. color: var(--bs-emphasis-color) !important;
  1512. @media screen and (max-width: 991px) {
  1513. // min-width: 80%;
  1514. // max-width: 90%;
  1515. // margin: 0 px2rpx(10);
  1516. }
  1517. position: relative;
  1518. .icon {
  1519. .iconfont {
  1520. font-size: px2rpx(60);
  1521. display: block;
  1522. margin: 0 auto;
  1523. }
  1524. .icon-chenggong {
  1525. color: #67c23a;
  1526. }
  1527. .icon-jingshi {
  1528. color: #f56c6c;
  1529. }
  1530. .icon-dengdai {
  1531. color: #e6a23c;
  1532. }
  1533. }
  1534. .des1 {
  1535. font-weight: 600;
  1536. font-size: px2rpx(16);
  1537. margin: px2rpx(20) 0 px2rpx(15);
  1538. color: var(--bs-emphasis-color);
  1539. line-height: 1.4;
  1540. padding: 0 px2rpx(10);
  1541. }
  1542. .des2 {
  1543. font-size: px2rpx(14);
  1544. margin: px2rpx(15) 0 px2rpx(15);
  1545. color: var(--bs-emphasis-color);
  1546. line-height: 1.4;
  1547. padding: 0 px2rpx(10);
  1548. }
  1549. }
  1550. .dialog-footer {
  1551. padding: px2rpx(20) px2rpx(30) px2rpx(30);
  1552. border-top: 1px solid #f0f0f0;
  1553. .btn-content {
  1554. // 双按钮模式
  1555. &:not(:has(button:only-child)):has(button) {
  1556. display: flex;
  1557. justify-content: space-around;
  1558. //gap: px2rpx(30);
  1559. }
  1560. // 单按钮模式
  1561. &:has(button:only-child) {
  1562. display: flex;
  1563. justify-content: center;
  1564. }
  1565. }
  1566. .footer-line {
  1567. height: 1px;
  1568. background-color: #f0f0f0;
  1569. margin: px2rpx(-20) 0 0;
  1570. }
  1571. button {
  1572. min-width: px2rpx(120);
  1573. height: px2rpx(40);
  1574. border-radius: px2rpx(4);
  1575. font-size: px2rpx(16);
  1576. display: flex;
  1577. align-items: center;
  1578. justify-content: center;
  1579. border: none;
  1580. cursor: pointer;
  1581. transition: all 0.3s ease;
  1582. margin: 0;
  1583. &:active {
  1584. opacity: 0.8;
  1585. transform: scale(0.98);
  1586. }
  1587. &:disabled {
  1588. opacity: 0.5;
  1589. cursor: not-allowed;
  1590. }
  1591. }
  1592. .cancel-btn {
  1593. background-color: #f5f5f5;
  1594. color: #6b7280;
  1595. &:active {
  1596. background-color: #e8e8e8;
  1597. }
  1598. }
  1599. .confirm-btn {
  1600. &.primary {
  1601. background-color: #e61f1e;
  1602. color: #fff;
  1603. &:active {
  1604. background-color: #ff6b6b;
  1605. }
  1606. }
  1607. &.danger {
  1608. background-color: #ff6b6b;
  1609. color: var(--bs-emphasis-color);
  1610. &:active {
  1611. background-color: #ff5252;
  1612. }
  1613. }
  1614. }
  1615. .single-btn {
  1616. min-width: px2rpx(200);
  1617. &.primary {
  1618. background-color: #e61f1e;
  1619. color: #fff;
  1620. }
  1621. &.danger {
  1622. background-color: #ff6b6b;
  1623. color: var(--bs-emphasis-color);
  1624. }
  1625. &.default {
  1626. background-color: #f5f5f5;
  1627. color: var(--bs-heading-color);
  1628. }
  1629. }
  1630. }
  1631. .wait-popup {
  1632. .des1 {
  1633. margin-top: px2rpx(10);
  1634. }
  1635. .icon {
  1636. .iconfont {
  1637. animation: spin 1s linear infinite;
  1638. }
  1639. }
  1640. }
  1641. // 适配不同屏幕尺寸(媒体查询中的 750rpx 保持不变)
  1642. @media (max-width: 750rpx) {
  1643. .popup-content {
  1644. .icon {
  1645. .iconfont {
  1646. font-size: px2rpx(50);
  1647. }
  1648. }
  1649. .des1 {
  1650. font-size: px2rpx(14);
  1651. margin: px2rpx(15) 0 px2rpx(10);
  1652. }
  1653. .des2 {
  1654. font-size: px2rpx(13);
  1655. margin: px2rpx(15) 0 px2rpx(10);
  1656. }
  1657. .dialog-footer {
  1658. button {
  1659. min-width: px2rpx(80);
  1660. font-size: px2rpx(13);
  1661. }
  1662. }
  1663. }
  1664. }
  1665. .clause-content {
  1666. max-height: px2rpx(500);
  1667. overflow-y: auto;
  1668. text-align: left;
  1669. line-height: 1.6;
  1670. .h4 {
  1671. font-size: px2rpx(16);
  1672. font-weight: bold;
  1673. margin: px2rpx(16) 0;
  1674. }
  1675. .list {
  1676. .list-item {
  1677. margin-bottom: px2rpx(12);
  1678. }
  1679. }
  1680. .table-container {
  1681. width: 100%;
  1682. overflow-x: auto;
  1683. margin: px2rpx(16) 0;
  1684. .table {
  1685. display: table;
  1686. width: 100%;
  1687. table-layout: fixed;
  1688. border: 1px solid #e4e7ed;
  1689. box-sizing: border-box;
  1690. .tr {
  1691. display: table-row;
  1692. }
  1693. .th,
  1694. .td {
  1695. display: table-cell;
  1696. width: calc(100% / 6);
  1697. padding: px2rpx(8);
  1698. text-align: center;
  1699. border-right: 1px solid #e4e7ed;
  1700. border-bottom: 1px solid #e4e7ed;
  1701. &:last-child {
  1702. border-right: none;
  1703. }
  1704. }
  1705. .tr:last-child .td,
  1706. .tr:last-child .th {
  1707. border-bottom: none;
  1708. }
  1709. }
  1710. }
  1711. }
  1712. .crm-cursor {
  1713. cursor: pointer;
  1714. }
  1715. ::selection {
  1716. background-color: var(--bs-secondary);
  1717. // color: var(--bs-emphasis-color);
  1718. }
  1719. @for $i from 1 through 50 {
  1720. .padding-#{$i} {
  1721. padding: px2rpx($i);
  1722. }
  1723. .padding-t-#{$i} {
  1724. padding-top: px2rpx($i);
  1725. }
  1726. .padding-b-#{$i} {
  1727. padding-bottom: px2rpx($i);
  1728. }
  1729. .padding-l-#{$i} {
  1730. padding-left: px2rpx($i);
  1731. }
  1732. .padding-r-#{$i} {
  1733. padding-right: px2rpx($i);
  1734. }
  1735. .padding-x-#{$i} {
  1736. padding-left: px2rpx($i);
  1737. padding-right: px2rpx($i);
  1738. }
  1739. .padding-y-#{$i} {
  1740. padding-top: px2rpx($i);
  1741. padding-bottom: px2rpx($i);
  1742. }
  1743. }
  1744. .btn-outline-dark1 {
  1745. background-color: var(--btn-color) !important;
  1746. color: var(--bs-emphasis-color) !important;
  1747. }
  1748. .add-btn {
  1749. font-weight: 600;
  1750. color: #e61f1e;
  1751. text-decoration: underline;
  1752. }
  1753. .flex-1{
  1754. flex: 1;
  1755. }
  1756. .justify-between{
  1757. justify-content: space-between;
  1758. }
  1759. .agree {
  1760. margin-top: px2rpx(12);
  1761. display: flex;
  1762. align-items: flex-start;
  1763. .checkbox {
  1764. display: flex;
  1765. align-items: flex-start;
  1766. gap: px2rpx(8);
  1767. :deep(uni-checkbox .uni-checkbox-input) {
  1768. border-radius: px2rpx(4);
  1769. width: px2rpx(18);
  1770. height: px2rpx(18);
  1771. }
  1772. text {
  1773. font-size: px2rpx(13);
  1774. color: var(--color-zinc-500);
  1775. line-height: 2;
  1776. }
  1777. }
  1778. }
  1779. .uni-picker-container{
  1780. z-index: 11201!important;
  1781. }