map.wxss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. .page {
  2. height: 100vh;
  3. position: relative;
  4. overflow: hidden;
  5. background: #dbeed4;
  6. color: #163020;
  7. }
  8. .map-stage {
  9. position: absolute;
  10. inset: 0;
  11. overflow: hidden;
  12. background: #dbeed4;
  13. }
  14. .map-content {
  15. position: absolute;
  16. inset: 0;
  17. }
  18. .map-canvas {
  19. position: absolute;
  20. inset: 0;
  21. width: 100%;
  22. height: 100%;
  23. display: block;
  24. }
  25. .map-canvas--base {
  26. z-index: 1;
  27. }
  28. .map-stage__crosshair {
  29. position: absolute;
  30. left: 50%;
  31. top: 50%;
  32. width: 44rpx;
  33. height: 44rpx;
  34. transform: translate(-50%, -50%);
  35. border: 3rpx solid rgba(255, 255, 255, 0.95);
  36. border-radius: 50%;
  37. box-shadow: 0 0 0 4rpx rgba(22, 48, 32, 0.2);
  38. pointer-events: none;
  39. z-index: 3;
  40. }
  41. .map-stage__crosshair::before,
  42. .map-stage__crosshair::after {
  43. content: '';
  44. position: absolute;
  45. background: rgba(255, 255, 255, 0.95);
  46. }
  47. .map-stage__crosshair::before {
  48. left: 50%;
  49. top: -18rpx;
  50. width: 2rpx;
  51. height: 76rpx;
  52. transform: translateX(-50%);
  53. }
  54. .map-stage__crosshair::after {
  55. left: -18rpx;
  56. top: 50%;
  57. width: 76rpx;
  58. height: 2rpx;
  59. transform: translateY(-50%);
  60. }
  61. .map-stage__overlay {
  62. position: absolute;
  63. inset: 0;
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: space-between;
  67. padding: 0 24rpx 248rpx;
  68. box-sizing: border-box;
  69. pointer-events: none;
  70. z-index: 4;
  71. }
  72. .map-stage__topbar {
  73. display: flex;
  74. align-items: flex-start;
  75. justify-content: flex-start;
  76. }
  77. .map-stage__meta {
  78. max-width: 68%;
  79. padding: 18rpx 20rpx 20rpx;
  80. border-radius: 28rpx;
  81. background: rgba(248, 251, 244, 0.92);
  82. box-shadow: 0 14rpx 36rpx rgba(22, 48, 32, 0.12);
  83. backdrop-filter: blur(12rpx);
  84. }
  85. .map-stage__eyebrow {
  86. font-size: 20rpx;
  87. letter-spacing: 4rpx;
  88. color: #5f7a65;
  89. }
  90. .map-stage__title {
  91. margin-top: 8rpx;
  92. font-size: 38rpx;
  93. font-weight: 600;
  94. }
  95. .map-stage__badge {
  96. display: inline-flex;
  97. margin-top: 14rpx;
  98. padding: 8rpx 18rpx;
  99. border-radius: 999rpx;
  100. background: rgba(22, 48, 32, 0.9);
  101. color: #f7fbf2;
  102. font-size: 22rpx;
  103. }
  104. .screen-button-layer {
  105. position: absolute;
  106. right: 24rpx;
  107. width: 116rpx;
  108. min-height: 116rpx;
  109. padding: 18rpx 0 14rpx;
  110. border-radius: 30rpx;
  111. background: rgba(248, 251, 244, 0.96);
  112. box-shadow: 0 14rpx 36rpx rgba(22, 48, 32, 0.14);
  113. display: flex;
  114. flex-direction: column;
  115. align-items: center;
  116. justify-content: center;
  117. box-sizing: border-box;
  118. z-index: 20;
  119. }
  120. .screen-button-layer__icon {
  121. position: relative;
  122. width: 54rpx;
  123. height: 32rpx;
  124. margin: 0 auto;
  125. border: 4rpx solid #163020;
  126. border-radius: 8rpx;
  127. box-sizing: border-box;
  128. }
  129. .screen-button-layer__line {
  130. position: absolute;
  131. left: 8rpx;
  132. right: 8rpx;
  133. bottom: 6rpx;
  134. height: 4rpx;
  135. border-radius: 999rpx;
  136. background: rgba(22, 48, 32, 0.3);
  137. }
  138. .screen-button-layer__stand {
  139. position: absolute;
  140. left: 50%;
  141. bottom: -12rpx;
  142. width: 18rpx;
  143. height: 4rpx;
  144. margin-left: -9rpx;
  145. border-radius: 999rpx;
  146. background: #163020;
  147. }
  148. .screen-button-layer__text {
  149. margin-top: 18rpx;
  150. text-align: center;
  151. font-size: 22rpx;
  152. font-weight: 600;
  153. color: #163020;
  154. line-height: 1.2;
  155. }
  156. .map-stage__bottom {
  157. display: flex;
  158. align-items: flex-end;
  159. justify-content: space-between;
  160. gap: 20rpx;
  161. }
  162. .map-stage__status {
  163. max-width: 56%;
  164. padding: 18rpx 20rpx;
  165. border-radius: 28rpx;
  166. background: rgba(248, 251, 244, 0.9);
  167. box-shadow: 0 14rpx 30rpx rgba(22, 48, 32, 0.12);
  168. backdrop-filter: blur(12rpx);
  169. }
  170. .map-stage__status-label {
  171. font-size: 20rpx;
  172. letter-spacing: 3rpx;
  173. color: #5f7a65;
  174. }
  175. .map-stage__status-value {
  176. margin-top: 8rpx;
  177. font-size: 30rpx;
  178. font-weight: 600;
  179. color: #163020;
  180. }
  181. .map-stage__status-meta {
  182. margin-top: 8rpx;
  183. font-size: 22rpx;
  184. color: #45624b;
  185. }
  186. .compass-widget {
  187. display: flex;
  188. flex-direction: column;
  189. align-items: center;
  190. gap: 6rpx;
  191. flex-shrink: 0;
  192. }
  193. .compass-widget__heading {
  194. font-size: 14rpx;
  195. line-height: 1;
  196. font-weight: 600;
  197. color: rgba(32, 42, 34, 0.72);
  198. text-shadow: 0 1rpx 0 rgba(255, 255, 255, 0.35);
  199. }
  200. .compass-widget__dial {
  201. position: relative;
  202. width: 196rpx;
  203. height: 196rpx;
  204. border-radius: 50%;
  205. background: radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.3) 0%, rgba(242, 241, 214, 0.32) 46%, rgba(183, 188, 159, 0.4) 72%, rgba(64, 68, 58, 0.62) 100%);
  206. border: 2rpx solid rgba(18, 24, 18, 0.48);
  207. box-shadow: 0 6rpx 14rpx rgba(0, 0, 0, 0.14), inset 0 0 0 2rpx rgba(255, 255, 255, 0.24);
  208. overflow: hidden;
  209. }
  210. .compass-widget__glass,
  211. .compass-widget__inner-shadow {
  212. position: absolute;
  213. inset: 0;
  214. border-radius: 50%;
  215. pointer-events: none;
  216. }
  217. .compass-widget__glass {
  218. background: radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.1) 24%, rgba(255, 255, 255, 0) 52%);
  219. }
  220. .compass-widget__inner-shadow {
  221. box-shadow: inset 0 0 0 12rpx rgba(0, 0, 0, 0.07), inset 0 0 18rpx rgba(255, 255, 255, 0.22);
  222. }
  223. .compass-widget__card {
  224. position: absolute;
  225. inset: 0;
  226. transform-origin: center;
  227. }
  228. .compass-widget__north-arrow {
  229. position: absolute;
  230. left: 50%;
  231. top: 50%;
  232. width: 54rpx;
  233. height: 176rpx;
  234. transform: translate(-50%, -52%);
  235. display: block;
  236. pointer-events: none;
  237. z-index: 1;
  238. }
  239. .compass-widget__north-arrow-outline,
  240. .compass-widget__north-arrow-fill,
  241. .compass-widget__north-arrow-tail-outline,
  242. .compass-widget__north-arrow-tail-fill {
  243. display: none;
  244. }
  245. .compass-widget__tick-anchor,
  246. .compass-widget__mark-anchor,
  247. .compass-widget__needle-anchor {
  248. position: absolute;
  249. left: 50%;
  250. top: 50%;
  251. }
  252. .compass-widget__tick {
  253. position: absolute;
  254. left: 50%;
  255. top: 50%;
  256. width: 2rpx;
  257. border-radius: 999rpx;
  258. transform: translate(-50%, -90rpx);
  259. background: rgba(28, 33, 28, 0.72);
  260. }
  261. .compass-widget__tick--short {
  262. height: 8rpx;
  263. }
  264. .compass-widget__tick--long {
  265. height: 12rpx;
  266. }
  267. .compass-widget__tick--major {
  268. width: 3rpx;
  269. height: 18rpx;
  270. background: rgba(18, 22, 18, 0.88);
  271. }
  272. .compass-widget__mark {
  273. position: absolute;
  274. left: 50%;
  275. top: 50%;
  276. line-height: 1;
  277. color: rgba(40, 42, 37, 0.88);
  278. text-shadow: 0 1rpx 0 rgba(255, 255, 255, 0.22);
  279. white-space: nowrap;
  280. transform-origin: center;
  281. }
  282. .compass-widget__mark--cardinal {
  283. font-size: 26rpx;
  284. font-weight: 700;
  285. }
  286. .compass-widget__mark--intermediate {
  287. font-size: 14rpx;
  288. font-weight: 600;
  289. }
  290. .compass-widget__mark--north {
  291. color: #d62323;
  292. }
  293. .compass-widget__mark--northeast,
  294. .compass-widget__mark--northwest {
  295. color: #577347;
  296. }
  297. .compass-widget__needle-anchor {
  298. width: 0;
  299. height: 0;
  300. }
  301. .compass-widget__needle-north,
  302. .compass-widget__needle-south {
  303. position: absolute;
  304. left: 50%;
  305. top: 50%;
  306. }
  307. .compass-widget__needle-north {
  308. width: 0;
  309. height: 0;
  310. border-left: 8rpx solid transparent;
  311. border-right: 8rpx solid transparent;
  312. border-bottom: 64rpx solid #ef2f2f;
  313. transform: translate(-50%, -74rpx);
  314. filter: drop-shadow(0 2rpx 3rpx rgba(96, 0, 0, 0.24));
  315. }
  316. .compass-widget__needle-south {
  317. width: 7rpx;
  318. height: 72rpx;
  319. border-radius: 999rpx;
  320. background: linear-gradient(180deg, rgba(236, 238, 232, 0.98) 0%, rgba(146, 151, 143, 0.98) 100%);
  321. transform: translate(-50%, 2rpx);
  322. box-shadow: 0 1rpx 3rpx rgba(32, 34, 31, 0.18);
  323. }
  324. .compass-widget__hub {
  325. position: absolute;
  326. left: 50%;
  327. top: 50%;
  328. width: 26rpx;
  329. height: 26rpx;
  330. transform: translate(-50%, -52%);
  331. border-radius: 50%;
  332. background: radial-gradient(circle at 34% 32%, #f4f3e7 0%, #d7d2bd 40%, #928b78 72%, #5a554b 100%);
  333. box-shadow: inset 0 0 0 2rpx rgba(255, 255, 255, 0.32), 0 2rpx 5rpx rgba(0, 0, 0, 0.16);
  334. }
  335. .compass-widget__hub-core {
  336. position: absolute;
  337. left: 50%;
  338. top: 50%;
  339. width: 10rpx;
  340. height: 10rpx;
  341. transform: translate(-50%, -52%);
  342. border-radius: 50%;
  343. background: rgba(173, 170, 156, 0.92);
  344. box-shadow: inset 0 0 0 2rpx rgba(255, 255, 255, 0.2);
  345. }
  346. .compass-widget__hint {
  347. max-width: 196rpx;
  348. font-size: 14rpx;
  349. line-height: 1.3;
  350. color: #d62828;
  351. text-align: center;
  352. font-weight: 700;
  353. text-shadow: 0 1rpx 0 rgba(255, 255, 255, 0.24);
  354. }
  355. .race-panel {
  356. position: absolute;
  357. left: 0;
  358. right: 0;
  359. bottom: 0;
  360. height: 216rpx;
  361. background: linear-gradient(180deg, #1d97ec 0%, #168ce4 100%);
  362. box-shadow: 0 -10rpx 24rpx rgba(10, 75, 125, 0.2);
  363. z-index: 15;
  364. overflow: hidden;
  365. }
  366. .race-panel__grid {
  367. position: relative;
  368. z-index: 2;
  369. display: grid;
  370. grid-template-columns: 1fr 1fr 1fr;
  371. grid-template-rows: 1fr 1fr;
  372. width: 100%;
  373. height: 100%;
  374. }
  375. .race-panel__cell {
  376. position: relative;
  377. display: flex;
  378. align-items: center;
  379. justify-content: center;
  380. color: #ffffff;
  381. box-sizing: border-box;
  382. }
  383. .race-panel__cell--action,
  384. .race-panel__cell--timer,
  385. .race-panel__cell--mileage {
  386. padding-top: 10rpx;
  387. }
  388. .race-panel__cell--distance,
  389. .race-panel__cell--progress,
  390. .race-panel__cell--speed {
  391. padding-top: 2rpx;
  392. }
  393. .race-panel__cell--action {
  394. justify-content: center;
  395. padding-left: 0;
  396. }
  397. .race-panel__cell--timer {
  398. padding-left: 0;
  399. padding-right: 0;
  400. }
  401. .race-panel__cell--mileage {
  402. justify-content: center;
  403. padding-right: 0;
  404. }
  405. .race-panel__cell--distance {
  406. justify-content: center;
  407. padding-left: 0;
  408. }
  409. .race-panel__cell--progress {
  410. padding-left: 0;
  411. padding-right: 0;
  412. }
  413. .race-panel__cell--speed {
  414. justify-content: center;
  415. padding-right: 0;
  416. }
  417. .race-panel__play {
  418. width: 0;
  419. height: 0;
  420. margin-left: 2rpx;
  421. border-top: 20rpx solid transparent;
  422. border-bottom: 20rpx solid transparent;
  423. border-left: 30rpx solid #ffffff;
  424. filter: drop-shadow(0 2rpx 0 rgba(255, 255, 255, 0.25));
  425. transform: translateX(16rpx);
  426. }
  427. .race-panel__timer {
  428. max-width: 100%;
  429. box-sizing: border-box;
  430. font-size: 50rpx;
  431. line-height: 1;
  432. letter-spacing: 2rpx;
  433. font-family: 'Courier New', monospace;
  434. text-shadow: 0 2rpx 0 rgba(255, 255, 255, 0.2);
  435. }
  436. .race-panel__mileage {
  437. max-width: 100%;
  438. box-sizing: border-box;
  439. font-size: 40rpx;
  440. line-height: 1;
  441. font-weight: 300;
  442. text-shadow: 0 2rpx 0 rgba(255, 255, 255, 0.16);
  443. }
  444. .race-panel__mileage-wrap {
  445. display: flex;
  446. align-items: center;
  447. justify-content: center;
  448. gap: 10rpx;
  449. transform: translateX(-16rpx);
  450. }
  451. .race-panel__metric-group {
  452. max-width: 100%;
  453. box-sizing: border-box;
  454. display: flex;
  455. align-items: baseline;
  456. color: #ffffff;
  457. }
  458. .race-panel__metric-group--left {
  459. justify-content: center;
  460. transform: translateX(16rpx);
  461. }
  462. .race-panel__metric-group--right {
  463. justify-content: center;
  464. transform: translateX(-16rpx);
  465. }
  466. .race-panel__metric-value {
  467. line-height: 1;
  468. text-shadow: 0 2rpx 0 rgba(255, 255, 255, 0.16);
  469. }
  470. .race-panel__metric-value--distance {
  471. font-size: 54rpx;
  472. font-weight: 700;
  473. }
  474. .race-panel__metric-value--speed {
  475. font-size: 48rpx;
  476. font-weight: 400;
  477. }
  478. .race-panel__metric-unit {
  479. line-height: 1;
  480. margin-left: 6rpx;
  481. opacity: 0.95;
  482. }
  483. .race-panel__metric-unit--distance {
  484. font-size: 24rpx;
  485. font-weight: 600;
  486. }
  487. .race-panel__metric-unit--speed {
  488. font-size: 18rpx;
  489. font-weight: 500;
  490. }
  491. .race-panel__progress {
  492. max-width: 100%;
  493. box-sizing: border-box;
  494. font-size: 50rpx;
  495. line-height: 1;
  496. font-weight: 400;
  497. text-shadow: 0 2rpx 0 rgba(255, 255, 255, 0.16);
  498. }
  499. .race-panel__tag {
  500. position: absolute;
  501. z-index: 3;
  502. min-width: 56rpx;
  503. height: 32rpx;
  504. padding: 0 10rpx;
  505. background: #000000;
  506. color: #ffffff;
  507. font-size: 16rpx;
  508. line-height: 32rpx;
  509. text-align: center;
  510. letter-spacing: 2rpx;
  511. }
  512. .race-panel__tag--top-left {
  513. top: 0;
  514. left: 0;
  515. }
  516. .race-panel__tag--top-right {
  517. top: 0;
  518. right: 0;
  519. }
  520. .race-panel__tag--bottom-left {
  521. left: 0;
  522. bottom: 0;
  523. }
  524. .race-panel__tag--bottom-right {
  525. right: 0;
  526. bottom: 0;
  527. }
  528. .race-panel__line {
  529. position: absolute;
  530. z-index: 1;
  531. height: 2rpx;
  532. box-shadow: 0 0 6rpx rgba(255, 255, 255, 0.2);
  533. }
  534. .race-panel__line--center {
  535. left: 33.3333%;
  536. right: 33.3333%;
  537. top: 50%;
  538. transform: translateY(-50%);
  539. background: rgba(255, 255, 255, 0.86);
  540. }
  541. .race-panel__line--left-mid {
  542. left: 0;
  543. width: 33.3333%;
  544. top: 50%;
  545. transform: translateY(-50%);
  546. background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.78) 100%);
  547. }
  548. .race-panel__line--right-mid {
  549. right: 0;
  550. width: 33.3333%;
  551. top: 50%;
  552. transform: translateY(-50%);
  553. background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.08) 100%);
  554. }
  555. .race-panel__line--left-top,
  556. .race-panel__line--left-bottom,
  557. .race-panel__line--right-top,
  558. .race-panel__line--right-bottom {
  559. width: 23%;
  560. top: 50%;
  561. }
  562. .race-panel__line--left-top {
  563. right: 66.6667%;
  564. transform-origin: right center;
  565. transform: translateY(-50%) rotate(70deg);
  566. background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.82) 100%);
  567. }
  568. .race-panel__line--left-bottom {
  569. right: 66.6667%;
  570. transform-origin: right center;
  571. transform: translateY(-50%) rotate(-70deg);
  572. background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.82) 100%);
  573. }
  574. .race-panel__line--right-top {
  575. left: 66.6667%;
  576. transform-origin: left center;
  577. transform: translateY(-50%) rotate(-70deg);
  578. background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.08) 100%);
  579. }
  580. .race-panel__line--right-bottom {
  581. left: 66.6667%;
  582. transform-origin: left center;
  583. transform: translateY(-50%) rotate(70deg);
  584. background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.08) 100%);
  585. }
  586. .race-panel__chevrons {
  587. position: relative;
  588. width: 24rpx;
  589. height: 24rpx;
  590. opacity: 0.5;
  591. flex-shrink: 0;
  592. }
  593. .race-panel__chevron {
  594. position: absolute;
  595. right: 6rpx;
  596. top: 50%;
  597. width: 10rpx;
  598. height: 10rpx;
  599. border-top: 3rpx solid rgba(255, 255, 255, 0.78);
  600. border-right: 3rpx solid rgba(255, 255, 255, 0.78);
  601. transform: translateY(-50%) rotate(45deg);
  602. }
  603. .race-panel__chevron--offset {
  604. right: 0;
  605. }
  606. .debug-modal {
  607. position: absolute;
  608. inset: 0;
  609. display: flex;
  610. align-items: flex-end;
  611. justify-content: center;
  612. padding: 0 20rpx 28rpx;
  613. box-sizing: border-box;
  614. background: rgba(7, 18, 12, 0.34);
  615. z-index: 30;
  616. }
  617. .debug-modal__dialog {
  618. width: 100%;
  619. max-height: 72vh;
  620. border-radius: 36rpx;
  621. background: rgba(248, 251, 244, 0.98);
  622. box-shadow: 0 20rpx 60rpx rgba(7, 18, 12, 0.24);
  623. overflow: hidden;
  624. }
  625. .debug-modal__header {
  626. display: flex;
  627. align-items: center;
  628. justify-content: space-between;
  629. gap: 20rpx;
  630. padding: 28rpx 28rpx 20rpx;
  631. border-bottom: 1rpx solid rgba(22, 48, 32, 0.08);
  632. }
  633. .debug-modal__eyebrow {
  634. font-size: 20rpx;
  635. letter-spacing: 4rpx;
  636. color: #5f7a65;
  637. }
  638. .debug-modal__title {
  639. margin-top: 8rpx;
  640. font-size: 34rpx;
  641. font-weight: 600;
  642. color: #163020;
  643. }
  644. .debug-modal__close {
  645. flex-shrink: 0;
  646. padding: 14rpx 22rpx;
  647. border-radius: 999rpx;
  648. background: #163020;
  649. color: #f7fbf2;
  650. font-size: 24rpx;
  651. }
  652. .debug-modal__content {
  653. max-height: calc(72vh - 108rpx);
  654. padding: 12rpx 28rpx 30rpx;
  655. box-sizing: border-box;
  656. }
  657. .info-panel__row {
  658. display: flex;
  659. align-items: center;
  660. justify-content: space-between;
  661. gap: 16rpx;
  662. padding: 10rpx 0;
  663. border-bottom: 1rpx solid rgba(22, 48, 32, 0.08);
  664. }
  665. .info-panel__row--stack {
  666. display: block;
  667. }
  668. .info-panel__row:last-of-type {
  669. border-bottom: none;
  670. }
  671. .info-panel__label {
  672. flex-shrink: 0;
  673. font-size: 22rpx;
  674. letter-spacing: 2rpx;
  675. color: #5f7a65;
  676. text-transform: uppercase;
  677. }
  678. .info-panel__value {
  679. font-size: 25rpx;
  680. color: #163020;
  681. text-align: right;
  682. word-break: break-all;
  683. }
  684. .info-panel__row--stack .info-panel__value {
  685. display: block;
  686. margin-top: 10rpx;
  687. text-align: left;
  688. color: #45624b;
  689. line-height: 1.5;
  690. }
  691. .control-row {
  692. display: flex;
  693. gap: 14rpx;
  694. margin-top: 18rpx;
  695. }
  696. .control-row--triple .control-chip {
  697. font-size: 23rpx;
  698. }
  699. .control-chip {
  700. flex: 1;
  701. min-width: 0;
  702. padding: 20rpx 16rpx;
  703. border-radius: 999rpx;
  704. background: #d7e8da;
  705. color: #163020;
  706. font-size: 26rpx;
  707. text-align: center;
  708. box-sizing: border-box;
  709. }
  710. .control-chip--primary {
  711. background: #2d6a4f;
  712. color: #f7fbf2;
  713. }
  714. .control-chip--secondary {
  715. background: #eef6ea;
  716. color: #45624b;
  717. }
  718. .control-chip--active {
  719. background: #2d6a4f;
  720. color: #f7fbf2;
  721. }
  722. .race-panel__cell--action {
  723. justify-content: flex-start;
  724. padding-left: 44rpx;
  725. }
  726. .race-panel__cell--timer {
  727. padding-left: 12rpx;
  728. padding-right: 12rpx;
  729. }
  730. .race-panel__cell--mileage {
  731. justify-content: flex-end;
  732. padding-right: 56rpx;
  733. }
  734. .race-panel__cell--distance {
  735. justify-content: flex-start;
  736. padding-left: 28rpx;
  737. }
  738. .race-panel__cell--progress {
  739. padding-left: 8rpx;
  740. padding-right: 8rpx;
  741. }
  742. .race-panel__cell--speed {
  743. justify-content: flex-end;
  744. padding-right: 32rpx;
  745. }
  746. .race-panel__timer,
  747. .race-panel__progress,
  748. .race-panel__mileage,
  749. .race-panel__metric-group {
  750. max-width: 100%;
  751. box-sizing: border-box;
  752. }