style.css 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508
  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. }
  1483. /* FeHelper 特殊样式 - 从内联样式迁移而来 */
  1484. /* 工具计数样式 */
  1485. .tool-count {
  1486. font-size: 11px;
  1487. color: rgba(255, 255, 255, 0.8);
  1488. margin-top: 4px;
  1489. font-weight: 500;
  1490. }
  1491. /* Mock数据演示样式 */
  1492. .mock-demo {
  1493. display: flex;
  1494. flex-direction: column;
  1495. gap: 4px;
  1496. }
  1497. .mock-item {
  1498. font-family: monospace;
  1499. font-size: 10px;
  1500. padding: 4px 6px;
  1501. background: rgba(16, 185, 129, 0.1);
  1502. border-radius: 4px;
  1503. color: #059669;
  1504. }
  1505. /* 增强浏览器模拟器的工具网格 */
  1506. .tool-grid-demo {
  1507. display: grid;
  1508. grid-template-columns: repeat(3, 1fr);
  1509. gap: 8px;
  1510. margin-bottom: 16px;
  1511. }
  1512. .tool-card-demo {
  1513. background: rgba(255, 255, 255, 0.1);
  1514. padding: 12px 8px;
  1515. border-radius: 8px;
  1516. text-align: center;
  1517. transition: all 0.3s ease;
  1518. cursor: pointer;
  1519. }
  1520. .tool-card-demo:hover {
  1521. background: rgba(255, 255, 255, 0.2);
  1522. transform: translateY(-2px);
  1523. }
  1524. .tool-card-demo i {
  1525. font-size: 18px;
  1526. margin-bottom: 6px;
  1527. display: block;
  1528. color: #3b82f6;
  1529. }
  1530. .tool-card-demo span {
  1531. font-size: 12px;
  1532. font-weight: 500;
  1533. color: #1f2937;
  1534. display: block;
  1535. }
  1536. /* 微信小程序推广区域样式 */
  1537. .wechat-miniprogram-section {
  1538. margin-top: 30px;
  1539. padding: 24px;
  1540. background: linear-gradient(135deg, rgba(7, 193, 96, 0.1), rgba(0, 174, 66, 0.05));
  1541. border-radius: 16px;
  1542. border: 2px solid rgba(7, 193, 96, 0.2);
  1543. position: relative;
  1544. overflow: hidden;
  1545. }
  1546. .wechat-miniprogram-section::before {
  1547. content: '';
  1548. position: absolute;
  1549. top: 0;
  1550. left: 0;
  1551. right: 0;
  1552. bottom: 0;
  1553. background: linear-gradient(135deg, rgba(7, 193, 96, 0.03), rgba(0, 174, 66, 0.01));
  1554. border-radius: 14px;
  1555. }
  1556. .wechat-miniprogram-section > * {
  1557. position: relative;
  1558. z-index: 2;
  1559. }
  1560. .wechat-miniprogram-section .main-flex {
  1561. display: flex;
  1562. align-items: flex-start;
  1563. gap: 20px;
  1564. }
  1565. .wechat-miniprogram-section .wechat-header {
  1566. display: flex;
  1567. align-items: center;
  1568. margin-bottom: 16px;
  1569. }
  1570. .wechat-miniprogram-section .wechat-icon {
  1571. background: linear-gradient(135deg, #07c160, #00ae42);
  1572. width: 36px;
  1573. height: 36px;
  1574. border-radius: 10px;
  1575. display: flex;
  1576. align-items: center;
  1577. justify-content: center;
  1578. margin-right: 12px;
  1579. box-shadow: 0 4px 15px rgba(7, 193, 96, 0.4);
  1580. }
  1581. .wechat-miniprogram-section .wechat-icon i {
  1582. color: white;
  1583. font-size: 18px;
  1584. }
  1585. .wechat-miniprogram-section .wechat-title {
  1586. color: #1a1a1a;
  1587. margin: 0;
  1588. font-size: 17px;
  1589. font-weight: 600;
  1590. display: flex;
  1591. align-items: center;
  1592. }
  1593. .wechat-miniprogram-section .new-badge {
  1594. background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  1595. color: white;
  1596. font-size: 10px;
  1597. padding: 3px 7px;
  1598. border-radius: 10px;
  1599. margin-left: 8px;
  1600. font-weight: 500;
  1601. box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
  1602. }
  1603. .wechat-miniprogram-section .wechat-subtitle {
  1604. color: #666;
  1605. margin: 4px 0 0 0;
  1606. font-size: 13px;
  1607. }
  1608. .wechat-miniprogram-section .wechat-tags {
  1609. display: flex;
  1610. flex-wrap: wrap;
  1611. gap: 8px;
  1612. }
  1613. .wechat-miniprogram-section .wechat-tag {
  1614. background: rgba(7, 193, 96, 0.12);
  1615. color: #00ae42;
  1616. padding: 5px 10px;
  1617. border-radius: 14px;
  1618. font-size: 11px;
  1619. display: flex;
  1620. align-items: center;
  1621. font-weight: 600;
  1622. border: 1px solid rgba(7, 193, 96, 0.2);
  1623. }
  1624. .wechat-miniprogram-section .wechat-tag i {
  1625. margin-right: 5px;
  1626. font-size: 10px;
  1627. }
  1628. .wechat-miniprogram-section .qr-section {
  1629. text-align: center;
  1630. flex-shrink: 0;
  1631. }
  1632. .wechat-miniprogram-section .qr-code-img {
  1633. width: 110px;
  1634. height: 110px;
  1635. border-radius: 12px;
  1636. box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  1637. background: white;
  1638. padding: 6px;
  1639. border: 2px solid rgba(7, 193, 96, 0.1);
  1640. }
  1641. .wechat-miniprogram-section .qr-text {
  1642. color: #666;
  1643. margin: 8px 0 0 0;
  1644. font-size: 12px;
  1645. font-weight: 500;
  1646. }
  1647. .wechat-miniprogram-section .content-flex {
  1648. flex: 1;
  1649. min-width: 0;
  1650. }
  1651. /* 无梯下载区域样式 */
  1652. .offline-download {
  1653. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  1654. color: white;
  1655. padding: 80px 0;
  1656. }
  1657. .offline-download .section-header h2 {
  1658. color: white;
  1659. margin-bottom: 16px;
  1660. }
  1661. .offline-download .section-header p {
  1662. color: rgba(255,255,255,0.9);
  1663. font-size: 18px;
  1664. }
  1665. .offline-download .download-container {
  1666. max-width: 1000px;
  1667. margin: 0 auto;
  1668. }
  1669. .offline-download .download-card {
  1670. background: rgba(255,255,255,0.1);
  1671. backdrop-filter: blur(10px);
  1672. border-radius: 16px;
  1673. padding: 40px;
  1674. margin-bottom: 40px;
  1675. border: 1px solid rgba(255,255,255,0.2);
  1676. }
  1677. .offline-download .card-header {
  1678. display: flex;
  1679. align-items: center;
  1680. margin-bottom: 24px;
  1681. }
  1682. .offline-download .card-icon {
  1683. width: 48px;
  1684. height: 48px;
  1685. background: rgba(255,255,255,0.2);
  1686. border-radius: 12px;
  1687. display: flex;
  1688. align-items: center;
  1689. justify-content: center;
  1690. margin-right: 16px;
  1691. }
  1692. .offline-download .card-icon i {
  1693. font-size: 20px;
  1694. color: white;
  1695. }
  1696. .offline-download .card-title {
  1697. color: white;
  1698. margin: 0;
  1699. font-size: 24px;
  1700. font-weight: 600;
  1701. }
  1702. .offline-download .card-subtitle {
  1703. color: rgba(255,255,255,0.8);
  1704. margin: 4px 0 0 0;
  1705. font-size: 16px;
  1706. }
  1707. .offline-download .features-grid {
  1708. display: grid;
  1709. grid-template-columns: 1fr 1fr;
  1710. gap: 20px;
  1711. margin-bottom: 24px;
  1712. }
  1713. .offline-download .feature-section {
  1714. background: rgba(255,255,255,0.1);
  1715. border-radius: 12px;
  1716. padding: 20px;
  1717. }
  1718. .offline-download .feature-header {
  1719. display: flex;
  1720. align-items: center;
  1721. margin-bottom: 16px;
  1722. }
  1723. .offline-download .feature-header i {
  1724. margin-right: 8px;
  1725. }
  1726. .offline-download .feature-header strong {
  1727. color: white;
  1728. }
  1729. .offline-download .feature-steps {
  1730. display: flex;
  1731. flex-direction: column;
  1732. gap: 12px;
  1733. }
  1734. .offline-download .step-item {
  1735. display: flex;
  1736. align-items: center;
  1737. color: rgba(255,255,255,0.9);
  1738. line-height: 1.4;
  1739. }
  1740. .offline-download .step-number {
  1741. border-radius: 50%;
  1742. width: 20px;
  1743. height: 20px;
  1744. display: flex;
  1745. align-items: center;
  1746. justify-content: center;
  1747. font-size: 11px;
  1748. font-weight: bold;
  1749. margin-right: 10px;
  1750. flex-shrink: 0;
  1751. color: white;
  1752. }
  1753. .offline-download .step-number.blue { background: #3b82f6; }
  1754. .offline-download .step-number.green { background: #10b981; }
  1755. .offline-download .step-number.purple { background: #8b5cf6; }
  1756. .offline-download .step-number.orange { background: #f59e0b; }
  1757. .offline-download .step-text {
  1758. font-size: 14px;
  1759. }
  1760. .offline-download .feature-advantages {
  1761. margin: 0;
  1762. color: rgba(255,255,255,0.9);
  1763. line-height: 1.6;
  1764. }
  1765. .offline-download .download-link {
  1766. display: inline-flex;
  1767. align-items: center;
  1768. background: rgba(255,255,255,0.9);
  1769. color: #667eea;
  1770. padding: 16px 32px;
  1771. border-radius: 12px;
  1772. text-decoration: none;
  1773. font-weight: bold;
  1774. font-size: 18px;
  1775. margin: 0 10px;
  1776. transition: all 0.3s ease;
  1777. box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  1778. }
  1779. .offline-download .download-link:hover {
  1780. background: white;
  1781. transform: translateY(-2px);
  1782. }
  1783. .offline-download .download-link i {
  1784. margin-right: 8px;
  1785. }
  1786. .offline-download .install-tutorial {
  1787. background: rgba(255,255,255,0.1);
  1788. backdrop-filter: blur(10px);
  1789. border-radius: 16px;
  1790. padding: 40px;
  1791. border: 1px solid rgba(255,255,255,0.2);
  1792. }
  1793. .offline-download .tutorial-title {
  1794. color: white;
  1795. margin-bottom: 24px;
  1796. font-size: 22px;
  1797. display: flex;
  1798. align-items: center;
  1799. }
  1800. .offline-download .tutorial-title i {
  1801. margin-right: 12px;
  1802. color: #f59e0b;
  1803. }
  1804. .offline-download .tutorial-grid {
  1805. display: grid;
  1806. grid-template-columns: 1fr 1fr;
  1807. gap: 30px;
  1808. }
  1809. .offline-download .method-section {
  1810. background: rgba(255,255,255,0.1);
  1811. border-radius: 12px;
  1812. padding: 24px;
  1813. }
  1814. .offline-download .method-title {
  1815. color: white;
  1816. margin-bottom: 16px;
  1817. display: flex;
  1818. align-items: center;
  1819. }
  1820. .offline-download .method-number {
  1821. border-radius: 50%;
  1822. width: 24px;
  1823. height: 24px;
  1824. display: flex;
  1825. align-items: center;
  1826. justify-content: center;
  1827. font-size: 12px;
  1828. margin-right: 8px;
  1829. color: white;
  1830. }
  1831. .offline-download .method-number.blue { background: #3b82f6; }
  1832. .offline-download .method-number.green { background: #10b981; }
  1833. .offline-download .method-steps {
  1834. color: rgba(255,255,255,0.9);
  1835. line-height: 1.8;
  1836. padding-left: 20px;
  1837. }
  1838. .offline-download .method-steps code {
  1839. background: rgba(0,0,0,0.3);
  1840. padding: 2px 6px;
  1841. border-radius: 4px;
  1842. color: #fbbf24;
  1843. }
  1844. .offline-download .warning-box {
  1845. background: rgba(245, 158, 11, 0.2);
  1846. border-left: 4px solid #f59e0b;
  1847. border-radius: 8px;
  1848. padding: 16px;
  1849. margin-top: 24px;
  1850. }
  1851. .offline-download .warning-title {
  1852. color: #fbbf24;
  1853. margin-bottom: 8px;
  1854. display: flex;
  1855. align-items: center;
  1856. }
  1857. .offline-download .warning-title i {
  1858. margin-right: 8px;
  1859. }
  1860. .offline-download .warning-list {
  1861. color: rgba(255,255,255,0.9);
  1862. line-height: 1.6;
  1863. margin: 0;
  1864. padding-left: 20px;
  1865. }
  1866. /* 按钮样式优化 */
  1867. .btn-secondary.no-ladder-download {
  1868. background: linear-gradient(135deg, #10b981, #059669);
  1869. border: none;
  1870. color: white;
  1871. box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  1872. transition: all 0.3s ease;
  1873. }
  1874. .btn-secondary.no-ladder-download:hover {
  1875. background: linear-gradient(135deg, #059669, #047857);
  1876. transform: translateY(-2px);
  1877. box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  1878. }
  1879. /* 响应式调整 */
  1880. @media (max-width: 1024px) {
  1881. .wechat-miniprogram-section {
  1882. margin-top: 20px !important;
  1883. padding: 20px !important;
  1884. }
  1885. .wechat-miniprogram-section .main-flex {
  1886. flex-direction: column !important;
  1887. align-items: center !important;
  1888. gap: 16px !important;
  1889. }
  1890. .wechat-miniprogram-section .qr-section {
  1891. order: -1 !important;
  1892. }
  1893. .wechat-miniprogram-section .qr-code-img {
  1894. width: 100px !important;
  1895. height: 100px !important;
  1896. }
  1897. .offline-download .features-grid,
  1898. .offline-download .tutorial-grid {
  1899. grid-template-columns: 1fr !important;
  1900. gap: 20px !important;
  1901. }
  1902. }
  1903. /* 响应式调整工具网格 */
  1904. @media (max-width: 768px) {
  1905. .tool-grid-demo {
  1906. grid-template-columns: repeat(2, 1fr) !important;
  1907. gap: 12px;
  1908. }
  1909. .tool-card-demo {
  1910. padding: 16px 12px !important;
  1911. font-size: 13px !important;
  1912. }
  1913. .tool-card-demo i {
  1914. font-size: 20px !important;
  1915. margin-bottom: 8px !important;
  1916. }
  1917. .tool-count {
  1918. font-size: 10px;
  1919. }
  1920. }
  1921. /* Footer ICP 样式 */
  1922. .footer-icp {
  1923. margin-top: 8px !important;
  1924. font-size: 14px !important;
  1925. color: rgba(255,255,255,0.6) !important;
  1926. }
  1927. .footer-icp a {
  1928. color: inherit;
  1929. text-decoration: underline;
  1930. }
  1931. /* 导航样式 */
  1932. .nav-offline-download {
  1933. color: #10b981 !important;
  1934. }
  1935. /* Pro badges 样式 */
  1936. .pro-badges {
  1937. margin: 32px 0 24px 0 !important;
  1938. }
  1939. /* 演示箭头样式 */
  1940. .demo-arrow {
  1941. font-size: 18px;
  1942. }
  1943. /* WebSocket 指示器样式 */
  1944. .ws-indicator {
  1945. color: #10b981;
  1946. font-size: 16px;
  1947. }
  1948. /* 各种演示样式 */
  1949. .color-gradient-demo {
  1950. width: 100%;
  1951. height: 40px;
  1952. background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  1953. border-radius: 6px;
  1954. }
  1955. .color-picker-demo {
  1956. width: 32px;
  1957. height: 32px;
  1958. border-radius: 8px;
  1959. background: linear-gradient(135deg, #43ad7f, #f59e0b, #3b82f6);
  1960. }
  1961. .ai-chat-demo {
  1962. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  1963. color: white;
  1964. padding: 8px 12px;
  1965. border-radius: 8px;
  1966. font-size: 12px;
  1967. }
  1968. .sticky-notes-demo {
  1969. display: flex;
  1970. gap: 4px;
  1971. }
  1972. .note-yellow {
  1973. width: 16px;
  1974. height: 16px;
  1975. background: #fbbf24;
  1976. border-radius: 2px;
  1977. }
  1978. .note-green {
  1979. width: 16px;
  1980. height: 16px;
  1981. background: #34d399;
  1982. border-radius: 2px;
  1983. }
  1984. .note-blue {
  1985. width: 16px;
  1986. height: 16px;
  1987. background: #60a5fa;
  1988. border-radius: 2px;
  1989. }
  1990. .markdown-demo {
  1991. font-family: monospace;
  1992. font-size: 12px;
  1993. color: #374151;
  1994. }
  1995. .monkey-script-demo {
  1996. font-family: monospace;
  1997. font-size: 11px;
  1998. color: #059669;
  1999. }
  2000. .mindmap-demo {
  2001. display: flex;
  2002. align-items: center;
  2003. justify-content: center;
  2004. gap: 8px;
  2005. }
  2006. .node-main {
  2007. width: 12px;
  2008. height: 12px;
  2009. background: #3b82f6;
  2010. border-radius: 50%;
  2011. }
  2012. .connector {
  2013. width: 20px;
  2014. height: 2px;
  2015. background: #6b7280;
  2016. }
  2017. .node-sub {
  2018. width: 8px;
  2019. height: 8px;
  2020. background: #10b981;
  2021. border-radius: 50%;
  2022. }
  2023. .excel-demo {
  2024. font-size: 12px;
  2025. color: #059669;
  2026. }
  2027. .ruler-demo {
  2028. display: flex;
  2029. gap: 2px;
  2030. }
  2031. .ruler-segment {
  2032. width: 4px;
  2033. height: 16px;
  2034. }
  2035. .ruler-segment.red {
  2036. background: #ef4444;
  2037. }
  2038. .ruler-segment.blue {
  2039. background: #3b82f6;
  2040. }
  2041. .devtools-demo {
  2042. font-family: monospace;
  2043. font-size: 11px;
  2044. color: #6366f1;
  2045. }
  2046. /* 关于我们区域样式 */
  2047. .about-image {
  2048. display: flex;
  2049. justify-content: center;
  2050. align-items: center;
  2051. height: 100%;
  2052. min-height: 320px;
  2053. }
  2054. .star-history-chart {
  2055. width: 100%;
  2056. max-width: 480px;
  2057. display: block;
  2058. margin: 0 auto;
  2059. }
  2060. /* 下载链接样式 */
  2061. .download-link-center {
  2062. text-align: center;
  2063. }
  2064. /* 无梯下载特性图标样式 */
  2065. .offline-download .feature-header i.fa-rocket {
  2066. color: #f59e0b;
  2067. }
  2068. .offline-download .feature-header i.fa-shield-alt {
  2069. color: #10b981;
  2070. }
  2071. /* 文档页面样式 */
  2072. .docs-container {
  2073. margin-top: 2rem;
  2074. }
  2075. /* 隐私政策页面样式 */
  2076. .privacy-header {
  2077. display: flex;
  2078. align-items: center;
  2079. justify-content: center;
  2080. margin-top: 60px;
  2081. margin-bottom: 20px;
  2082. }
  2083. .privacy-logo {
  2084. width: 48px;
  2085. height: 48px;
  2086. margin-right: 16px;
  2087. }
  2088. .privacy-title {
  2089. font-size: 2rem;
  2090. line-height: 1.2;
  2091. }
  2092. .privacy-content {
  2093. max-width: 1200px;
  2094. margin-left: auto;
  2095. margin-right: auto;
  2096. }
  2097. .privacy-notice {
  2098. color: #64748b;
  2099. font-size: 0.95rem;
  2100. margin-top: 32px;
  2101. }
  2102. /* 导航栏“在线使用”高亮按钮美化 */
  2103. .nav-online-btn {
  2104. font-size: 17px;
  2105. padding: 10px 28px;
  2106. background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  2107. color: #fff !important;
  2108. border-radius: 12px;
  2109. font-weight: 800;
  2110. display: inline-flex;
  2111. align-items: center;
  2112. box-shadow: 0 2px 12px rgba(59,130,246,0.18);
  2113. transition: filter 0.18s, box-shadow 0.18s, background 0.18s;
  2114. border: none;
  2115. letter-spacing: 1px;
  2116. margin-right: 8px;
  2117. }
  2118. .nav-online-btn i {
  2119. font-size: 22px !important;
  2120. margin-right: 8px;
  2121. vertical-align: middle;
  2122. }
  2123. .nav-online-btn:hover {
  2124. filter: brightness(1.18);
  2125. box-shadow: 0 6px 24px rgba(139,92,246,0.22);
  2126. background: linear-gradient(90deg, #6366f1 0%, #3b82f6 100%);
  2127. color: #fff !important;
  2128. }
  2129. @media (max-width: 900px) {
  2130. .nav-online-btn {
  2131. font-size: 15px;
  2132. padding: 8px 16px;
  2133. border-radius: 10px;
  2134. }
  2135. .nav-online-btn i {
  2136. font-size: 18px !important;
  2137. margin-right: 6px;
  2138. }
  2139. }
  2140. /* 导航栏“在线使用”高亮文本链接 */
  2141. .nav-online-link {
  2142. color: #3b82f6 !important;
  2143. font-weight: 800;
  2144. font-size: 17px;
  2145. display: inline-flex;
  2146. align-items: center;
  2147. letter-spacing: 1px;
  2148. transition: color 0.18s, text-decoration 0.18s;
  2149. background: none !important;
  2150. border: none;
  2151. box-shadow: none;
  2152. padding: 0;
  2153. }
  2154. .nav-online-link i {
  2155. font-size: 22px !important;
  2156. margin-right: 6px;
  2157. vertical-align: middle;
  2158. }
  2159. .nav-online-link:hover {
  2160. color: #1d4ed8 !important;
  2161. text-decoration: none !important;
  2162. }
  2163. @media (max-width: 900px) {
  2164. .nav-online-link {
  2165. font-size: 15px;
  2166. }
  2167. .nav-online-link i {
  2168. font-size: 18px !important;
  2169. margin-right: 4px;
  2170. }
  2171. }