style.css 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706
  1. /* Reset and Base Styles */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. :root {
  8. --primary-color: #3b82f6;
  9. --primary-dark: #2563eb;
  10. --secondary-color: #8b5cf6;
  11. --accent-color: #06b6d4;
  12. --success-color: #10b981;
  13. --warning-color: #f59e0b;
  14. --error-color: #ef4444;
  15. --text-primary: #1f2937;
  16. --text-secondary: #6b7280;
  17. --text-light: #9ca3af;
  18. --bg-primary: #ffffff;
  19. --bg-secondary: #f8fafc;
  20. --bg-dark: #0f172a;
  21. --border-color: #e5e7eb;
  22. --border-light: #f3f4f6;
  23. --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  24. --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  25. --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  26. --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  27. --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  28. --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  29. --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  30. }
  31. html {
  32. scroll-behavior: smooth;
  33. }
  34. body {
  35. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  36. line-height: 1.6;
  37. color: var(--text-primary);
  38. background-color: var(--bg-primary);
  39. overflow-x: hidden;
  40. }
  41. .container {
  42. max-width: 1200px;
  43. margin: 0 auto;
  44. padding: 0 20px;
  45. }
  46. /* Navigation */
  47. .navbar {
  48. position: fixed;
  49. top: 0;
  50. left: 0;
  51. right: 0;
  52. background: rgba(255, 255, 255, 0.95);
  53. backdrop-filter: blur(10px);
  54. border-bottom: 1px solid var(--border-light);
  55. z-index: 1000;
  56. transition: all 0.3s ease;
  57. }
  58. .nav-container {
  59. max-width: 1200px;
  60. margin: 0 auto;
  61. padding: 0 20px;
  62. display: flex;
  63. align-items: center;
  64. justify-content: space-between;
  65. height: 70px;
  66. }
  67. .nav-logo {
  68. display: flex;
  69. align-items: center;
  70. gap: 12px;
  71. font-size: 24px;
  72. font-weight: 700;
  73. color: var(--primary-color);
  74. }
  75. .nav-logo .logo-icon {
  76. width: 28px;
  77. height: 28px;
  78. object-fit: contain;
  79. }
  80. .nav-menu {
  81. display: flex;
  82. list-style: none;
  83. gap: 32px;
  84. align-items: center;
  85. }
  86. .nav-menu a {
  87. text-decoration: none;
  88. color: var(--text-primary);
  89. font-weight: 500;
  90. transition: color 0.3s ease;
  91. position: relative;
  92. }
  93. .nav-menu a:hover {
  94. color: var(--primary-color);
  95. }
  96. .nav-menu a::after {
  97. content: '';
  98. position: absolute;
  99. bottom: -5px;
  100. left: 0;
  101. width: 0;
  102. height: 2px;
  103. background: var(--gradient-primary);
  104. transition: width 0.3s ease;
  105. }
  106. .nav-menu a:hover::after {
  107. width: 100%;
  108. }
  109. .github-link {
  110. background: var(--gradient-primary);
  111. color: white !important;
  112. padding: 8px 16px;
  113. border-radius: 8px;
  114. display: flex;
  115. align-items: center;
  116. gap: 8px;
  117. font-weight: 600;
  118. transition: transform 0.2s ease;
  119. }
  120. .github-link:hover {
  121. transform: translateY(-2px);
  122. color: white !important;
  123. }
  124. .github-link::after {
  125. display: none;
  126. }
  127. .nav-toggle {
  128. display: none;
  129. flex-direction: column;
  130. cursor: pointer;
  131. gap: 4px;
  132. }
  133. .nav-toggle span {
  134. width: 25px;
  135. height: 3px;
  136. background: var(--text-primary);
  137. transition: all 0.3s ease;
  138. }
  139. /* Hero Section */
  140. .hero {
  141. position: relative;
  142. min-height: 100vh;
  143. display: flex;
  144. align-items: center;
  145. padding: 120px 0 80px;
  146. overflow: hidden;
  147. background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #f0f9ff 100%);
  148. }
  149. .hero-background {
  150. position: absolute;
  151. top: 0;
  152. left: 0;
  153. right: 0;
  154. bottom: 0;
  155. z-index: -1;
  156. }
  157. .gradient-bg {
  158. position: absolute;
  159. top: 0;
  160. left: 0;
  161. right: 0;
  162. bottom: 0;
  163. background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #f0f9ff 100%);
  164. }
  165. .hero-pattern {
  166. position: absolute;
  167. top: 0;
  168. left: 0;
  169. right: 0;
  170. bottom: 0;
  171. background-image:
  172. radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
  173. radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  174. animation: float 20s ease-in-out infinite;
  175. }
  176. @keyframes float {
  177. 0%, 100% { transform: translateY(0px); }
  178. 50% { transform: translateY(-20px); }
  179. }
  180. .hero .container {
  181. display: grid;
  182. grid-template-columns: 1fr 1fr;
  183. gap: 80px;
  184. align-items: center;
  185. }
  186. .hero-badge {
  187. display: inline-flex;
  188. align-items: center;
  189. gap: 8px;
  190. background: rgba(59, 130, 246, 0.1);
  191. color: var(--primary-color);
  192. padding: 12px 20px;
  193. border-radius: 30px;
  194. font-weight: 600;
  195. font-size: 14px;
  196. margin-bottom: 24px;
  197. border: 1px solid rgba(59, 130, 246, 0.2);
  198. animation: pulse 2s infinite;
  199. }
  200. .badge-icon {
  201. width: 16px;
  202. height: 16px;
  203. object-fit: contain;
  204. }
  205. @keyframes pulse {
  206. 0%, 100% { transform: scale(1); }
  207. 50% { transform: scale(1.05); }
  208. }
  209. .hero-title {
  210. font-size: 56px;
  211. font-weight: 800;
  212. line-height: 1.1;
  213. margin-bottom: 24px;
  214. letter-spacing: -0.02em;
  215. white-space: nowrap;
  216. overflow: hidden;
  217. text-overflow: ellipsis;
  218. }
  219. .gradient-text {
  220. background: var(--gradient-primary);
  221. -webkit-background-clip: text;
  222. -webkit-text-fill-color: transparent;
  223. background-clip: text;
  224. }
  225. .hero-subtitle {
  226. font-size: 20px;
  227. color: var(--text-secondary);
  228. margin-bottom: 40px;
  229. line-height: 1.8;
  230. max-width: 700px;
  231. }
  232. .subtitle-main {
  233. display: block;
  234. margin-bottom: 10px;
  235. }
  236. .subtitle-main .highlight {
  237. color: #6366f1;
  238. font-weight: 600;
  239. }
  240. .subtitle-features {
  241. display: flex;
  242. flex-wrap: wrap;
  243. gap: 16px;
  244. font-size: 15px;
  245. margin-top: 4px;
  246. }
  247. .subtitle-features .feature {
  248. background: #f3f4f6;
  249. border-radius: 16px;
  250. padding: 2px 14px;
  251. color: #6366f1;
  252. font-weight: 500;
  253. display: flex;
  254. align-items: center;
  255. gap: 4px;
  256. }
  257. .hero-stats {
  258. display: flex;
  259. gap: 40px;
  260. margin-bottom: 40px;
  261. }
  262. .stat-item {
  263. display: flex;
  264. flex-direction: column;
  265. align-items: center;
  266. gap: 8px;
  267. }
  268. .stat-item i {
  269. font-size: 24px;
  270. color: var(--primary-color);
  271. }
  272. .stat-number {
  273. font-size: 24px;
  274. font-weight: 700;
  275. color: var(--text-primary);
  276. }
  277. .stat-label {
  278. font-size: 14px;
  279. color: var(--text-secondary);
  280. text-align: center;
  281. }
  282. .hero-buttons {
  283. display: flex;
  284. gap: 16px;
  285. align-items: center;
  286. }
  287. .btn-primary, .btn-secondary {
  288. display: inline-flex;
  289. align-items: center;
  290. gap: 8px;
  291. padding: 16px 32px;
  292. border-radius: 12px;
  293. font-weight: 600;
  294. text-decoration: none;
  295. transition: all 0.3s ease;
  296. font-size: 16px;
  297. }
  298. .btn-primary {
  299. background: var(--gradient-primary);
  300. color: white;
  301. box-shadow: var(--shadow-lg);
  302. }
  303. .btn-primary:hover {
  304. transform: translateY(-2px);
  305. box-shadow: var(--shadow-xl);
  306. }
  307. .btn-secondary {
  308. background: white;
  309. color: var(--text-primary);
  310. border: 2px solid var(--border-color);
  311. }
  312. .btn-secondary:hover {
  313. border-color: var(--primary-color);
  314. color: var(--primary-color);
  315. transform: translateY(-2px);
  316. }
  317. .hero-visual {
  318. display: flex;
  319. justify-content: center;
  320. align-items: center;
  321. }
  322. .browser-mockup {
  323. background: white;
  324. border-radius: 16px;
  325. box-shadow: var(--shadow-xl);
  326. overflow: hidden;
  327. width: 100%;
  328. max-width: 500px;
  329. transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  330. transition: transform 0.3s ease;
  331. }
  332. .browser-mockup:hover {
  333. transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  334. }
  335. .browser-header {
  336. background: #f8fafc;
  337. padding: 16px 20px;
  338. display: flex;
  339. align-items: center;
  340. gap: 16px;
  341. border-bottom: 1px solid var(--border-color);
  342. }
  343. .browser-controls {
  344. display: flex;
  345. gap: 8px;
  346. }
  347. .browser-controls span {
  348. width: 12px;
  349. height: 12px;
  350. border-radius: 50%;
  351. background: #ef4444;
  352. }
  353. .browser-controls span:nth-child(2) {
  354. background: #f59e0b;
  355. }
  356. .browser-controls span:nth-child(3) {
  357. background: #10b981;
  358. }
  359. .browser-url {
  360. flex: 1;
  361. background: white;
  362. padding: 8px 16px;
  363. border-radius: 8px;
  364. color: var(--text-secondary);
  365. font-size: 14px;
  366. border: 1px solid var(--border-color);
  367. }
  368. .extension-icon {
  369. display: flex;
  370. align-items: center;
  371. justify-content: center;
  372. }
  373. .extension-logo {
  374. width: 16px;
  375. height: 16px;
  376. object-fit: contain;
  377. }
  378. .browser-content {
  379. padding: 32px;
  380. }
  381. .tool-grid-demo {
  382. display: grid;
  383. grid-template-columns: 1fr 1fr;
  384. gap: 16px;
  385. }
  386. .tool-card-demo {
  387. background: var(--bg-secondary);
  388. padding: 24px 16px;
  389. border-radius: 12px;
  390. display: flex;
  391. flex-direction: column;
  392. align-items: center;
  393. gap: 12px;
  394. transition: all 0.3s ease;
  395. border: 1px solid var(--border-light);
  396. }
  397. .tool-card-demo:hover {
  398. transform: translateY(-4px);
  399. box-shadow: var(--shadow-md);
  400. }
  401. .tool-card-demo i {
  402. font-size: 24px;
  403. color: var(--primary-color);
  404. }
  405. .tool-card-demo.json i { color: #059669; }
  406. .tool-card-demo.qr i { color: #7c3aed; }
  407. .tool-card-demo.encode i { color: #dc2626; }
  408. .tool-card-demo.postman i { color: #ea580c; }
  409. .tool-card-demo span {
  410. font-weight: 600;
  411. font-size: 14px;
  412. color: var(--text-primary);
  413. }
  414. /* Features Section */
  415. .features {
  416. padding: 120px 0;
  417. background: var(--bg-secondary);
  418. }
  419. .section-header {
  420. text-align: center;
  421. margin-bottom: 80px;
  422. }
  423. .section-header h2 {
  424. font-size: 40px;
  425. font-weight: 700;
  426. margin-bottom: 16px;
  427. color: var(--text-primary);
  428. }
  429. .section-header p {
  430. font-size: 18px;
  431. color: var(--text-secondary);
  432. max-width: 600px;
  433. margin: 0 auto;
  434. }
  435. .features-grid {
  436. display: grid;
  437. grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  438. gap: 40px;
  439. }
  440. .feature-card {
  441. background: white;
  442. padding: 40px 32px;
  443. border-radius: 16px;
  444. text-align: center;
  445. box-shadow: var(--shadow-sm);
  446. border: 1px solid var(--border-light);
  447. transition: all 0.3s ease;
  448. }
  449. .feature-card:hover {
  450. transform: translateY(-8px);
  451. box-shadow: var(--shadow-xl);
  452. }
  453. .feature-icon {
  454. display: inline-flex;
  455. align-items: center;
  456. justify-content: center;
  457. width: 80px;
  458. height: 80px;
  459. background: var(--gradient-primary);
  460. border-radius: 20px;
  461. margin-bottom: 24px;
  462. }
  463. .feature-icon i {
  464. font-size: 32px;
  465. color: white;
  466. }
  467. .feature-card h3 {
  468. font-size: 24px;
  469. font-weight: 700;
  470. margin-bottom: 8px;
  471. color: var(--text-primary);
  472. display: flex;
  473. flex-direction: column;
  474. align-items: center;
  475. }
  476. .feature-sub {
  477. font-size: 15px;
  478. color: #6366f1;
  479. font-weight: 600;
  480. margin-top: 2px;
  481. letter-spacing: 0.5px;
  482. }
  483. .feature-card p {
  484. color: var(--text-secondary);
  485. line-height: 1.8;
  486. font-size: 16px;
  487. margin-top: 8px;
  488. }
  489. /* Tools Section */
  490. .tools {
  491. padding: 120px 0;
  492. background: var(--bg-primary);
  493. }
  494. .category-tabs {
  495. display: flex;
  496. justify-content: center;
  497. gap: 8px;
  498. margin-bottom: 60px;
  499. flex-wrap: wrap;
  500. }
  501. .tab-btn {
  502. padding: 12px 24px;
  503. border: 2px solid var(--border-color);
  504. background: white;
  505. color: var(--text-secondary);
  506. border-radius: 30px;
  507. cursor: pointer;
  508. transition: all 0.3s ease;
  509. font-weight: 500;
  510. font-size: 14px;
  511. }
  512. .tab-btn:hover, .tab-btn.active {
  513. background: var(--gradient-primary);
  514. color: white;
  515. border-color: transparent;
  516. transform: translateY(-2px);
  517. }
  518. .tools-grid {
  519. display: none;
  520. grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  521. gap: 32px;
  522. }
  523. .tools-grid.active {
  524. display: grid;
  525. }
  526. .tool-card {
  527. background: white;
  528. border-radius: 16px;
  529. padding: 32px;
  530. box-shadow: var(--shadow-sm);
  531. border: 1px solid var(--border-light);
  532. transition: all 0.3s ease;
  533. }
  534. .tool-card:hover {
  535. transform: translateY(-4px);
  536. box-shadow: var(--shadow-lg);
  537. }
  538. .tool-icon {
  539. width: 60px;
  540. height: 60px;
  541. font-size: 36px;
  542. display: inline-flex;
  543. align-items: center;
  544. justify-content: center;
  545. border-radius: 16px;
  546. margin-right: 18px;
  547. background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  548. color: #fff;
  549. box-shadow: 0 2px 12px 0 rgba(59,130,246,0.10);
  550. transition: all 0.3s;
  551. }
  552. .tools-grid .tool-card h3 {
  553. display: flex;
  554. align-items: center;
  555. gap: 12px;
  556. font-size: 20px;
  557. font-weight: 600;
  558. margin-bottom: 10px;
  559. color: var(--text-primary);
  560. }
  561. .tools-grid .tool-icon span {
  562. font-size: 36px;
  563. line-height: 1;
  564. font-family: inherit;
  565. }
  566. .tools-grid .tool-card {
  567. display: flex;
  568. flex-direction: column;
  569. align-items: flex-start;
  570. }
  571. .json-icon { background: linear-gradient(135deg, #059669, #10b981); }
  572. .diff-icon { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
  573. .beautify-icon { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
  574. .compress-icon { background: linear-gradient(135deg, #f59e0b, #ef4444); }
  575. .encode-icon { background: linear-gradient(135deg, #dc2626, #f87171); }
  576. .qr-icon { background: linear-gradient(135deg, #7c3aed, #a855f7); }
  577. .api-icon { background: linear-gradient(135deg, #ea580c, #fb923c); }
  578. .websocket-icon { background: linear-gradient(135deg, #0891b2, #06b6d4); }
  579. .timestamp-icon { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
  580. .password-icon { background: linear-gradient(135deg, #dc2626, #ef4444); }
  581. .color-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
  582. .screenshot-icon { background: linear-gradient(135deg, #059669, #34d399); }
  583. .tool-icon i {
  584. font-size: 24px;
  585. color: white;
  586. }
  587. .tool-card p {
  588. color: var(--text-secondary);
  589. margin-bottom: 20px;
  590. line-height: 1.6;
  591. }
  592. .tool-demo {
  593. background: var(--bg-secondary);
  594. border-radius: 8px;
  595. padding: 16px;
  596. font-size: 14px;
  597. }
  598. .json-demo pre {
  599. background: #1f2937;
  600. color: #f3f4f6;
  601. padding: 16px;
  602. border-radius: 8px;
  603. overflow-x: auto;
  604. }
  605. .json-demo code {
  606. color: #34d399;
  607. }
  608. .diff-demo {
  609. display: grid;
  610. grid-template-columns: 1fr 1fr;
  611. gap: 8px;
  612. margin-bottom: 12px;
  613. }
  614. .diff-left, .diff-right {
  615. text-align: center;
  616. font-weight: 600;
  617. color: var(--text-secondary);
  618. padding: 8px;
  619. background: white;
  620. border-radius: 4px;
  621. }
  622. .diff-line {
  623. padding: 4px 8px;
  624. border-radius: 4px;
  625. font-family: monospace;
  626. margin: 4px 0;
  627. }
  628. .diff-line.added {
  629. background: rgba(16, 185, 129, 0.1);
  630. color: #059669;
  631. }
  632. .diff-line.removed {
  633. background: rgba(239, 68, 68, 0.1);
  634. color: #dc2626;
  635. }
  636. .code-demo {
  637. display: flex;
  638. align-items: center;
  639. justify-content: space-between;
  640. gap: 16px;
  641. }
  642. .code-before, .code-after {
  643. flex: 1;
  644. text-align: center;
  645. padding: 12px;
  646. background: white;
  647. border-radius: 6px;
  648. font-weight: 500;
  649. }
  650. .code-demo i {
  651. color: var(--primary-color);
  652. }
  653. .compress-demo {
  654. display: flex;
  655. align-items: center;
  656. justify-content: space-between;
  657. gap: 12px;
  658. text-align: center;
  659. }
  660. .size-before, .size-after {
  661. background: white;
  662. padding: 8px 12px;
  663. border-radius: 6px;
  664. font-weight: 600;
  665. font-size: 16px;
  666. }
  667. .size-before {
  668. color: #dc2626;
  669. }
  670. .size-after {
  671. color: #059669;
  672. }
  673. .compress-ratio {
  674. font-size: 12px;
  675. color: var(--primary-color);
  676. font-weight: 600;
  677. }
  678. .encode-demo {
  679. display: flex;
  680. align-items: center;
  681. gap: 12px;
  682. }
  683. .encode-input, .encode-output {
  684. flex: 1;
  685. background: white;
  686. padding: 12px;
  687. border-radius: 6px;
  688. text-align: center;
  689. font-family: monospace;
  690. font-size: 12px;
  691. }
  692. .encode-arrows {
  693. color: var(--primary-color);
  694. }
  695. .qr-demo {
  696. display: flex;
  697. justify-content: center;
  698. }
  699. .qr-code {
  700. width: 60px;
  701. height: 60px;
  702. background: white;
  703. border-radius: 8px;
  704. display: flex;
  705. align-items: center;
  706. justify-content: center;
  707. }
  708. .qr-pattern {
  709. width: 40px;
  710. height: 40px;
  711. background:
  712. linear-gradient(90deg, #000 0%, #000 20%, transparent 20%, transparent 40%, #000 40%, #000 60%, transparent 60%, transparent 80%, #000 80%),
  713. linear-gradient(0deg, #000 0%, #000 20%, transparent 20%, transparent 40%, #000 40%, #000 60%, transparent 60%, transparent 80%, #000 80%);
  714. background-size: 10px 10px;
  715. }
  716. .api-demo {
  717. text-align: center;
  718. }
  719. .request-line {
  720. background: white;
  721. padding: 8px 12px;
  722. border-radius: 6px;
  723. font-family: monospace;
  724. font-weight: 600;
  725. margin-bottom: 8px;
  726. }
  727. .response-status {
  728. padding: 6px 12px;
  729. border-radius: 6px;
  730. font-weight: 600;
  731. font-size: 12px;
  732. }
  733. .response-status.success {
  734. background: rgba(16, 185, 129, 0.1);
  735. color: #059669;
  736. }
  737. .websocket-demo {
  738. text-align: center;
  739. }
  740. .ws-status {
  741. display: inline-flex;
  742. align-items: center;
  743. gap: 8px;
  744. background: white;
  745. padding: 8px 16px;
  746. border-radius: 20px;
  747. font-weight: 600;
  748. font-size: 12px;
  749. }
  750. .ws-status.connected {
  751. color: #059669;
  752. }
  753. .ws-status.connected i {
  754. color: #10b981;
  755. animation: pulse-dot 2s infinite;
  756. }
  757. @keyframes pulse-dot {
  758. 0%, 100% { opacity: 1; }
  759. 50% { opacity: 0.5; }
  760. }
  761. /* About Section */
  762. .about {
  763. padding: 120px 0;
  764. background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  765. }
  766. .about-content {
  767. display: grid;
  768. grid-template-columns: 3fr 2fr;;
  769. gap: 80px;
  770. align-items: start;
  771. margin-top: 60px;
  772. }
  773. .timeline-item {
  774. display: flex;
  775. gap: 32px;
  776. margin-bottom: 48px;
  777. position: relative;
  778. }
  779. .timeline-item:not(:last-child)::after {
  780. content: '';
  781. position: absolute;
  782. left: 28px;
  783. top: 60px;
  784. width: 2px;
  785. height: calc(100% + 8px);
  786. background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  787. }
  788. .timeline-year {
  789. background: var(--gradient-primary);
  790. color: white;
  791. width: 56px;
  792. height: 56px;
  793. border-radius: 50%;
  794. display: flex;
  795. align-items: center;
  796. justify-content: center;
  797. font-weight: 700;
  798. font-size: 14px;
  799. flex-shrink: 0;
  800. box-shadow: var(--shadow-lg);
  801. }
  802. .timeline-content h3 {
  803. font-size: 20px;
  804. font-weight: 600;
  805. margin-bottom: 8px;
  806. color: var(--text-primary);
  807. }
  808. .timeline-content p {
  809. color: var(--text-secondary);
  810. line-height: 1.6;
  811. }
  812. .about-stats {
  813. display: flex;
  814. flex-direction: column;
  815. gap: 32px;
  816. background: white;
  817. padding: 40px 32px;
  818. border-radius: 16px;
  819. box-shadow: var(--shadow-lg);
  820. height: fit-content;
  821. }
  822. .big-stat {
  823. text-align: center;
  824. padding: 16px 0;
  825. border-bottom: 1px solid var(--border-light);
  826. }
  827. .big-stat:last-child {
  828. border-bottom: none;
  829. }
  830. .big-number {
  831. display: block;
  832. font-size: 36px;
  833. font-weight: 800;
  834. background: var(--gradient-primary);
  835. -webkit-background-clip: text;
  836. -webkit-text-fill-color: transparent;
  837. background-clip: text;
  838. margin-bottom: 8px;
  839. }
  840. .big-label {
  841. display: block;
  842. font-size: 14px;
  843. color: var(--text-secondary);
  844. font-weight: 500;
  845. }
  846. /* Browser Support */
  847. .browser-support {
  848. padding: 120px 0;
  849. background: var(--bg-secondary);
  850. }
  851. .browsers-grid {
  852. display: grid;
  853. grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  854. gap: 32px;
  855. max-width: 1000px;
  856. margin: 0 auto;
  857. }
  858. .browser-card {
  859. background: white;
  860. padding: 40px 32px;
  861. border-radius: 16px;
  862. text-align: center;
  863. box-shadow: var(--shadow-sm);
  864. border: 1px solid var(--border-light);
  865. transition: all 0.3s ease;
  866. }
  867. .browser-card:hover {
  868. transform: translateY(-8px);
  869. box-shadow: var(--shadow-xl);
  870. }
  871. .browser-icon {
  872. display: inline-flex;
  873. align-items: center;
  874. justify-content: center;
  875. width: 80px;
  876. height: 80px;
  877. border-radius: 20px;
  878. margin-bottom: 24px;
  879. }
  880. .browser-card.chrome .browser-icon {
  881. background: linear-gradient(135deg, #4285f4, #34a853);
  882. }
  883. .browser-card.firefox .browser-icon {
  884. background: linear-gradient(135deg, #ff6611, #ff9500);
  885. }
  886. .browser-card.edge .browser-icon {
  887. background: linear-gradient(135deg, #0078d4, #00bcf2);
  888. }
  889. .browser-icon i {
  890. font-size: 32px;
  891. color: white;
  892. }
  893. .browser-card h3 {
  894. font-size: 24px;
  895. font-weight: 600;
  896. margin-bottom: 8px;
  897. color: var(--text-primary);
  898. }
  899. .browser-card > p {
  900. color: var(--text-secondary);
  901. margin-bottom: 20px;
  902. }
  903. .browser-stats {
  904. display: flex;
  905. justify-content: space-between;
  906. margin-bottom: 24px;
  907. padding: 16px;
  908. background: var(--bg-secondary);
  909. border-radius: 8px;
  910. }
  911. .rating {
  912. color: #f59e0b;
  913. font-size: 14px;
  914. }
  915. .users {
  916. color: var(--text-secondary);
  917. font-size: 14px;
  918. font-weight: 500;
  919. }
  920. .browser-link {
  921. display: inline-flex;
  922. align-items: center;
  923. gap: 8px;
  924. background: var(--gradient-primary);
  925. color: white;
  926. padding: 12px 24px;
  927. border-radius: 8px;
  928. text-decoration: none;
  929. font-weight: 600;
  930. transition: all 0.3s ease;
  931. }
  932. .browser-link:hover {
  933. transform: translateY(-2px);
  934. box-shadow: var(--shadow-md);
  935. }
  936. /* Download Section */
  937. .download {
  938. padding: 120px 0;
  939. background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  940. color: white;
  941. }
  942. .download-content {
  943. display: grid;
  944. grid-template-columns: 1fr 1fr;
  945. gap: 80px;
  946. align-items: center;
  947. }
  948. .download-info h2 {
  949. font-size: 40px;
  950. font-weight: 700;
  951. margin-bottom: 16px;
  952. }
  953. .download-info p {
  954. font-size: 18px;
  955. color: rgba(255, 255, 255, 0.8);
  956. margin-bottom: 32px;
  957. }
  958. .download-features {
  959. display: flex;
  960. flex-direction: column;
  961. gap: 16px;
  962. }
  963. .feature {
  964. display: flex;
  965. align-items: center;
  966. gap: 12px;
  967. }
  968. .feature i {
  969. color: #10b981;
  970. font-size: 16px;
  971. }
  972. .download-buttons {
  973. display: flex;
  974. flex-direction: column;
  975. gap: 16px;
  976. }
  977. .download-btn {
  978. display: flex;
  979. align-items: center;
  980. gap: 20px;
  981. background: white;
  982. color: var(--text-primary);
  983. padding: 24px;
  984. border-radius: 12px;
  985. text-decoration: none;
  986. transition: all 0.3s ease;
  987. box-shadow: var(--shadow-lg);
  988. }
  989. .download-btn:hover {
  990. transform: translateY(-4px);
  991. box-shadow: var(--shadow-xl);
  992. }
  993. .btn-icon {
  994. display: flex;
  995. align-items: center;
  996. justify-content: center;
  997. width: 50px;
  998. height: 50px;
  999. border-radius: 12px;
  1000. }
  1001. .chrome-btn .btn-icon {
  1002. background: linear-gradient(135deg, #4285f4, #34a853);
  1003. }
  1004. .firefox-btn .btn-icon {
  1005. background: linear-gradient(135deg, #ff6611, #ff9500);
  1006. }
  1007. .edge-btn .btn-icon {
  1008. background: linear-gradient(135deg, #0078d4, #00bcf2);
  1009. }
  1010. .github-btn .btn-icon {
  1011. background: linear-gradient(135deg, #24292e, #586069);
  1012. }
  1013. .btn-icon i {
  1014. font-size: 24px;
  1015. color: white;
  1016. }
  1017. .btn-text {
  1018. flex: 1;
  1019. text-align: left;
  1020. }
  1021. .btn-title {
  1022. display: block;
  1023. font-size: 18px;
  1024. font-weight: 600;
  1025. margin-bottom: 4px;
  1026. }
  1027. .btn-subtitle {
  1028. display: block;
  1029. font-size: 14px;
  1030. color: var(--text-secondary);
  1031. }
  1032. .btn-arrow {
  1033. font-size: 18px;
  1034. color: var(--text-light);
  1035. transition: transform 0.3s ease;
  1036. }
  1037. .download-btn:hover .btn-arrow {
  1038. transform: translateX(4px);
  1039. }
  1040. /* Footer */
  1041. .footer {
  1042. background: var(--bg-dark);
  1043. color: white;
  1044. padding: 80px 0 40px;
  1045. position: relative;
  1046. z-index: 2;
  1047. }
  1048. .footer-content {
  1049. display: grid;
  1050. grid-template-columns: 1fr 2fr;
  1051. gap: 80px;
  1052. margin-bottom: 40px;
  1053. }
  1054. .footer-logo {
  1055. display: flex;
  1056. align-items: center;
  1057. gap: 12px;
  1058. font-size: 24px;
  1059. font-weight: 700;
  1060. margin-bottom: 16px;
  1061. }
  1062. .footer-logo .logo-icon {
  1063. width: 28px;
  1064. height: 28px;
  1065. object-fit: contain;
  1066. }
  1067. .footer-main p {
  1068. color: rgba(255, 255, 255, 0.7);
  1069. margin-bottom: 24px;
  1070. line-height: 1.7;
  1071. }
  1072. .social-links {
  1073. display: flex;
  1074. gap: 16px;
  1075. }
  1076. .social-links a {
  1077. display: flex;
  1078. align-items: center;
  1079. justify-content: center;
  1080. width: 44px;
  1081. height: 44px;
  1082. background: rgba(255, 255, 255, 0.1);
  1083. border-radius: 8px;
  1084. color: white;
  1085. text-decoration: none;
  1086. transition: all 0.3s ease;
  1087. }
  1088. .social-links a:hover {
  1089. background: var(--primary-color);
  1090. transform: translateY(-2px);
  1091. }
  1092. .footer-links {
  1093. display: grid;
  1094. grid-template-columns: repeat(3, 1fr);
  1095. gap: 40px;
  1096. }
  1097. .link-group h4 {
  1098. font-size: 16px;
  1099. font-weight: 600;
  1100. margin-bottom: 16px;
  1101. color: white;
  1102. }
  1103. .link-group a {
  1104. display: block;
  1105. color: rgba(255, 255, 255, 0.7);
  1106. text-decoration: none;
  1107. margin-bottom: 8px;
  1108. transition: color 0.3s ease;
  1109. }
  1110. .link-group a:hover {
  1111. color: var(--primary-color);
  1112. }
  1113. .footer-bottom {
  1114. border-top: 1px solid rgba(255, 255, 255, 0.1);
  1115. padding-top: 40px;
  1116. text-align: center;
  1117. color: rgba(255, 255, 255, 0.5);
  1118. }
  1119. .footer-bottom p {
  1120. margin-bottom: 8px;
  1121. }
  1122. /* Responsive Design */
  1123. @media (max-width: 1024px) {
  1124. .hero .container {
  1125. grid-template-columns: 1fr;
  1126. gap: 60px;
  1127. text-align: center;
  1128. }
  1129. .hero-title {
  1130. font-size: 48px;
  1131. }
  1132. .about-content {
  1133. grid-template-columns: 1fr;
  1134. gap: 60px;
  1135. }
  1136. .download-content {
  1137. grid-template-columns: 1fr;
  1138. gap: 60px;
  1139. text-align: center;
  1140. }
  1141. .footer-content {
  1142. grid-template-columns: 1fr;
  1143. gap: 60px;
  1144. text-align: center;
  1145. }
  1146. }
  1147. @media (max-width: 768px) {
  1148. .nav-menu {
  1149. display: none;
  1150. }
  1151. .nav-toggle {
  1152. display: flex;
  1153. }
  1154. .hero-title {
  1155. font-size: 28px;
  1156. white-space: normal;
  1157. }
  1158. .hero-subtitle {
  1159. font-size: 16px;
  1160. max-width: 100%;
  1161. }
  1162. .subtitle-features {
  1163. gap: 8px;
  1164. font-size: 13px;
  1165. }
  1166. .hero-stats {
  1167. flex-direction: column;
  1168. gap: 20px;
  1169. }
  1170. .hero-buttons {
  1171. flex-direction: column;
  1172. align-items: stretch;
  1173. }
  1174. .section-header h2 {
  1175. font-size: 32px;
  1176. }
  1177. .features-grid {
  1178. grid-template-columns: 1fr;
  1179. gap: 32px;
  1180. }
  1181. .tools-grid {
  1182. grid-template-columns: 1fr;
  1183. }
  1184. .category-tabs {
  1185. flex-direction: column;
  1186. align-items: center;
  1187. }
  1188. .browsers-grid {
  1189. grid-template-columns: 1fr;
  1190. }
  1191. .footer-links {
  1192. grid-template-columns: 1fr;
  1193. gap: 32px;
  1194. }
  1195. .container {
  1196. padding: 0 16px;
  1197. }
  1198. .hero {
  1199. padding: 100px 0 60px;
  1200. }
  1201. .features,
  1202. .tools,
  1203. .browser-support,
  1204. .download {
  1205. padding: 80px 0;
  1206. }
  1207. .footer {
  1208. padding: 60px 0 32px;
  1209. }
  1210. }
  1211. @media (max-width: 480px) {
  1212. .hero-title {
  1213. font-size: 28px;
  1214. }
  1215. .hero-subtitle {
  1216. font-size: 16px;
  1217. }
  1218. .section-header h2 {
  1219. font-size: 28px;
  1220. }
  1221. .btn-primary,
  1222. .btn-secondary {
  1223. padding: 12px 24px;
  1224. font-size: 14px;
  1225. }
  1226. .download-btn {
  1227. padding: 16px;
  1228. }
  1229. .btn-title {
  1230. font-size: 16px;
  1231. }
  1232. .btn-subtitle {
  1233. font-size: 12px;
  1234. }
  1235. }
  1236. /* Loading Animation */
  1237. .loading {
  1238. display: inline-block;
  1239. width: 20px;
  1240. height: 20px;
  1241. border: 2px solid rgba(255, 255, 255, 0.3);
  1242. border-radius: 50%;
  1243. border-top-color: white;
  1244. animation: spin 1s ease-in-out infinite;
  1245. }
  1246. @keyframes spin {
  1247. to { transform: rotate(360deg); }
  1248. }
  1249. /* Smooth Scrolling for iOS */
  1250. @supports (-webkit-overflow-scrolling: touch) {
  1251. * {
  1252. -webkit-overflow-scrolling: touch;
  1253. }
  1254. }
  1255. .pro-badges {
  1256. display: flex;
  1257. flex-wrap: wrap;
  1258. gap: 18px 24px;
  1259. align-items: center;
  1260. justify-content: flex-start;
  1261. margin-bottom: 24px;
  1262. }
  1263. .pro-badges img {
  1264. border-radius: 12px;
  1265. box-shadow: 0 2px 12px 0 rgba(59,130,246,0.08);
  1266. transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
  1267. height: 36px;
  1268. background: white;
  1269. }
  1270. .pro-badges img:hover {
  1271. transform: scale(1.07) translateY(-2px);
  1272. box-shadow: 0 6px 24px 0 rgba(59,130,246,0.18);
  1273. }
  1274. @media (max-width: 600px) {
  1275. .pro-badges img { height: 28px; }
  1276. .pro-badges { gap: 10px 8px; }
  1277. }
  1278. .tool-preview {
  1279. padding: 80px 0;
  1280. background: var(--bg-primary);
  1281. }
  1282. .preview-images {
  1283. display: flex;
  1284. gap: 32px;
  1285. justify-content: center;
  1286. flex-wrap: wrap;
  1287. margin-top: 32px;
  1288. }
  1289. .preview-item {
  1290. background: white;
  1291. border-radius: 16px;
  1292. box-shadow: 0 4px 24px 0 rgba(59,130,246,0.08);
  1293. overflow: hidden;
  1294. width: 320px;
  1295. max-width: 100%;
  1296. display: flex;
  1297. flex-direction: column;
  1298. align-items: center;
  1299. }
  1300. .preview-item img {
  1301. width: 100%;
  1302. display: block;
  1303. border-bottom: 1px solid #f3f4f6;
  1304. transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
  1305. cursor: pointer;
  1306. }
  1307. .preview-item img:hover {
  1308. transform: scale(1.06);
  1309. box-shadow: 0 8px 32px 0 rgba(59,130,246,0.18);
  1310. z-index: 2;
  1311. }
  1312. .preview-caption {
  1313. padding: 16px 0;
  1314. font-size: 16px;
  1315. color: var(--text-secondary);
  1316. text-align: center;
  1317. }
  1318. @media (max-width: 900px) {
  1319. .preview-images { flex-direction: column; gap: 24px; align-items: center; }
  1320. .preview-item { width: 90%; }
  1321. }
  1322. /* 放大查看弹窗样式 */
  1323. .img-modal {
  1324. position: fixed;
  1325. top: 0; left: 0; right: 0; bottom: 0;
  1326. background: rgba(0,0,0,0.7);
  1327. display: flex;
  1328. align-items: center;
  1329. justify-content: center;
  1330. z-index: 9999;
  1331. animation: fadeIn 0.2s;
  1332. }
  1333. .img-modal img {
  1334. max-width: 90vw;
  1335. max-height: 90vh;
  1336. border-radius: 16px;
  1337. box-shadow: 0 8px 32px 0 rgba(59,130,246,0.25);
  1338. background: white;
  1339. }
  1340. .img-modal-close {
  1341. position: absolute;
  1342. top: 32px;
  1343. right: 48px;
  1344. font-size: 40px;
  1345. color: #fff;
  1346. cursor: pointer;
  1347. z-index: 10000;
  1348. transition: color 0.2s;
  1349. }
  1350. .img-modal-close:hover {
  1351. color: #f59e0b;
  1352. }
  1353. @keyframes fadeIn {
  1354. from { opacity: 0; }
  1355. to { opacity: 1; }
  1356. }
  1357. .old-version-link {
  1358. background: #f3f4f6;
  1359. color: #6b7280 !important;
  1360. border: 1px solid #e5e7eb;
  1361. border-radius: 8px;
  1362. padding: 6px 14px;
  1363. font-weight: 500;
  1364. font-size: 15px;
  1365. transition: border-color 0.2s, color 0.2s, background 0.2s;
  1366. margin-left: 8px;
  1367. box-shadow: none;
  1368. display: inline-block;
  1369. }
  1370. .old-version-link:hover {
  1371. border-color: #9ca3af;
  1372. color: #4b5563 !important;
  1373. background: #f3f4f6;
  1374. }
  1375. /* TableExporter Promo Section */
  1376. .tableexporter-promo {
  1377. margin: 56px 0 0 0;
  1378. }
  1379. .tableexporter-promo .container {
  1380. max-width: 1100px;
  1381. }
  1382. .tableexporter-promo .section-header {
  1383. text-align: center;
  1384. margin-bottom: 0;
  1385. }
  1386. .tableexporter-promo .section-header h2 {
  1387. font-size: 2.2rem;
  1388. font-weight: 800;
  1389. margin-bottom: 8px;
  1390. }
  1391. .tableexporter-promo .section-header p {
  1392. font-size: 1.1rem;
  1393. color: #666;
  1394. margin-bottom: 0;
  1395. }
  1396. .tableexporter-promo .promo-content {
  1397. display: flex;
  1398. align-items: center;
  1399. justify-content: center;
  1400. gap: 48px;
  1401. padding: 40px 0 24px 0;
  1402. flex-wrap: wrap;
  1403. }
  1404. .tableexporter-promo .promo-img-box {
  1405. flex: 0 0 380px;
  1406. display: flex;
  1407. justify-content: center;
  1408. align-items: center;
  1409. }
  1410. .tableexporter-promo .promo-img {
  1411. max-width: 100%;
  1412. border-radius: 4px;
  1413. box-shadow: 0 4px 24px 0 rgba(60,60,60,0.10);
  1414. background: #fff;
  1415. }
  1416. .tableexporter-promo .promo-info {
  1417. flex: 1;
  1418. min-width: 260px;
  1419. display: flex;
  1420. flex-direction: column;
  1421. justify-content: center;
  1422. align-items: flex-start;
  1423. }
  1424. .tableexporter-promo .promo-list {
  1425. margin: 0 0 28px 0;
  1426. padding-left: 0;
  1427. list-style: none;
  1428. font-size: 1.08rem;
  1429. line-height: 2;
  1430. color: #333;
  1431. }
  1432. .tableexporter-promo .promo-list li {
  1433. margin-bottom: 2px;
  1434. }
  1435. .tableexporter-promo .promo-list span {
  1436. font-size: 1.2em;
  1437. vertical-align: -2px;
  1438. }
  1439. .tableexporter-promo .promo-btns {
  1440. display: flex;
  1441. gap: 18px;
  1442. }
  1443. .tableexporter-promo .btn-primary {
  1444. padding: 12px 32px;
  1445. font-size: 17px;
  1446. font-weight: 600;
  1447. border-radius: 8px;
  1448. box-shadow: 0 2px 8px #e0e7ef;
  1449. }
  1450. .tableexporter-promo .btn-secondary {
  1451. padding: 12px 32px;
  1452. font-size: 17px;
  1453. font-weight: 600;
  1454. border-radius: 8px;
  1455. }
  1456. @media (max-width: 900px) {
  1457. .tableexporter-promo .promo-content {
  1458. gap: 24px;
  1459. padding: 24px 0 12px 0;
  1460. }
  1461. .tableexporter-promo .promo-img {
  1462. width: 90vw;
  1463. max-width: 340px;
  1464. }
  1465. }
  1466. @media (max-width: 600px) {
  1467. .tableexporter-promo .section-header h2 {
  1468. font-size: 1.3rem;
  1469. }
  1470. .tableexporter-promo .promo-img {
  1471. width: 98vw;
  1472. max-width: 98vw;
  1473. }
  1474. .tableexporter-promo .promo-info {
  1475. min-width: 0;
  1476. }
  1477. .tableexporter-promo .btn-primary,
  1478. .tableexporter-promo .btn-secondary {
  1479. padding: 10px 12px;
  1480. font-size: 15px;
  1481. }
  1482. }