map.wxss 16 KB

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