| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382 |
- :root {
- --bg: #f5f5f7;
- --surface: #ffffff;
- --line: #e5e7eb;
- --line-strong: #94a3b8;
- --text: #111827;
- --muted: #6b7280;
- --faint: #94a3b8;
- --source: #1e293b;
- --source-sub: #475569;
- --query: #b45309;
- --query-sub: #d97706;
- --impl: #065f46;
- --impl-sub: #047857;
- --output: #1e40af;
- --output-sub: #2563eb;
- font-family: -apple-system, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
- color: var(--text);
- background: var(--bg);
- }
- * {
- box-sizing: border-box;
- }
- html,
- body {
- margin: 0;
- min-height: 100%;
- background: var(--bg);
- }
- body {
- height: 100vh;
- overflow: hidden;
- font-size: 13px;
- }
- button,
- input,
- select {
- font: inherit;
- }
- a {
- color: inherit;
- text-decoration: none;
- }
- button,
- a {
- touch-action: manipulation;
- }
- button:focus-visible,
- a:focus-visible {
- outline: 3px solid #bfdbfe;
- outline-offset: 2px;
- }
- .app-shell {
- height: 100vh;
- background: var(--bg);
- }
- .scroll-area {
- height: 100%;
- overflow: auto;
- }
- .page-header {
- min-height: 52px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 14px;
- padding: 12px 20px 8px;
- background: var(--surface);
- border-bottom: 1px solid var(--line);
- }
- .header-left,
- .toolbar,
- .brand,
- .toolbar-button,
- .icon-button,
- .mini-button {
- display: inline-flex;
- align-items: center;
- }
- .header-left {
- gap: 10px;
- min-width: 0;
- flex-wrap: wrap;
- }
- .toolbar {
- justify-content: flex-end;
- gap: 8px;
- }
- .brand {
- gap: 6px;
- color: #111827;
- font-size: 16px;
- font-weight: 700;
- white-space: nowrap;
- }
- .header-subtitle {
- color: var(--muted);
- font-size: 12px;
- line-height: 1.5;
- overflow-wrap: anywhere;
- }
- .header-summary-chips {
- display: inline-flex;
- flex-wrap: wrap;
- align-items: center;
- gap: 4px;
- min-width: 0;
- }
- .header-summary-chips .chip {
- margin: 0;
- }
- .toolbar-button,
- .icon-button,
- .mini-button {
- min-height: 32px;
- justify-content: center;
- gap: 6px;
- border: 1px solid #cbd5e1;
- border-radius: 4px;
- color: #334155;
- background: #fff;
- cursor: pointer;
- font-size: 12px;
- font-weight: 600;
- transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
- }
- .toolbar-button {
- padding: 0 10px;
- }
- .icon-button {
- width: 34px;
- }
- .mini-button {
- min-height: 28px;
- padding: 0 8px;
- }
- .mini-button.ghost {
- color: #64748b;
- background: #f8fafc;
- }
- .toolbar-button:hover,
- .icon-button:hover,
- .mini-button:hover {
- color: #1e40af;
- border-color: #93c5fd;
- background: #eff6ff;
- }
- .source-block,
- .declarations {
- margin: 10px 20px 0;
- background: #fff;
- border: 1px solid #e2e8f0;
- border-radius: 6px;
- }
- .source-block summary,
- .declarations summary {
- padding: 9px 14px;
- cursor: pointer;
- list-style: none;
- }
- .source-block summary::-webkit-details-marker,
- .declarations summary::-webkit-details-marker {
- display: none;
- }
- .source-block summary::before,
- .declarations summary::before {
- content: ">";
- display: inline-block;
- margin-right: 7px;
- color: var(--faint);
- font-size: 10px;
- transform: rotate(90deg);
- }
- .source-block:not([open]) summary::before,
- .declarations:not([open]) summary::before {
- transform: rotate(0);
- }
- .source-summary,
- .source-body {
- padding: 8px 14px;
- color: #475569;
- line-height: 1.6;
- }
- .source-body {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- gap: 8px;
- border-top: 1px solid #e2e8f0;
- }
- .decl-purpose {
- margin-left: 12px;
- color: #475569;
- font-size: 12px;
- }
- .tag-mini {
- display: inline-block;
- margin-left: 8px;
- padding: 1px 7px;
- border-radius: 3px;
- color: #92400e;
- background: #fef3c7;
- font-size: 11px;
- font-weight: 600;
- }
- .kw {
- color: #6d28d9;
- font-weight: 700;
- }
- .decl-body {
- display: flex;
- flex-wrap: wrap;
- gap: 14px 32px;
- padding: 12px 18px 14px;
- border-top: 1px solid #e2e8f0;
- }
- .decl-section {
- min-width: 260px;
- flex: 1 1 280px;
- }
- .decl-label {
- margin-bottom: 6px;
- padding-bottom: 4px;
- border-bottom: 1px dashed #e2e8f0;
- color: #475569;
- font-size: 11.5px;
- font-weight: 700;
- }
- .decl-row {
- color: #1f2937;
- font-size: 12.5px;
- line-height: 1.65;
- }
- .legend {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- gap: 6px 12px;
- margin-top: 12px;
- padding: 10px 20px;
- background: #fff;
- border-top: 1px solid var(--line);
- border-bottom: 1px solid var(--line);
- color: var(--muted);
- font-size: 11.5px;
- }
- .legend-group {
- display: inline-flex;
- }
- .legend-head {
- padding: 2px 8px;
- border: 0;
- border-radius: 3px;
- color: #1f2937;
- cursor: pointer;
- font-weight: 700;
- }
- .legend-group.gray .legend-head {
- background: #e2e8f0;
- }
- .legend-group.yellow .legend-head {
- background: #fde68a;
- }
- .legend-group.green .legend-head {
- background: #bbf7d0;
- }
- .legend-group.blue .legend-head {
- background: #bfdbfe;
- }
- .legend-head.off {
- opacity: 0.45;
- text-decoration: line-through;
- }
- .legend-hint {
- margin-left: auto;
- color: var(--faint);
- font-size: 11px;
- }
- .table-wrap {
- background: #fff;
- }
- .ledger-table {
- width: max-content;
- min-width: 100%;
- border-collapse: collapse;
- background: #fff;
- table-layout: auto;
- font-size: 12px;
- }
- .ledger-table th,
- .ledger-table td {
- border: 1px solid var(--line);
- padding: 6px 8px;
- vertical-align: top;
- line-height: 1.5;
- }
- .ledger-table thead th {
- position: sticky;
- top: 0;
- z-index: 4;
- padding: 8px 6px;
- color: #fff;
- font-size: 12.5px;
- font-weight: 700;
- text-align: center;
- }
- .ledger-table tbody td {
- font-size: 12px;
- }
- .ledger-row > td {
- border-top: 1.5px solid var(--line-strong);
- }
- .group-demand,
- .group-source,
- .sub-source {
- background: var(--source) !important;
- }
- .group-videos,
- .group-rules,
- .sub-videos,
- .sub-rules {
- background: var(--impl) !important;
- }
- .group-walk,
- .group-assets,
- .sub-walk,
- .sub-assets {
- background: var(--output) !important;
- }
- .sub-source {
- background: var(--source-sub) !important;
- }
- .sub-videos,
- .sub-rules {
- background: var(--impl-sub) !important;
- }
- .sub-walk,
- .sub-assets {
- background: var(--output-sub) !important;
- }
- .demand-cell,
- .source-cell {
- background: #f8fafc;
- }
- .videos-cell,
- .rules-cell {
- background: #f0fdf4;
- }
- .walk-cell,
- .asset-cell {
- background: #eff6ff;
- }
- .demand-cell,
- .group-demand {
- width: 300px;
- min-width: 300px;
- max-width: 300px;
- }
- .source-cell,
- .sub-source,
- .group-source {
- width: 360px;
- min-width: 360px;
- max-width: 360px;
- }
- .videos-cell {
- min-width: 500px;
- max-width: 560px;
- }
- .rules-cell {
- min-width: 190px;
- max-width: 260px;
- }
- .walk-cell {
- min-width: 210px;
- max-width: 240px;
- }
- .asset-cell {
- min-width: 130px;
- }
- .sticky-demand {
- position: sticky !important;
- left: 0;
- z-index: 4;
- }
- .sticky-source {
- position: sticky !important;
- left: 300px;
- z-index: 3;
- }
- .ledger-table thead .sticky-demand {
- z-index: 7;
- }
- .ledger-table thead .sticky-source {
- z-index: 6;
- }
- .demand-cell,
- .group-demand,
- .source-cell,
- .sub-source,
- .group-source {
- box-shadow: 6px 0 8px -4px rgba(0, 0, 0, 0.18);
- }
- .demand-card {
- display: grid;
- gap: 7px;
- }
- .demand-card-head,
- .demand-meta-row {
- display: flex;
- flex-wrap: wrap;
- gap: 5px;
- align-items: center;
- }
- .demand-title {
- color: #111827;
- font-size: 13px;
- line-height: 1.45;
- }
- .demand-line {
- margin: 0;
- color: #334155;
- font-size: 11.5px;
- line-height: 1.55;
- }
- .demand-line b,
- .demand-list b {
- color: #111827;
- font-weight: 850;
- }
- .demand-meta-row span {
- padding: 2px 6px;
- border-radius: 4px;
- color: #475569;
- background: #e2e8f0;
- font-size: 10.5px;
- font-weight: 800;
- }
- .demand-list {
- display: grid;
- gap: 4px;
- color: #334155;
- font-size: 11.5px;
- line-height: 1.55;
- }
- .demand-list div {
- display: grid;
- gap: 3px;
- }
- .demand-list span {
- overflow-wrap: anywhere;
- }
- .demand-list em {
- color: var(--muted);
- font-style: normal;
- }
- .repeated-demand {
- color: #64748b;
- font-size: 11.5px;
- font-weight: 800;
- text-align: center;
- }
- .idx {
- display: inline-block;
- margin-bottom: 5px;
- padding: 0 5px;
- border-radius: 3px;
- color: #475569;
- background: #e2e8f0;
- font-family: ui-monospace, "SF Mono", monospace;
- font-size: 10px;
- }
- .cell-stack {
- display: grid;
- gap: 5px;
- min-width: 0;
- }
- .source-detail-list {
- display: grid;
- gap: 3px;
- }
- .source-kind-badge {
- display: inline-block;
- width: fit-content;
- padding: 5px 10px;
- border: 1px solid transparent;
- border-radius: 5px;
- font-size: 14px;
- font-weight: 800;
- line-height: 1.2;
- }
- .source-kind-badge.seed {
- color: #172554;
- border-color: #bfdbfe;
- background: #dbeafe;
- }
- .source-kind-badge.piaoquan {
- color: #713f12;
- border-color: #fde68a;
- background: #fef3c7;
- }
- .source-kind-badge.category {
- color: #064e3b;
- border-color: #bbf7d0;
- background: #dcfce7;
- }
- .source-kind-badge.unknown {
- color: #334155;
- border-color: #cbd5e1;
- background: #e2e8f0;
- }
- .source-query-text {
- font-size: 14px;
- line-height: 1.45;
- }
- .title-link,
- .cell-stack strong {
- color: #0f172a;
- overflow-wrap: anywhere;
- }
- .title-link:hover {
- color: #1e40af;
- text-decoration: underline;
- }
- .muted {
- color: var(--muted);
- font-size: 11.5px;
- overflow-wrap: anywhere;
- }
- .strong-muted {
- color: #334155;
- font-size: 12px;
- font-weight: 650;
- line-height: 1.55;
- }
- .chip-row {
- display: flex;
- flex-wrap: wrap;
- gap: 4px;
- }
- .chip {
- display: inline-block;
- width: fit-content;
- margin: 1px 3px 1px 0;
- padding: 1px 7px;
- border-radius: 10px;
- color: #1f2937;
- background: #d1d5db;
- font-size: 11.5px;
- line-height: 1.45;
- white-space: nowrap;
- }
- .chip.dark {
- color: #fff;
- background: #475569;
- }
- .chip.yellow {
- color: #78350f;
- background: #fde68a;
- }
- .chip.green {
- color: #065f46;
- background: #bbf7d0;
- }
- .chip.blue {
- color: #1e3a8a;
- background: #bfdbfe;
- }
- .video-strip {
- display: flex;
- gap: 6px;
- min-height: 74px;
- }
- .video-mini {
- width: 150px;
- min-height: 74px;
- display: grid;
- grid-template-columns: 40px 1fr;
- gap: 7px;
- padding: 6px;
- border: 1px solid #d1fae5;
- border-radius: 4px;
- background: #fff;
- }
- .video-mini:hover {
- border-color: #86efac;
- background: #f7fee7;
- }
- .video-thumb {
- width: 40px;
- height: 56px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- border-radius: 3px;
- color: #065f46;
- background: #dcfce7;
- font-size: 10px;
- font-weight: 800;
- }
- .video-mini b {
- display: -webkit-box;
- overflow: hidden;
- color: #111827;
- font-size: 11.5px;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .video-mini small {
- display: block;
- margin-top: 3px;
- color: var(--muted);
- font-size: 11px;
- font-weight: 650;
- line-height: 1.45;
- }
- .cell-footer {
- display: flex;
- flex-wrap: wrap;
- gap: 6px;
- margin: 6px 0;
- color: var(--muted);
- font-size: 11.5px;
- }
- .run-list {
- margin: 12px 20px 24px;
- display: grid;
- gap: 8px;
- }
- .run-row {
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 12px;
- min-height: 58px;
- padding: 10px 12px;
- border: 1px solid #e2e8f0;
- border-radius: 6px;
- background: #fff;
- }
- .run-row:hover {
- border-color: #bfdbfe;
- background: #f8fafc;
- }
- .run-row strong,
- .run-row span {
- display: block;
- }
- .run-row strong {
- font-size: 13px;
- }
- .run-row span {
- color: var(--muted);
- font-size: 12px;
- }
- .run-row-meta {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-end;
- gap: 4px;
- }
- .state-block {
- margin: 14px 20px;
- padding: 18px;
- border: 1px solid #e2e8f0;
- border-radius: 6px;
- background: #fff;
- color: #475569;
- }
- .error-state {
- color: #991b1b;
- background: #fef2f2;
- border-color: #fecaca;
- }
- .detail-table-wrap {
- margin: 12px 20px 24px;
- overflow: auto;
- border: 1px solid #e5e7eb;
- border-radius: 6px;
- background: #fff;
- }
- .detail-table {
- width: 100%;
- min-width: 980px;
- border-collapse: collapse;
- font-size: 12px;
- }
- .detail-table th,
- .detail-table td {
- border: 1px solid #e5e7eb;
- padding: 7px 8px;
- vertical-align: top;
- line-height: 1.5;
- }
- .detail-table th {
- position: sticky;
- top: 0;
- z-index: 2;
- color: #fff;
- background: #475569;
- font-weight: 700;
- text-align: left;
- }
- .walk-lanes {
- display: grid;
- grid-template-columns: repeat(4, minmax(210px, 1fr));
- gap: 10px;
- margin: 12px 20px;
- }
- .walk-lane {
- min-height: 180px;
- border: 1px solid #dbeafe;
- border-radius: 6px;
- background: #eff6ff;
- }
- .lane-head {
- padding: 8px 10px;
- color: #fff;
- background: #1e40af;
- border-radius: 5px 5px 0 0;
- font-size: 12px;
- font-weight: 700;
- }
- .walk-node {
- width: calc(100% - 12px);
- display: grid;
- gap: 2px;
- margin: 6px;
- padding: 7px 8px;
- border: 1px solid #bfdbfe;
- border-radius: 4px;
- color: #172554;
- background: #fff;
- cursor: pointer;
- text-align: left;
- }
- .walk-node:hover {
- border-color: #60a5fa;
- background: #f8fbff;
- }
- .walk-node span,
- .walk-node small {
- color: var(--muted);
- overflow-wrap: anywhere;
- }
- .lane-empty {
- display: block;
- padding: 10px;
- }
- .score-list {
- display: grid;
- gap: 5px;
- }
- .score-list.roomy {
- gap: 8px;
- margin-top: 10px;
- }
- .score-row {
- display: grid;
- grid-template-columns: minmax(72px, 1fr) auto;
- gap: 6px;
- align-items: start;
- padding: 6px 7px;
- border: 1px solid #dbeafe;
- border-radius: 4px;
- background: #f8fbff;
- }
- .score-row span {
- color: #334155;
- font-size: 11.5px;
- }
- .score-row b {
- color: #1e40af;
- font-size: 12px;
- font-variant-numeric: tabular-nums;
- }
- .score-row small {
- grid-column: 1 / -1;
- color: var(--muted);
- line-height: 1.45;
- }
- .score-module-grid {
- display: grid;
- grid-template-columns: repeat(3, minmax(0, 1fr));
- gap: 8px;
- margin-top: 10px;
- }
- .score-module {
- display: grid;
- gap: 5px;
- min-height: 108px;
- padding: 10px;
- border: 1px solid #dbeafe;
- border-radius: 5px;
- background: #f8fbff;
- }
- .score-module span {
- color: #334155;
- font-size: 12px;
- font-weight: 800;
- }
- .score-module b {
- color: #111827;
- font-size: 20px;
- line-height: 1.1;
- font-variant-numeric: tabular-nums;
- }
- .score-module small {
- color: var(--muted);
- font-size: 11.5px;
- line-height: 1.45;
- }
- .score-module.score-total {
- border-color: #bfdbfe;
- background: #eff6ff;
- }
- .score-module.score-demand {
- border-color: #bbf7d0;
- background: #f0fdf4;
- }
- .score-module.score-platform {
- border-color: #fde68a;
- background: #fffbeb;
- }
- .score-mini {
- max-width: 220px;
- color: #334155;
- font-size: 11.5px;
- line-height: 1.55;
- }
- .walk-tree-wrap {
- margin: 12px 20px;
- padding: 12px;
- border: 1px solid #dbeafe;
- border-radius: 6px;
- background: #f8fbff;
- }
- .walk-tree-root {
- display: flex;
- flex-wrap: wrap;
- gap: 8px;
- align-items: center;
- padding: 8px 10px;
- border: 1px solid #cbd5e1;
- border-radius: 4px;
- background: #fff;
- }
- .walk-tree-root strong {
- color: #0f172a;
- }
- .walk-tree-root small {
- color: var(--muted);
- }
- .walk-tree {
- display: grid;
- gap: 8px;
- margin-top: 10px;
- }
- .walk-tree-node {
- --depth: 0;
- position: relative;
- display: grid;
- grid-template-columns: 18px minmax(0, 1fr);
- margin-left: calc(var(--depth) * 28px);
- }
- .walk-node-spine {
- position: relative;
- min-height: 100%;
- }
- .walk-node-spine::before {
- content: "";
- position: absolute;
- top: -8px;
- bottom: -8px;
- left: 8px;
- width: 2px;
- background: #bfdbfe;
- }
- .walk-node-spine::after {
- content: "";
- position: absolute;
- top: 18px;
- left: 4px;
- width: 10px;
- height: 10px;
- border: 2px solid #2563eb;
- border-radius: 999px;
- background: #fff;
- }
- .walk-tree-node.skipped .walk-node-spine::after {
- border-color: #d97706;
- }
- .walk-node-card {
- display: grid;
- gap: 7px;
- padding: 9px 10px;
- border: 1px solid #bfdbfe;
- border-radius: 5px;
- background: #fff;
- }
- .walk-tree-node.skipped .walk-node-card {
- border-color: #fde68a;
- background: #fffbeb;
- }
- .walk-node-title,
- .walk-node-meta {
- display: flex;
- flex-wrap: wrap;
- gap: 7px;
- align-items: center;
- }
- .walk-node-title strong {
- color: #0f172a;
- }
- .walk-node-meta span {
- color: #475569;
- font-size: 11.5px;
- }
- .walk-node-card ul {
- display: grid;
- gap: 3px;
- margin: 0;
- padding-left: 16px;
- color: #334155;
- }
- .walk-node-card li,
- .walk-node-card p {
- overflow-wrap: anywhere;
- line-height: 1.5;
- }
- .walk-node-card p {
- margin: 0;
- color: var(--muted);
- }
- .walk-ledger-board {
- margin: 12px 20px 24px;
- padding: 12px;
- border: 1px solid #dbeafe;
- border-radius: 6px;
- background: #f8fbff;
- }
- .walk-ledger-root {
- display: flex;
- flex-wrap: wrap;
- gap: 8px;
- align-items: center;
- padding: 9px 10px;
- border: 1px solid #cbd5e1;
- border-radius: 4px;
- background: #fff;
- }
- .walk-ledger-root strong {
- color: #0f172a;
- }
- .walk-ledger-root small {
- color: var(--muted);
- }
- .walk-ledger-groups {
- display: grid;
- gap: 12px;
- margin-top: 10px;
- }
- .walk-ledger-group,
- .walk-story-block {
- position: relative;
- }
- .walk-ledger-spine {
- position: relative;
- min-height: 100%;
- }
- .walk-ledger-spine::before {
- content: "";
- position: absolute;
- top: -10px;
- bottom: -10px;
- left: 10px;
- width: 2px;
- background: #bfdbfe;
- }
- .walk-ledger-spine::after {
- content: "";
- position: absolute;
- top: 19px;
- left: 5px;
- width: 12px;
- height: 12px;
- border: 2px solid #2563eb;
- border-radius: 999px;
- background: #fff;
- }
- .walk-source-card {
- display: grid;
- gap: 10px;
- padding: 12px;
- border: 1px solid #cbd5e1;
- border-radius: 5px;
- background: #fff;
- }
- .walk-story-block {
- display: grid;
- gap: 10px;
- padding: 12px 12px 12px 24px;
- border: 1px solid #cbd5e1;
- border-radius: 6px;
- background: #fff;
- }
- .walk-story-block.level-0 {
- border-color: #bfdbfe;
- background: #f8fbff;
- }
- .walk-story-block.level-1 {
- border-color: #bbf7d0;
- background: #f4fff8;
- }
- .walk-story-block.level-2 {
- border-color: #ddd6fe;
- background: #fbfaff;
- }
- .walk-story-block.level-3 {
- border-color: #fed7aa;
- background: #fffaf5;
- }
- .walk-story-block::before {
- content: "";
- position: absolute;
- top: 18px;
- bottom: 14px;
- left: 10px;
- width: 2px;
- background: #bfdbfe;
- }
- .walk-story-block.level-1::before {
- background: #bbf7d0;
- }
- .walk-story-block.level-2::before {
- background: #ddd6fe;
- }
- .walk-story-block.level-3::before {
- background: #fed7aa;
- }
- .walk-story-block::after {
- content: "";
- position: absolute;
- top: 24px;
- left: 5px;
- width: 12px;
- height: 12px;
- border: 2px solid #2563eb;
- border-radius: 999px;
- background: #fff;
- }
- .walk-story-block.level-1::after {
- border-color: #16a34a;
- }
- .walk-story-block.level-2::after {
- border-color: #7c3aed;
- }
- .walk-story-block.level-3::after {
- border-color: #ea580c;
- }
- .walk-story-head {
- display: grid;
- grid-template-columns: auto minmax(0, 1fr) auto;
- gap: 10px;
- align-items: start;
- }
- .walk-story-title {
- min-width: 0;
- display: grid;
- gap: 7px;
- }
- .walk-story-title h2 {
- margin: 0;
- color: #111827;
- font-size: 15px;
- font-weight: 850;
- line-height: 1.45;
- }
- .walk-source-kicker {
- width: max-content;
- padding: 3px 8px;
- border-radius: 4px;
- color: #475569;
- background: #e2e8f0;
- font-size: 11px;
- font-weight: 850;
- }
- .walk-story-block.level-0 .walk-source-kicker {
- color: #1e40af;
- background: #dbeafe;
- }
- .walk-story-block.level-1 .walk-source-kicker {
- color: #047857;
- background: #dcfce7;
- }
- .walk-story-block.level-2 .walk-source-kicker {
- color: #6d28d9;
- background: #ede9fe;
- }
- .walk-story-block.level-3 .walk-source-kicker {
- color: #c2410c;
- background: #ffedd5;
- }
- .walk-source-card h2 {
- margin: 0;
- color: #111827;
- font-size: 14px;
- font-weight: 850;
- line-height: 1.45;
- }
- .walk-source-head {
- display: flex;
- flex-wrap: wrap;
- gap: 7px;
- align-items: center;
- }
- .walk-source-head strong {
- color: #111827;
- font-size: 14px;
- font-weight: 850;
- line-height: 1.45;
- }
- .walk-source-tags {
- display: flex;
- flex-wrap: wrap;
- gap: 5px;
- }
- .walk-source-tags span {
- padding: 2px 7px;
- border-radius: 999px;
- color: #065f46;
- background: #dcfce7;
- font-size: 11px;
- font-weight: 800;
- }
- .walk-source-meta {
- display: grid;
- gap: 5px;
- color: #64748b;
- font-size: 12px;
- line-height: 1.45;
- }
- .walk-source-meta b {
- display: inline-flex;
- min-width: 58px;
- margin-right: 6px;
- color: #334155;
- font-weight: 850;
- }
- .walk-source-facts {
- display: grid;
- grid-template-columns: repeat(4, minmax(0, 1fr));
- gap: 6px;
- }
- .walk-fact {
- min-width: 0;
- display: grid;
- gap: 2px;
- padding: 7px 8px;
- border: 1px solid #e2e8f0;
- border-radius: 4px;
- background: #f8fafc;
- }
- .walk-fact span {
- color: #64748b;
- font-size: 11px;
- font-weight: 800;
- }
- .walk-fact strong {
- color: #1f2937;
- font-size: 12px;
- line-height: 1.35;
- overflow-wrap: anywhere;
- }
- .walk-fact.good {
- border-color: #bbf7d0;
- background: #f0fdf4;
- }
- .walk-fact.good strong {
- color: #047857;
- }
- .walk-fact.warn {
- border-color: #fde68a;
- background: #fffbeb;
- }
- .walk-fact.warn strong {
- color: #92400e;
- }
- .walk-fact.bad {
- border-color: #fecaca;
- background: #fef2f2;
- }
- .walk-fact.bad strong {
- color: #b91c1c;
- }
- .walk-video-links {
- display: flex;
- flex-wrap: wrap;
- gap: 6px;
- align-items: center;
- }
- .walk-video-links a {
- min-height: 28px;
- display: inline-flex;
- gap: 4px;
- align-items: center;
- padding: 4px 8px;
- border: 1px solid #cbd5e1;
- border-radius: 4px;
- color: #1e40af;
- background: #fff;
- font-size: 11.5px;
- font-weight: 800;
- }
- .walk-video-links a:hover {
- border-color: #93c5fd;
- background: #eff6ff;
- }
- .walk-video-links.compact {
- justify-content: flex-end;
- }
- .walk-video-links.compact a {
- min-height: 24px;
- padding: 3px 7px;
- }
- .walk-branch-list {
- display: grid;
- gap: 7px;
- }
- .walk-route-stack {
- display: grid;
- gap: 8px;
- }
- .walk-story-routes {
- position: relative;
- display: grid;
- gap: 8px;
- margin-left: 18px;
- padding-left: 16px;
- border-left: 2px solid #dbeafe;
- }
- .walk-story-block.level-1 .walk-story-routes {
- border-left-color: #bbf7d0;
- }
- .walk-story-block.level-2 .walk-story-routes {
- border-left-color: #ddd6fe;
- }
- .walk-story-block.level-3 .walk-story-routes {
- border-left-color: #fed7aa;
- }
- .walk-story-routes-label {
- width: max-content;
- margin-bottom: 1px;
- padding: 3px 8px;
- border-radius: 4px;
- color: #1e40af;
- background: #eff6ff;
- font-size: 11px;
- font-weight: 850;
- }
- .walk-story-block.level-1 .walk-story-routes-label {
- color: #047857;
- background: #dcfce7;
- }
- .walk-story-block.level-2 .walk-story-routes-label {
- color: #6d28d9;
- background: #ede9fe;
- }
- .walk-story-block.level-3 .walk-story-routes-label {
- color: #c2410c;
- background: #ffedd5;
- }
- .walk-tree-route {
- position: relative;
- display: grid;
- grid-template-columns: 14px minmax(0, 1fr);
- gap: 8px;
- }
- .walk-tree-route-dot {
- position: relative;
- }
- .walk-tree-route-dot::before {
- content: "";
- position: absolute;
- top: 22px;
- left: -23px;
- width: 21px;
- height: 2px;
- background: #dbeafe;
- }
- .walk-tree-route-dot::after {
- content: "";
- position: absolute;
- top: 17px;
- left: -5px;
- width: 10px;
- height: 10px;
- border: 2px solid #60a5fa;
- border-radius: 999px;
- background: #fff;
- }
- .walk-tree-route-body {
- display: grid;
- gap: 9px;
- padding: 10px 12px;
- border: 1px solid #dbeafe;
- border-radius: 5px;
- background: #f8fbff;
- }
- .walk-tree-route.tag .walk-tree-route-body {
- border-color: #bbf7d0;
- background: #f0fdf4;
- }
- .walk-tree-route.author .walk-tree-route-body {
- border-color: #ddd6fe;
- background: #f5f3ff;
- }
- .walk-tree-route.page .walk-tree-route-body {
- border-color: #bfdbfe;
- background: #eff6ff;
- }
- .walk-tree-route.stopped .walk-tree-route-body {
- border-color: #fde68a;
- background: #fffbeb;
- }
- .walk-nested-children {
- display: grid;
- gap: 8px;
- margin-top: 2px;
- padding: 10px 0 0 18px;
- border-left: 2px dashed #cbd5e1;
- }
- .walk-nested-label {
- width: max-content;
- padding: 3px 8px;
- border-radius: 4px;
- color: #475569;
- background: #e2e8f0;
- font-size: 11px;
- font-weight: 850;
- }
- .walk-nested-children .walk-story-block {
- box-shadow: none;
- }
- .walk-route-card {
- display: grid;
- gap: 9px;
- padding: 10px 12px;
- border: 1px solid #dbeafe;
- border-radius: 5px;
- background: #fff;
- }
- .walk-route-card.tag {
- border-color: #bbf7d0;
- background: #f0fdf4;
- }
- .walk-route-card.author {
- border-color: #ddd6fe;
- background: #f5f3ff;
- }
- .walk-route-card.page {
- border-color: #bfdbfe;
- background: #eff6ff;
- }
- .walk-route-card.stopped {
- border-color: #fde68a;
- background: #fffbeb;
- }
- .walk-route-head {
- display: grid;
- grid-template-columns: auto minmax(0, 1fr) auto;
- gap: 8px;
- align-items: start;
- }
- .walk-route-head strong {
- color: #0f172a;
- font-size: 13px;
- font-weight: 850;
- }
- .walk-route-head p {
- margin: 3px 0 0;
- color: #334155;
- font-size: 12.5px;
- font-weight: 650;
- line-height: 1.45;
- }
- .walk-flow {
- display: grid;
- grid-template-columns: minmax(100px, 0.8fr) 24px minmax(130px, 1fr) 24px minmax(150px, 1.1fr);
- gap: 6px;
- align-items: stretch;
- }
- .walk-flow-node {
- min-width: 0;
- display: grid;
- gap: 3px;
- padding: 8px 9px;
- border: 1px solid rgba(148, 163, 184, 0.55);
- border-radius: 4px;
- background: #fff;
- }
- a.walk-flow-node:hover {
- border-color: #93c5fd;
- background: #fff;
- }
- .walk-flow-node span {
- color: #64748b;
- font-size: 11px;
- font-weight: 850;
- }
- .walk-flow-node strong {
- color: #111827;
- font-size: 12px;
- line-height: 1.35;
- overflow-wrap: anywhere;
- }
- .walk-flow-node.strong {
- border-color: #93c5fd;
- background: #fff;
- }
- .walk-flow-node.muted {
- color: #64748b;
- background: rgba(255, 255, 255, 0.58);
- }
- .walk-flow-arrow {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- color: #64748b;
- }
- .walk-route-bottom {
- display: flex;
- flex-wrap: wrap;
- gap: 7px;
- align-items: center;
- }
- .walk-gate {
- min-height: 26px;
- display: inline-flex;
- align-items: center;
- padding: 4px 8px;
- border-radius: 4px;
- font-size: 12px;
- font-weight: 850;
- }
- .walk-gate.pass {
- color: #065f46;
- background: #dcfce7;
- }
- .walk-gate.stop {
- color: #92400e;
- background: #fef3c7;
- }
- .walk-jump-button {
- min-height: 26px;
- display: inline-flex;
- align-items: center;
- padding: 4px 8px;
- border: 1px solid #cbd5e1;
- border-radius: 4px;
- color: #1e40af;
- background: #fff;
- font-size: 12px;
- font-weight: 850;
- }
- .walk-jump-button:hover {
- border-color: #93c5fd;
- background: #eff6ff;
- }
- .walk-branch-card {
- display: grid;
- gap: 7px;
- padding: 10px 12px;
- border: 1px solid #dbeafe;
- border-radius: 5px;
- background: #fff;
- }
- .walk-branch-card.tag {
- border-color: #bbf7d0;
- background: #f0fdf4;
- }
- .walk-branch-card.author {
- border-color: #ddd6fe;
- background: #f5f3ff;
- }
- .walk-branch-card.page {
- border-color: #bfdbfe;
- background: #eff6ff;
- }
- .walk-branch-card.asset {
- border-color: #bbf7d0;
- background: #ecfdf5;
- }
- .walk-branch-card.stop,
- .walk-branch-card.stopped {
- border-color: #fde68a;
- background: #fffbeb;
- }
- .walk-branch-head {
- display: flex;
- flex-wrap: wrap;
- gap: 7px;
- align-items: center;
- }
- .walk-edge-icon {
- width: 24px;
- height: 24px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- border-radius: 4px;
- color: #1e40af;
- background: #dbeafe;
- }
- .walk-branch-card.tag .walk-edge-icon {
- color: #065f46;
- background: #bbf7d0;
- }
- .walk-branch-card.author .walk-edge-icon {
- color: #5b21b6;
- background: #ddd6fe;
- }
- .walk-branch-card.stop .walk-edge-icon,
- .walk-branch-card.stopped .walk-edge-icon {
- color: #92400e;
- background: #fde68a;
- }
- .walk-branch-head strong {
- color: #0f172a;
- }
- .walk-branch-summary {
- margin: 0;
- color: #334155;
- font-size: 13px;
- font-weight: 750;
- line-height: 1.55;
- }
- .walk-route-lines {
- display: grid;
- gap: 5px;
- color: #475569;
- font-size: 12px;
- line-height: 1.45;
- }
- .walk-route-lines span {
- overflow-wrap: anywhere;
- }
- .walk-route-lines b {
- display: inline-flex;
- min-width: 72px;
- margin-right: 6px;
- color: #1f2937;
- font-weight: 850;
- }
- .walk-branch-facts {
- display: grid;
- grid-template-columns: repeat(4, minmax(0, 1fr));
- gap: 6px;
- }
- .walk-fact-card {
- min-width: 0;
- display: grid;
- gap: 4px;
- padding: 7px 8px;
- border: 1px solid rgba(148, 163, 184, 0.45);
- border-radius: 4px;
- background: rgba(255, 255, 255, 0.72);
- }
- .walk-fact-card span {
- color: #64748b;
- font-size: 11px;
- font-weight: 800;
- }
- .walk-fact-card strong {
- color: #1f2937;
- font-size: 11.5px;
- line-height: 1.45;
- overflow-wrap: anywhere;
- }
- .walk-result-query,
- .walk-result-title {
- display: flex;
- flex-wrap: wrap;
- gap: 7px;
- align-items: center;
- color: #1e3a8a;
- font-size: 12px;
- font-weight: 800;
- }
- .walk-result-query {
- padding: 7px 8px;
- border: 1px solid #bfdbfe;
- border-radius: 4px;
- background: #fff;
- }
- .walk-result-query strong {
- color: #0f172a;
- }
- .walk-result-videos {
- display: grid;
- gap: 8px;
- padding-top: 2px;
- }
- .walk-result-video-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
- gap: 8px;
- align-items: start;
- }
- .walk-result-video-card {
- min-width: 0;
- display: grid;
- gap: 8px;
- padding: 10px;
- border: 1px solid #e2e8f0;
- border-radius: 5px;
- background: #fff;
- box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
- }
- .walk-result-video-card.good {
- border-color: #86efac;
- background: #f0fdf4;
- }
- .walk-result-video-card.warn {
- border-color: #fde68a;
- background: #fffbeb;
- }
- .walk-result-video-card.bad {
- border-color: #fecaca;
- background: #fef2f2;
- }
- .walk-result-video-card.has-child {
- grid-column: 1 / -1;
- background: #ffffff;
- }
- .walk-result-video-top {
- display: flex;
- flex-wrap: wrap;
- gap: 6px;
- align-items: center;
- justify-content: space-between;
- }
- .walk-result-status,
- .walk-result-continue,
- .walk-result-stop {
- min-height: 24px;
- display: inline-flex;
- align-items: center;
- padding: 3px 7px;
- border-radius: 4px;
- font-size: 11.5px;
- font-weight: 850;
- }
- .walk-result-status.good {
- color: #065f46;
- background: #bbf7d0;
- }
- .walk-result-status.warn {
- color: #92400e;
- background: #fde68a;
- }
- .walk-result-status.bad {
- color: #991b1b;
- background: #fecaca;
- }
- .walk-result-continue {
- color: #1e40af;
- background: #dbeafe;
- }
- .walk-result-stop {
- color: #64748b;
- background: #e2e8f0;
- }
- .walk-result-video-title {
- color: #111827;
- font-size: 13px;
- font-weight: 850;
- line-height: 1.45;
- overflow-wrap: anywhere;
- }
- .walk-result-video-title:hover {
- color: #1e40af;
- }
- .walk-result-video-meta {
- color: #64748b;
- font-size: 11.5px;
- font-weight: 750;
- }
- .walk-score-chips {
- display: flex;
- flex-wrap: wrap;
- gap: 5px;
- }
- .walk-score-chips span {
- min-height: 22px;
- display: inline-flex;
- align-items: center;
- padding: 3px 6px;
- border: 1px solid rgba(148, 163, 184, 0.38);
- border-radius: 4px;
- color: #334155;
- background: rgba(255, 255, 255, 0.72);
- font-size: 11px;
- font-weight: 800;
- }
- .compact-tags {
- gap: 4px;
- }
- .compact-tags span {
- font-size: 10.5px;
- }
- .walk-card-children {
- margin-top: 2px;
- padding: 10px 0 0 14px;
- border-left: 2px dashed #93c5fd;
- }
- .walk-card-children > .walk-story-block {
- margin-top: 0;
- box-shadow: none;
- }
- .walk-stop-note {
- padding: 9px 10px;
- border: 1px dashed #fbbf24;
- border-radius: 5px;
- color: #92400e;
- background: #fffbeb;
- font-size: 12px;
- font-weight: 800;
- }
- .walk-result-video {
- display: grid;
- grid-template-columns: minmax(0, 1fr) auto auto;
- gap: 3px 8px;
- align-items: center;
- padding: 7px 8px;
- border: 1px solid #e2e8f0;
- border-radius: 4px;
- background: #fff;
- }
- .walk-result-video:hover {
- border-color: #93c5fd;
- background: #f8fbff;
- }
- .walk-result-video-main {
- min-width: 0;
- display: grid;
- gap: 2px;
- }
- .walk-result-video-main b {
- color: #111827;
- font-size: 12px;
- line-height: 1.45;
- }
- .walk-result-video-main small {
- color: var(--muted);
- font-size: 11px;
- }
- .walk-result-video svg {
- grid-column: 3;
- grid-row: 1 / span 2;
- color: #94a3b8;
- }
- .walk-result-video .walk-video-links {
- grid-column: 2;
- grid-row: 1 / span 2;
- }
- .walk-result-video.single {
- grid-template-columns: minmax(0, 1fr);
- }
- .walk-result-video.single b {
- color: #111827;
- font-size: 12px;
- line-height: 1.45;
- }
- .walk-result-video.single small {
- color: var(--muted);
- font-size: 11px;
- }
- .walk-no-route {
- padding: 12px;
- border: 1px dashed #cbd5e1;
- border-radius: 5px;
- color: #64748b;
- background: #fff;
- font-size: 12.5px;
- }
- @media (max-width: 900px) {
- .walk-branch-facts {
- grid-template-columns: repeat(2, minmax(0, 1fr));
- }
- .walk-story-head {
- grid-template-columns: 1fr;
- }
- .walk-source-facts {
- grid-template-columns: repeat(2, minmax(0, 1fr));
- }
- .walk-flow {
- grid-template-columns: 1fr;
- }
- .walk-flow-arrow {
- transform: rotate(90deg);
- }
- }
- @media (max-width: 520px) {
- .walk-branch-facts {
- grid-template-columns: 1fr;
- }
- .walk-source-facts {
- grid-template-columns: 1fr;
- }
- .walk-story-routes {
- margin-left: 8px;
- padding-left: 12px;
- }
- .walk-nested-children {
- padding-left: 10px;
- }
- .walk-route-head {
- grid-template-columns: auto minmax(0, 1fr);
- }
- .walk-route-head .chip {
- grid-column: 2;
- width: max-content;
- }
- }
- .video-detail-grid {
- display: grid;
- grid-template-columns: repeat(2, minmax(280px, 1fr));
- gap: 12px;
- margin: 12px 20px 24px;
- }
- .video-panel {
- padding: 14px;
- border: 1px solid #e2e8f0;
- border-radius: 6px;
- background: #fff;
- }
- .video-panel h2 {
- margin: 0 0 8px;
- color: #111827;
- font-size: 14px;
- }
- .video-panel p {
- color: #334155;
- line-height: 1.6;
- }
- .video-embed {
- width: 100%;
- margin-top: 12px;
- overflow: hidden;
- border: 1px solid #cbd5e1;
- border-radius: 4px;
- background: #0f172a;
- aspect-ratio: 9 / 16;
- max-height: 620px;
- }
- .video-embed iframe {
- width: 100%;
- height: 100%;
- display: block;
- border: 0;
- background: #0f172a;
- }
- .drawer-overlay {
- position: fixed;
- inset: 0;
- z-index: 100;
- display: none;
- border: 0;
- background: rgba(0, 0, 0, 0.35);
- }
- .drawer-overlay.open {
- display: block;
- }
- .drawer {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 101;
- width: 560px;
- max-width: 92vw;
- overflow-y: auto;
- background: #fff;
- box-shadow: -4px 0 16px rgba(0, 0, 0, 0.15);
- transform: translateX(100%);
- transition: transform 200ms ease-out;
- }
- .drawer.open {
- transform: translateX(0);
- }
- .drawer header {
- position: sticky;
- top: 0;
- z-index: 2;
- padding: 14px 18px;
- color: #fff;
- background: #1e293b;
- }
- .drawer h2 {
- margin: 0;
- padding-right: 32px;
- font-size: 14px;
- }
- .drawer-close {
- position: absolute;
- top: 10px;
- right: 12px;
- width: 32px;
- height: 32px;
- border: 0;
- color: #fff;
- background: transparent;
- cursor: pointer;
- }
- .drawer-content {
- padding: 14px 18px;
- }
- .business-drawer-content {
- display: grid;
- gap: 10px;
- }
- .drawer-section {
- padding: 12px 12px 10px;
- border: 1px solid #e5e7eb;
- border-left: 4px solid #94a3b8;
- border-radius: 5px;
- background: #fff;
- }
- .drawer-section.good {
- border-left-color: #059669;
- }
- .drawer-section.warn {
- border-left-color: #d97706;
- }
- .drawer-section.bad {
- border-left-color: #dc2626;
- }
- .drawer-section.info {
- border-left-color: #2563eb;
- }
- .drawer-section h3 {
- margin: 0 0 6px;
- color: #111827;
- font-size: 12.5px;
- }
- .drawer-section p,
- .drawer-section li {
- color: #334155;
- font-size: 12.5px;
- line-height: 1.65;
- }
- .drawer-section p {
- margin: 0;
- }
- .drawer-section ul {
- margin: 0;
- padding-left: 16px;
- }
- @media (max-width: 760px) {
- body {
- overflow: auto;
- }
- .app-shell,
- .scroll-area {
- height: auto;
- min-height: 100dvh;
- }
- .page-header {
- align-items: flex-start;
- flex-direction: column;
- }
- .toolbar-button,
- .icon-button,
- .mini-button {
- min-height: 44px;
- }
- .icon-button {
- width: 44px;
- }
- .legend-hint {
- width: 100%;
- margin-left: 0;
- }
- .demand-cell,
- .group-demand,
- .source-cell,
- .sub-source,
- .group-source {
- width: 260px;
- min-width: 260px;
- max-width: 260px;
- }
- .sticky-demand,
- .sticky-source {
- position: static !important;
- left: auto;
- }
- .demand-cell,
- .group-demand,
- .source-cell,
- .sub-source,
- .group-source {
- box-shadow: none;
- }
- .walk-lanes,
- .video-detail-grid {
- grid-template-columns: 1fr;
- }
- }
- @media (prefers-reduced-motion: reduce) {
- *,
- *::before,
- *::after {
- transition-duration: 0.01ms !important;
- animation-duration: 0.01ms !important;
- animation-iteration-count: 1 !important;
- }
- }
|