| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508 |
- /* Reset and Base Styles */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- :root {
- --primary-color: #3b82f6;
- --primary-dark: #2563eb;
- --secondary-color: #8b5cf6;
- --accent-color: #06b6d4;
- --success-color: #10b981;
- --warning-color: #f59e0b;
- --error-color: #ef4444;
- --text-primary: #1f2937;
- --text-secondary: #6b7280;
- --text-light: #9ca3af;
- --bg-primary: #ffffff;
- --bg-secondary: #f8fafc;
- --bg-dark: #0f172a;
- --border-color: #e5e7eb;
- --border-light: #f3f4f6;
- --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
- --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
- --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
- --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
- --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
- --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
- --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
- }
- html {
- scroll-behavior: smooth;
- }
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
- line-height: 1.6;
- color: var(--text-primary);
- background-color: var(--bg-primary);
- overflow-x: hidden;
- }
- .container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 0 20px;
- }
- /* Navigation */
- .navbar {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- background: rgba(255, 255, 255, 0.95);
- backdrop-filter: blur(10px);
- border-bottom: 1px solid var(--border-light);
- z-index: 1000;
- transition: all 0.3s ease;
- }
- .nav-container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 0 20px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: 70px;
- }
- .nav-logo {
- display: flex;
- align-items: center;
- gap: 12px;
- font-size: 24px;
- font-weight: 700;
- color: var(--primary-color);
- }
- .nav-logo .logo-icon {
- width: 28px;
- height: 28px;
- object-fit: contain;
- }
- .nav-menu {
- display: flex;
- list-style: none;
- gap: 32px;
- align-items: center;
- }
- .nav-menu a {
- text-decoration: none;
- color: var(--text-primary);
- font-weight: 500;
- transition: color 0.3s ease;
- position: relative;
- }
- .nav-menu a:hover {
- color: var(--primary-color);
- }
- .nav-menu a::after {
- content: '';
- position: absolute;
- bottom: -5px;
- left: 0;
- width: 0;
- height: 2px;
- background: var(--gradient-primary);
- transition: width 0.3s ease;
- }
- .nav-menu a:hover::after {
- width: 100%;
- }
- .github-link {
- background: var(--gradient-primary);
- color: white !important;
- padding: 8px 16px;
- border-radius: 8px;
- display: flex;
- align-items: center;
- gap: 8px;
- font-weight: 600;
- transition: transform 0.2s ease;
- }
- .github-link:hover {
- transform: translateY(-2px);
- color: white !important;
- }
- .github-link::after {
- display: none;
- }
- .nav-toggle {
- display: none;
- flex-direction: column;
- cursor: pointer;
- gap: 4px;
- }
- .nav-toggle span {
- width: 25px;
- height: 3px;
- background: var(--text-primary);
- transition: all 0.3s ease;
- }
- /* Hero Section */
- .hero {
- position: relative;
- min-height: 100vh;
- display: flex;
- align-items: center;
- padding: 120px 0 80px;
- overflow: hidden;
- background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #f0f9ff 100%);
- }
- .hero-background {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: -1;
- }
- .gradient-bg {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 50%, #f0f9ff 100%);
- }
- .hero-pattern {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-image:
- radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
- radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
- animation: float 20s ease-in-out infinite;
- }
- @keyframes float {
- 0%, 100% { transform: translateY(0px); }
- 50% { transform: translateY(-20px); }
- }
- .hero .container {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 80px;
- align-items: center;
- }
- .hero-badge {
- display: inline-flex;
- align-items: center;
- gap: 8px;
- background: rgba(59, 130, 246, 0.1);
- color: var(--primary-color);
- padding: 12px 20px;
- border-radius: 30px;
- font-weight: 600;
- font-size: 14px;
- margin-bottom: 24px;
- border: 1px solid rgba(59, 130, 246, 0.2);
- animation: pulse 2s infinite;
- }
- .badge-icon {
- width: 16px;
- height: 16px;
- object-fit: contain;
- }
- @keyframes pulse {
- 0%, 100% { transform: scale(1); }
- 50% { transform: scale(1.05); }
- }
- .hero-title {
- font-size: 56px;
- font-weight: 800;
- line-height: 1.1;
- margin-bottom: 24px;
- letter-spacing: -0.02em;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .gradient-text {
- background: var(--gradient-primary);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- background-clip: text;
- }
- .hero-subtitle {
- font-size: 20px;
- color: var(--text-secondary);
- margin-bottom: 40px;
- line-height: 1.8;
- max-width: 700px;
- }
- .subtitle-main {
- display: block;
- margin-bottom: 10px;
- }
- .subtitle-main .highlight {
- color: #6366f1;
- font-weight: 600;
- }
- .subtitle-features {
- display: flex;
- flex-wrap: wrap;
- gap: 16px;
- font-size: 15px;
- margin-top: 4px;
- }
- .subtitle-features .feature {
- background: #f3f4f6;
- border-radius: 16px;
- padding: 2px 14px;
- color: #6366f1;
- font-weight: 500;
- display: flex;
- align-items: center;
- gap: 4px;
- }
- .hero-stats {
- display: flex;
- gap: 40px;
- margin-bottom: 40px;
- }
- .stat-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 8px;
- }
- .stat-item i {
- font-size: 24px;
- color: var(--primary-color);
- }
- .stat-number {
- font-size: 24px;
- font-weight: 700;
- color: var(--text-primary);
- }
- .stat-label {
- font-size: 14px;
- color: var(--text-secondary);
- text-align: center;
- }
- .hero-buttons {
- display: flex;
- gap: 16px;
- align-items: center;
- }
- .btn-primary, .btn-secondary {
- display: inline-flex;
- align-items: center;
- gap: 8px;
- padding: 16px 32px;
- border-radius: 12px;
- font-weight: 600;
- text-decoration: none;
- transition: all 0.3s ease;
- font-size: 16px;
- }
- .btn-primary {
- background: var(--gradient-primary);
- color: white;
- box-shadow: var(--shadow-lg);
- }
- .btn-primary:hover {
- transform: translateY(-2px);
- box-shadow: var(--shadow-xl);
- }
- .btn-secondary {
- background: white;
- color: var(--text-primary);
- border: 2px solid var(--border-color);
- }
- .btn-secondary:hover {
- border-color: var(--primary-color);
- color: var(--primary-color);
- transform: translateY(-2px);
- }
- .hero-visual {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .browser-mockup {
- background: white;
- border-radius: 16px;
- box-shadow: var(--shadow-xl);
- overflow: hidden;
- width: 100%;
- max-width: 500px;
- transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
- transition: transform 0.3s ease;
- }
- .browser-mockup:hover {
- transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
- }
- .browser-header {
- background: #f8fafc;
- padding: 16px 20px;
- display: flex;
- align-items: center;
- gap: 16px;
- border-bottom: 1px solid var(--border-color);
- }
- .browser-controls {
- display: flex;
- gap: 8px;
- }
- .browser-controls span {
- width: 12px;
- height: 12px;
- border-radius: 50%;
- background: #ef4444;
- }
- .browser-controls span:nth-child(2) {
- background: #f59e0b;
- }
- .browser-controls span:nth-child(3) {
- background: #10b981;
- }
- .browser-url {
- flex: 1;
- background: white;
- padding: 8px 16px;
- border-radius: 8px;
- color: var(--text-secondary);
- font-size: 14px;
- border: 1px solid var(--border-color);
- }
- .extension-icon {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .extension-logo {
- width: 16px;
- height: 16px;
- object-fit: contain;
- }
- .browser-content {
- padding: 32px;
- }
- .tool-grid-demo {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 16px;
- }
- .tool-card-demo {
- background: var(--bg-secondary);
- padding: 24px 16px;
- border-radius: 12px;
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 12px;
- transition: all 0.3s ease;
- border: 1px solid var(--border-light);
- }
- .tool-card-demo:hover {
- transform: translateY(-4px);
- box-shadow: var(--shadow-md);
- }
- .tool-card-demo i {
- font-size: 24px;
- color: var(--primary-color);
- }
- .tool-card-demo.json i { color: #059669; }
- .tool-card-demo.qr i { color: #7c3aed; }
- .tool-card-demo.encode i { color: #dc2626; }
- .tool-card-demo.postman i { color: #ea580c; }
- .tool-card-demo span {
- font-weight: 600;
- font-size: 14px;
- color: var(--text-primary);
- }
- /* Features Section */
- .features {
- padding: 120px 0;
- background: var(--bg-secondary);
- }
- .section-header {
- text-align: center;
- margin-bottom: 80px;
- }
- .section-header h2 {
- font-size: 40px;
- font-weight: 700;
- margin-bottom: 16px;
- color: var(--text-primary);
- }
- .section-header p {
- font-size: 18px;
- color: var(--text-secondary);
- max-width: 600px;
- margin: 0 auto;
- }
- .features-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
- gap: 40px;
- }
- .feature-card {
- background: white;
- padding: 40px 32px;
- border-radius: 16px;
- text-align: center;
- box-shadow: var(--shadow-sm);
- border: 1px solid var(--border-light);
- transition: all 0.3s ease;
- }
- .feature-card:hover {
- transform: translateY(-8px);
- box-shadow: var(--shadow-xl);
- }
- .feature-icon {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- width: 80px;
- height: 80px;
- background: var(--gradient-primary);
- border-radius: 20px;
- margin-bottom: 24px;
- }
- .feature-icon i {
- font-size: 32px;
- color: white;
- }
- .feature-card h3 {
- font-size: 24px;
- font-weight: 700;
- margin-bottom: 8px;
- color: var(--text-primary);
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .feature-sub {
- font-size: 15px;
- color: #6366f1;
- font-weight: 600;
- margin-top: 2px;
- letter-spacing: 0.5px;
- }
- .feature-card p {
- color: var(--text-secondary);
- line-height: 1.8;
- font-size: 16px;
- margin-top: 8px;
- }
- /* Tools Section */
- .tools {
- padding: 120px 0;
- background: var(--bg-primary);
- }
- .category-tabs {
- display: flex;
- justify-content: center;
- gap: 8px;
- margin-bottom: 60px;
- flex-wrap: wrap;
- }
- .tab-btn {
- padding: 12px 24px;
- border: 2px solid var(--border-color);
- background: white;
- color: var(--text-secondary);
- border-radius: 30px;
- cursor: pointer;
- transition: all 0.3s ease;
- font-weight: 500;
- font-size: 14px;
- }
- .tab-btn:hover, .tab-btn.active {
- background: var(--gradient-primary);
- color: white;
- border-color: transparent;
- transform: translateY(-2px);
- }
- .tools-grid {
- display: none;
- grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
- gap: 32px;
- }
- .tools-grid.active {
- display: grid;
- }
- .tool-card {
- background: white;
- border-radius: 16px;
- padding: 32px;
- box-shadow: var(--shadow-sm);
- border: 1px solid var(--border-light);
- transition: all 0.3s ease;
- }
- .tool-card:hover {
- transform: translateY(-4px);
- box-shadow: var(--shadow-lg);
- }
- .tool-icon {
- width: 60px;
- height: 60px;
- font-size: 36px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- border-radius: 16px;
- margin-right: 18px;
- background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
- color: #fff;
- box-shadow: 0 2px 12px 0 rgba(59,130,246,0.10);
- transition: all 0.3s;
- }
- .tools-grid .tool-card h3 {
- display: flex;
- align-items: center;
- gap: 12px;
- font-size: 20px;
- font-weight: 600;
- margin-bottom: 10px;
- color: var(--text-primary);
- }
- .tools-grid .tool-icon span {
- font-size: 36px;
- line-height: 1;
- font-family: inherit;
- }
- .tools-grid .tool-card {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- }
- .json-icon { background: linear-gradient(135deg, #059669, #10b981); }
- .diff-icon { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
- .beautify-icon { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
- .compress-icon { background: linear-gradient(135deg, #f59e0b, #ef4444); }
- .encode-icon { background: linear-gradient(135deg, #dc2626, #f87171); }
- .qr-icon { background: linear-gradient(135deg, #7c3aed, #a855f7); }
- .api-icon { background: linear-gradient(135deg, #ea580c, #fb923c); }
- .websocket-icon { background: linear-gradient(135deg, #0891b2, #06b6d4); }
- .timestamp-icon { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
- .password-icon { background: linear-gradient(135deg, #dc2626, #ef4444); }
- .color-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
- .screenshot-icon { background: linear-gradient(135deg, #059669, #34d399); }
- .tool-icon i {
- font-size: 24px;
- color: white;
- }
- .tool-card p {
- color: var(--text-secondary);
- margin-bottom: 20px;
- line-height: 1.6;
- }
- .tool-demo {
- background: var(--bg-secondary);
- border-radius: 8px;
- padding: 16px;
- font-size: 14px;
- }
- .json-demo pre {
- background: #1f2937;
- color: #f3f4f6;
- padding: 16px;
- border-radius: 8px;
- overflow-x: auto;
- }
- .json-demo code {
- color: #34d399;
- }
- .diff-demo {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 8px;
- margin-bottom: 12px;
- }
- .diff-left, .diff-right {
- text-align: center;
- font-weight: 600;
- color: var(--text-secondary);
- padding: 8px;
- background: white;
- border-radius: 4px;
- }
- .diff-line {
- padding: 4px 8px;
- border-radius: 4px;
- font-family: monospace;
- margin: 4px 0;
- }
- .diff-line.added {
- background: rgba(16, 185, 129, 0.1);
- color: #059669;
- }
- .diff-line.removed {
- background: rgba(239, 68, 68, 0.1);
- color: #dc2626;
- }
- .code-demo {
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 16px;
- }
- .code-before, .code-after {
- flex: 1;
- text-align: center;
- padding: 12px;
- background: white;
- border-radius: 6px;
- font-weight: 500;
- }
- .code-demo i {
- color: var(--primary-color);
- }
- .compress-demo {
- display: flex;
- align-items: center;
- justify-content: space-between;
- gap: 12px;
- text-align: center;
- }
- .size-before, .size-after {
- background: white;
- padding: 8px 12px;
- border-radius: 6px;
- font-weight: 600;
- font-size: 16px;
- }
- .size-before {
- color: #dc2626;
- }
- .size-after {
- color: #059669;
- }
- .compress-ratio {
- font-size: 12px;
- color: var(--primary-color);
- font-weight: 600;
- }
- .encode-demo {
- display: flex;
- align-items: center;
- gap: 12px;
- }
- .encode-input, .encode-output {
- flex: 1;
- background: white;
- padding: 12px;
- border-radius: 6px;
- text-align: center;
- font-family: monospace;
- font-size: 12px;
- }
- .encode-arrows {
- color: var(--primary-color);
- }
- .qr-demo {
- display: flex;
- justify-content: center;
- }
- .qr-code {
- width: 60px;
- height: 60px;
- background: white;
- border-radius: 8px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .qr-pattern {
- width: 40px;
- height: 40px;
- background:
- linear-gradient(90deg, #000 0%, #000 20%, transparent 20%, transparent 40%, #000 40%, #000 60%, transparent 60%, transparent 80%, #000 80%),
- linear-gradient(0deg, #000 0%, #000 20%, transparent 20%, transparent 40%, #000 40%, #000 60%, transparent 60%, transparent 80%, #000 80%);
- background-size: 10px 10px;
- }
- .api-demo {
- text-align: center;
- }
- .request-line {
- background: white;
- padding: 8px 12px;
- border-radius: 6px;
- font-family: monospace;
- font-weight: 600;
- margin-bottom: 8px;
- }
- .response-status {
- padding: 6px 12px;
- border-radius: 6px;
- font-weight: 600;
- font-size: 12px;
- }
- .response-status.success {
- background: rgba(16, 185, 129, 0.1);
- color: #059669;
- }
- .websocket-demo {
- text-align: center;
- }
- .ws-status {
- display: inline-flex;
- align-items: center;
- gap: 8px;
- background: white;
- padding: 8px 16px;
- border-radius: 20px;
- font-weight: 600;
- font-size: 12px;
- }
- .ws-status.connected {
- color: #059669;
- }
- .ws-status.connected i {
- color: #10b981;
- animation: pulse-dot 2s infinite;
- }
- @keyframes pulse-dot {
- 0%, 100% { opacity: 1; }
- 50% { opacity: 0.5; }
- }
- /* About Section */
- .about {
- padding: 120px 0;
- background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
- }
- .about-content {
- display: grid;
- grid-template-columns: 3fr 2fr;;
- gap: 80px;
- align-items: start;
- margin-top: 60px;
- }
- .timeline-item {
- display: flex;
- gap: 32px;
- margin-bottom: 48px;
- position: relative;
- }
- .timeline-item:not(:last-child)::after {
- content: '';
- position: absolute;
- left: 28px;
- top: 60px;
- width: 2px;
- height: calc(100% + 8px);
- background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
- }
- .timeline-year {
- background: var(--gradient-primary);
- color: white;
- width: 56px;
- height: 56px;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-weight: 700;
- font-size: 14px;
- flex-shrink: 0;
- box-shadow: var(--shadow-lg);
- }
- .timeline-content h3 {
- font-size: 20px;
- font-weight: 600;
- margin-bottom: 8px;
- color: var(--text-primary);
- }
- .timeline-content p {
- color: var(--text-secondary);
- line-height: 1.6;
- }
- .about-stats {
- display: flex;
- flex-direction: column;
- gap: 32px;
- background: white;
- padding: 40px 32px;
- border-radius: 16px;
- box-shadow: var(--shadow-lg);
- height: fit-content;
- }
- .big-stat {
- text-align: center;
- padding: 16px 0;
- border-bottom: 1px solid var(--border-light);
- }
- .big-stat:last-child {
- border-bottom: none;
- }
- .big-number {
- display: block;
- font-size: 36px;
- font-weight: 800;
- background: var(--gradient-primary);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- background-clip: text;
- margin-bottom: 8px;
- }
- .big-label {
- display: block;
- font-size: 14px;
- color: var(--text-secondary);
- font-weight: 500;
- }
- /* Browser Support */
- .browser-support {
- padding: 120px 0;
- background: var(--bg-secondary);
- }
- .browsers-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
- gap: 32px;
- max-width: 1000px;
- margin: 0 auto;
- }
- .browser-card {
- background: white;
- padding: 40px 32px;
- border-radius: 16px;
- text-align: center;
- box-shadow: var(--shadow-sm);
- border: 1px solid var(--border-light);
- transition: all 0.3s ease;
- }
- .browser-card:hover {
- transform: translateY(-8px);
- box-shadow: var(--shadow-xl);
- }
- .browser-icon {
- display: inline-flex;
- align-items: center;
- justify-content: center;
- width: 80px;
- height: 80px;
- border-radius: 20px;
- margin-bottom: 24px;
- }
- .browser-card.chrome .browser-icon {
- background: linear-gradient(135deg, #4285f4, #34a853);
- }
- .browser-card.firefox .browser-icon {
- background: linear-gradient(135deg, #ff6611, #ff9500);
- }
- .browser-card.edge .browser-icon {
- background: linear-gradient(135deg, #0078d4, #00bcf2);
- }
- .browser-icon i {
- font-size: 32px;
- color: white;
- }
- .browser-card h3 {
- font-size: 24px;
- font-weight: 600;
- margin-bottom: 8px;
- color: var(--text-primary);
- }
- .browser-card > p {
- color: var(--text-secondary);
- margin-bottom: 20px;
- }
- .browser-stats {
- display: flex;
- justify-content: space-between;
- margin-bottom: 24px;
- padding: 16px;
- background: var(--bg-secondary);
- border-radius: 8px;
- }
- .rating {
- color: #f59e0b;
- font-size: 14px;
- }
- .users {
- color: var(--text-secondary);
- font-size: 14px;
- font-weight: 500;
- }
- .browser-link {
- display: inline-flex;
- align-items: center;
- gap: 8px;
- background: var(--gradient-primary);
- color: white;
- padding: 12px 24px;
- border-radius: 8px;
- text-decoration: none;
- font-weight: 600;
- transition: all 0.3s ease;
- }
- .browser-link:hover {
- transform: translateY(-2px);
- box-shadow: var(--shadow-md);
- }
- /* Download Section */
- .download {
- padding: 120px 0;
- background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
- color: white;
- }
- .download-content {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 80px;
- align-items: center;
- }
- .download-info h2 {
- font-size: 40px;
- font-weight: 700;
- margin-bottom: 16px;
- }
- .download-info p {
- font-size: 18px;
- color: rgba(255, 255, 255, 0.8);
- margin-bottom: 32px;
- }
- .download-features {
- display: flex;
- flex-direction: column;
- gap: 16px;
- }
- .feature {
- display: flex;
- align-items: center;
- gap: 12px;
- }
- .feature i {
- color: #10b981;
- font-size: 16px;
- }
- .download-buttons {
- display: flex;
- flex-direction: column;
- gap: 16px;
- }
- .download-btn {
- display: flex;
- align-items: center;
- gap: 20px;
- background: white;
- color: var(--text-primary);
- padding: 24px;
- border-radius: 12px;
- text-decoration: none;
- transition: all 0.3s ease;
- box-shadow: var(--shadow-lg);
- }
- .download-btn:hover {
- transform: translateY(-4px);
- box-shadow: var(--shadow-xl);
- }
- .btn-icon {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 50px;
- height: 50px;
- border-radius: 12px;
- }
- .chrome-btn .btn-icon {
- background: linear-gradient(135deg, #4285f4, #34a853);
- }
- .firefox-btn .btn-icon {
- background: linear-gradient(135deg, #ff6611, #ff9500);
- }
- .edge-btn .btn-icon {
- background: linear-gradient(135deg, #0078d4, #00bcf2);
- }
- .github-btn .btn-icon {
- background: linear-gradient(135deg, #24292e, #586069);
- }
- .btn-icon i {
- font-size: 24px;
- color: white;
- }
- .btn-text {
- flex: 1;
- text-align: left;
- }
- .btn-title {
- display: block;
- font-size: 18px;
- font-weight: 600;
- margin-bottom: 4px;
- }
- .btn-subtitle {
- display: block;
- font-size: 14px;
- color: var(--text-secondary);
- }
- .btn-arrow {
- font-size: 18px;
- color: var(--text-light);
- transition: transform 0.3s ease;
- }
- .download-btn:hover .btn-arrow {
- transform: translateX(4px);
- }
- /* Footer */
- .footer {
- background: var(--bg-dark);
- color: white;
- padding: 80px 0 40px;
- position: relative;
- z-index: 2;
- }
- .footer-content {
- display: grid;
- grid-template-columns: 1fr 2fr;
- gap: 80px;
- margin-bottom: 40px;
- }
- .footer-logo {
- display: flex;
- align-items: center;
- gap: 12px;
- font-size: 24px;
- font-weight: 700;
- margin-bottom: 16px;
- }
- .footer-logo .logo-icon {
- width: 28px;
- height: 28px;
- object-fit: contain;
- }
- .footer-main p {
- color: rgba(255, 255, 255, 0.7);
- margin-bottom: 24px;
- line-height: 1.7;
- }
- .social-links {
- display: flex;
- gap: 16px;
- }
- .social-links a {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 44px;
- height: 44px;
- background: rgba(255, 255, 255, 0.1);
- border-radius: 8px;
- color: white;
- text-decoration: none;
- transition: all 0.3s ease;
- }
- .social-links a:hover {
- background: var(--primary-color);
- transform: translateY(-2px);
- }
- .footer-links {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- gap: 40px;
- }
- .link-group h4 {
- font-size: 16px;
- font-weight: 600;
- margin-bottom: 16px;
- color: white;
- }
- .link-group a {
- display: block;
- color: rgba(255, 255, 255, 0.7);
- text-decoration: none;
- margin-bottom: 8px;
- transition: color 0.3s ease;
- }
- .link-group a:hover {
- color: var(--primary-color);
- }
- .footer-bottom {
- border-top: 1px solid rgba(255, 255, 255, 0.1);
- padding-top: 40px;
- text-align: center;
- color: rgba(255, 255, 255, 0.5);
- }
- .footer-bottom p {
- margin-bottom: 8px;
- }
- /* Responsive Design */
- @media (max-width: 1024px) {
- .hero .container {
- grid-template-columns: 1fr;
- gap: 60px;
- text-align: center;
- }
-
- .hero-title {
- font-size: 48px;
- }
-
- .about-content {
- grid-template-columns: 1fr;
- gap: 60px;
- }
-
- .download-content {
- grid-template-columns: 1fr;
- gap: 60px;
- text-align: center;
- }
-
- .footer-content {
- grid-template-columns: 1fr;
- gap: 60px;
- text-align: center;
- }
- }
- @media (max-width: 768px) {
- .nav-menu {
- display: none;
- }
-
- .nav-toggle {
- display: flex;
- }
-
- .hero-title {
- font-size: 28px;
- white-space: normal;
- }
-
- .hero-subtitle {
- font-size: 16px;
- max-width: 100%;
- }
-
- .subtitle-features {
- gap: 8px;
- font-size: 13px;
- }
-
- .hero-stats {
- flex-direction: column;
- gap: 20px;
- }
-
- .hero-buttons {
- flex-direction: column;
- align-items: stretch;
- }
-
- .section-header h2 {
- font-size: 32px;
- }
-
- .features-grid {
- grid-template-columns: 1fr;
- gap: 32px;
- }
-
- .tools-grid {
- grid-template-columns: 1fr;
- }
-
- .category-tabs {
- flex-direction: column;
- align-items: center;
- }
-
- .browsers-grid {
- grid-template-columns: 1fr;
- }
-
- .footer-links {
- grid-template-columns: 1fr;
- gap: 32px;
- }
-
- .container {
- padding: 0 16px;
- }
-
- .hero {
- padding: 100px 0 60px;
- }
-
- .features,
- .tools,
- .browser-support,
- .download {
- padding: 80px 0;
- }
-
- .footer {
- padding: 60px 0 32px;
- }
- }
- @media (max-width: 480px) {
- .hero-title {
- font-size: 28px;
- }
-
- .hero-subtitle {
- font-size: 16px;
- }
-
- .section-header h2 {
- font-size: 28px;
- }
-
- .btn-primary,
- .btn-secondary {
- padding: 12px 24px;
- font-size: 14px;
- }
-
- .download-btn {
- padding: 16px;
- }
-
- .btn-title {
- font-size: 16px;
- }
-
- .btn-subtitle {
- font-size: 12px;
- }
- }
- /* Loading Animation */
- .loading {
- display: inline-block;
- width: 20px;
- height: 20px;
- border: 2px solid rgba(255, 255, 255, 0.3);
- border-radius: 50%;
- border-top-color: white;
- animation: spin 1s ease-in-out infinite;
- }
- @keyframes spin {
- to { transform: rotate(360deg); }
- }
- /* Smooth Scrolling for iOS */
- @supports (-webkit-overflow-scrolling: touch) {
- * {
- -webkit-overflow-scrolling: touch;
- }
- }
- .pro-badges {
- display: flex;
- flex-wrap: wrap;
- gap: 18px 24px;
- align-items: center;
- justify-content: flex-start;
- margin-bottom: 24px;
- }
- .pro-badges img {
- border-radius: 12px;
- box-shadow: 0 2px 12px 0 rgba(59,130,246,0.08);
- transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
- height: 36px;
- background: white;
- }
- .pro-badges img:hover {
- transform: scale(1.07) translateY(-2px);
- box-shadow: 0 6px 24px 0 rgba(59,130,246,0.18);
- }
- @media (max-width: 600px) {
- .pro-badges img { height: 28px; }
- .pro-badges { gap: 10px 8px; }
- }
- .tool-preview {
- padding: 80px 0;
- background: var(--bg-primary);
- }
- .preview-images {
- display: flex;
- gap: 32px;
- justify-content: center;
- flex-wrap: wrap;
- margin-top: 32px;
- }
- .preview-item {
- background: white;
- border-radius: 16px;
- box-shadow: 0 4px 24px 0 rgba(59,130,246,0.08);
- overflow: hidden;
- width: 320px;
- max-width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .preview-item img {
- width: 100%;
- display: block;
- border-bottom: 1px solid #f3f4f6;
- transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
- cursor: pointer;
- }
- .preview-item img:hover {
- transform: scale(1.06);
- box-shadow: 0 8px 32px 0 rgba(59,130,246,0.18);
- z-index: 2;
- }
- .preview-caption {
- padding: 16px 0;
- font-size: 16px;
- color: var(--text-secondary);
- text-align: center;
- }
- @media (max-width: 900px) {
- .preview-images { flex-direction: column; gap: 24px; align-items: center; }
- .preview-item { width: 90%; }
- }
- /* 放大查看弹窗样式 */
- .img-modal {
- position: fixed;
- top: 0; left: 0; right: 0; bottom: 0;
- background: rgba(0,0,0,0.7);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 9999;
- animation: fadeIn 0.2s;
- }
- .img-modal img {
- max-width: 90vw;
- max-height: 90vh;
- border-radius: 16px;
- box-shadow: 0 8px 32px 0 rgba(59,130,246,0.25);
- background: white;
- }
- .img-modal-close {
- position: absolute;
- top: 32px;
- right: 48px;
- font-size: 40px;
- color: #fff;
- cursor: pointer;
- z-index: 10000;
- transition: color 0.2s;
- }
- .img-modal-close:hover {
- color: #f59e0b;
- }
- @keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- .old-version-link {
- background: #f3f4f6;
- color: #6b7280 !important;
- border: 1px solid #e5e7eb;
- border-radius: 8px;
- padding: 6px 14px;
- font-weight: 500;
- font-size: 15px;
- transition: border-color 0.2s, color 0.2s, background 0.2s;
- margin-left: 8px;
- box-shadow: none;
- display: inline-block;
- }
- .old-version-link:hover {
- border-color: #9ca3af;
- color: #4b5563 !important;
- background: #f3f4f6;
- }
- /* TableExporter Promo Section */
- .tableexporter-promo {
- margin: 56px 0 0 0;
- }
- .tableexporter-promo .container {
- max-width: 1100px;
- }
- .tableexporter-promo .section-header {
- text-align: center;
- margin-bottom: 0;
- }
- .tableexporter-promo .section-header h2 {
- font-size: 2.2rem;
- font-weight: 800;
- margin-bottom: 8px;
- }
- .tableexporter-promo .section-header p {
- font-size: 1.1rem;
- color: #666;
- margin-bottom: 0;
- }
- .tableexporter-promo .promo-content {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 48px;
- padding: 40px 0 24px 0;
- flex-wrap: wrap;
- }
- .tableexporter-promo .promo-img-box {
- flex: 0 0 380px;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .tableexporter-promo .promo-img {
- max-width: 100%;
- border-radius: 4px;
- box-shadow: 0 4px 24px 0 rgba(60,60,60,0.10);
- background: #fff;
- }
- .tableexporter-promo .promo-info {
- flex: 1;
- min-width: 260px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- }
- .tableexporter-promo .promo-list {
- margin: 0 0 28px 0;
- padding-left: 0;
- list-style: none;
- font-size: 1.08rem;
- line-height: 2;
- color: #333;
- }
- .tableexporter-promo .promo-list li {
- margin-bottom: 2px;
- }
- .tableexporter-promo .promo-list span {
- font-size: 1.2em;
- vertical-align: -2px;
- }
- .tableexporter-promo .promo-btns {
- display: flex;
- gap: 18px;
- }
- .tableexporter-promo .btn-primary {
- padding: 12px 32px;
- font-size: 17px;
- font-weight: 600;
- border-radius: 8px;
- box-shadow: 0 2px 8px #e0e7ef;
- }
- .tableexporter-promo .btn-secondary {
- padding: 12px 32px;
- font-size: 17px;
- font-weight: 600;
- border-radius: 8px;
- }
- @media (max-width: 900px) {
- .tableexporter-promo .promo-content {
- gap: 24px;
- padding: 24px 0 12px 0;
- }
- .tableexporter-promo .promo-img {
- width: 90vw;
- max-width: 340px;
- }
- }
- @media (max-width: 600px) {
- .tableexporter-promo .section-header h2 {
- font-size: 1.3rem;
- }
- .tableexporter-promo .promo-img {
- width: 98vw;
- max-width: 98vw;
- }
- .tableexporter-promo .promo-info {
- min-width: 0;
- }
- .tableexporter-promo .btn-primary,
- .tableexporter-promo .btn-secondary {
- padding: 10px 12px;
- font-size: 15px;
- }
- }
- /* FeHelper 特殊样式 - 从内联样式迁移而来 */
- /* 工具计数样式 */
- .tool-count {
- font-size: 11px;
- color: rgba(255, 255, 255, 0.8);
- margin-top: 4px;
- font-weight: 500;
- }
- /* Mock数据演示样式 */
- .mock-demo {
- display: flex;
- flex-direction: column;
- gap: 4px;
- }
- .mock-item {
- font-family: monospace;
- font-size: 10px;
- padding: 4px 6px;
- background: rgba(16, 185, 129, 0.1);
- border-radius: 4px;
- color: #059669;
- }
- /* 增强浏览器模拟器的工具网格 */
- .tool-grid-demo {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- gap: 8px;
- margin-bottom: 16px;
- }
- .tool-card-demo {
- background: rgba(255, 255, 255, 0.1);
- padding: 12px 8px;
- border-radius: 8px;
- text-align: center;
- transition: all 0.3s ease;
- cursor: pointer;
- }
- .tool-card-demo:hover {
- background: rgba(255, 255, 255, 0.2);
- transform: translateY(-2px);
- }
- .tool-card-demo i {
- font-size: 18px;
- margin-bottom: 6px;
- display: block;
- color: #3b82f6;
- }
- .tool-card-demo span {
- font-size: 12px;
- font-weight: 500;
- color: #1f2937;
- display: block;
- }
- /* 微信小程序推广区域样式 */
- .wechat-miniprogram-section {
- margin-top: 30px;
- padding: 24px;
- background: linear-gradient(135deg, rgba(7, 193, 96, 0.1), rgba(0, 174, 66, 0.05));
- border-radius: 16px;
- border: 2px solid rgba(7, 193, 96, 0.2);
- position: relative;
- overflow: hidden;
- }
- .wechat-miniprogram-section::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: linear-gradient(135deg, rgba(7, 193, 96, 0.03), rgba(0, 174, 66, 0.01));
- border-radius: 14px;
- }
- .wechat-miniprogram-section > * {
- position: relative;
- z-index: 2;
- }
- .wechat-miniprogram-section .main-flex {
- display: flex;
- align-items: flex-start;
- gap: 20px;
- }
- .wechat-miniprogram-section .wechat-header {
- display: flex;
- align-items: center;
- margin-bottom: 16px;
- }
- .wechat-miniprogram-section .wechat-icon {
- background: linear-gradient(135deg, #07c160, #00ae42);
- width: 36px;
- height: 36px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 12px;
- box-shadow: 0 4px 15px rgba(7, 193, 96, 0.4);
- }
- .wechat-miniprogram-section .wechat-icon i {
- color: white;
- font-size: 18px;
- }
- .wechat-miniprogram-section .wechat-title {
- color: #1a1a1a;
- margin: 0;
- font-size: 17px;
- font-weight: 600;
- display: flex;
- align-items: center;
- }
- .wechat-miniprogram-section .new-badge {
- background: linear-gradient(135deg, #ff6b6b, #ee5a24);
- color: white;
- font-size: 10px;
- padding: 3px 7px;
- border-radius: 10px;
- margin-left: 8px;
- font-weight: 500;
- box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
- }
- .wechat-miniprogram-section .wechat-subtitle {
- color: #666;
- margin: 4px 0 0 0;
- font-size: 13px;
- }
- .wechat-miniprogram-section .wechat-tags {
- display: flex;
- flex-wrap: wrap;
- gap: 8px;
- }
- .wechat-miniprogram-section .wechat-tag {
- background: rgba(7, 193, 96, 0.12);
- color: #00ae42;
- padding: 5px 10px;
- border-radius: 14px;
- font-size: 11px;
- display: flex;
- align-items: center;
- font-weight: 600;
- border: 1px solid rgba(7, 193, 96, 0.2);
- }
- .wechat-miniprogram-section .wechat-tag i {
- margin-right: 5px;
- font-size: 10px;
- }
- .wechat-miniprogram-section .qr-section {
- text-align: center;
- flex-shrink: 0;
- }
- .wechat-miniprogram-section .qr-code-img {
- width: 110px;
- height: 110px;
- border-radius: 12px;
- box-shadow: 0 6px 20px rgba(0,0,0,0.15);
- background: white;
- padding: 6px;
- border: 2px solid rgba(7, 193, 96, 0.1);
- }
- .wechat-miniprogram-section .qr-text {
- color: #666;
- margin: 8px 0 0 0;
- font-size: 12px;
- font-weight: 500;
- }
- .wechat-miniprogram-section .content-flex {
- flex: 1;
- min-width: 0;
- }
- /* 无梯下载区域样式 */
- .offline-download {
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- padding: 80px 0;
- }
- .offline-download .section-header h2 {
- color: white;
- margin-bottom: 16px;
- }
- .offline-download .section-header p {
- color: rgba(255,255,255,0.9);
- font-size: 18px;
- }
- .offline-download .download-container {
- max-width: 1000px;
- margin: 0 auto;
- }
- .offline-download .download-card {
- background: rgba(255,255,255,0.1);
- backdrop-filter: blur(10px);
- border-radius: 16px;
- padding: 40px;
- margin-bottom: 40px;
- border: 1px solid rgba(255,255,255,0.2);
- }
- .offline-download .card-header {
- display: flex;
- align-items: center;
- margin-bottom: 24px;
- }
- .offline-download .card-icon {
- width: 48px;
- height: 48px;
- background: rgba(255,255,255,0.2);
- border-radius: 12px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 16px;
- }
- .offline-download .card-icon i {
- font-size: 20px;
- color: white;
- }
- .offline-download .card-title {
- color: white;
- margin: 0;
- font-size: 24px;
- font-weight: 600;
- }
- .offline-download .card-subtitle {
- color: rgba(255,255,255,0.8);
- margin: 4px 0 0 0;
- font-size: 16px;
- }
- .offline-download .features-grid {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 20px;
- margin-bottom: 24px;
- }
- .offline-download .feature-section {
- background: rgba(255,255,255,0.1);
- border-radius: 12px;
- padding: 20px;
- }
- .offline-download .feature-header {
- display: flex;
- align-items: center;
- margin-bottom: 16px;
- }
- .offline-download .feature-header i {
- margin-right: 8px;
- }
- .offline-download .feature-header strong {
- color: white;
- }
- .offline-download .feature-steps {
- display: flex;
- flex-direction: column;
- gap: 12px;
- }
- .offline-download .step-item {
- display: flex;
- align-items: center;
- color: rgba(255,255,255,0.9);
- line-height: 1.4;
- }
- .offline-download .step-number {
- border-radius: 50%;
- width: 20px;
- height: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 11px;
- font-weight: bold;
- margin-right: 10px;
- flex-shrink: 0;
- color: white;
- }
- .offline-download .step-number.blue { background: #3b82f6; }
- .offline-download .step-number.green { background: #10b981; }
- .offline-download .step-number.purple { background: #8b5cf6; }
- .offline-download .step-number.orange { background: #f59e0b; }
- .offline-download .step-text {
- font-size: 14px;
- }
- .offline-download .feature-advantages {
- margin: 0;
- color: rgba(255,255,255,0.9);
- line-height: 1.6;
- }
- .offline-download .download-link {
- display: inline-flex;
- align-items: center;
- background: rgba(255,255,255,0.9);
- color: #667eea;
- padding: 16px 32px;
- border-radius: 12px;
- text-decoration: none;
- font-weight: bold;
- font-size: 18px;
- margin: 0 10px;
- transition: all 0.3s ease;
- box-shadow: 0 4px 15px rgba(0,0,0,0.1);
- }
- .offline-download .download-link:hover {
- background: white;
- transform: translateY(-2px);
- }
- .offline-download .download-link i {
- margin-right: 8px;
- }
- .offline-download .install-tutorial {
- background: rgba(255,255,255,0.1);
- backdrop-filter: blur(10px);
- border-radius: 16px;
- padding: 40px;
- border: 1px solid rgba(255,255,255,0.2);
- }
- .offline-download .tutorial-title {
- color: white;
- margin-bottom: 24px;
- font-size: 22px;
- display: flex;
- align-items: center;
- }
- .offline-download .tutorial-title i {
- margin-right: 12px;
- color: #f59e0b;
- }
- .offline-download .tutorial-grid {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 30px;
- }
- .offline-download .method-section {
- background: rgba(255,255,255,0.1);
- border-radius: 12px;
- padding: 24px;
- }
- .offline-download .method-title {
- color: white;
- margin-bottom: 16px;
- display: flex;
- align-items: center;
- }
- .offline-download .method-number {
- border-radius: 50%;
- width: 24px;
- height: 24px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 12px;
- margin-right: 8px;
- color: white;
- }
- .offline-download .method-number.blue { background: #3b82f6; }
- .offline-download .method-number.green { background: #10b981; }
- .offline-download .method-steps {
- color: rgba(255,255,255,0.9);
- line-height: 1.8;
- padding-left: 20px;
- }
- .offline-download .method-steps code {
- background: rgba(0,0,0,0.3);
- padding: 2px 6px;
- border-radius: 4px;
- color: #fbbf24;
- }
- .offline-download .warning-box {
- background: rgba(245, 158, 11, 0.2);
- border-left: 4px solid #f59e0b;
- border-radius: 8px;
- padding: 16px;
- margin-top: 24px;
- }
- .offline-download .warning-title {
- color: #fbbf24;
- margin-bottom: 8px;
- display: flex;
- align-items: center;
- }
- .offline-download .warning-title i {
- margin-right: 8px;
- }
- .offline-download .warning-list {
- color: rgba(255,255,255,0.9);
- line-height: 1.6;
- margin: 0;
- padding-left: 20px;
- }
- /* 按钮样式优化 */
- .btn-secondary.no-ladder-download {
- background: linear-gradient(135deg, #10b981, #059669);
- border: none;
- color: white;
- box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
- transition: all 0.3s ease;
- }
- .btn-secondary.no-ladder-download:hover {
- background: linear-gradient(135deg, #059669, #047857);
- transform: translateY(-2px);
- box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
- }
- /* 响应式调整 */
- @media (max-width: 1024px) {
- .wechat-miniprogram-section {
- margin-top: 20px !important;
- padding: 20px !important;
- }
-
- .wechat-miniprogram-section .main-flex {
- flex-direction: column !important;
- align-items: center !important;
- gap: 16px !important;
- }
-
- .wechat-miniprogram-section .qr-section {
- order: -1 !important;
- }
-
- .wechat-miniprogram-section .qr-code-img {
- width: 100px !important;
- height: 100px !important;
- }
-
- .offline-download .features-grid,
- .offline-download .tutorial-grid {
- grid-template-columns: 1fr !important;
- gap: 20px !important;
- }
- }
- /* 响应式调整工具网格 */
- @media (max-width: 768px) {
- .tool-grid-demo {
- grid-template-columns: repeat(2, 1fr) !important;
- gap: 12px;
- }
-
- .tool-card-demo {
- padding: 16px 12px !important;
- font-size: 13px !important;
- }
-
- .tool-card-demo i {
- font-size: 20px !important;
- margin-bottom: 8px !important;
- }
-
- .tool-count {
- font-size: 10px;
- }
- }
- /* Footer ICP 样式 */
- .footer-icp {
- margin-top: 8px !important;
- font-size: 14px !important;
- color: rgba(255,255,255,0.6) !important;
- }
- .footer-icp a {
- color: inherit;
- text-decoration: underline;
- }
- /* 导航样式 */
- .nav-offline-download {
- color: #10b981 !important;
- }
- /* Pro badges 样式 */
- .pro-badges {
- margin: 32px 0 24px 0 !important;
- }
- /* 演示箭头样式 */
- .demo-arrow {
- font-size: 18px;
- }
- /* WebSocket 指示器样式 */
- .ws-indicator {
- color: #10b981;
- font-size: 16px;
- }
- /* 各种演示样式 */
- .color-gradient-demo {
- width: 100%;
- height: 40px;
- background: linear-gradient(90deg, #3b82f6, #8b5cf6);
- border-radius: 6px;
- }
- .color-picker-demo {
- width: 32px;
- height: 32px;
- border-radius: 8px;
- background: linear-gradient(135deg, #43ad7f, #f59e0b, #3b82f6);
- }
- .ai-chat-demo {
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- padding: 8px 12px;
- border-radius: 8px;
- font-size: 12px;
- }
- .sticky-notes-demo {
- display: flex;
- gap: 4px;
- }
- .note-yellow {
- width: 16px;
- height: 16px;
- background: #fbbf24;
- border-radius: 2px;
- }
- .note-green {
- width: 16px;
- height: 16px;
- background: #34d399;
- border-radius: 2px;
- }
- .note-blue {
- width: 16px;
- height: 16px;
- background: #60a5fa;
- border-radius: 2px;
- }
- .markdown-demo {
- font-family: monospace;
- font-size: 12px;
- color: #374151;
- }
- .monkey-script-demo {
- font-family: monospace;
- font-size: 11px;
- color: #059669;
- }
- .mindmap-demo {
- display: flex;
- align-items: center;
- justify-content: center;
- gap: 8px;
- }
- .node-main {
- width: 12px;
- height: 12px;
- background: #3b82f6;
- border-radius: 50%;
- }
- .connector {
- width: 20px;
- height: 2px;
- background: #6b7280;
- }
- .node-sub {
- width: 8px;
- height: 8px;
- background: #10b981;
- border-radius: 50%;
- }
- .excel-demo {
- font-size: 12px;
- color: #059669;
- }
- .ruler-demo {
- display: flex;
- gap: 2px;
- }
- .ruler-segment {
- width: 4px;
- height: 16px;
- }
- .ruler-segment.red {
- background: #ef4444;
- }
- .ruler-segment.blue {
- background: #3b82f6;
- }
- .devtools-demo {
- font-family: monospace;
- font-size: 11px;
- color: #6366f1;
- }
- /* 关于我们区域样式 */
- .about-image {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- min-height: 320px;
- }
- .star-history-chart {
- width: 100%;
- max-width: 480px;
- display: block;
- margin: 0 auto;
- }
- /* 下载链接样式 */
- .download-link-center {
- text-align: center;
- }
- /* 无梯下载特性图标样式 */
- .offline-download .feature-header i.fa-rocket {
- color: #f59e0b;
- }
- .offline-download .feature-header i.fa-shield-alt {
- color: #10b981;
- }
- /* 文档页面样式 */
- .docs-container {
- margin-top: 2rem;
- }
- /* 隐私政策页面样式 */
- .privacy-header {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 60px;
- margin-bottom: 20px;
- }
- .privacy-logo {
- width: 48px;
- height: 48px;
- margin-right: 16px;
- }
- .privacy-title {
- font-size: 2rem;
- line-height: 1.2;
- }
- .privacy-content {
- max-width: 1200px;
- margin-left: auto;
- margin-right: auto;
- }
- .privacy-notice {
- color: #64748b;
- font-size: 0.95rem;
- margin-top: 32px;
- }
- /* 导航栏“在线使用”高亮按钮美化 */
- .nav-online-btn {
- font-size: 17px;
- padding: 10px 28px;
- background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
- color: #fff !important;
- border-radius: 12px;
- font-weight: 800;
- display: inline-flex;
- align-items: center;
- box-shadow: 0 2px 12px rgba(59,130,246,0.18);
- transition: filter 0.18s, box-shadow 0.18s, background 0.18s;
- border: none;
- letter-spacing: 1px;
- margin-right: 8px;
- }
- .nav-online-btn i {
- font-size: 22px !important;
- margin-right: 8px;
- vertical-align: middle;
- }
- .nav-online-btn:hover {
- filter: brightness(1.18);
- box-shadow: 0 6px 24px rgba(139,92,246,0.22);
- background: linear-gradient(90deg, #6366f1 0%, #3b82f6 100%);
- color: #fff !important;
- }
- @media (max-width: 900px) {
- .nav-online-btn {
- font-size: 15px;
- padding: 8px 16px;
- border-radius: 10px;
- }
- .nav-online-btn i {
- font-size: 18px !important;
- margin-right: 6px;
- }
- }
- /* 导航栏“在线使用”高亮文本链接 */
- .nav-online-link {
- color: #3b82f6 !important;
- font-weight: 800;
- font-size: 17px;
- display: inline-flex;
- align-items: center;
- letter-spacing: 1px;
- transition: color 0.18s, text-decoration 0.18s;
- background: none !important;
- border: none;
- box-shadow: none;
- padding: 0;
- }
- .nav-online-link i {
- font-size: 22px !important;
- margin-right: 6px;
- vertical-align: middle;
- }
- .nav-online-link:hover {
- color: #1d4ed8 !important;
- text-decoration: none !important;
- }
- @media (max-width: 900px) {
- .nav-online-link {
- font-size: 15px;
- }
- .nav-online-link i {
- font-size: 18px !important;
- margin-right: 4px;
- }
- }
|