| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416 |
- .page {
- height: 100vh;
- position: relative;
- overflow: hidden;
- background: #dbeed4;
- color: #163020;
- }
- .map-stage {
- position: absolute;
- inset: 0;
- overflow: hidden;
- background: #dbeed4;
- }
- .map-content {
- position: absolute;
- inset: 0;
- }
- .map-canvas {
- position: absolute;
- inset: 0;
- width: 100%;
- height: 100%;
- display: block;
- }
- .map-canvas--base {
- z-index: 1;
- }
- .map-canvas--labels {
- z-index: 2;
- pointer-events: none;
- }
- .map-stage__crosshair {
- position: absolute;
- left: 50%;
- top: 50%;
- width: 44rpx;
- height: 44rpx;
- transform: translate(-50%, -50%);
- border: 3rpx solid rgba(255, 255, 255, 0.95);
- border-radius: 50%;
- box-shadow: 0 0 0 4rpx rgba(22, 48, 32, 0.2);
- pointer-events: none;
- z-index: 3;
- }
- .map-stage__crosshair::before,
- .map-stage__crosshair::after {
- content: '';
- position: absolute;
- background: rgba(255, 255, 255, 0.95);
- }
- .map-stage__crosshair::before {
- left: 50%;
- top: -18rpx;
- width: 2rpx;
- height: 76rpx;
- transform: translateX(-50%);
- }
- .map-stage__crosshair::after {
- left: -18rpx;
- top: 50%;
- width: 76rpx;
- height: 2rpx;
- transform: translateY(-50%);
- }
- .map-stage__map-pulse {
- position: absolute;
- width: 44rpx;
- height: 44rpx;
- margin-left: -22rpx;
- margin-top: -22rpx;
- border-radius: 50%;
- pointer-events: none;
- z-index: 6;
- }
- .map-stage__map-pulse--control {
- animation: map-pulse-control 0.82s ease-out 1;
- }
- .map-stage__map-pulse--ready {
- animation: map-pulse-ready 0.72s ease-out 1;
- }
- .map-stage__map-pulse--finish {
- animation: map-pulse-finish 0.82s ease-out 1;
- }
- .map-stage__stage-fx {
- position: absolute;
- inset: 0;
- pointer-events: none;
- z-index: 5;
- }
- .map-stage__stage-fx--finish {
- animation: stage-fx-finish 0.76s ease-out 1;
- }
- .map-stage__overlay {
- position: absolute;
- inset: 0;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- padding: 0 24rpx 248rpx;
- box-sizing: border-box;
- pointer-events: none;
- z-index: 4;
- }
- .map-stage__topbar {
- display: flex;
- align-items: flex-start;
- justify-content: flex-start;
- }
- .map-stage__meta {
- max-width: 68%;
- padding: 18rpx 20rpx 20rpx;
- border-radius: 28rpx;
- background: rgba(248, 251, 244, 0.92);
- box-shadow: 0 14rpx 36rpx rgba(22, 48, 32, 0.12);
- backdrop-filter: blur(12rpx);
- }
- .map-stage__eyebrow {
- font-size: 20rpx;
- letter-spacing: 4rpx;
- color: #5f7a65;
- }
- .map-stage__title {
- margin-top: 8rpx;
- font-size: 38rpx;
- font-weight: 600;
- }
- .map-stage__badge {
- display: inline-flex;
- margin-top: 14rpx;
- padding: 8rpx 18rpx;
- border-radius: 999rpx;
- background: rgba(22, 48, 32, 0.9);
- color: #f7fbf2;
- font-size: 22rpx;
- }
- .screen-button-layer {
- position: absolute;
- width: 116rpx;
- min-height: 116rpx;
- padding: 18rpx 0 14rpx;
- border-radius: 30rpx;
- background: rgba(248, 251, 244, 0.96);
- box-shadow: 0 14rpx 36rpx rgba(22, 48, 32, 0.14);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- z-index: 20;
- }
- .screen-button-layer__icon {
- position: relative;
- width: 54rpx;
- height: 32rpx;
- margin: 0 auto;
- border: 4rpx solid #163020;
- border-radius: 8rpx;
- box-sizing: border-box;
- }
- .screen-button-layer__line {
- position: absolute;
- left: 8rpx;
- right: 8rpx;
- bottom: 6rpx;
- height: 4rpx;
- border-radius: 999rpx;
- background: rgba(22, 48, 32, 0.3);
- }
- .screen-button-layer__stand {
- position: absolute;
- left: 50%;
- bottom: -12rpx;
- width: 18rpx;
- height: 4rpx;
- margin-left: -9rpx;
- border-radius: 999rpx;
- background: #163020;
- }
- .screen-button-layer__text {
- margin-top: 18rpx;
- text-align: center;
- font-size: 22rpx;
- font-weight: 600;
- color: #163020;
- line-height: 1.2;
- }
- .map-stage__bottom {
- display: flex;
- align-items: flex-end;
- justify-content: center;
- width: 100%;
- }
- .screen-button-layer--bottom-left {
- left: 24rpx;
- bottom: 244rpx;
- }
- .screen-button-layer--start-left {
- left: 24rpx;
- bottom: 378rpx;
- min-height: 96rpx;
- padding: 0 18rpx;
- background: rgba(255, 226, 88, 0.96);
- box-shadow: 0 14rpx 36rpx rgba(120, 89, 0, 0.2), 0 0 0 3rpx rgba(255, 246, 186, 0.38);
- }
- .screen-button-layer__text--start {
- margin-top: 0;
- font-size: 30rpx;
- font-weight: 800;
- color: #6d4b00;
- letter-spacing: 2rpx;
- }
- .map-side-toggle {
- position: absolute;
- left: 24rpx;
- z-index: 19;
- }
- .map-side-column {
- position: absolute;
- display: flex;
- flex-direction: column;
- gap: 16rpx;
- padding-top: 12rpx;
- z-index: 18;
- }
- .map-side-column--left {
- left: 24rpx;
- }
- .map-side-column--left-group {
- padding-top: 106rpx;
- }
- .map-side-column--right-main {
- right: 118rpx;
- }
- .map-side-column--right-sub {
- right: 24rpx;
- }
- .map-side-button {
- width: 78rpx;
- height: 78rpx;
- border-radius: 22rpx;
- background: rgba(248, 251, 244, 0.96);
- box-shadow: 0 10rpx 26rpx rgba(22, 48, 32, 0.14);
- display: flex;
- align-items: center;
- justify-content: center;
- box-sizing: border-box;
- }
- .map-side-button--icon {
- width: 90rpx;
- height: 90rpx;
- padding: 0;
- background: transparent;
- box-shadow: none;
- border-radius: 0;
- }
- .map-side-button__image {
- width: 100%;
- height: 100%;
- }
- .map-side-button__rotate-image {
- width: 100%;
- height: 100%;
- border-radius: 16rpx;
- box-sizing: border-box;
- }
- .map-side-button__rotate-image--active {
- border: 1px solid rgba(231, 54, 33, 0.98);
- }
- .map-side-button--muted {
- background: rgba(229, 233, 230, 0.92);
- }
- .map-side-button__text {
- font-size: 18rpx;
- line-height: 1.1;
- font-weight: 700;
- color: #163020;
- text-align: center;
- letter-spacing: 1rpx;
- }
- .compass-widget {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 6rpx;
- flex-shrink: 0;
- }
- .compass-widget__heading {
- font-size: 14rpx;
- line-height: 1;
- font-weight: 600;
- color: rgba(32, 42, 34, 0.72);
- text-shadow: 0 1rpx 0 rgba(255, 255, 255, 0.35);
- }
- .compass-widget__dial {
- position: relative;
- width: 196rpx;
- height: 196rpx;
- border-radius: 50%;
- 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%);
- border: 2rpx solid rgba(18, 24, 18, 0.48);
- box-shadow: 0 6rpx 14rpx rgba(0, 0, 0, 0.14), inset 0 0 0 2rpx rgba(255, 255, 255, 0.24);
- overflow: hidden;
- }
- .compass-widget__dial--active {
- border-color: rgba(250, 252, 187, 0.98);
- box-shadow: 0 0 0 2rpx rgba(253, 255, 214, 0.92), 0 0 18rpx rgba(247, 255, 173, 0.46), 0 6rpx 14rpx rgba(0, 0, 0, 0.14), inset 0 0 0 2rpx rgba(255, 255, 255, 0.28);
- }
- .compass-widget__glass,
- .compass-widget__inner-shadow {
- position: absolute;
- inset: 0;
- border-radius: 50%;
- pointer-events: none;
- }
- .compass-widget__glass {
- 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%);
- }
- .compass-widget__inner-shadow {
- box-shadow: inset 0 0 0 12rpx rgba(0, 0, 0, 0.07), inset 0 0 18rpx rgba(255, 255, 255, 0.22);
- }
- .compass-widget__card {
- position: absolute;
- inset: 0;
- transform-origin: center;
- }
- .compass-widget__north-arrow {
- position: absolute;
- left: 50%;
- top: 50%;
- width: 54rpx;
- height: 176rpx;
- transform: translate(-50%, -52%);
- display: block;
- pointer-events: none;
- z-index: 1;
- opacity: 0.42;
- }
- .compass-widget__north-arrow-outline,
- .compass-widget__north-arrow-fill,
- .compass-widget__north-arrow-tail-outline,
- .compass-widget__north-arrow-tail-fill {
- display: none;
- }
- .compass-widget__tick-anchor,
- .compass-widget__mark-anchor,
- .compass-widget__needle-anchor {
- position: absolute;
- left: 50%;
- top: 50%;
- }
- .compass-widget__tick {
- position: absolute;
- left: 50%;
- top: 50%;
- width: 2rpx;
- border-radius: 999rpx;
- transform: translate(-50%, -90rpx);
- background: rgba(28, 33, 28, 0.72);
- }
- .compass-widget__tick--short {
- height: 8rpx;
- }
- .compass-widget__tick--long {
- height: 12rpx;
- }
- .compass-widget__tick--major {
- width: 3rpx;
- height: 18rpx;
- background: rgba(18, 22, 18, 0.88);
- }
- .compass-widget__mark {
- position: absolute;
- left: 50%;
- top: 50%;
- line-height: 1;
- color: rgba(40, 42, 37, 0.88);
- text-shadow: 0 1rpx 0 rgba(255, 255, 255, 0.22);
- white-space: nowrap;
- transform-origin: center;
- }
- .compass-widget__mark--cardinal {
- font-size: 26rpx;
- font-weight: 700;
- }
- .compass-widget__mark--intermediate {
- font-size: 14rpx;
- font-weight: 600;
- }
- .compass-widget__mark--north {
- color: #d62323;
- }
- .compass-widget__mark--northeast,
- .compass-widget__mark--northwest {
- color: #577347;
- }
- .compass-widget__needle-anchor {
- width: 0;
- height: 0;
- }
- .compass-widget__needle-north,
- .compass-widget__needle-south {
- position: absolute;
- left: 50%;
- top: 50%;
- }
- .compass-widget__needle-north {
- width: 0;
- height: 0;
- border-left: 8rpx solid transparent;
- border-right: 8rpx solid transparent;
- border-bottom: 64rpx solid #ef2f2f;
- transform: translate(-50%, -74rpx);
- filter: drop-shadow(0 2rpx 3rpx rgba(96, 0, 0, 0.24));
- }
- .compass-widget__needle-south {
- width: 7rpx;
- height: 72rpx;
- border-radius: 999rpx;
- background: linear-gradient(180deg, rgba(236, 238, 232, 0.98) 0%, rgba(146, 151, 143, 0.98) 100%);
- transform: translate(-50%, 2rpx);
- box-shadow: 0 1rpx 3rpx rgba(32, 34, 31, 0.18);
- }
- .compass-widget__hub {
- position: absolute;
- left: 50%;
- top: 50%;
- width: 26rpx;
- height: 26rpx;
- transform: translate(-50%, -52%);
- border-radius: 50%;
- background: radial-gradient(circle at 34% 32%, #f4f3e7 0%, #d7d2bd 40%, #928b78 72%, #5a554b 100%);
- box-shadow: inset 0 0 0 2rpx rgba(255, 255, 255, 0.32), 0 2rpx 5rpx rgba(0, 0, 0, 0.16);
- }
- .compass-widget__hub-core {
- position: absolute;
- left: 50%;
- top: 50%;
- width: 10rpx;
- height: 10rpx;
- transform: translate(-50%, -52%);
- border-radius: 50%;
- background: rgba(173, 170, 156, 0.92);
- box-shadow: inset 0 0 0 2rpx rgba(255, 255, 255, 0.2);
- }
- .compass-widget__edge-arrow {
- width: 0;
- height: 0;
- margin-top: -2rpx;
- margin-bottom: -4rpx;
- border-left: 8rpx solid transparent;
- border-right: 8rpx solid transparent;
- border-top: 14rpx solid rgba(58, 49, 37, 0.72);
- filter: drop-shadow(0 1rpx 1rpx rgba(255, 255, 255, 0.18));
- }
- .compass-widget__hint {
- max-width: 196rpx;
- font-size: 14rpx;
- line-height: 1.3;
- color: #d62828;
- text-align: center;
- font-weight: 700;
- text-shadow: 0 1rpx 0 rgba(255, 255, 255, 0.24);
- }
- .race-panel {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- height: 216rpx;
- background: linear-gradient(180deg, #1d97ec 0%, #168ce4 100%);
- box-shadow: 0 -10rpx 24rpx rgba(10, 75, 125, 0.2);
- z-index: 15;
- overflow: hidden;
- }
- .race-panel__grid {
- position: relative;
- z-index: 2;
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- grid-template-rows: 1fr 1fr;
- width: 100%;
- height: 100%;
- }
- .race-panel__cell {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #ffffff;
- box-sizing: border-box;
- }
- .race-panel__cell--action,
- .race-panel__cell--timer,
- .race-panel__cell--mileage {
- padding-top: 10rpx;
- }
- .race-panel__cell--distance,
- .race-panel__cell--progress,
- .race-panel__cell--speed {
- padding-top: 2rpx;
- }
- .race-panel__cell--action {
- justify-content: center;
- padding-left: 0;
- }
- .race-panel__cell--timer {
- padding-left: 0;
- padding-right: 0;
- }
- .race-panel__cell--mileage {
- justify-content: center;
- padding-right: 0;
- }
- .race-panel__cell--distance {
- justify-content: center;
- padding-left: 0;
- }
- .race-panel__cell--progress {
- padding-left: 0;
- padding-right: 0;
- }
- .race-panel__cell--speed {
- justify-content: center;
- padding-right: 0;
- }
- .race-panel__play {
- width: 0;
- height: 0;
- margin-left: 2rpx;
- border-top: 20rpx solid transparent;
- border-bottom: 20rpx solid transparent;
- border-left: 30rpx solid #ffffff;
- filter: drop-shadow(0 2rpx 0 rgba(255, 255, 255, 0.25));
- transform: translateX(16rpx);
- }
- .race-panel__timer {
- max-width: 100%;
- box-sizing: border-box;
- font-size: 50rpx;
- line-height: 1;
- letter-spacing: 2rpx;
- font-family: 'Courier New', monospace;
- text-shadow: 0 2rpx 0 rgba(255, 255, 255, 0.2);
- }
- .race-panel__mileage {
- max-width: 100%;
- box-sizing: border-box;
- font-size: 40rpx;
- line-height: 1;
- font-weight: 300;
- text-shadow: 0 2rpx 0 rgba(255, 255, 255, 0.16);
- }
- .race-panel__mileage-wrap {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 10rpx;
- transform: translateX(-16rpx);
- }
- .race-panel__metric-group {
- max-width: 100%;
- box-sizing: border-box;
- display: flex;
- align-items: baseline;
- color: #ffffff;
- }
- .race-panel__metric-group--left {
- justify-content: center;
- transform: translateX(16rpx);
- }
- .race-panel__metric-group--right {
- justify-content: center;
- transform: translateX(-16rpx);
- }
- .race-panel__metric-value {
- line-height: 1;
- text-shadow: 0 2rpx 0 rgba(255, 255, 255, 0.16);
- }
- .race-panel__metric-value--distance {
- font-size: 54rpx;
- font-weight: 700;
- }
- .race-panel__metric-value--speed {
- font-size: 48rpx;
- font-weight: 400;
- }
- .race-panel__metric-unit {
- line-height: 1;
- margin-left: 6rpx;
- opacity: 0.95;
- }
- .race-panel__metric-unit--distance {
- font-size: 24rpx;
- font-weight: 600;
- }
- .race-panel__metric-unit--speed {
- font-size: 18rpx;
- font-weight: 500;
- }
- .race-panel__progress {
- max-width: 100%;
- box-sizing: border-box;
- font-size: 50rpx;
- line-height: 1;
- font-weight: 400;
- text-shadow: 0 2rpx 0 rgba(255, 255, 255, 0.16);
- }
- .race-panel__tag {
- position: absolute;
- z-index: 3;
- min-width: 56rpx;
- height: 32rpx;
- padding: 0 10rpx;
- background: #000000;
- color: #ffffff;
- font-size: 16rpx;
- line-height: 32rpx;
- text-align: center;
- letter-spacing: 2rpx;
- }
- .race-panel__tag--top-left {
- top: 0;
- left: 0;
- }
- .race-panel__tag--top-right {
- top: 0;
- right: 0;
- }
- .race-panel__tag--bottom-left {
- left: 0;
- bottom: 0;
- }
- .race-panel__tag--bottom-right {
- right: 0;
- bottom: 0;
- }
- .map-punch-button {
- position: absolute;
- right: 24rpx;
- bottom: 244rpx;
- width: 92rpx;
- height: 92rpx;
- border-radius: 50%;
- background: rgba(78, 92, 106, 0.82);
- box-shadow: 0 12rpx 28rpx rgba(22, 34, 46, 0.22), inset 0 0 0 2rpx rgba(255, 255, 255, 0.08);
- z-index: 18;
- }
- .map-punch-button__text {
- font-size: 20rpx;
- line-height: 92rpx;
- font-weight: 800;
- text-align: center;
- color: rgba(236, 241, 246, 0.88);
- }
- .map-punch-button--active {
- background: rgba(92, 255, 237, 0.96);
- box-shadow: 0 0 0 5rpx rgba(149, 255, 244, 0.18), 0 0 30rpx rgba(92, 255, 237, 0.5);
- animation: punch-button-ready 1s ease-in-out infinite;
- }
- .map-punch-button--active .map-punch-button__text {
- color: #064d46;
- }
- .map-punch-button--fx-ready-a,
- .map-punch-button--fx-ready-b {
- animation: punch-button-burst 0.92s ease-out 1;
- }
- .map-punch-button--fx-warning-a,
- .map-punch-button--fx-warning-b {
- animation: punch-button-warning 0.56s ease-in-out 1;
- }
- .race-panel__line {
- position: absolute;
- z-index: 1;
- height: 2rpx;
- box-shadow: 0 0 6rpx rgba(255, 255, 255, 0.2);
- }
- .race-panel__line--center {
- left: 33.3333%;
- right: 33.3333%;
- top: 50%;
- transform: translateY(-50%);
- background: rgba(255, 255, 255, 0.86);
- }
- .race-panel__line--left-mid {
- left: 0;
- width: 33.3333%;
- top: 50%;
- transform: translateY(-50%);
- background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.78) 100%);
- }
- .race-panel__line--right-mid {
- right: 0;
- width: 33.3333%;
- top: 50%;
- transform: translateY(-50%);
- background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.08) 100%);
- }
- .race-panel__line--left-top,
- .race-panel__line--left-bottom,
- .race-panel__line--right-top,
- .race-panel__line--right-bottom {
- width: 23%;
- top: 50%;
- }
- .race-panel__line--left-top {
- right: 66.6667%;
- transform-origin: right center;
- transform: translateY(-50%) rotate(70deg);
- background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.82) 100%);
- }
- .race-panel__line--left-bottom {
- right: 66.6667%;
- transform-origin: right center;
- transform: translateY(-50%) rotate(-70deg);
- background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.82) 100%);
- }
- .race-panel__line--right-top {
- left: 66.6667%;
- transform-origin: left center;
- transform: translateY(-50%) rotate(-70deg);
- background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.08) 100%);
- }
- .race-panel__line--right-bottom {
- left: 66.6667%;
- transform-origin: left center;
- transform: translateY(-50%) rotate(70deg);
- background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.08) 100%);
- }
- .race-panel__chevrons {
- position: relative;
- width: 24rpx;
- height: 24rpx;
- opacity: 0.5;
- flex-shrink: 0;
- }
- .race-panel__chevron {
- position: absolute;
- right: 6rpx;
- top: 50%;
- width: 10rpx;
- height: 10rpx;
- border-top: 3rpx solid rgba(255, 255, 255, 0.78);
- border-right: 3rpx solid rgba(255, 255, 255, 0.78);
- transform: translateY(-50%) rotate(45deg);
- }
- .race-panel__chevron--offset {
- right: 0;
- }
- .debug-modal {
- position: absolute;
- inset: 0;
- display: flex;
- align-items: flex-end;
- justify-content: center;
- padding: 0 20rpx 28rpx;
- box-sizing: border-box;
- background: rgba(7, 18, 12, 0.34);
- z-index: 30;
- }
- .debug-modal__dialog {
- width: 100%;
- max-height: 72vh;
- border-radius: 36rpx;
- background: rgba(248, 251, 244, 0.98);
- box-shadow: 0 20rpx 60rpx rgba(7, 18, 12, 0.24);
- overflow: hidden;
- }
- .debug-modal__header {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- gap: 20rpx;
- padding: 28rpx 28rpx 20rpx;
- border-bottom: 1rpx solid rgba(22, 48, 32, 0.08);
- }
- .debug-modal__eyebrow {
- font-size: 20rpx;
- letter-spacing: 4rpx;
- color: #5f7a65;
- }
- .debug-modal__title {
- margin-top: 8rpx;
- font-size: 34rpx;
- font-weight: 600;
- color: #163020;
- }
- .debug-modal__close {
- flex-shrink: 0;
- padding: 14rpx 22rpx;
- border-radius: 999rpx;
- background: #163020;
- color: #f7fbf2;
- font-size: 24rpx;
- }
- .debug-modal__content {
- max-height: calc(72vh - 108rpx);
- padding: 12rpx 28rpx 30rpx;
- box-sizing: border-box;
- }
- .info-panel__row {
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- gap: 24rpx;
- padding: 10rpx 0;
- border-bottom: 1rpx solid rgba(22, 48, 32, 0.08);
- }
- .info-panel__row--stack {
- align-items: flex-start;
- }
- .info-panel__row:last-of-type {
- border-bottom: none;
- }
- .info-panel__label {
- width: 148rpx;
- flex-shrink: 0;
- font-size: 22rpx;
- letter-spacing: 2rpx;
- color: #5f7a65;
- text-align: left;
- text-transform: uppercase;
- }
- .info-panel__value {
- flex: 1;
- min-width: 0;
- font-size: 25rpx;
- line-height: 1.45;
- color: #163020;
- text-align: right;
- word-break: break-all;
- }
- .info-panel__row--stack .info-panel__value {
- margin-top: 0;
- text-align: right;
- color: #45624b;
- }
- .control-row {
- display: flex;
- gap: 14rpx;
- margin-top: 18rpx;
- }
- .control-row--triple .control-chip {
- font-size: 23rpx;
- }
- .control-chip {
- flex: 1;
- min-width: 0;
- padding: 20rpx 16rpx;
- border-radius: 999rpx;
- background: #d7e8da;
- color: #163020;
- font-size: 26rpx;
- text-align: center;
- box-sizing: border-box;
- }
- .control-chip--primary {
- background: #2d6a4f;
- color: #f7fbf2;
- }
- .control-chip--secondary {
- background: #eef6ea;
- color: #45624b;
- }
- .control-chip--active {
- background: #2d6a4f;
- color: #f7fbf2;
- }
- .race-panel__cell--action {
- justify-content: flex-start;
- padding-left: 44rpx;
- }
- .race-panel__cell--timer {
- padding-left: 12rpx;
- padding-right: 12rpx;
- }
- .race-panel__cell--mileage {
- justify-content: flex-end;
- padding-right: 56rpx;
- }
- .race-panel__cell--distance {
- justify-content: flex-start;
- padding-left: 28rpx;
- }
- .race-panel__cell--progress {
- padding-left: 8rpx;
- padding-right: 8rpx;
- }
- .race-panel__cell--speed {
- justify-content: flex-end;
- padding-right: 32rpx;
- }
- .race-panel__timer,
- .race-panel__progress,
- .race-panel__mileage,
- .race-panel__metric-group {
- max-width: 100%;
- box-sizing: border-box;
- }
- .game-punch-hint {
- position: absolute;
- left: 50%;
- bottom: 280rpx;
- transform: translateX(-50%);
- max-width: 72vw;
- padding: 14rpx 24rpx;
- border-radius: 999rpx;
- background: rgba(18, 33, 24, 0.78);
- color: #f7fbf2;
- font-size: 24rpx;
- line-height: 1.2;
- text-align: center;
- z-index: 16;
- pointer-events: none;
- }
- .game-punch-feedback {
- position: absolute;
- left: 50%;
- top: 18%;
- transform: translateX(-50%);
- min-width: 240rpx;
- padding: 20rpx 28rpx;
- border-radius: 24rpx;
- color: #ffffff;
- font-size: 24rpx;
- font-weight: 700;
- text-align: center;
- box-shadow: 0 16rpx 36rpx rgba(0, 0, 0, 0.18);
- z-index: 17;
- pointer-events: none;
- }
- .game-punch-feedback--neutral {
- background: rgba(27, 109, 189, 0.92);
- }
- .game-punch-feedback--success {
- background: rgba(37, 134, 88, 0.94);
- }
- .game-punch-feedback--warning {
- background: rgba(196, 117, 18, 0.94);
- }
- .game-punch-feedback--fx-pop {
- animation: feedback-toast-pop 0.42s ease-out;
- }
- .game-punch-feedback--fx-success {
- animation: feedback-toast-success 0.58s ease-out;
- }
- .game-punch-feedback--fx-warning {
- animation: feedback-toast-warning 0.56s ease-out;
- }
- .game-content-card {
- position: absolute;
- left: 50%;
- top: 26%;
- width: 440rpx;
- max-width: calc(100vw - 72rpx);
- transform: translateX(-50%);
- padding: 28rpx 28rpx 24rpx;
- border-radius: 28rpx;
- background: rgba(248, 251, 244, 0.96);
- box-shadow: 0 18rpx 48rpx rgba(22, 48, 32, 0.18);
- box-sizing: border-box;
- z-index: 17;
- }
- .game-content-card__title {
- font-size: 34rpx;
- line-height: 1.2;
- font-weight: 700;
- color: #163020;
- }
- .game-content-card__body {
- margin-top: 12rpx;
- font-size: 24rpx;
- line-height: 1.5;
- color: #45624b;
- }
- .game-content-card__hint {
- margin-top: 16rpx;
- font-size: 20rpx;
- color: #809284;
- }
- .game-content-card--fx-pop {
- animation: content-card-pop 0.5s cubic-bezier(0.18, 0.88, 0.2, 1);
- }
- .game-content-card--fx-finish {
- animation: content-card-finish 0.68s cubic-bezier(0.18, 0.88, 0.2, 1);
- }
- .race-panel__action-button {
- display: flex;
- align-items: center;
- justify-content: center;
- min-width: 116rpx;
- min-height: 72rpx;
- padding: 0 20rpx;
- border-radius: 999rpx;
- background: rgba(78, 92, 106, 0.54);
- border: 2rpx solid rgba(210, 220, 228, 0.18);
- box-sizing: border-box;
- box-shadow: inset 0 0 0 2rpx rgba(255, 255, 255, 0.06);
- }
- .race-panel__action-button--active {
- background: rgba(255, 226, 88, 0.98);
- border-color: rgba(255, 247, 194, 0.98);
- box-shadow: 0 0 0 4rpx rgba(255, 241, 158, 0.18), 0 0 28rpx rgba(255, 239, 122, 0.42);
- animation: punch-button-ready 1s ease-in-out infinite;
- }
- .race-panel__action-button-text {
- font-size: 24rpx;
- line-height: 1;
- font-weight: 700;
- color: rgba(236, 241, 246, 0.86);
- }
- .race-panel__action-button--active .race-panel__action-button-text {
- color: #775000;
- }
- @keyframes punch-button-ready {
- 0% {
- transform: scale(1);
- box-shadow: 0 0 0 0 rgba(255, 241, 158, 0.22), 0 0 18rpx rgba(255, 239, 122, 0.28);
- }
- 50% {
- transform: scale(1.06);
- box-shadow: 0 0 0 8rpx rgba(255, 241, 158, 0.08), 0 0 34rpx rgba(255, 239, 122, 0.52);
- }
- 100% {
- transform: scale(1);
- box-shadow: 0 0 0 0 rgba(255, 241, 158, 0.22), 0 0 18rpx rgba(255, 239, 122, 0.28);
- }
- }
- @keyframes punch-button-burst {
- 0% {
- transform: scale(1);
- box-shadow: 0 12rpx 28rpx rgba(22, 34, 46, 0.22);
- }
- 34% {
- transform: scale(1.12);
- box-shadow: 0 0 0 9rpx rgba(149, 255, 244, 0.18), 0 0 34rpx rgba(92, 255, 237, 0.58);
- }
- 100% {
- transform: scale(1);
- box-shadow: 0 12rpx 28rpx rgba(22, 34, 46, 0.22);
- }
- }
- @keyframes punch-button-warning {
- 0%, 100% {
- transform: translateX(0);
- }
- 20% {
- transform: translateX(-6rpx) scale(1.02);
- }
- 40% {
- transform: translateX(6rpx) scale(1.04);
- }
- 60% {
- transform: translateX(-4rpx) scale(1.02);
- }
- 80% {
- transform: translateX(4rpx);
- }
- }
- @keyframes feedback-toast-pop {
- 0% {
- opacity: 0;
- transform: translateX(-50%) translateY(18rpx) scale(0.88);
- }
- 100% {
- opacity: 1;
- transform: translateX(-50%) translateY(0) scale(1);
- }
- }
- @keyframes feedback-toast-success {
- 0% {
- opacity: 0;
- transform: translateX(-50%) translateY(18rpx) scale(0.88);
- }
- 55% {
- opacity: 1;
- transform: translateX(-50%) translateY(-6rpx) scale(1.04);
- }
- 100% {
- opacity: 1;
- transform: translateX(-50%) translateY(0) scale(1);
- }
- }
- @keyframes feedback-toast-warning {
- 0% {
- opacity: 0;
- transform: translateX(-50%) translateY(12rpx) scale(0.92);
- }
- 30% {
- opacity: 1;
- transform: translateX(calc(-50% - 6rpx)) translateY(0) scale(1.02);
- }
- 60% {
- transform: translateX(calc(-50% + 6rpx)) translateY(0) scale(1.02);
- }
- 100% {
- opacity: 1;
- transform: translateX(-50%) translateY(0) scale(1);
- }
- }
- @keyframes content-card-pop {
- 0% {
- opacity: 0;
- transform: translateX(-50%) translateY(30rpx) scale(0.92);
- }
- 100% {
- opacity: 1;
- transform: translateX(-50%) translateY(0) scale(1);
- }
- }
- @keyframes content-card-finish {
- 0% {
- opacity: 0;
- transform: translateX(-50%) translateY(34rpx) scale(0.9);
- box-shadow: 0 18rpx 48rpx rgba(22, 48, 32, 0.18);
- }
- 45% {
- opacity: 1;
- transform: translateX(-50%) translateY(-6rpx) scale(1.03);
- box-shadow: 0 0 0 6rpx rgba(255, 232, 147, 0.18), 0 22rpx 52rpx rgba(22, 48, 32, 0.2);
- }
- 100% {
- opacity: 1;
- transform: translateX(-50%) translateY(0) scale(1);
- box-shadow: 0 18rpx 48rpx rgba(22, 48, 32, 0.18);
- }
- }
- @keyframes map-pulse-control {
- 0% {
- opacity: 0.94;
- transform: scale(0.28);
- border: 6rpx solid rgba(92, 255, 237, 0.98);
- box-shadow: 0 0 0 0 rgba(92, 255, 237, 0.42);
- }
- 70% {
- opacity: 0.32;
- transform: scale(3.4);
- border: 4rpx solid rgba(92, 255, 237, 0.52);
- box-shadow: 0 0 0 10rpx rgba(92, 255, 237, 0.08);
- }
- 100% {
- opacity: 0;
- transform: scale(4.1);
- border: 2rpx solid rgba(92, 255, 237, 0);
- box-shadow: 0 0 0 0 rgba(92, 255, 237, 0);
- }
- }
- @keyframes map-pulse-ready {
- 0% {
- opacity: 0.92;
- transform: scale(0.22);
- border: 5rpx solid rgba(255, 248, 184, 0.98);
- box-shadow: 0 0 0 0 rgba(255, 248, 184, 0.28);
- }
- 68% {
- opacity: 0.22;
- transform: scale(2.4);
- border: 3rpx solid rgba(255, 248, 184, 0.46);
- box-shadow: 0 0 0 8rpx rgba(255, 248, 184, 0.08);
- }
- 100% {
- opacity: 0;
- transform: scale(3);
- border: 2rpx solid rgba(255, 248, 184, 0);
- box-shadow: 0 0 0 0 rgba(255, 248, 184, 0);
- }
- }
- @keyframes map-pulse-finish {
- 0% {
- opacity: 0.98;
- transform: scale(0.24);
- border: 6rpx solid rgba(255, 231, 117, 1);
- box-shadow: 0 0 0 0 rgba(255, 231, 117, 0.46);
- }
- 48% {
- opacity: 0.52;
- transform: scale(3.8);
- border: 4rpx solid rgba(255, 231, 117, 0.72);
- box-shadow: 0 0 0 14rpx rgba(255, 231, 117, 0.14);
- }
- 100% {
- opacity: 0;
- transform: scale(4.8);
- border: 2rpx solid rgba(255, 231, 117, 0);
- box-shadow: 0 0 0 0 rgba(255, 231, 117, 0);
- }
- }
- @keyframes stage-fx-finish {
- 0% {
- opacity: 0;
- background: radial-gradient(circle at 50% 50%, rgba(255, 241, 168, 0.22) 0%, rgba(255, 241, 168, 0.08) 28%, rgba(255, 255, 255, 0) 62%);
- backdrop-filter: brightness(1);
- }
- 24% {
- opacity: 1;
- background: radial-gradient(circle at 50% 50%, rgba(255, 241, 168, 0.34) 0%, rgba(255, 241, 168, 0.14) 32%, rgba(255, 255, 255, 0.04) 74%);
- backdrop-filter: brightness(1.08);
- }
- 100% {
- opacity: 0;
- background: radial-gradient(circle at 50% 50%, rgba(255, 241, 168, 0) 0%, rgba(255, 241, 168, 0) 100%);
- backdrop-filter: brightness(1);
- }
- }
|