styles.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929
  1. :root {
  2. color-scheme: light;
  3. font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  4. --paper: #f4f0e7;
  5. --paper-deep: #e9e2d5;
  6. --paper-soft: rgba(255, 252, 244, 0.72);
  7. --ink: #20231f;
  8. --muted: #686d61;
  9. --line: rgba(82, 83, 72, 0.2);
  10. --line-strong: rgba(70, 77, 63, 0.34);
  11. --moss: #6c7666;
  12. --moss-deep: #3f4d3f;
  13. --clay: #8b7762;
  14. --ash: #d8d2c5;
  15. --charcoal: #2f302c;
  16. --danger: #8c3b32;
  17. --warning: #a27b3f;
  18. --shadow: 0 8px 18px rgba(38, 35, 28, 0.06);
  19. }
  20. * {
  21. box-sizing: border-box;
  22. }
  23. html {
  24. min-height: 100%;
  25. }
  26. body {
  27. margin: 0;
  28. min-height: 100vh;
  29. color: var(--ink);
  30. background:
  31. linear-gradient(90deg, rgba(76, 87, 69, 0.04) 1px, transparent 1px),
  32. linear-gradient(rgba(76, 87, 69, 0.035) 1px, transparent 1px),
  33. linear-gradient(135deg, #f7f3eb 0%, #ece6d9 52%, #f3eee4 100%);
  34. background-size: 44px 44px, 44px 44px, 100% 100%;
  35. overflow-x: hidden;
  36. }
  37. body::before {
  38. content: "";
  39. position: fixed;
  40. inset: 0;
  41. pointer-events: none;
  42. z-index: 0;
  43. background:
  44. repeating-linear-gradient(11deg, rgba(72, 68, 58, 0.025) 0 1px, transparent 1px 7px),
  45. repeating-linear-gradient(96deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 9px);
  46. opacity: 0.7;
  47. }
  48. button,
  49. textarea {
  50. font: inherit;
  51. }
  52. button {
  53. transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, opacity 220ms ease;
  54. }
  55. button:hover,
  56. button:focus-visible {
  57. border-color: var(--moss-deep);
  58. outline: none;
  59. }
  60. .paper-grain {
  61. position: fixed;
  62. inset: 0;
  63. z-index: 0;
  64. pointer-events: none;
  65. background-image:
  66. radial-gradient(circle at 12% 18%, rgba(61, 64, 55, 0.035) 0 1px, transparent 1px),
  67. radial-gradient(circle at 74% 28%, rgba(61, 64, 55, 0.028) 0 1px, transparent 1px),
  68. radial-gradient(circle at 42% 80%, rgba(61, 64, 55, 0.026) 0 1px, transparent 1px);
  69. background-size: 28px 31px, 39px 43px, 47px 53px;
  70. mix-blend-mode: multiply;
  71. }
  72. .top-nav {
  73. position: sticky;
  74. top: 0;
  75. z-index: 20;
  76. min-height: 74px;
  77. padding: 14px 28px;
  78. display: grid;
  79. grid-template-columns: minmax(230px, auto) 1fr minmax(210px, auto);
  80. align-items: center;
  81. gap: 22px;
  82. border-bottom: 1px solid var(--line);
  83. background: rgba(246, 241, 231, 0.9);
  84. backdrop-filter: blur(10px);
  85. }
  86. .brand {
  87. display: flex;
  88. gap: 13px;
  89. align-items: center;
  90. min-width: 0;
  91. }
  92. .brand img {
  93. width: 42px;
  94. height: 42px;
  95. border-radius: 6px;
  96. object-fit: cover;
  97. border: 1px solid rgba(58, 63, 53, 0.18);
  98. filter: saturate(0.72) contrast(0.96);
  99. }
  100. .brand strong {
  101. display: block;
  102. font-size: 18px;
  103. line-height: 1.2;
  104. font-weight: 700;
  105. letter-spacing: 0;
  106. }
  107. .brand span,
  108. .session-card span {
  109. display: block;
  110. margin-top: 4px;
  111. color: var(--muted);
  112. font-size: 12px;
  113. font-weight: 500;
  114. letter-spacing: 0;
  115. }
  116. .nav {
  117. display: flex;
  118. justify-content: center;
  119. gap: 10px;
  120. }
  121. .nav-item {
  122. min-width: 68px;
  123. border: 1px solid transparent;
  124. border-radius: 999px;
  125. padding: 8px 17px;
  126. color: var(--charcoal);
  127. background: transparent;
  128. text-align: center;
  129. cursor: pointer;
  130. font-weight: 600;
  131. }
  132. .nav-item.active {
  133. border-color: var(--line-strong);
  134. background: rgba(255, 252, 244, 0.58);
  135. }
  136. .nav-item:hover {
  137. background: rgba(255, 252, 244, 0.72);
  138. }
  139. .session-card {
  140. justify-self: end;
  141. min-width: 210px;
  142. padding: 10px 12px;
  143. border: 1px solid var(--line);
  144. border-radius: 8px;
  145. display: flex;
  146. align-items: center;
  147. gap: 10px;
  148. background: rgba(255, 252, 244, 0.58);
  149. }
  150. .session-card strong {
  151. font-size: 15px;
  152. font-weight: 700;
  153. }
  154. .status-dot {
  155. width: 10px;
  156. height: 10px;
  157. border-radius: 999px;
  158. background: var(--warning);
  159. flex: 0 0 auto;
  160. box-shadow: 0 0 0 4px rgba(162, 123, 63, 0.1);
  161. }
  162. .status-dot.ok {
  163. background: var(--moss);
  164. box-shadow: 0 0 0 4px rgba(108, 118, 102, 0.12);
  165. }
  166. .status-dot.error {
  167. background: var(--danger);
  168. box-shadow: 0 0 0 4px rgba(140, 59, 50, 0.12);
  169. }
  170. .shell {
  171. position: relative;
  172. z-index: 1;
  173. width: min(1460px, calc(100% - 48px));
  174. margin: 0 auto;
  175. padding: 24px 0 32px;
  176. }
  177. .hero {
  178. min-height: 176px;
  179. display: grid;
  180. grid-template-columns: minmax(0, 1fr) 280px;
  181. gap: 16px;
  182. align-items: stretch;
  183. margin-bottom: 16px;
  184. }
  185. .hero-copy,
  186. .hero-panel,
  187. .feature-card,
  188. .chat-card,
  189. .panel {
  190. border: 1px solid var(--line);
  191. background: var(--paper-soft);
  192. box-shadow: var(--shadow);
  193. }
  194. .hero-copy {
  195. position: relative;
  196. overflow: hidden;
  197. border-radius: 8px;
  198. padding: 28px 32px;
  199. }
  200. .hero-copy::after {
  201. content: "";
  202. position: absolute;
  203. right: 28px;
  204. bottom: 24px;
  205. width: 190px;
  206. height: 1px;
  207. background: linear-gradient(90deg, transparent, rgba(63, 77, 63, 0.42), transparent);
  208. }
  209. .eyebrow {
  210. display: inline-flex;
  211. align-items: center;
  212. min-height: 28px;
  213. padding: 3px 10px;
  214. border: 1px solid rgba(139, 119, 98, 0.45);
  215. border-radius: 3px;
  216. background: rgba(244, 240, 231, 0.72);
  217. color: var(--clay);
  218. font-size: 13px;
  219. font-weight: 600;
  220. }
  221. .hero h1 {
  222. margin: 18px 0 10px;
  223. max-width: 860px;
  224. font-size: 36px;
  225. line-height: 1.18;
  226. font-weight: 700;
  227. letter-spacing: 0;
  228. color: var(--charcoal);
  229. }
  230. .hero p {
  231. margin: 0;
  232. max-width: 760px;
  233. color: #44483f;
  234. font-size: 15px;
  235. line-height: 1.85;
  236. }
  237. .hero-actions {
  238. display: flex;
  239. flex-wrap: wrap;
  240. align-items: center;
  241. gap: 12px;
  242. margin-top: 22px;
  243. }
  244. .chrome-button,
  245. .system-pill {
  246. border-radius: 3px;
  247. font-weight: 600;
  248. }
  249. .chrome-button {
  250. min-height: 38px;
  251. padding: 0 18px;
  252. color: #f7f3eb;
  253. border: 1px solid var(--moss-deep);
  254. background: var(--moss-deep);
  255. cursor: pointer;
  256. }
  257. .chrome-button:hover,
  258. .chrome-button:focus-visible {
  259. background: #354236;
  260. }
  261. .system-pill {
  262. display: inline-flex;
  263. align-items: center;
  264. min-height: 38px;
  265. padding: 0 14px;
  266. border: 1px solid var(--line);
  267. color: var(--muted);
  268. background: rgba(255, 252, 244, 0.52);
  269. font-size: 13px;
  270. }
  271. .hero-panel {
  272. position: relative;
  273. overflow: hidden;
  274. border-radius: 8px;
  275. padding: 24px;
  276. display: grid;
  277. grid-template-rows: 1fr auto auto;
  278. align-items: center;
  279. justify-items: center;
  280. background:
  281. linear-gradient(150deg, rgba(255, 252, 244, 0.78), rgba(224, 219, 205, 0.58)),
  282. var(--paper-deep);
  283. }
  284. .seal-mark {
  285. width: 104px;
  286. height: 104px;
  287. border-radius: 7px;
  288. display: grid;
  289. place-items: center;
  290. border: 1px solid rgba(83, 69, 55, 0.24);
  291. background: rgba(255, 252, 244, 0.56);
  292. transform: rotate(-1.5deg);
  293. }
  294. .seal-mark img {
  295. width: 76px;
  296. height: 76px;
  297. border-radius: 50%;
  298. object-fit: cover;
  299. filter: saturate(0.68) contrast(0.94);
  300. }
  301. .brush-line {
  302. width: 84%;
  303. height: 2px;
  304. margin-top: 14px;
  305. background: linear-gradient(90deg, transparent, rgba(63, 77, 63, 0.46), rgba(139, 119, 98, 0.34), transparent);
  306. opacity: 0.8;
  307. }
  308. .mini-display {
  309. margin-top: 14px;
  310. width: 100%;
  311. padding: 12px 14px;
  312. border-top: 1px solid rgba(82, 83, 72, 0.16);
  313. color: var(--charcoal);
  314. }
  315. .mini-display span,
  316. .mini-display strong {
  317. display: block;
  318. text-align: center;
  319. }
  320. .mini-display span {
  321. color: var(--muted);
  322. font-size: 13px;
  323. }
  324. .mini-display strong {
  325. margin-top: 4px;
  326. font-size: 22px;
  327. font-weight: 700;
  328. }
  329. .feature-strip {
  330. display: grid;
  331. grid-template-columns: repeat(4, minmax(0, 1fr));
  332. gap: 12px;
  333. margin-bottom: 16px;
  334. }
  335. .feature-card {
  336. position: relative;
  337. border-radius: 8px;
  338. padding: 18px 18px 16px;
  339. min-height: 104px;
  340. }
  341. .feature-card::before {
  342. content: "";
  343. position: absolute;
  344. left: 18px;
  345. top: 0;
  346. width: 42px;
  347. height: 2px;
  348. background: rgba(108, 118, 102, 0.5);
  349. }
  350. .feature-card strong {
  351. display: block;
  352. margin-top: 4px;
  353. font-size: 18px;
  354. font-weight: 700;
  355. }
  356. .feature-card p {
  357. margin: 8px 0 0;
  358. color: var(--muted);
  359. font-size: 13px;
  360. line-height: 1.65;
  361. }
  362. .workspace {
  363. display: grid;
  364. grid-template-columns: minmax(620px, 1fr) 360px;
  365. gap: 16px;
  366. align-items: stretch;
  367. }
  368. .chat-card,
  369. .panel {
  370. border-radius: 8px;
  371. }
  372. .chat-card {
  373. min-height: calc(100vh - 366px);
  374. display: grid;
  375. grid-template-rows: auto minmax(360px, 1fr) auto;
  376. overflow: hidden;
  377. }
  378. .window-bar {
  379. min-height: 46px;
  380. padding: 0 18px;
  381. display: flex;
  382. align-items: center;
  383. gap: 10px;
  384. border-bottom: 1px solid var(--line);
  385. background: rgba(236, 230, 217, 0.64);
  386. }
  387. .window-bar span {
  388. width: 12px;
  389. height: 12px;
  390. border-radius: 2px;
  391. border: 1px solid rgba(139, 119, 98, 0.55);
  392. background: rgba(139, 119, 98, 0.16);
  393. transform: rotate(4deg);
  394. }
  395. .window-bar strong {
  396. color: var(--muted);
  397. font-size: 13px;
  398. font-weight: 600;
  399. letter-spacing: 0.02em;
  400. }
  401. .messages {
  402. padding: 22px;
  403. overflow: auto;
  404. scroll-behavior: smooth;
  405. }
  406. .message-row {
  407. display: grid;
  408. grid-template-columns: 38px minmax(0, 1fr);
  409. gap: 12px;
  410. margin-bottom: 18px;
  411. }
  412. .message-row.user {
  413. grid-template-columns: minmax(0, 1fr) 38px;
  414. }
  415. .avatar {
  416. width: 38px;
  417. height: 38px;
  418. border-radius: 7px;
  419. background: rgba(255, 252, 244, 0.62);
  420. color: var(--moss-deep);
  421. display: grid;
  422. place-items: center;
  423. font-size: 14px;
  424. font-weight: 700;
  425. overflow: hidden;
  426. border: 1px solid var(--line);
  427. }
  428. .avatar img {
  429. width: 100%;
  430. height: 100%;
  431. object-fit: cover;
  432. filter: saturate(0.7) contrast(0.95);
  433. }
  434. .bubble {
  435. width: min(100%, 820px);
  436. border-radius: 8px;
  437. padding: 15px 17px;
  438. background: rgba(255, 252, 244, 0.62);
  439. border: 1px solid rgba(82, 83, 72, 0.14);
  440. line-height: 1.78;
  441. white-space: pre-wrap;
  442. color: var(--ink);
  443. }
  444. .message-row.user .bubble {
  445. justify-self: end;
  446. background: rgba(232, 237, 225, 0.72);
  447. border-color: rgba(108, 118, 102, 0.24);
  448. }
  449. .message-row.user .avatar {
  450. grid-column: 2;
  451. grid-row: 1;
  452. }
  453. .message-row.user .bubble {
  454. grid-column: 1;
  455. grid-row: 1;
  456. }
  457. .progress-bubble {
  458. display: grid;
  459. gap: 6px;
  460. width: min(100%, 560px);
  461. background: rgba(245, 243, 236, 0.78);
  462. }
  463. .progress-title {
  464. display: block;
  465. color: var(--moss-deep);
  466. font-size: 15px;
  467. font-weight: 700;
  468. }
  469. .progress-detail {
  470. display: block;
  471. color: var(--muted);
  472. font-size: 13px;
  473. line-height: 1.55;
  474. }
  475. .typing {
  476. display: inline-flex;
  477. align-items: center;
  478. gap: 6px;
  479. white-space: nowrap;
  480. font-weight: 600;
  481. color: var(--moss-deep);
  482. }
  483. .typing i {
  484. width: 5px;
  485. height: 5px;
  486. border-radius: 50%;
  487. background: var(--moss);
  488. animation: pulse 1.3s infinite ease-in-out;
  489. }
  490. .typing i:nth-child(2) {
  491. animation-delay: 0.16s;
  492. }
  493. .typing i:nth-child(3) {
  494. animation-delay: 0.32s;
  495. }
  496. @keyframes pulse {
  497. 0%,
  498. 80%,
  499. 100% {
  500. opacity: 0.25;
  501. }
  502. 40% {
  503. opacity: 1;
  504. }
  505. }
  506. .table-card {
  507. margin-top: 14px;
  508. border: 1px solid var(--line);
  509. border-radius: 8px;
  510. background: rgba(255, 252, 244, 0.76);
  511. overflow: hidden;
  512. }
  513. .table-head {
  514. display: flex;
  515. justify-content: space-between;
  516. align-items: center;
  517. gap: 10px;
  518. padding: 11px 13px;
  519. background: rgba(232, 226, 213, 0.58);
  520. border-bottom: 1px solid var(--line);
  521. }
  522. .table-head strong {
  523. font-size: 14px;
  524. font-weight: 700;
  525. }
  526. .table-head button {
  527. border: 1px solid var(--line-strong);
  528. background: rgba(255, 252, 244, 0.58);
  529. color: var(--moss-deep);
  530. border-radius: 3px;
  531. padding: 6px 11px;
  532. cursor: pointer;
  533. white-space: nowrap;
  534. font-weight: 600;
  535. }
  536. .table-wrap {
  537. overflow: auto;
  538. max-height: 430px;
  539. }
  540. table {
  541. width: 100%;
  542. min-width: 700px;
  543. border-collapse: collapse;
  544. font-size: 13px;
  545. }
  546. th,
  547. td {
  548. border-bottom: 1px solid rgba(82, 83, 72, 0.14);
  549. padding: 10px 12px;
  550. text-align: left;
  551. vertical-align: top;
  552. word-break: break-word;
  553. }
  554. th {
  555. position: sticky;
  556. top: 0;
  557. z-index: 1;
  558. background: #eee8dc;
  559. color: var(--charcoal);
  560. font-weight: 700;
  561. }
  562. tbody tr:nth-child(even) {
  563. background: rgba(237, 232, 221, 0.42);
  564. }
  565. .composer {
  566. margin: 0 22px 22px;
  567. border: 1px solid var(--line);
  568. border-radius: 8px;
  569. padding: 11px;
  570. background: rgba(255, 252, 244, 0.68);
  571. }
  572. .composer:focus-within {
  573. border-color: var(--moss);
  574. }
  575. .composer textarea {
  576. width: 100%;
  577. min-height: 76px;
  578. max-height: 190px;
  579. border: 0;
  580. outline: 0;
  581. resize: vertical;
  582. color: var(--ink);
  583. background: transparent;
  584. }
  585. .composer textarea::placeholder {
  586. color: #75786e;
  587. }
  588. .composer-footer {
  589. display: flex;
  590. justify-content: space-between;
  591. align-items: center;
  592. color: var(--muted);
  593. font-size: 12px;
  594. }
  595. .send-button {
  596. border: 1px solid var(--moss-deep);
  597. border-radius: 4px;
  598. min-width: 96px;
  599. height: 40px;
  600. padding: 0 16px;
  601. background: var(--moss-deep);
  602. color: #f7f3eb;
  603. display: inline-flex;
  604. align-items: center;
  605. justify-content: center;
  606. gap: 8px;
  607. cursor: pointer;
  608. font-weight: 600;
  609. }
  610. .send-button:hover,
  611. .send-button:focus-visible {
  612. background: #354236;
  613. }
  614. .send-button:disabled {
  615. cursor: not-allowed;
  616. opacity: 0.64;
  617. }
  618. .send-icon,
  619. .send-text {
  620. white-space: nowrap;
  621. }
  622. .inspector {
  623. display: grid;
  624. align-content: start;
  625. gap: 14px;
  626. max-height: calc(100vh - 210px);
  627. overflow: auto;
  628. }
  629. .panel {
  630. padding: 16px;
  631. }
  632. .panel-title {
  633. display: flex;
  634. align-items: center;
  635. justify-content: space-between;
  636. gap: 12px;
  637. margin-bottom: 12px;
  638. }
  639. .panel h2 {
  640. margin: 0;
  641. font-size: 18px;
  642. font-weight: 700;
  643. }
  644. .player-screen {
  645. margin-bottom: 14px;
  646. border-radius: 7px;
  647. padding: 14px;
  648. background: rgba(47, 48, 44, 0.94);
  649. color: #f4f0e7;
  650. border: 1px solid rgba(47, 48, 44, 0.14);
  651. }
  652. .player-screen span,
  653. .player-screen strong {
  654. display: block;
  655. }
  656. .player-screen span {
  657. color: #c8c0b0;
  658. font-size: 12px;
  659. font-weight: 500;
  660. }
  661. .player-screen strong {
  662. margin-top: 5px;
  663. font-size: 18px;
  664. font-weight: 700;
  665. }
  666. .kv {
  667. display: grid;
  668. gap: 12px;
  669. margin: 0;
  670. }
  671. .kv div {
  672. display: grid;
  673. grid-template-columns: 86px minmax(0, 1fr);
  674. gap: 8px;
  675. }
  676. .kv dt {
  677. color: var(--muted);
  678. font-weight: 500;
  679. }
  680. .kv dd {
  681. margin: 0;
  682. font-weight: 700;
  683. word-break: break-all;
  684. }
  685. .tool-list,
  686. .trace-list {
  687. display: grid;
  688. gap: 9px;
  689. }
  690. .tool-item,
  691. .trace-item {
  692. border: 1px solid rgba(82, 83, 72, 0.14);
  693. border-radius: 7px;
  694. padding: 11px;
  695. background: rgba(255, 252, 244, 0.52);
  696. }
  697. .tool-item strong,
  698. .trace-item strong {
  699. display: block;
  700. font-size: 14px;
  701. font-weight: 700;
  702. }
  703. .tool-item span,
  704. .trace-item span {
  705. display: block;
  706. color: var(--muted);
  707. font-size: 12px;
  708. margin-top: 4px;
  709. word-break: break-word;
  710. line-height: 1.5;
  711. }
  712. .phase-error strong {
  713. color: var(--danger);
  714. }
  715. @media (max-width: 1180px) {
  716. .top-nav {
  717. grid-template-columns: 1fr;
  718. }
  719. .session-card {
  720. justify-self: stretch;
  721. }
  722. .nav {
  723. justify-content: flex-start;
  724. overflow-x: auto;
  725. }
  726. .hero,
  727. .workspace {
  728. grid-template-columns: 1fr;
  729. }
  730. .hero-panel {
  731. min-height: 180px;
  732. }
  733. .feature-strip {
  734. grid-template-columns: repeat(2, minmax(0, 1fr));
  735. }
  736. .inspector {
  737. max-height: none;
  738. }
  739. }
  740. @media (max-width: 720px) {
  741. .top-nav {
  742. padding: 12px;
  743. gap: 12px;
  744. }
  745. .shell {
  746. width: min(100% - 20px, 1460px);
  747. padding-top: 12px;
  748. }
  749. .hero-copy {
  750. padding: 18px;
  751. }
  752. .hero h1 {
  753. font-size: 30px;
  754. }
  755. .hero p {
  756. font-size: 14px;
  757. line-height: 1.7;
  758. }
  759. .hero-actions {
  760. margin-top: 14px;
  761. }
  762. .hero-panel {
  763. display: none;
  764. }
  765. .feature-strip {
  766. grid-template-columns: repeat(2, minmax(0, 1fr));
  767. gap: 10px;
  768. }
  769. .feature-card {
  770. min-height: auto;
  771. padding: 14px;
  772. }
  773. .feature-card strong {
  774. font-size: 16px;
  775. }
  776. .feature-card p {
  777. font-size: 12px;
  778. }
  779. .chat-card {
  780. min-height: 620px;
  781. }
  782. .message-row,
  783. .message-row.user {
  784. grid-template-columns: 1fr;
  785. }
  786. .message-row .avatar,
  787. .message-row.user .avatar {
  788. display: none;
  789. }
  790. .message-row.user .bubble,
  791. .message-row.user .avatar {
  792. grid-column: auto;
  793. grid-row: auto;
  794. }
  795. }
  796. @media (max-width: 480px) {
  797. .feature-strip {
  798. grid-template-columns: 1fr;
  799. }
  800. }