app.wxss 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487
  1. page {
  2. --page-bg: #f6f8fb;
  3. --text-main: #111827;
  4. --accent: #0f8f87;
  5. --accent-dark: #08746e;
  6. --accent-soft: #e8f6f5;
  7. --danger: #c2410c;
  8. --shadow-soft: 0 10rpx 28rpx rgba(15, 23, 42, 0.05);
  9. height: 100vh;
  10. display: flex;
  11. flex-direction: column;
  12. font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  13. background: var(--page-bg);
  14. color: var(--text-main);
  15. }
  16. .scrollarea {
  17. flex: 1;
  18. overflow-y: auto;
  19. }
  20. .scrollarea--subpage .page-shell {
  21. padding-top: 14rpx;
  22. }
  23. .scrollarea--generic .page-shell {
  24. padding-top: 0;
  25. }
  26. .page-shell {
  27. min-height: 100%;
  28. padding: 24rpx 24rpx 52rpx;
  29. box-sizing: border-box;
  30. }
  31. .theme-dark {
  32. --page-bg: #111827;
  33. --text-main: #e5e7eb;
  34. --accent: #14b8a6;
  35. --accent-dark: #5eead4;
  36. --accent-soft: #123d3b;
  37. --danger: #fb923c;
  38. --shadow-soft: 0 10rpx 28rpx rgba(0, 0, 0, 0.22);
  39. background: var(--page-bg);
  40. color: var(--text-main);
  41. }
  42. .page-toast {
  43. position: fixed;
  44. z-index: 70;
  45. top: calc(env(safe-area-inset-top) + 108rpx);
  46. left: 24rpx;
  47. right: 24rpx;
  48. min-height: 68rpx;
  49. padding: 16rpx 22rpx;
  50. border: 1rpx solid #d9edeb;
  51. border-radius: 14rpx;
  52. background: rgba(244, 251, 250, 0.98);
  53. color: var(--accent-dark);
  54. box-shadow: 0 12rpx 32rpx rgba(15, 23, 42, 0.16);
  55. font-size: 25rpx;
  56. line-height: 1.35;
  57. font-weight: 700;
  58. text-align: center;
  59. word-break: break-all;
  60. box-sizing: border-box;
  61. }
  62. .page-toast--error {
  63. border-color: #ffd4bf;
  64. background: rgba(255, 247, 237, 0.98);
  65. color: var(--danger);
  66. }
  67. .page-toast.theme-dark {
  68. border-color: #174e49;
  69. background: rgba(18, 61, 59, 0.98);
  70. color: #99f6e4;
  71. box-shadow: 0 12rpx 34rpx rgba(0, 0, 0, 0.32);
  72. }
  73. .page-toast--error.theme-dark {
  74. border-color: #7c2d12;
  75. background: rgba(67, 33, 20, 0.98);
  76. color: #fed7aa;
  77. }
  78. .theme-dark .panel,
  79. .theme-dark .connected-panel,
  80. .theme-dark .device-card,
  81. .theme-dark .empty-state {
  82. border-color: #263241;
  83. background: #17202c;
  84. box-shadow: var(--shadow-soft);
  85. }
  86. .theme-dark .panel-title,
  87. .theme-dark .subpage-page-title,
  88. .theme-dark .connected-name,
  89. .theme-dark .device-name,
  90. .theme-dark .empty-title,
  91. .theme-dark .param-name,
  92. .theme-dark .picker-value,
  93. .theme-dark .generated-title,
  94. .theme-dark .generated-value,
  95. .theme-dark .log-payload,
  96. .theme-dark .control-name,
  97. .theme-dark .upgrade-value {
  98. color: #e5e7eb;
  99. }
  100. .theme-dark .meta-label,
  101. .theme-dark .meta-value,
  102. .theme-dark .device-id,
  103. .theme-dark .device-service,
  104. .theme-dark .protocol-label,
  105. .theme-dark .empty-text,
  106. .theme-dark .param-meta,
  107. .theme-dark .log-time,
  108. .theme-dark .traffic-badge,
  109. .theme-dark .upgrade-label {
  110. color: #94a3b8;
  111. }
  112. .theme-dark .panel-action-button,
  113. .theme-dark .protocol-input,
  114. .theme-dark .value-input,
  115. .theme-dark .hex-input,
  116. .theme-dark .control-button,
  117. .theme-dark .subpage-back {
  118. border-color: #334155;
  119. background: #111827;
  120. color: #cbd5e1;
  121. box-shadow: none;
  122. }
  123. .theme-dark .protocol-picker {
  124. background: transparent;
  125. border-color: transparent;
  126. color: #cbd5e1;
  127. }
  128. .theme-dark .subpage-back-icon {
  129. border-color: #94a3b8;
  130. }
  131. .theme-dark .entry-chevron {
  132. border-color: #64748b;
  133. }
  134. .theme-dark .control-button {
  135. background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  136. color: #e5e7eb;
  137. }
  138. .theme-dark .panel-action-button {
  139. background: #17202c;
  140. color: #99f6e4;
  141. }
  142. .theme-dark .panel-action-button.is-active {
  143. border-color: #5eead4;
  144. background: #0f766e;
  145. color: #ecfeff;
  146. }
  147. .theme-dark .value-input:focus,
  148. .theme-dark .protocol-input:focus,
  149. .theme-dark .hex-input:focus {
  150. border-color: #2dd4bf;
  151. background: #102f2e;
  152. }
  153. .theme-dark .rssi {
  154. background: #1f2937;
  155. color: #cbd5e1;
  156. }
  157. .theme-dark .connect-state {
  158. background: #123d3b;
  159. color: #5eead4;
  160. }
  161. .theme-dark .connect-state.connected,
  162. .theme-dark .device-card--connected {
  163. border-color: #0f766e;
  164. background: #102f2e;
  165. color: #99f6e4;
  166. }
  167. .theme-dark .meta-item,
  168. .theme-dark .protocol-row,
  169. .theme-dark .upgrade-row,
  170. .theme-dark .param-row,
  171. .theme-dark .params-section-title,
  172. .theme-dark .protection-field,
  173. .theme-dark .log-scroll,
  174. .theme-dark .log-row {
  175. border-color: #263241;
  176. }
  177. .theme-dark .params-section-title {
  178. background: #111827;
  179. color: #94a3b8;
  180. }
  181. .theme-dark .driver-summary-chip,
  182. .theme-dark .driver-summary-checksum,
  183. .theme-dark .driver-summary-model {
  184. color: #e5e7eb;
  185. }
  186. .theme-dark .device-filter {
  187. border-color: #334155;
  188. background: #111827;
  189. }
  190. .theme-dark .device-filter-item {
  191. color: #94a3b8;
  192. }
  193. .theme-dark .device-filter-item.is-active {
  194. background: #1f2937;
  195. color: #5eead4;
  196. box-shadow: none;
  197. }
  198. .theme-dark .upgrade-status,
  199. .theme-dark .generated-frame {
  200. border-color: #174e49;
  201. background: #111827;
  202. color: #94a3b8;
  203. }
  204. .theme-dark .generic-dialog {
  205. border-color: #263241;
  206. background: #17202c;
  207. box-shadow: 0 18rpx 44rpx rgba(0, 0, 0, 0.38);
  208. }
  209. .theme-dark .generic-dialog-header,
  210. .theme-dark .generic-draft-actions,
  211. .theme-dark .generic-info-row {
  212. border-color: #263241;
  213. }
  214. .theme-dark .generic-dialog-title,
  215. .theme-dark .generic-info-value,
  216. .theme-dark .generic-register-name,
  217. .theme-dark .crc-file-name {
  218. color: #e5e7eb;
  219. }
  220. .theme-dark .generic-dialog-close,
  221. .theme-dark .generic-info-label {
  222. color: #94a3b8;
  223. }
  224. .theme-dark .generic-value-input,
  225. .theme-dark .crc-data-input,
  226. .theme-dark .generic-struct-input {
  227. border-color: #334155;
  228. background: #111827;
  229. color: #e5e7eb;
  230. }
  231. .theme-dark .generic-picker-value {
  232. color: #e5e7eb;
  233. }
  234. .theme-dark .generic-register-row,
  235. .theme-dark .generic-config-row,
  236. .theme-dark .generic-struct-section,
  237. .theme-dark .generic-group-inline-registers,
  238. .theme-dark .storage-code-info-inline {
  239. border-color: #263241;
  240. }
  241. .theme-dark .generic-register-row.is-drag-armed {
  242. background: rgba(45, 212, 191, 0.06);
  243. }
  244. .theme-dark .generic-register-row.is-dragging {
  245. border-color: rgba(45, 212, 191, 0.32);
  246. background: linear-gradient(180deg, rgba(17, 94, 89, 0.68), rgba(15, 118, 110, 0.42));
  247. box-shadow: 0 16rpx 42rpx rgba(2, 6, 23, 0.5);
  248. }
  249. .theme-dark .generic-register-drag-bar {
  250. background: #64748b;
  251. }
  252. .theme-dark .generic-register-drag-handle.is-drag-armed {
  253. background: rgba(45, 212, 191, 0.1);
  254. }
  255. .theme-dark .generic-register-drag-handle.is-dragging {
  256. background: rgba(45, 212, 191, 0.16);
  257. }
  258. .theme-dark .generic-register-drag-handle.is-drag-armed .generic-register-drag-bar,
  259. .theme-dark .generic-register-drag-handle.is-dragging .generic-register-drag-bar {
  260. background: #5eead4;
  261. }
  262. .theme-dark .generic-readonly-value,
  263. .theme-dark .generic-register-unit,
  264. .theme-dark .storage-code-info-model {
  265. color: #5eead4;
  266. }
  267. .theme-dark .storage-code-info-chip,
  268. .theme-dark .storage-code-info-metric,
  269. .theme-dark .generic-register-display-meta {
  270. color: #94a3b8;
  271. }
  272. .theme-dark .value-input--dirty {
  273. border-color: #f59e0b;
  274. background: #2b1d0e;
  275. color: #fed7aa;
  276. }
  277. .theme-dark .upgrade-status--ready {
  278. background: #123d3b;
  279. color: #5eead4;
  280. }
  281. .panel {
  282. margin-top: 24rpx;
  283. border: 1rpx solid #e6ebf2;
  284. border-radius: 18rpx;
  285. background: #ffffff;
  286. box-shadow: var(--shadow-soft);
  287. box-sizing: border-box;
  288. overflow: hidden;
  289. }
  290. .panel:first-child {
  291. margin-top: 0;
  292. }
  293. .panel-header {
  294. position: relative;
  295. display: flex;
  296. align-items: center;
  297. gap: 14rpx;
  298. padding: 24rpx 24rpx 8rpx;
  299. }
  300. .subpage-fixed-header {
  301. flex: none;
  302. padding: 16rpx 24rpx 12rpx;
  303. background: var(--page-bg);
  304. box-sizing: border-box;
  305. }
  306. .subpage-fixed-header--generic {
  307. padding: 8rpx 24rpx 4rpx;
  308. }
  309. .subpage-fixed-header--generic .subpage-page-header {
  310. min-height: 52rpx;
  311. }
  312. .subpage-page-header {
  313. display: flex;
  314. align-items: center;
  315. gap: 14rpx;
  316. min-height: 68rpx;
  317. margin: 0;
  318. padding: 0;
  319. box-sizing: border-box;
  320. }
  321. .subpage-page-title {
  322. min-width: 0;
  323. flex: 1;
  324. color: #111827;
  325. font-size: 36rpx;
  326. line-height: 1.35;
  327. font-weight: 900;
  328. white-space: nowrap;
  329. overflow: hidden;
  330. text-overflow: ellipsis;
  331. }
  332. .subpage-actions {
  333. margin-left: 0;
  334. }
  335. .generic-protocol-actions {
  336. flex: 1;
  337. flex-wrap: wrap;
  338. justify-content: flex-end;
  339. gap: 8rpx;
  340. }
  341. .param-entry-panel .panel-title {
  342. flex: 1;
  343. white-space: nowrap;
  344. word-break: keep-all;
  345. }
  346. .subpage-back {
  347. flex: none;
  348. display: flex;
  349. align-items: center;
  350. justify-content: center;
  351. width: 52rpx;
  352. height: 52rpx;
  353. border: 1rpx solid #d8e2ea;
  354. border-radius: 12rpx;
  355. background: #f8fafc;
  356. box-sizing: border-box;
  357. }
  358. .subpage-back:active,
  359. .param-entry-panel:active {
  360. opacity: 0.72;
  361. }
  362. .subpage-back-icon {
  363. width: 16rpx;
  364. height: 16rpx;
  365. border-left: 4rpx solid #64748b;
  366. border-bottom: 4rpx solid #64748b;
  367. transform: rotate(45deg);
  368. margin-left: 6rpx;
  369. box-sizing: border-box;
  370. }
  371. .param-entry-panel .panel-header {
  372. padding-bottom: 24rpx;
  373. }
  374. .driver-summary-panel {
  375. padding: 18rpx 24rpx 16rpx;
  376. box-sizing: border-box;
  377. }
  378. .driver-summary-row {
  379. display: flex;
  380. align-items: center;
  381. gap: 16rpx;
  382. }
  383. .driver-summary-row--top {
  384. justify-content: space-between;
  385. }
  386. .driver-summary-row--model {
  387. margin-top: 10rpx;
  388. }
  389. .driver-summary-chip,
  390. .driver-summary-checksum,
  391. .driver-summary-model {
  392. min-width: 0;
  393. color: #111827;
  394. line-height: 1.35;
  395. font-weight: 800;
  396. word-break: break-all;
  397. }
  398. .driver-summary-chip {
  399. flex: 1;
  400. text-align: left;
  401. font-size: 28rpx;
  402. }
  403. .driver-summary-checksum {
  404. flex: none;
  405. text-align: right;
  406. font-size: 24rpx;
  407. font-family: Menlo, Monaco, Consolas, monospace;
  408. }
  409. .driver-summary-model {
  410. flex: 1;
  411. font-size: 26rpx;
  412. }
  413. .entry-chevron {
  414. flex: none;
  415. width: 18rpx;
  416. height: 18rpx;
  417. border-right: 4rpx solid #94a3b8;
  418. border-bottom: 4rpx solid #94a3b8;
  419. transform: rotate(-45deg);
  420. box-sizing: border-box;
  421. }
  422. .params-section-title {
  423. padding: 18rpx 24rpx;
  424. border-bottom: 1rpx solid #edf2f7;
  425. background: #f8fafc;
  426. color: #475569;
  427. font-size: 24rpx;
  428. line-height: 1.35;
  429. font-weight: 800;
  430. box-sizing: border-box;
  431. }
  432. .params-section-title + .param-row {
  433. border-top: 0;
  434. }
  435. .protection-field-row {
  436. display: flex;
  437. flex-wrap: wrap;
  438. gap: 0 12rpx;
  439. padding: 0 24rpx;
  440. box-sizing: border-box;
  441. }
  442. .params-section-title + .protection-field-row .protection-field {
  443. border-top: 0;
  444. }
  445. .protection-field {
  446. display: flex;
  447. align-items: center;
  448. justify-content: space-between;
  449. gap: 18rpx;
  450. min-height: 96rpx;
  451. padding: 14rpx 0;
  452. border-top: 1rpx solid #edf2f7;
  453. box-sizing: border-box;
  454. }
  455. .protection-field--switch {
  456. flex: 1 1 240rpx;
  457. min-width: 240rpx;
  458. }
  459. .protection-field--input {
  460. flex: 1 1 100%;
  461. min-width: 100%;
  462. }
  463. .protection-field-main {
  464. min-width: 0;
  465. flex: 1;
  466. }
  467. .outside-header {
  468. padding: 0;
  469. margin-bottom: 16rpx;
  470. }
  471. .panel-icon {
  472. flex: none;
  473. position: relative;
  474. width: 38rpx;
  475. height: 38rpx;
  476. border-radius: 12rpx;
  477. background:
  478. radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.12) 22%, rgba(255, 255, 255, 0) 50%),
  479. linear-gradient(180deg, var(--icon-start, #129a91) 0%, var(--icon-end, #08746e) 100%);
  480. border: 1rpx solid rgba(255, 255, 255, 0.12);
  481. box-shadow: 0 8rpx 16rpx rgba(15, 143, 135, 0.18);
  482. overflow: hidden;
  483. }
  484. .panel-title {
  485. min-width: 0;
  486. color: #111827;
  487. font-size: 31rpx;
  488. line-height: 1.35;
  489. font-weight: 800;
  490. word-break: break-all;
  491. }
  492. .panel-header--with-actions {
  493. padding-right: 18rpx;
  494. }
  495. .panel-heading-toggle {
  496. min-width: 0;
  497. flex: 1;
  498. display: flex;
  499. align-items: center;
  500. gap: 14rpx;
  501. }
  502. .panel-heading-toggle:active {
  503. opacity: 0.72;
  504. }
  505. .panel-header--with-actions .panel-title {
  506. flex: 1;
  507. white-space: nowrap;
  508. word-break: keep-all;
  509. }
  510. .collapse-indicator {
  511. flex: none;
  512. position: relative;
  513. width: 28rpx;
  514. height: 28rpx;
  515. }
  516. .collapse-indicator::before {
  517. content: "";
  518. position: absolute;
  519. left: 8rpx;
  520. top: 6rpx;
  521. width: 10rpx;
  522. height: 10rpx;
  523. border-right: 3rpx solid #94a3b8;
  524. border-bottom: 3rpx solid #94a3b8;
  525. transform: rotate(45deg);
  526. transform-origin: center;
  527. transition: transform 0.16s ease;
  528. }
  529. .collapse-toggle.is-collapsed .collapse-indicator::before {
  530. top: 9rpx;
  531. transform: rotate(-45deg);
  532. }
  533. .collapse-toggle {
  534. flex: none;
  535. display: flex;
  536. align-items: center;
  537. justify-content: center;
  538. width: 34rpx;
  539. height: 50rpx;
  540. }
  541. .collapse-toggle:active {
  542. opacity: 0.72;
  543. }
  544. .panel--collapsed .panel-header {
  545. padding-bottom: 24rpx;
  546. }
  547. .panel-actions {
  548. flex: none;
  549. display: flex;
  550. align-items: center;
  551. gap: 8rpx;
  552. margin-left: auto;
  553. }
  554. .panel-actions--three {
  555. gap: 6rpx;
  556. }
  557. .panel-actions--status {
  558. gap: 8rpx;
  559. }
  560. .panel-action-button {
  561. flex: none;
  562. display: flex;
  563. align-items: center;
  564. justify-content: center;
  565. width: 86rpx;
  566. min-width: 0;
  567. height: 50rpx;
  568. min-height: 0;
  569. margin: 0;
  570. padding: 0;
  571. border: 1rpx solid #b9d8d1;
  572. border-radius: 10rpx;
  573. background: #ffffff;
  574. color: var(--accent-dark);
  575. font-size: 22rpx;
  576. line-height: 1.3;
  577. font-weight: 800;
  578. box-sizing: border-box;
  579. }
  580. .panel-action-button::after {
  581. border: 0;
  582. }
  583. .panel-action-button:active {
  584. opacity: 0.72;
  585. }
  586. .panel-action-button.is-disabled {
  587. background: #eef1f5;
  588. color: #94a3b8;
  589. box-shadow: none;
  590. }
  591. .panel-action-button.is-active {
  592. border-color: var(--accent-dark);
  593. background: var(--accent);
  594. color: #ffffff;
  595. }
  596. .theme-dark .panel-action-button.is-disabled {
  597. border-color: #263241;
  598. background: #1f2937;
  599. background-color: #1f2937;
  600. color: #64748b;
  601. }
  602. .theme-dark button[disabled].control-button,
  603. .theme-dark button.control-button[disabled] {
  604. border-color: #263241;
  605. background: #1f2937;
  606. background-color: #1f2937;
  607. background-image: none;
  608. color: #64748b;
  609. box-shadow: none;
  610. }
  611. .theme-dark button[disabled].control-button .control-name,
  612. .theme-dark button.control-button[disabled] .control-name {
  613. color: #64748b;
  614. }
  615. .panel-icon::before,
  616. .panel-icon::after {
  617. content: "";
  618. position: absolute;
  619. box-sizing: border-box;
  620. }
  621. .panel-icon::before {
  622. display: none;
  623. left: 7rpx;
  624. top: 7rpx;
  625. width: 24rpx;
  626. height: 24rpx;
  627. z-index: 1;
  628. background-position: center;
  629. background-repeat: no-repeat;
  630. background-size: contain;
  631. opacity: 0.96;
  632. }
  633. .panel-icon-image {
  634. position: absolute;
  635. z-index: 2;
  636. left: 7rpx;
  637. top: 7rpx;
  638. width: 24rpx;
  639. height: 24rpx;
  640. pointer-events: none;
  641. }
  642. .panel-icon::after {
  643. left: 0;
  644. top: 0;
  645. width: 100%;
  646. height: 100%;
  647. border-radius: inherit;
  648. box-shadow: inset 0 1rpx 0 rgba(255, 255, 255, 0.2);
  649. }
  650. .icon-chip {
  651. --icon-start: #5a86a6;
  652. --icon-end: #2f5e7c;
  653. }
  654. .icon-chip::before {
  655. background-image: url("/assets/icons/chip-white.png");
  656. }
  657. .icon-control {
  658. --icon-start: #18a58b;
  659. --icon-end: #0e746f;
  660. }
  661. .icon-control::before {
  662. background-image: url("/assets/icons/control-white.png");
  663. }
  664. .icon-bluetooth {
  665. --icon-start: #16a8cf;
  666. --icon-end: #0f7a9a;
  667. }
  668. .icon-bluetooth::before {
  669. background-image: url("/assets/icons/bluetooth-connected-white.png");
  670. }
  671. .icon-radar {
  672. --icon-start: #23b0d7;
  673. --icon-end: #137e8f;
  674. }
  675. .icon-radar::before {
  676. background-image: url("/assets/icons/radar-white.png");
  677. }
  678. .icon-terminal {
  679. --icon-start: #63758f;
  680. --icon-end: #324056;
  681. }
  682. .icon-terminal::before {
  683. background-image: url("/assets/icons/terminal-white.png");
  684. }
  685. .icon-send {
  686. --icon-start: #39bdf0;
  687. --icon-end: #1684c5;
  688. }
  689. .icon-send::before {
  690. background-image: url("/assets/icons/send-white.png");
  691. }
  692. .icon-history {
  693. --icon-start: #64748b;
  694. --icon-end: #475569;
  695. }
  696. .icon-history::before {
  697. background-image: url("/assets/icons/history-white.png");
  698. }
  699. .icon-status {
  700. --icon-start: #14a79a;
  701. --icon-end: #2563eb;
  702. }
  703. .icon-status::before {
  704. background-image: url("/assets/icons/status-white.png");
  705. }
  706. .icon-bars {
  707. --icon-start: #148f85;
  708. --icon-end: #105f8b;
  709. }
  710. .icon-bars::before {
  711. background-image: url("/assets/icons/sliders-white.png");
  712. }
  713. .icon-tune {
  714. --icon-start: #17a59f;
  715. --icon-end: #0d7280;
  716. }
  717. .icon-tune::before {
  718. background-image: url("/assets/icons/sliders-white.png");
  719. }
  720. .icon-speed {
  721. --icon-start: #f7a623;
  722. --icon-end: #d97f0c;
  723. }
  724. .icon-speed::before {
  725. background-image: url("/assets/icons/speed-white.png");
  726. }
  727. .icon-target {
  728. --icon-start: #21a37e;
  729. --icon-end: #0f766e;
  730. }
  731. .icon-target::before {
  732. background-image: url("/assets/icons/target-white.png");
  733. }
  734. .icon-shield-check {
  735. --icon-start: #16a34a;
  736. --icon-end: #0f766e;
  737. }
  738. .icon-shield-check::before {
  739. background-image: url("/assets/icons/shield-check-white.png");
  740. }
  741. .icon-crc {
  742. --icon-start: #2563eb;
  743. --icon-end: #0f766e;
  744. }
  745. .icon-crc::before {
  746. background-image: url("/assets/icons/hash-white.png");
  747. }
  748. .icon-filter {
  749. --icon-start: #f59e0b;
  750. --icon-end: #d97706;
  751. }
  752. .icon-filter::before {
  753. background-image: url("/assets/icons/funnel-white.png");
  754. }
  755. .icon-reactance {
  756. --icon-start: #0ea5e9;
  757. --icon-end: #0f766e;
  758. }
  759. .icon-reactance::before {
  760. background-image: url("/assets/icons/audio-waveform-white.png");
  761. }
  762. .icon-smd {
  763. --icon-start: #64748b;
  764. --icon-end: #334155;
  765. }
  766. .icon-smd::before {
  767. background-image: url("/assets/icons/microchip-white.png");
  768. }
  769. .icon-snow {
  770. --icon-start: #38bdf8;
  771. --icon-end: #2563eb;
  772. }
  773. .icon-snow::before {
  774. background-image: url("/assets/icons/snowflake-white.png");
  775. }
  776. .icon-three-phase {
  777. --icon-start: #7c3aed;
  778. --icon-end: #2563eb;
  779. }
  780. .icon-three-phase::before {
  781. background-image: url("/assets/icons/zap-white.png");
  782. }
  783. .param-row {
  784. display: flex;
  785. align-items: center;
  786. justify-content: space-between;
  787. gap: 18rpx;
  788. min-height: 96rpx;
  789. padding: 0 24rpx;
  790. border-top: 1rpx solid #edf2f7;
  791. box-sizing: border-box;
  792. }
  793. .panel-header + .param-row,
  794. .panel-header + view .param-row:first-child {
  795. border-top: 0;
  796. }
  797. .param-row:first-child {
  798. border-top: 0;
  799. }
  800. .input-row {
  801. min-height: 106rpx;
  802. }
  803. .param-main {
  804. min-width: 0;
  805. flex: 1;
  806. }
  807. .param-name {
  808. min-width: 0;
  809. color: #111827;
  810. font-size: 28rpx;
  811. line-height: 1.35;
  812. font-weight: 700;
  813. word-break: break-all;
  814. }
  815. .param-meta {
  816. margin-top: 7rpx;
  817. color: #6b7280;
  818. font-size: 22rpx;
  819. line-height: 1.35;
  820. word-break: break-all;
  821. }
  822. .param-meta--dirty {
  823. color: #d97706;
  824. font-weight: 800;
  825. }
  826. .param-value {
  827. flex: none;
  828. max-width: 320rpx;
  829. color: #0f8f87;
  830. font-size: 30rpx;
  831. line-height: 1.35;
  832. font-weight: 800;
  833. text-align: right;
  834. word-break: break-all;
  835. }
  836. .input-wrap {
  837. flex: none;
  838. display: flex;
  839. align-items: center;
  840. gap: 10rpx;
  841. }
  842. .value-input {
  843. width: 300rpx;
  844. height: 70rpx;
  845. padding: 0 18rpx;
  846. border: 1rpx solid #e7edf3;
  847. border-radius: 10rpx;
  848. background: #fafbfd;
  849. color: #111827;
  850. font-size: 28rpx;
  851. line-height: 70rpx;
  852. text-align: right;
  853. box-sizing: border-box;
  854. }
  855. .value-input--with-unit {
  856. width: 300rpx;
  857. }
  858. .value-input:focus {
  859. border-color: #0f8f87;
  860. background: #f4fbfa;
  861. }
  862. .value-input--dirty {
  863. border-color: #fbbf24;
  864. background: #fffbeb;
  865. color: #92400e;
  866. }
  867. .generic-dialog-mask {
  868. position: fixed;
  869. z-index: 60;
  870. left: 0;
  871. right: 0;
  872. top: 0;
  873. bottom: 0;
  874. display: flex;
  875. align-items: center;
  876. justify-content: center;
  877. padding: 24rpx 24rpx calc(32rpx + env(safe-area-inset-bottom));
  878. background: rgba(15, 23, 42, 0.28);
  879. box-sizing: border-box;
  880. }
  881. .generic-dialog {
  882. width: 100%;
  883. max-height: 84vh;
  884. overflow: hidden;
  885. border: 1rpx solid #e5edf4;
  886. border-radius: 20rpx;
  887. background: #ffffff;
  888. box-shadow: 0 18rpx 48rpx rgba(15, 23, 42, 0.2);
  889. box-sizing: border-box;
  890. }
  891. .generic-dialog-header {
  892. display: flex;
  893. align-items: center;
  894. justify-content: space-between;
  895. min-height: 84rpx;
  896. padding: 0 24rpx;
  897. border-bottom: 1rpx solid #edf2f7;
  898. box-sizing: border-box;
  899. }
  900. .generic-dialog-title {
  901. color: #111827;
  902. font-size: 30rpx;
  903. line-height: 1.3;
  904. font-weight: 900;
  905. }
  906. .generic-dialog-close {
  907. display: flex;
  908. align-items: center;
  909. justify-content: center;
  910. width: 56rpx;
  911. height: 56rpx;
  912. color: #64748b;
  913. font-size: 38rpx;
  914. line-height: 1;
  915. font-weight: 500;
  916. }
  917. .generic-dialog-body {
  918. max-height: 62vh;
  919. overflow-y: auto;
  920. }
  921. .generic-config-row {
  922. display: flex;
  923. align-items: center;
  924. justify-content: space-between;
  925. gap: 18rpx;
  926. min-height: 96rpx;
  927. padding: 14rpx 24rpx;
  928. border-top: 1rpx solid #edf2f7;
  929. box-sizing: border-box;
  930. }
  931. .generic-config-row:first-of-type {
  932. border-top: 0;
  933. }
  934. .generic-picker-value {
  935. width: 300rpx;
  936. min-width: 300rpx;
  937. max-width: 300rpx;
  938. height: 70rpx;
  939. padding: 0;
  940. border: 0;
  941. background: transparent;
  942. color: #111827;
  943. font-size: 28rpx;
  944. line-height: 70rpx;
  945. font-weight: 800;
  946. text-align: right;
  947. overflow: hidden;
  948. text-overflow: ellipsis;
  949. white-space: nowrap;
  950. box-sizing: border-box;
  951. }
  952. .generic-value-input {
  953. width: 300rpx;
  954. height: 70rpx;
  955. line-height: 70rpx;
  956. font-size: 28rpx;
  957. }
  958. .generic-struct-section {
  959. padding: 16rpx 24rpx 22rpx;
  960. border-top: 1rpx solid #edf2f7;
  961. box-sizing: border-box;
  962. }
  963. .generic-struct-header {
  964. display: flex;
  965. align-items: center;
  966. justify-content: space-between;
  967. gap: 18rpx;
  968. margin-bottom: 14rpx;
  969. }
  970. .generic-struct-input {
  971. width: 100%;
  972. min-height: 220rpx;
  973. max-height: 360rpx;
  974. padding: 16rpx 18rpx;
  975. border: 1rpx solid #dbe5ee;
  976. border-radius: 12rpx;
  977. background: #f8fafc;
  978. color: #111827;
  979. font-family: Menlo, Monaco, Consolas, monospace;
  980. font-size: 22rpx;
  981. line-height: 1.45;
  982. box-sizing: border-box;
  983. }
  984. .generic-draft-actions {
  985. display: flex;
  986. justify-content: flex-end;
  987. gap: 12rpx;
  988. padding: 18rpx 24rpx 22rpx;
  989. border-top: 1rpx solid #edf2f7;
  990. box-sizing: border-box;
  991. }
  992. .generic-empty-state {
  993. margin-top: 8rpx;
  994. }
  995. .generic-info-stack {
  996. padding: 0 24rpx;
  997. box-sizing: border-box;
  998. }
  999. .generic-info-row {
  1000. display: flex;
  1001. align-items: center;
  1002. justify-content: space-between;
  1003. gap: 18rpx;
  1004. min-height: 88rpx;
  1005. border-top: 1rpx solid #edf2f7;
  1006. box-sizing: border-box;
  1007. }
  1008. .generic-info-row:first-child {
  1009. border-top: 0;
  1010. }
  1011. .generic-info-label {
  1012. flex: none;
  1013. width: 116rpx;
  1014. color: #64748b;
  1015. font-size: 23rpx;
  1016. line-height: 1.3;
  1017. font-weight: 800;
  1018. }
  1019. .generic-info-value {
  1020. min-width: 0;
  1021. flex: 1;
  1022. color: #111827;
  1023. font-size: 26rpx;
  1024. line-height: 1.35;
  1025. font-weight: 800;
  1026. text-align: right;
  1027. word-break: break-all;
  1028. }
  1029. .panel-action-button--icon {
  1030. min-width: 58rpx;
  1031. width: 58rpx;
  1032. padding: 0;
  1033. font-size: 34rpx;
  1034. line-height: 50rpx;
  1035. }
  1036. .generic-group-shell {
  1037. position: relative;
  1038. margin-top: 12rpx;
  1039. }
  1040. .generic-group-shell:first-child {
  1041. margin-top: 0;
  1042. }
  1043. .generic-delete-action {
  1044. position: absolute;
  1045. left: 0;
  1046. top: 0;
  1047. z-index: 0;
  1048. display: flex;
  1049. align-items: center;
  1050. justify-content: center;
  1051. width: 76rpx;
  1052. height: 100%;
  1053. min-height: 74rpx;
  1054. border-radius: 18rpx 0 0 18rpx;
  1055. background: #dc2626;
  1056. color: #ffffff;
  1057. font-size: 44rpx;
  1058. line-height: 1;
  1059. font-weight: 900;
  1060. box-sizing: border-box;
  1061. }
  1062. .generic-group-panel {
  1063. position: relative;
  1064. z-index: 1;
  1065. margin-top: 0;
  1066. overflow: hidden;
  1067. transition: transform 0.16s ease;
  1068. }
  1069. .generic-group-shell.is-delete-visible .generic-group-panel {
  1070. transform: translateX(76rpx);
  1071. }
  1072. .generic-group-title-wrap {
  1073. min-width: 0;
  1074. flex: 1;
  1075. }
  1076. .generic-group-panel .panel-header,
  1077. .generic-group-panel.panel--collapsed .panel-header {
  1078. padding: 14rpx 18rpx;
  1079. }
  1080. .generic-group-panel .panel-icon {
  1081. width: 34rpx;
  1082. height: 34rpx;
  1083. border-radius: 10rpx;
  1084. }
  1085. .generic-group-title-wrap .panel-title {
  1086. font-size: 27rpx;
  1087. line-height: 1.22;
  1088. overflow: hidden;
  1089. text-overflow: ellipsis;
  1090. }
  1091. .generic-group-meta {
  1092. margin-top: 2rpx;
  1093. font-size: 20rpx;
  1094. line-height: 1.25;
  1095. white-space: nowrap;
  1096. overflow: hidden;
  1097. text-overflow: ellipsis;
  1098. word-break: keep-all;
  1099. }
  1100. .generic-group-actions {
  1101. flex: none;
  1102. gap: 6rpx;
  1103. }
  1104. .generic-group-actions .panel-action-button {
  1105. width: 76rpx;
  1106. height: 46rpx;
  1107. font-size: 21rpx;
  1108. border-radius: 9rpx;
  1109. }
  1110. .generic-group-actions .entry-chevron {
  1111. margin-left: 4rpx;
  1112. transform: rotate(-45deg);
  1113. }
  1114. .generic-group-inline-registers {
  1115. border-top: 1rpx solid #edf2f7;
  1116. }
  1117. .generic-group-inline-registers .generic-register-row {
  1118. border-top: 0;
  1119. border-radius: 0;
  1120. }
  1121. .storage-code-info-inline {
  1122. display: flex;
  1123. flex-direction: column;
  1124. align-items: stretch;
  1125. gap: 8rpx;
  1126. padding: 16rpx 18rpx;
  1127. border: 1rpx solid #edf2f7;
  1128. border-radius: 14rpx;
  1129. background: rgba(15, 143, 135, 0.04);
  1130. box-sizing: border-box;
  1131. }
  1132. .storage-code-info-top,
  1133. .storage-code-info-bottom {
  1134. display: flex;
  1135. align-items: center;
  1136. min-width: 0;
  1137. }
  1138. .storage-code-info-top {
  1139. justify-content: flex-start;
  1140. }
  1141. .storage-code-info-bottom {
  1142. justify-content: space-between;
  1143. gap: 14rpx;
  1144. }
  1145. .storage-code-info-model {
  1146. width: 100%;
  1147. min-width: 0;
  1148. color: #0f8f87;
  1149. font-size: 28rpx;
  1150. line-height: 1.25;
  1151. font-weight: 900;
  1152. overflow: hidden;
  1153. text-overflow: ellipsis;
  1154. white-space: nowrap;
  1155. }
  1156. .storage-code-info-chip {
  1157. flex: 1;
  1158. min-width: 120rpx;
  1159. color: #64748b;
  1160. font-size: 22rpx;
  1161. line-height: 1.25;
  1162. font-weight: 800;
  1163. overflow: hidden;
  1164. text-overflow: ellipsis;
  1165. white-space: nowrap;
  1166. }
  1167. .storage-code-info-metrics {
  1168. flex: 2;
  1169. min-width: 0;
  1170. display: flex;
  1171. align-items: center;
  1172. justify-content: flex-end;
  1173. flex-wrap: wrap;
  1174. gap: 8rpx;
  1175. }
  1176. .storage-code-info-metric {
  1177. color: #64748b;
  1178. font-family: Menlo, Monaco, Consolas, monospace;
  1179. font-size: 20rpx;
  1180. line-height: 1.25;
  1181. font-weight: 900;
  1182. }
  1183. .generic-register-row {
  1184. display: flex;
  1185. align-items: center;
  1186. justify-content: space-between;
  1187. gap: 8rpx;
  1188. min-height: 80rpx;
  1189. padding: 6rpx 16rpx;
  1190. border-top: 1rpx solid #edf2f7;
  1191. border-radius: 16rpx;
  1192. box-sizing: border-box;
  1193. transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
  1194. transform-origin: center center;
  1195. will-change: transform;
  1196. }
  1197. .generic-register-row.is-drag-armed {
  1198. background: rgba(15, 143, 135, 0.04);
  1199. }
  1200. .generic-register-row.is-dragging {
  1201. position: relative;
  1202. border-color: rgba(15, 143, 135, 0.28);
  1203. background: linear-gradient(180deg, rgba(15, 143, 135, 0.12), rgba(15, 143, 135, 0.08));
  1204. box-shadow: 0 14rpx 38rpx rgba(15, 23, 42, 0.18);
  1205. }
  1206. .generic-register-row.is-shift-up,
  1207. .generic-register-row.is-shift-down {
  1208. z-index: 1;
  1209. }
  1210. .generic-register-drag-handle {
  1211. flex: none;
  1212. display: flex;
  1213. flex-direction: column;
  1214. align-items: center;
  1215. justify-content: center;
  1216. gap: 4rpx;
  1217. width: 30rpx;
  1218. min-height: 50rpx;
  1219. margin-left: -4rpx;
  1220. border-radius: 12rpx;
  1221. transition: background-color 0.18s ease, transform 0.18s ease;
  1222. }
  1223. .generic-register-layout-spacer {
  1224. flex: none;
  1225. width: 12rpx;
  1226. min-height: 50rpx;
  1227. }
  1228. .generic-register-drag-handle.is-drag-armed {
  1229. background: rgba(15, 143, 135, 0.08);
  1230. }
  1231. .generic-register-drag-handle.is-dragging {
  1232. background: rgba(15, 143, 135, 0.14);
  1233. transform: scale(1.04);
  1234. }
  1235. .generic-register-drag-bar {
  1236. width: 18rpx;
  1237. height: 3rpx;
  1238. border-radius: 999rpx;
  1239. background: #94a3b8;
  1240. transition: background-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
  1241. }
  1242. .generic-register-drag-handle.is-drag-armed .generic-register-drag-bar,
  1243. .generic-register-drag-handle.is-dragging .generic-register-drag-bar {
  1244. background: #0f8f87;
  1245. }
  1246. .generic-register-drag-handle.is-dragging .generic-register-drag-bar:nth-child(1) {
  1247. transform: translateX(-2rpx);
  1248. }
  1249. .generic-register-drag-handle.is-dragging .generic-register-drag-bar:nth-child(3) {
  1250. transform: translateX(2rpx);
  1251. }
  1252. .generic-register-main {
  1253. min-width: 0;
  1254. flex: 1;
  1255. display: flex;
  1256. flex-direction: column;
  1257. gap: 2rpx;
  1258. }
  1259. .generic-register-name {
  1260. color: #111827;
  1261. font-size: 24rpx;
  1262. line-height: 1.25;
  1263. font-weight: 800;
  1264. word-break: break-all;
  1265. }
  1266. .generic-register-meta {
  1267. display: flex;
  1268. align-items: center;
  1269. flex-wrap: wrap;
  1270. gap: 10rpx;
  1271. margin-top: 0;
  1272. color: #64748b;
  1273. font-family: Menlo, Monaco, Consolas, monospace;
  1274. font-size: 20rpx;
  1275. line-height: 1.25;
  1276. font-weight: 700;
  1277. }
  1278. .generic-register-input-wrap {
  1279. flex: none;
  1280. position: relative;
  1281. width: 210rpx;
  1282. min-width: 168rpx;
  1283. max-width: 40%;
  1284. box-sizing: border-box;
  1285. }
  1286. .generic-register-display-meta {
  1287. margin-top: 3rpx;
  1288. color: #64748b;
  1289. font-family: Menlo, Monaco, Consolas, monospace;
  1290. font-size: 19rpx;
  1291. line-height: 1.25;
  1292. font-weight: 700;
  1293. text-align: right;
  1294. }
  1295. .generic-register-value {
  1296. width: 100%;
  1297. min-width: 0;
  1298. max-width: 100%;
  1299. }
  1300. .generic-register-unit {
  1301. position: absolute;
  1302. right: 18rpx;
  1303. top: 50%;
  1304. transform: translateY(-50%);
  1305. pointer-events: none;
  1306. color: #0f8f87;
  1307. font-size: 24rpx;
  1308. line-height: 1.35;
  1309. font-weight: 900;
  1310. }
  1311. .generic-register-input-wrap--unit .generic-register-value {
  1312. padding-right: 64rpx;
  1313. }
  1314. .generic-readonly-value {
  1315. width: 210rpx;
  1316. max-width: 40%;
  1317. font-family: Menlo, Monaco, Consolas, monospace;
  1318. font-size: 24rpx;
  1319. }
  1320. .generic-group-detail-panel {
  1321. overflow: hidden;
  1322. }
  1323. .generic-group-detail-header {
  1324. padding: 18rpx 18rpx 8rpx;
  1325. box-sizing: border-box;
  1326. }
  1327. .generic-group-detail-header .panel-title {
  1328. font-size: 30rpx;
  1329. line-height: 1.25;
  1330. }
  1331. .generic-group-detail-meta {
  1332. padding: 0 18rpx 14rpx;
  1333. border-bottom: 1rpx solid #edf2f7;
  1334. color: #64748b;
  1335. font-family: Menlo, Monaco, Consolas, monospace;
  1336. font-size: 21rpx;
  1337. line-height: 1.35;
  1338. font-weight: 800;
  1339. box-sizing: border-box;
  1340. }
  1341. .crc-picker-value {
  1342. min-width: 300rpx;
  1343. max-width: 300rpx;
  1344. overflow: hidden;
  1345. text-overflow: ellipsis;
  1346. white-space: nowrap;
  1347. }
  1348. .crc-algorithm-panel {
  1349. overflow: hidden;
  1350. }
  1351. .crc-algorithm-panel > .param-row {
  1352. min-height: 92rpx;
  1353. }
  1354. .crc-algorithm-picker {
  1355. min-width: 0;
  1356. flex: 1;
  1357. display: block;
  1358. width: 100%;
  1359. }
  1360. .crc-algorithm-picker-content {
  1361. min-width: 0;
  1362. width: 100%;
  1363. display: flex;
  1364. align-items: center;
  1365. justify-content: space-between;
  1366. gap: 18rpx;
  1367. }
  1368. .crc-algorithm-picker-content .param-main {
  1369. flex: 1;
  1370. min-width: 0;
  1371. }
  1372. .crc-algorithm-panel .crc-picker-value {
  1373. flex: none;
  1374. width: auto;
  1375. min-width: 0;
  1376. max-width: 430rpx;
  1377. font-size: 24rpx;
  1378. }
  1379. .crc-data-card-header {
  1380. display: flex;
  1381. align-items: center;
  1382. justify-content: space-between;
  1383. gap: 12rpx;
  1384. min-height: 76rpx;
  1385. padding: 12rpx 18rpx 12rpx 24rpx;
  1386. }
  1387. .crc-data-title {
  1388. min-width: 0;
  1389. flex: 1;
  1390. text-align: left;
  1391. }
  1392. .crc-data-header-actions {
  1393. flex: none;
  1394. display: flex;
  1395. align-items: center;
  1396. justify-content: flex-end;
  1397. gap: 6rpx;
  1398. }
  1399. .crc-data-type-picker {
  1400. flex: none;
  1401. margin-right: 8rpx;
  1402. }
  1403. .crc-data-type-value {
  1404. width: 108rpx;
  1405. height: 50rpx;
  1406. color: #111827;
  1407. font-size: 22rpx;
  1408. line-height: 50rpx;
  1409. font-weight: 900;
  1410. text-align: right;
  1411. overflow: hidden;
  1412. text-overflow: ellipsis;
  1413. white-space: nowrap;
  1414. }
  1415. .crc-data-header-actions .panel-action-button {
  1416. width: 78rpx;
  1417. }
  1418. .theme-dark .crc-data-type-value {
  1419. color: #e5e7eb;
  1420. }
  1421. .crc-algorithm-fields {
  1422. border-top: 1rpx solid #edf2f7;
  1423. }
  1424. .theme-dark .crc-algorithm-fields {
  1425. border-color: #263241;
  1426. }
  1427. .crc-config-input {
  1428. width: 300rpx;
  1429. font-family: Menlo, Monaco, Consolas, monospace;
  1430. }
  1431. .crc-switch-row {
  1432. display: flex;
  1433. gap: 12rpx;
  1434. padding: 0 24rpx;
  1435. border-top: 1rpx solid #edf2f7;
  1436. box-sizing: border-box;
  1437. }
  1438. .theme-dark .crc-switch-row {
  1439. border-color: #263241;
  1440. }
  1441. .crc-switch-field {
  1442. flex: 1;
  1443. min-width: 0;
  1444. display: flex;
  1445. align-items: center;
  1446. justify-content: space-between;
  1447. gap: 12rpx;
  1448. min-height: 96rpx;
  1449. }
  1450. .crc-data-wrap {
  1451. padding: 18rpx 24rpx 22rpx;
  1452. box-sizing: border-box;
  1453. }
  1454. .crc-data-input {
  1455. width: 100%;
  1456. min-height: 230rpx;
  1457. padding: 18rpx;
  1458. border: 1rpx solid #e7edf3;
  1459. border-radius: 12rpx;
  1460. background: #fafbfd;
  1461. color: #111827;
  1462. font-family: Menlo, Monaco, Consolas, monospace;
  1463. font-size: 24rpx;
  1464. line-height: 1.45;
  1465. box-sizing: border-box;
  1466. }
  1467. .crc-file-name,
  1468. .crc-error-value {
  1469. min-width: 0;
  1470. max-width: 430rpx;
  1471. text-align: right;
  1472. word-break: break-all;
  1473. }
  1474. .crc-file-name {
  1475. color: #111827;
  1476. font-size: 24rpx;
  1477. line-height: 1.35;
  1478. font-weight: 800;
  1479. }
  1480. .crc-result-bin-line {
  1481. display: block;
  1482. white-space: nowrap;
  1483. }
  1484. .crc-error-value {
  1485. color: var(--danger);
  1486. font-size: 24rpx;
  1487. line-height: 1.35;
  1488. font-weight: 800;
  1489. }
  1490. .filter-input-wrap {
  1491. flex: none;
  1492. display: flex;
  1493. align-items: center;
  1494. justify-content: flex-end;
  1495. gap: 8rpx;
  1496. }
  1497. .filter-value-input {
  1498. width: 210rpx;
  1499. min-width: 0;
  1500. max-width: 210rpx;
  1501. }
  1502. .filter-value-input--computed {
  1503. border-color: #9bd6cf;
  1504. background: #f0fdfa;
  1505. color: #0f766e;
  1506. font-weight: 900;
  1507. }
  1508. .filter-unit-picker {
  1509. flex: none;
  1510. width: 92rpx;
  1511. }
  1512. .filter-unit-value {
  1513. width: 92rpx;
  1514. height: 70rpx;
  1515. color: #111827;
  1516. font-size: 25rpx;
  1517. line-height: 70rpx;
  1518. font-weight: 900;
  1519. text-align: right;
  1520. overflow: hidden;
  1521. text-overflow: ellipsis;
  1522. white-space: nowrap;
  1523. box-sizing: border-box;
  1524. }
  1525. .filter-section-title,
  1526. .filter-diagram-title {
  1527. display: flex;
  1528. align-items: center;
  1529. justify-content: space-between;
  1530. gap: 16rpx;
  1531. }
  1532. .filter-section-title-text {
  1533. min-width: 0;
  1534. flex: 1;
  1535. }
  1536. .filter-mode-actions {
  1537. flex: none;
  1538. display: flex;
  1539. align-items: center;
  1540. gap: 8rpx;
  1541. }
  1542. .filter-mode-button {
  1543. flex: none;
  1544. min-width: 78rpx;
  1545. height: 46rpx;
  1546. padding: 0 16rpx;
  1547. border: 1rpx solid #b9d8d1;
  1548. border-radius: 10rpx;
  1549. background: #ffffff;
  1550. color: var(--accent-dark);
  1551. font-size: 22rpx;
  1552. line-height: 44rpx;
  1553. font-weight: 900;
  1554. text-align: center;
  1555. box-sizing: border-box;
  1556. }
  1557. .filter-mode-button:active {
  1558. opacity: 0.72;
  1559. }
  1560. .filter-error-inline {
  1561. padding: 0 24rpx 18rpx;
  1562. color: var(--danger);
  1563. font-size: 24rpx;
  1564. line-height: 1.35;
  1565. font-weight: 800;
  1566. text-align: right;
  1567. box-sizing: border-box;
  1568. }
  1569. .filter-diagram-mode {
  1570. min-width: 0;
  1571. flex: none;
  1572. max-width: 260rpx;
  1573. color: #0f8f87;
  1574. font-size: 23rpx;
  1575. line-height: 1.35;
  1576. font-weight: 900;
  1577. text-align: right;
  1578. white-space: nowrap;
  1579. overflow: hidden;
  1580. text-overflow: ellipsis;
  1581. }
  1582. .filter-diagram {
  1583. position: relative;
  1584. min-height: 320rpx;
  1585. padding: 30rpx 0 30rpx;
  1586. border-top: 1rpx solid #edf2f7;
  1587. background: #ffffff;
  1588. box-sizing: border-box;
  1589. }
  1590. .filter-schematic {
  1591. position: relative;
  1592. width: 560rpx;
  1593. height: 260rpx;
  1594. margin: 0 auto;
  1595. color: #111827;
  1596. }
  1597. .filter-schematic-label {
  1598. position: absolute;
  1599. color: #111827;
  1600. font-size: 32rpx;
  1601. line-height: 1;
  1602. font-weight: 900;
  1603. font-style: italic;
  1604. letter-spacing: 0;
  1605. }
  1606. .filter-schematic-label--input {
  1607. left: 0;
  1608. top: 122rpx;
  1609. }
  1610. .filter-schematic-label--output {
  1611. left: 426rpx;
  1612. top: 118rpx;
  1613. }
  1614. .filter-schematic-wire,
  1615. .filter-schematic-dot {
  1616. position: absolute;
  1617. background: #111827;
  1618. }
  1619. .filter-schematic-wire {
  1620. height: 4rpx;
  1621. border-radius: 999rpx;
  1622. }
  1623. .filter-schematic-dot {
  1624. z-index: 3;
  1625. width: 18rpx;
  1626. height: 18rpx;
  1627. border-radius: 50%;
  1628. }
  1629. .filter-schematic-dot--input-top {
  1630. left: 38rpx;
  1631. top: 58rpx;
  1632. }
  1633. .filter-schematic-dot--input-bottom {
  1634. left: 38rpx;
  1635. top: 206rpx;
  1636. }
  1637. .filter-schematic-dot--node-top {
  1638. left: 358rpx;
  1639. top: 58rpx;
  1640. }
  1641. .filter-schematic-dot--node-bottom {
  1642. left: 358rpx;
  1643. top: 206rpx;
  1644. }
  1645. .filter-schematic-dot--output-top {
  1646. left: 514rpx;
  1647. top: 58rpx;
  1648. }
  1649. .filter-schematic-dot--output-bottom {
  1650. left: 514rpx;
  1651. top: 206rpx;
  1652. }
  1653. .filter-schematic-wire--top-input {
  1654. left: 56rpx;
  1655. top: 65rpx;
  1656. width: 100rpx;
  1657. }
  1658. .filter-schematic-wire--top-middle {
  1659. left: 268rpx;
  1660. top: 65rpx;
  1661. width: 98rpx;
  1662. }
  1663. .filter-schematic-wire--top-output {
  1664. left: 366rpx;
  1665. top: 65rpx;
  1666. width: 148rpx;
  1667. }
  1668. .filter-schematic-wire--bottom-input {
  1669. left: 56rpx;
  1670. top: 213rpx;
  1671. width: 310rpx;
  1672. }
  1673. .filter-schematic-wire--bottom-output {
  1674. left: 366rpx;
  1675. top: 213rpx;
  1676. width: 148rpx;
  1677. }
  1678. .filter-schematic-wire--branch-top {
  1679. left: 365rpx;
  1680. top: 76rpx;
  1681. width: 4rpx;
  1682. height: 40rpx;
  1683. }
  1684. .filter-schematic-wire--branch-bottom {
  1685. left: 365rpx;
  1686. top: 208rpx;
  1687. width: 4rpx;
  1688. height: 8rpx;
  1689. }
  1690. .filter-schematic-component {
  1691. position: absolute;
  1692. z-index: 2;
  1693. display: flex;
  1694. align-items: center;
  1695. justify-content: center;
  1696. box-sizing: border-box;
  1697. }
  1698. .filter-schematic-component--series {
  1699. left: 156rpx;
  1700. top: 40rpx;
  1701. width: 112rpx;
  1702. height: 54rpx;
  1703. }
  1704. .filter-schematic-component--shunt {
  1705. left: 342rpx;
  1706. top: 116rpx;
  1707. width: 50rpx;
  1708. height: 96rpx;
  1709. }
  1710. .filter-schematic-symbol {
  1711. display: block;
  1712. width: 100%;
  1713. height: 100%;
  1714. }
  1715. .filter-schematic-symbol--vertical {
  1716. width: 104rpx;
  1717. height: 48rpx;
  1718. transform: rotate(90deg);
  1719. }
  1720. .filter-schematic-mark {
  1721. position: absolute;
  1722. z-index: 4;
  1723. color: #111827;
  1724. font-size: 34rpx;
  1725. line-height: 1;
  1726. font-weight: 700;
  1727. font-style: italic;
  1728. }
  1729. .filter-schematic-mark--series {
  1730. left: 202rpx;
  1731. top: 0;
  1732. }
  1733. .filter-schematic-mark--shunt {
  1734. left: 305rpx;
  1735. top: 142rpx;
  1736. }
  1737. .theme-dark .filter-unit-value {
  1738. color: #e5e7eb;
  1739. }
  1740. .theme-dark .filter-value-input--computed {
  1741. border-color: #0f766e;
  1742. background: #0f2f2d;
  1743. color: #5eead4;
  1744. }
  1745. .theme-dark .filter-mode-button {
  1746. border-color: #334155;
  1747. background: #111827;
  1748. color: #99f6e4;
  1749. }
  1750. .theme-dark .filter-diagram {
  1751. border-color: #edf2f7;
  1752. background: #ffffff;
  1753. }
  1754. .theme-dark .filter-schematic,
  1755. .theme-dark .filter-schematic-label,
  1756. .theme-dark .filter-schematic-mark {
  1757. color: #1f2937;
  1758. }
  1759. .theme-dark .filter-diagram-mode {
  1760. color: #5eead4;
  1761. }
  1762. .theme-dark .filter-schematic-wire,
  1763. .theme-dark .filter-schematic-dot {
  1764. background: #111827;
  1765. }
  1766. .smd-section-title {
  1767. display: flex;
  1768. align-items: center;
  1769. justify-content: space-between;
  1770. gap: 16rpx;
  1771. }
  1772. .smd-section-title-text {
  1773. min-width: 0;
  1774. flex: 1;
  1775. }
  1776. .smd-mode-actions,
  1777. .smd-format-row {
  1778. display: flex;
  1779. align-items: center;
  1780. }
  1781. .smd-mode-actions {
  1782. flex: none;
  1783. gap: 8rpx;
  1784. }
  1785. .smd-format-row {
  1786. gap: 10rpx;
  1787. padding: 18rpx 24rpx 22rpx;
  1788. border-top: 1rpx solid #edf2f7;
  1789. box-sizing: border-box;
  1790. }
  1791. .smd-mode-button,
  1792. .smd-format-button {
  1793. flex: none;
  1794. display: flex;
  1795. align-items: center;
  1796. justify-content: center;
  1797. height: 46rpx;
  1798. border: 1rpx solid #d7e2ea;
  1799. border-radius: 10rpx;
  1800. background: #ffffff;
  1801. color: #64748b;
  1802. font-size: 22rpx;
  1803. line-height: 1.25;
  1804. font-weight: 900;
  1805. box-sizing: border-box;
  1806. }
  1807. .smd-mode-button {
  1808. min-width: 78rpx;
  1809. padding: 0 16rpx;
  1810. }
  1811. .smd-format-button {
  1812. flex: 1;
  1813. min-width: 0;
  1814. padding: 0 10rpx;
  1815. }
  1816. .smd-mode-button.is-active,
  1817. .smd-format-button.is-active {
  1818. border-color: var(--accent-dark);
  1819. background: var(--accent-soft);
  1820. color: var(--accent-dark);
  1821. }
  1822. .smd-mode-button:active,
  1823. .smd-format-button:active {
  1824. opacity: 0.72;
  1825. }
  1826. .smd-code-input {
  1827. width: 300rpx;
  1828. font-family: Menlo, Monaco, Consolas, monospace;
  1829. }
  1830. .smd-result-row {
  1831. min-height: 94rpx;
  1832. }
  1833. .smd-result-value {
  1834. flex: none;
  1835. max-width: 320rpx;
  1836. color: #0f8f87;
  1837. font-family: Menlo, Monaco, Consolas, monospace;
  1838. font-size: 30rpx;
  1839. line-height: 1.25;
  1840. font-weight: 900;
  1841. text-align: right;
  1842. word-break: break-all;
  1843. }
  1844. .smd-result-value--error {
  1845. color: var(--danger);
  1846. font-family: inherit;
  1847. font-size: 25rpx;
  1848. }
  1849. .theme-dark .smd-format-row {
  1850. border-color: #263241;
  1851. }
  1852. .theme-dark .smd-mode-button,
  1853. .theme-dark .smd-format-button {
  1854. border-color: #334155;
  1855. background: #111827;
  1856. color: #94a3b8;
  1857. }
  1858. .theme-dark .smd-mode-button.is-active,
  1859. .theme-dark .smd-format-button.is-active {
  1860. border-color: #5eead4;
  1861. background: #123d3b;
  1862. color: #99f6e4;
  1863. }
  1864. .theme-dark .smd-result-value {
  1865. color: #5eead4;
  1866. }
  1867. .theme-dark .smd-result-value--error {
  1868. color: var(--danger);
  1869. }
  1870. .crc-calc-result-row {
  1871. align-items: stretch;
  1872. min-height: 0;
  1873. padding-top: 16rpx;
  1874. padding-bottom: 16rpx;
  1875. }
  1876. .crc-calc-result-main {
  1877. width: 100%;
  1878. display: flex;
  1879. flex-direction: column;
  1880. align-items: stretch;
  1881. }
  1882. .crc-calc-result-value {
  1883. display: block;
  1884. width: 100%;
  1885. max-width: none;
  1886. margin-top: 10rpx;
  1887. padding: 14rpx 16rpx;
  1888. border-radius: 10rpx;
  1889. background: #f4fbfa;
  1890. color: #0f8f87;
  1891. font-family: Menlo, Monaco, Consolas, monospace;
  1892. font-size: 24rpx;
  1893. line-height: 1.35;
  1894. font-weight: 800;
  1895. text-align: right;
  1896. word-break: break-all;
  1897. white-space: normal;
  1898. box-sizing: border-box;
  1899. }
  1900. .crc-calc-result-value:active {
  1901. opacity: 0.72;
  1902. }
  1903. .crc-calc-result-value--bin {
  1904. display: flex;
  1905. flex-direction: column;
  1906. align-items: flex-end;
  1907. gap: 3rpx;
  1908. max-width: none;
  1909. text-align: right;
  1910. }
  1911. .crc-calc-result-row .param-name {
  1912. word-break: keep-all;
  1913. }
  1914. .theme-dark .crc-calc-result-value {
  1915. background: #0f2f2d;
  1916. color: #5eead4;
  1917. }
  1918. .theme-dark .crc-calc-result-value--bin {
  1919. background: #0f2f2d;
  1920. color: #5eead4;
  1921. }
  1922. .theme-dark .crc-calc-result-value--error {
  1923. background: #432114;
  1924. color: #fed7aa;
  1925. }
  1926. .refrigeration-mode-picker {
  1927. flex: none;
  1928. }
  1929. .refrigeration-title-row {
  1930. min-height: 76rpx;
  1931. padding-top: 12rpx;
  1932. padding-bottom: 12rpx;
  1933. }
  1934. .refrigeration-picker-value {
  1935. width: 240rpx;
  1936. min-width: 240rpx;
  1937. max-width: 240rpx;
  1938. height: 46rpx;
  1939. font-size: 24rpx;
  1940. line-height: 46rpx;
  1941. }
  1942. .refrigeration-formula-row {
  1943. justify-content: flex-end;
  1944. }
  1945. .refrigeration-formula-text {
  1946. min-width: 0;
  1947. flex: 1;
  1948. color: #64748b;
  1949. font-size: 24rpx;
  1950. line-height: 1.35;
  1951. font-weight: 800;
  1952. text-align: right;
  1953. word-break: break-all;
  1954. }
  1955. .refrigeration-input {
  1956. width: 260rpx;
  1957. }
  1958. .three-phase-input {
  1959. width: 260rpx;
  1960. }
  1961. .theme-dark .refrigeration-formula-text {
  1962. color: #94a3b8;
  1963. }
  1964. .subpage-fixed-header .panel-actions {
  1965. flex-shrink: 0;
  1966. }
  1967. .subpage-fixed-header .panel-action-button {
  1968. width: 86rpx;
  1969. }
  1970. .subpage-fixed-header--generic .generic-protocol-actions {
  1971. flex: 1 1 auto;
  1972. flex-wrap: wrap;
  1973. justify-content: flex-end;
  1974. gap: 8rpx;
  1975. margin-left: 0;
  1976. }
  1977. .auto-read-button {
  1978. margin-left: 2rpx;
  1979. }
  1980. @media (max-width: 360px) {
  1981. .panel-title {
  1982. font-size: 28rpx;
  1983. }
  1984. .param-name {
  1985. font-size: 26rpx;
  1986. }
  1987. .param-meta {
  1988. font-size: 21rpx;
  1989. }
  1990. .value-input {
  1991. width: 260rpx;
  1992. }
  1993. .value-input--with-unit {
  1994. width: 260rpx;
  1995. }
  1996. .generic-picker-value,
  1997. .generic-value-input {
  1998. width: 260rpx;
  1999. min-width: 260rpx;
  2000. max-width: 260rpx;
  2001. }
  2002. .generic-register-input-wrap {
  2003. width: 180rpx;
  2004. min-width: 150rpx;
  2005. max-width: 38%;
  2006. }
  2007. .generic-register-value {
  2008. width: 100%;
  2009. min-width: 0;
  2010. max-width: 100%;
  2011. }
  2012. .generic-readonly-value {
  2013. width: 180rpx;
  2014. max-width: 38%;
  2015. font-size: 23rpx;
  2016. }
  2017. .crc-config-input {
  2018. width: 230rpx;
  2019. min-width: 230rpx;
  2020. max-width: 230rpx;
  2021. }
  2022. .crc-algorithm-panel .crc-picker-value {
  2023. width: auto;
  2024. min-width: 0;
  2025. max-width: 330rpx;
  2026. font-size: 22rpx;
  2027. }
  2028. .crc-data-card-header {
  2029. gap: 8rpx;
  2030. padding-right: 14rpx;
  2031. }
  2032. .crc-data-header-actions {
  2033. gap: 4rpx;
  2034. }
  2035. .crc-data-type-value {
  2036. width: 86rpx;
  2037. font-size: 20rpx;
  2038. }
  2039. .crc-data-type-picker {
  2040. margin-right: 6rpx;
  2041. }
  2042. .crc-data-header-actions .panel-action-button {
  2043. width: 70rpx;
  2044. font-size: 20rpx;
  2045. }
  2046. .crc-file-name,
  2047. .crc-error-value {
  2048. max-width: 360rpx;
  2049. }
  2050. .filter-value-input {
  2051. width: 180rpx;
  2052. min-width: 0;
  2053. max-width: 180rpx;
  2054. }
  2055. .filter-unit-picker,
  2056. .filter-unit-value {
  2057. width: 84rpx;
  2058. }
  2059. .filter-mode-button {
  2060. min-width: 68rpx;
  2061. padding: 0 12rpx;
  2062. font-size: 22rpx;
  2063. }
  2064. .filter-diagram {
  2065. padding-left: 4rpx;
  2066. padding-right: 4rpx;
  2067. }
  2068. .filter-schematic {
  2069. transform: scale(0.94);
  2070. transform-origin: center center;
  2071. }
  2072. .smd-code-input {
  2073. width: 240rpx;
  2074. }
  2075. .smd-result-value {
  2076. max-width: 260rpx;
  2077. font-size: 26rpx;
  2078. }
  2079. .crc-calc-result-value {
  2080. width: 100%;
  2081. max-width: none;
  2082. font-size: 23rpx;
  2083. }
  2084. .crc-calc-result-value--bin {
  2085. max-width: none;
  2086. font-size: 21rpx;
  2087. }
  2088. .smd-mode-button {
  2089. min-width: 68rpx;
  2090. padding: 0 12rpx;
  2091. }
  2092. .smd-format-row {
  2093. gap: 8rpx;
  2094. padding-left: 18rpx;
  2095. padding-right: 18rpx;
  2096. }
  2097. .smd-format-button {
  2098. font-size: 20rpx;
  2099. }
  2100. .refrigeration-picker-value {
  2101. width: 210rpx;
  2102. min-width: 210rpx;
  2103. max-width: 210rpx;
  2104. font-size: 22rpx;
  2105. }
  2106. .refrigeration-input {
  2107. width: 220rpx;
  2108. }
  2109. .three-phase-input {
  2110. width: 220rpx;
  2111. }
  2112. }