main.css 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322
  1. :root {
  2. --body-bg-color: #fff;
  3. --content-bg-color: #fff;
  4. --card-bg-color: #f5f5f5;
  5. --text-color: #555;
  6. --link-color: #555;
  7. --link-hover-color: #222;
  8. --brand-color: #fff;
  9. --brand-hover-color: #fff;
  10. --table-row-odd-bg-color: #f9f9f9;
  11. --table-row-hover-bg-color: #f5f5f5;
  12. --menu-item-bg-color: #f5f5f5;
  13. }
  14. html {
  15. line-height: 1.15; /* 1 */
  16. -webkit-text-size-adjust: 100%; /* 2 */
  17. }
  18. body {
  19. margin: 0;
  20. }
  21. main {
  22. display: block;
  23. }
  24. h1 {
  25. font-size: 2em;
  26. margin: 0.67em 0;
  27. }
  28. hr {
  29. box-sizing: content-box; /* 1 */
  30. height: 0; /* 1 */
  31. overflow: visible; /* 2 */
  32. }
  33. pre {
  34. font-family: monospace, monospace; /* 1 */
  35. font-size: 1em; /* 2 */
  36. }
  37. a {
  38. background: transparent;
  39. }
  40. abbr[title] {
  41. border-bottom: none; /* 1 */
  42. text-decoration: underline; /* 2 */
  43. text-decoration: underline dotted; /* 2 */
  44. }
  45. b,
  46. strong {
  47. font-weight: bolder;
  48. }
  49. code,
  50. kbd,
  51. samp {
  52. font-family: monospace, monospace; /* 1 */
  53. font-size: 1em; /* 2 */
  54. }
  55. small {
  56. font-size: 80%;
  57. }
  58. sub,
  59. sup {
  60. font-size: 75%;
  61. line-height: 0;
  62. position: relative;
  63. vertical-align: baseline;
  64. }
  65. sub {
  66. bottom: -0.25em;
  67. }
  68. sup {
  69. top: -0.5em;
  70. }
  71. img {
  72. border-style: none;
  73. }
  74. button,
  75. input,
  76. optgroup,
  77. select,
  78. textarea {
  79. font-family: inherit; /* 1 */
  80. font-size: 100%; /* 1 */
  81. line-height: 1.15; /* 1 */
  82. margin: 0; /* 2 */
  83. }
  84. button,
  85. input {
  86. /* 1 */
  87. overflow: visible;
  88. }
  89. button,
  90. select {
  91. /* 1 */
  92. text-transform: none;
  93. }
  94. button,
  95. [type='button'],
  96. [type='reset'],
  97. [type='submit'] {
  98. -webkit-appearance: button;
  99. }
  100. button::-moz-focus-inner,
  101. [type='button']::-moz-focus-inner,
  102. [type='reset']::-moz-focus-inner,
  103. [type='submit']::-moz-focus-inner {
  104. border-style: none;
  105. padding: 0;
  106. }
  107. button:-moz-focusring,
  108. [type='button']:-moz-focusring,
  109. [type='reset']:-moz-focusring,
  110. [type='submit']:-moz-focusring {
  111. outline: 1px dotted ButtonText;
  112. }
  113. fieldset {
  114. padding: 0.35em 0.75em 0.625em;
  115. }
  116. legend {
  117. box-sizing: border-box; /* 1 */
  118. color: inherit; /* 2 */
  119. display: table; /* 1 */
  120. max-width: 100%; /* 1 */
  121. padding: 0; /* 3 */
  122. white-space: normal; /* 1 */
  123. }
  124. progress {
  125. vertical-align: baseline;
  126. }
  127. textarea {
  128. overflow: auto;
  129. }
  130. [type='checkbox'],
  131. [type='radio'] {
  132. box-sizing: border-box; /* 1 */
  133. padding: 0; /* 2 */
  134. }
  135. [type='number']::-webkit-inner-spin-button,
  136. [type='number']::-webkit-outer-spin-button {
  137. height: auto;
  138. }
  139. [type='search'] {
  140. outline-offset: -2px; /* 2 */
  141. -webkit-appearance: textfield; /* 1 */
  142. }
  143. [type='search']::-webkit-search-decoration {
  144. -webkit-appearance: none;
  145. }
  146. ::-webkit-file-upload-button {
  147. font: inherit; /* 2 */
  148. -webkit-appearance: button; /* 1 */
  149. }
  150. details {
  151. display: block;
  152. }
  153. summary {
  154. display: list-item;
  155. }
  156. template {
  157. display: none;
  158. }
  159. [hidden] {
  160. display: none;
  161. }
  162. ::selection {
  163. background: #262a30;
  164. color: #fff;
  165. }
  166. html,
  167. body {
  168. height: 100%;
  169. }
  170. body {
  171. background: var(--body-bg-color);
  172. color: var(--text-color);
  173. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  174. font-size: 1em;
  175. line-height: 2;
  176. }
  177. @media (max-width: 991px) {
  178. body {
  179. padding-left: 0 !important;
  180. padding-right: 0 !important;
  181. }
  182. }
  183. h1,
  184. h2,
  185. h3,
  186. h4,
  187. h5,
  188. h6 {
  189. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  190. font-weight: bold;
  191. line-height: 1.5;
  192. margin: 20px 0 15px;
  193. }
  194. h1 {
  195. font-size: 1.5em;
  196. }
  197. h2 {
  198. font-size: 1.375em;
  199. }
  200. h3 {
  201. font-size: 1.25em;
  202. }
  203. h4 {
  204. font-size: 1.125em;
  205. }
  206. h5 {
  207. font-size: 1em;
  208. }
  209. h6 {
  210. font-size: 0.875em;
  211. }
  212. p {
  213. margin: 0 0 20px 0;
  214. }
  215. a,
  216. span.exturl {
  217. border-bottom: 1px solid #999;
  218. color: var(--link-color);
  219. outline: 0;
  220. text-decoration: none;
  221. overflow-wrap: break-word;
  222. word-wrap: break-word;
  223. cursor: pointer;
  224. }
  225. a:hover,
  226. span.exturl:hover {
  227. border-bottom-color: var(--link-hover-color);
  228. color: var(--link-hover-color);
  229. }
  230. iframe,
  231. img,
  232. video {
  233. display: block;
  234. margin-left: auto;
  235. margin-right: auto;
  236. max-width: 100%;
  237. }
  238. hr {
  239. background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 4px, transparent 4px, transparent 8px);
  240. border: 0;
  241. height: 3px;
  242. margin: 40px 0;
  243. }
  244. blockquote {
  245. border-left: 4px solid #ddd;
  246. color: #666;
  247. margin: 0;
  248. padding: 0 15px;
  249. }
  250. blockquote cite::before {
  251. content: '-';
  252. padding: 0 5px;
  253. }
  254. dt {
  255. font-weight: bold;
  256. }
  257. dd {
  258. margin: 0;
  259. padding: 0;
  260. }
  261. kbd {
  262. background-color: #f5f5f5;
  263. background-image: linear-gradient(#eee, #fff, #eee);
  264. border: 1px solid #ccc;
  265. border-radius: 0.2em;
  266. box-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.1);
  267. font-family: inherit;
  268. padding: 0.1em 0.3em;
  269. white-space: nowrap;
  270. }
  271. .table-container {
  272. overflow: auto;
  273. }
  274. table {
  275. border-collapse: collapse;
  276. border-spacing: 0;
  277. font-size: 0.875em;
  278. margin: 0 0 20px 0;
  279. width: 100%;
  280. }
  281. tbody tr:nth-of-type(odd) {
  282. background: var(--table-row-odd-bg-color);
  283. }
  284. tbody tr:hover {
  285. background: var(--table-row-hover-bg-color);
  286. }
  287. caption,
  288. th,
  289. td {
  290. font-weight: normal;
  291. padding: 8px;
  292. text-align: left;
  293. vertical-align: middle;
  294. }
  295. th,
  296. td {
  297. border: 1px solid #ddd;
  298. border-bottom: 3px solid #ddd;
  299. }
  300. th {
  301. font-weight: 700;
  302. padding-bottom: 10px;
  303. }
  304. td {
  305. border-bottom-width: 1px;
  306. }
  307. .btn {
  308. background: #222;
  309. border: 2px solid #222;
  310. border-radius: 0;
  311. color: #fff;
  312. display: inline-block;
  313. font-size: 0.875em;
  314. line-height: 2;
  315. padding: 0 20px;
  316. text-decoration: none;
  317. transition-property: background-color;
  318. transition-delay: 0s;
  319. transition-duration: 0.2s;
  320. transition-timing-function: ease-in-out;
  321. }
  322. .btn:hover {
  323. background: #fff;
  324. border-color: #222;
  325. color: #222;
  326. }
  327. .btn + .btn {
  328. margin: 0 0 8px 8px;
  329. }
  330. .btn .fa-fw {
  331. text-align: left;
  332. width: 1.285714285714286em;
  333. }
  334. .toggle {
  335. line-height: 0;
  336. }
  337. .toggle .toggle-line {
  338. background: #fff;
  339. display: inline-block;
  340. height: 2px;
  341. left: 0;
  342. position: relative;
  343. top: 0;
  344. transition: all 0.4s;
  345. vertical-align: top;
  346. width: 100%;
  347. }
  348. .toggle .toggle-line:not(:first-child) {
  349. margin-top: 3px;
  350. }
  351. .toggle.toggle-arrow .toggle-line-first {
  352. left: 50%;
  353. top: 2px;
  354. transform: rotate(45deg);
  355. width: 50%;
  356. }
  357. .toggle.toggle-arrow .toggle-line-middle {
  358. left: 2px;
  359. width: 90%;
  360. }
  361. .toggle.toggle-arrow .toggle-line-last {
  362. left: 50%;
  363. top: -2px;
  364. transform: rotate(-45deg);
  365. width: 50%;
  366. }
  367. .toggle.toggle-close .toggle-line-first {
  368. transform: rotate(-45deg);
  369. top: 5px;
  370. }
  371. .toggle.toggle-close .toggle-line-middle {
  372. opacity: 0;
  373. }
  374. .toggle.toggle-close .toggle-line-last {
  375. transform: rotate(45deg);
  376. top: -5px;
  377. }
  378. .highlight,
  379. pre {
  380. background: #f7f7f7;
  381. color: #4d4d4c;
  382. line-height: 1.6;
  383. margin: 0 auto 20px;
  384. }
  385. pre,
  386. code {
  387. font-family: consolas, Menlo, monospace, "PingFang SC", "Microsoft YaHei";
  388. }
  389. code {
  390. background: #eee;
  391. border-radius: 3px;
  392. color: #555;
  393. padding: 2px 4px;
  394. overflow-wrap: break-word;
  395. word-wrap: break-word;
  396. }
  397. .highlight *::selection {
  398. background: #d6d6d6;
  399. }
  400. .highlight pre {
  401. border: 0;
  402. margin: 0;
  403. padding: 10px 0;
  404. }
  405. .highlight table {
  406. border: 0;
  407. margin: 0;
  408. width: auto;
  409. }
  410. .highlight td {
  411. border: 0;
  412. padding: 0;
  413. }
  414. .highlight figcaption {
  415. background: #eee;
  416. color: #4d4d4c;
  417. display: flex;
  418. font-size: 0.875em;
  419. justify-content: space-between;
  420. line-height: 1.2;
  421. padding: 0.5em;
  422. }
  423. .highlight figcaption a {
  424. color: #4d4d4c;
  425. }
  426. .highlight figcaption a:hover {
  427. border-bottom-color: #4d4d4c;
  428. }
  429. .highlight .gutter {
  430. -moz-user-select: none;
  431. -ms-user-select: none;
  432. -webkit-user-select: none;
  433. user-select: none;
  434. }
  435. .highlight .gutter pre {
  436. background: #eff2f3;
  437. color: #869194;
  438. padding-left: 10px;
  439. padding-right: 10px;
  440. text-align: right;
  441. }
  442. .highlight .code pre {
  443. background: #f7f7f7;
  444. padding-left: 10px;
  445. width: 100%;
  446. }
  447. .gist table {
  448. width: auto;
  449. }
  450. .gist table td {
  451. border: 0;
  452. }
  453. pre {
  454. overflow: auto;
  455. padding: 10px;
  456. }
  457. pre code {
  458. background: none;
  459. color: #4d4d4c;
  460. font-size: 0.875em;
  461. padding: 0;
  462. text-shadow: none;
  463. }
  464. pre .deletion {
  465. background: #fdd;
  466. }
  467. pre .addition {
  468. background: #dfd;
  469. }
  470. pre .meta {
  471. color: #eab700;
  472. -moz-user-select: none;
  473. -ms-user-select: none;
  474. -webkit-user-select: none;
  475. user-select: none;
  476. }
  477. pre .comment {
  478. color: #8e908c;
  479. }
  480. pre .variable,
  481. pre .attribute,
  482. pre .tag,
  483. pre .name,
  484. pre .regexp,
  485. pre .ruby .constant,
  486. pre .xml .tag .title,
  487. pre .xml .pi,
  488. pre .xml .doctype,
  489. pre .html .doctype,
  490. pre .css .id,
  491. pre .css .class,
  492. pre .css .pseudo {
  493. color: #c82829;
  494. }
  495. pre .number,
  496. pre .preprocessor,
  497. pre .built_in,
  498. pre .builtin-name,
  499. pre .literal,
  500. pre .params,
  501. pre .constant,
  502. pre .command {
  503. color: #f5871f;
  504. }
  505. pre .ruby .class .title,
  506. pre .css .rules .attribute,
  507. pre .string,
  508. pre .symbol,
  509. pre .value,
  510. pre .inheritance,
  511. pre .header,
  512. pre .ruby .symbol,
  513. pre .xml .cdata,
  514. pre .special,
  515. pre .formula {
  516. color: #718c00;
  517. }
  518. pre .title,
  519. pre .css .hexcolor {
  520. color: #3e999f;
  521. }
  522. pre .function,
  523. pre .python .decorator,
  524. pre .python .title,
  525. pre .ruby .function .title,
  526. pre .ruby .title .keyword,
  527. pre .perl .sub,
  528. pre .javascript .title,
  529. pre .coffeescript .title {
  530. color: #4271ae;
  531. }
  532. pre .keyword,
  533. pre .javascript .function {
  534. color: #8959a8;
  535. }
  536. .blockquote-center {
  537. border-left: none;
  538. margin: 40px 0;
  539. padding: 0;
  540. position: relative;
  541. text-align: center;
  542. }
  543. .blockquote-center::before,
  544. .blockquote-center::after {
  545. background-repeat: no-repeat;
  546. background-size: 22px 22px;
  547. content: ' ';
  548. display: block;
  549. height: 24px;
  550. opacity: 0.2;
  551. position: absolute;
  552. width: 100%;
  553. }
  554. .blockquote-center::before {
  555. background-image: url("../images/quote-l.svg");
  556. background-position: 0 -6px;
  557. border-top: 1px solid #ccc;
  558. top: -20px;
  559. }
  560. .blockquote-center::after {
  561. background-image: url("../images/quote-r.svg");
  562. background-position: 100% 8px;
  563. border-bottom: 1px solid #ccc;
  564. bottom: -20px;
  565. }
  566. .blockquote-center p,
  567. .blockquote-center div {
  568. text-align: center;
  569. }
  570. .post-body .group-picture img {
  571. margin: 0 auto;
  572. padding: 0 3px;
  573. }
  574. .group-picture-row {
  575. margin-bottom: 6px;
  576. overflow: hidden;
  577. }
  578. .group-picture-column {
  579. float: left;
  580. margin-bottom: 10px;
  581. }
  582. .post-body .label {
  583. color: #555;
  584. display: inline;
  585. padding: 0 2px;
  586. }
  587. .post-body .label.default {
  588. background: #f0f0f0;
  589. }
  590. .post-body .label.primary {
  591. background: #efe6f7;
  592. }
  593. .post-body .label.info {
  594. background: #e5f2f8;
  595. }
  596. .post-body .label.success {
  597. background: #e7f4e9;
  598. }
  599. .post-body .label.warning {
  600. background: #fcf6e1;
  601. }
  602. .post-body .label.danger {
  603. background: #fae8eb;
  604. }
  605. .post-body .tabs {
  606. margin-bottom: 20px;
  607. }
  608. .post-body .tabs,
  609. .tabs-comment {
  610. display: block;
  611. padding-top: 10px;
  612. position: relative;
  613. }
  614. .post-body .tabs ul.nav-tabs,
  615. .tabs-comment ul.nav-tabs {
  616. display: flex;
  617. flex-wrap: wrap;
  618. margin: 0;
  619. margin-bottom: -1px;
  620. padding: 0;
  621. }
  622. @media (max-width: 413px) {
  623. .post-body .tabs ul.nav-tabs,
  624. .tabs-comment ul.nav-tabs {
  625. display: block;
  626. margin-bottom: 5px;
  627. }
  628. }
  629. .post-body .tabs ul.nav-tabs li.tab,
  630. .tabs-comment ul.nav-tabs li.tab {
  631. border-bottom: 1px solid #ddd;
  632. border-left: 1px solid transparent;
  633. border-right: 1px solid transparent;
  634. border-top: 3px solid transparent;
  635. flex-grow: 1;
  636. list-style-type: none;
  637. border-radius: 0 0 0 0;
  638. }
  639. @media (max-width: 413px) {
  640. .post-body .tabs ul.nav-tabs li.tab,
  641. .tabs-comment ul.nav-tabs li.tab {
  642. border-bottom: 1px solid transparent;
  643. border-left: 3px solid transparent;
  644. border-right: 1px solid transparent;
  645. border-top: 1px solid transparent;
  646. }
  647. }
  648. @media (max-width: 413px) {
  649. .post-body .tabs ul.nav-tabs li.tab,
  650. .tabs-comment ul.nav-tabs li.tab {
  651. border-radius: 0;
  652. }
  653. }
  654. .post-body .tabs ul.nav-tabs li.tab a,
  655. .tabs-comment ul.nav-tabs li.tab a {
  656. border-bottom: initial;
  657. display: block;
  658. line-height: 1.8;
  659. outline: 0;
  660. padding: 0.25em 0.75em;
  661. text-align: center;
  662. transition-delay: 0s;
  663. transition-duration: 0.2s;
  664. transition-timing-function: ease-out;
  665. }
  666. .post-body .tabs ul.nav-tabs li.tab a i,
  667. .tabs-comment ul.nav-tabs li.tab a i {
  668. width: 1.285714285714286em;
  669. }
  670. .post-body .tabs ul.nav-tabs li.tab.active,
  671. .tabs-comment ul.nav-tabs li.tab.active {
  672. border-bottom: 1px solid transparent;
  673. border-left: 1px solid #ddd;
  674. border-right: 1px solid #ddd;
  675. border-top: 3px solid #fc6423;
  676. }
  677. @media (max-width: 413px) {
  678. .post-body .tabs ul.nav-tabs li.tab.active,
  679. .tabs-comment ul.nav-tabs li.tab.active {
  680. border-bottom: 1px solid #ddd;
  681. border-left: 3px solid #fc6423;
  682. border-right: 1px solid #ddd;
  683. border-top: 1px solid #ddd;
  684. }
  685. }
  686. .post-body .tabs ul.nav-tabs li.tab.active a,
  687. .tabs-comment ul.nav-tabs li.tab.active a {
  688. color: var(--link-color);
  689. cursor: default;
  690. }
  691. .post-body .tabs .tab-content .tab-pane,
  692. .tabs-comment .tab-content .tab-pane {
  693. border: 1px solid #ddd;
  694. border-top: 0;
  695. padding: 20px 20px 0 20px;
  696. border-radius: 0;
  697. }
  698. .post-body .tabs .tab-content .tab-pane:not(.active),
  699. .tabs-comment .tab-content .tab-pane:not(.active) {
  700. display: none;
  701. }
  702. .post-body .tabs .tab-content .tab-pane.active,
  703. .tabs-comment .tab-content .tab-pane.active {
  704. display: block;
  705. }
  706. .post-body .tabs .tab-content .tab-pane.active:nth-of-type(1),
  707. .tabs-comment .tab-content .tab-pane.active:nth-of-type(1) {
  708. border-radius: 0 0 0 0;
  709. }
  710. @media (max-width: 413px) {
  711. .post-body .tabs .tab-content .tab-pane.active:nth-of-type(1),
  712. .tabs-comment .tab-content .tab-pane.active:nth-of-type(1) {
  713. border-radius: 0;
  714. }
  715. }
  716. .post-body .note {
  717. border-radius: 3px;
  718. margin-bottom: 20px;
  719. padding: 1em;
  720. position: relative;
  721. background: #f9f9f9;
  722. border: initial;
  723. border-left: 3px solid #eee;
  724. }
  725. .post-body .note h2,
  726. .post-body .note h3,
  727. .post-body .note h4,
  728. .post-body .note h5,
  729. .post-body .note h6 {
  730. margin-top: 3px;
  731. border-bottom: initial;
  732. margin-bottom: 0;
  733. padding-top: 0;
  734. }
  735. .post-body .note p:first-child,
  736. .post-body .note ul:first-child,
  737. .post-body .note ol:first-child,
  738. .post-body .note table:first-child,
  739. .post-body .note pre:first-child,
  740. .post-body .note blockquote:first-child,
  741. .post-body .note img:first-child {
  742. margin-top: 0;
  743. }
  744. .post-body .note p:last-child,
  745. .post-body .note ul:last-child,
  746. .post-body .note ol:last-child,
  747. .post-body .note table:last-child,
  748. .post-body .note pre:last-child,
  749. .post-body .note blockquote:last-child,
  750. .post-body .note img:last-child {
  751. margin-bottom: 0;
  752. }
  753. .post-body .note:not(.no-icon) {
  754. padding-left: 2.5em;
  755. }
  756. .post-body .note:not(.no-icon)::before {
  757. font-family: 'FontAwesome';
  758. font-size: 1.5em;
  759. left: 0.4em;
  760. position: absolute;
  761. top: calc(50% - 1em);
  762. }
  763. .post-body .note.default {
  764. background: #f7f7f7;
  765. border-left-color: #777;
  766. }
  767. .post-body .note.default h2,
  768. .post-body .note.default h3,
  769. .post-body .note.default h4,
  770. .post-body .note.default h5,
  771. .post-body .note.default h6 {
  772. color: #777;
  773. }
  774. .post-body .note.default:not(.no-icon)::before {
  775. content: "\f0a9";
  776. color: #777;
  777. }
  778. .post-body .note.primary {
  779. background: #f5f0fa;
  780. border-left-color: #6f42c1;
  781. }
  782. .post-body .note.primary h2,
  783. .post-body .note.primary h3,
  784. .post-body .note.primary h4,
  785. .post-body .note.primary h5,
  786. .post-body .note.primary h6 {
  787. color: #6f42c1;
  788. }
  789. .post-body .note.primary:not(.no-icon)::before {
  790. content: "\f055";
  791. color: #6f42c1;
  792. }
  793. .post-body .note.info {
  794. background: #eef7fa;
  795. border-left-color: #428bca;
  796. }
  797. .post-body .note.info h2,
  798. .post-body .note.info h3,
  799. .post-body .note.info h4,
  800. .post-body .note.info h5,
  801. .post-body .note.info h6 {
  802. color: #428bca;
  803. }
  804. .post-body .note.info:not(.no-icon)::before {
  805. content: "\f05a";
  806. color: #428bca;
  807. }
  808. .post-body .note.success {
  809. background: #eff8f0;
  810. border-left-color: #5cb85c;
  811. }
  812. .post-body .note.success h2,
  813. .post-body .note.success h3,
  814. .post-body .note.success h4,
  815. .post-body .note.success h5,
  816. .post-body .note.success h6 {
  817. color: #5cb85c;
  818. }
  819. .post-body .note.success:not(.no-icon)::before {
  820. content: "\f058";
  821. color: #5cb85c;
  822. }
  823. .post-body .note.warning {
  824. background: #fdf8ea;
  825. border-left-color: #f0ad4e;
  826. }
  827. .post-body .note.warning h2,
  828. .post-body .note.warning h3,
  829. .post-body .note.warning h4,
  830. .post-body .note.warning h5,
  831. .post-body .note.warning h6 {
  832. color: #f0ad4e;
  833. }
  834. .post-body .note.warning:not(.no-icon)::before {
  835. content: "\f06a";
  836. color: #f0ad4e;
  837. }
  838. .post-body .note.danger {
  839. background: #fcf1f2;
  840. border-left-color: #d9534f;
  841. }
  842. .post-body .note.danger h2,
  843. .post-body .note.danger h3,
  844. .post-body .note.danger h4,
  845. .post-body .note.danger h5,
  846. .post-body .note.danger h6 {
  847. color: #d9534f;
  848. }
  849. .post-body .note.danger:not(.no-icon)::before {
  850. content: "\f056";
  851. color: #d9534f;
  852. }
  853. .pagination .prev,
  854. .pagination .next,
  855. .pagination .page-number,
  856. .pagination .space {
  857. display: inline-block;
  858. margin: 0 10px;
  859. padding: 0 11px;
  860. position: relative;
  861. top: -1px;
  862. }
  863. @media (max-width: 767px) {
  864. .pagination .prev,
  865. .pagination .next,
  866. .pagination .page-number,
  867. .pagination .space {
  868. margin: 0 5px;
  869. }
  870. }
  871. .pagination {
  872. border-top: 1px solid #eee;
  873. margin: 120px 0 0;
  874. text-align: center;
  875. }
  876. .pagination .prev,
  877. .pagination .next,
  878. .pagination .page-number {
  879. border-bottom: 0;
  880. border-top: 1px solid #eee;
  881. transition-property: border-color;
  882. transition-delay: 0s;
  883. transition-duration: 0.2s;
  884. transition-timing-function: ease-in-out;
  885. }
  886. .pagination .prev:hover,
  887. .pagination .next:hover,
  888. .pagination .page-number:hover {
  889. border-top-color: #222;
  890. }
  891. .pagination .space {
  892. margin: 0;
  893. padding: 0;
  894. }
  895. .pagination .prev {
  896. margin-left: 0;
  897. }
  898. .pagination .next {
  899. margin-right: 0;
  900. }
  901. .pagination .page-number.current {
  902. background: #ccc;
  903. border-top-color: #ccc;
  904. color: #fff;
  905. }
  906. @media (max-width: 767px) {
  907. .pagination {
  908. border-top: none;
  909. }
  910. .pagination .prev,
  911. .pagination .next,
  912. .pagination .page-number {
  913. border-bottom: 1px solid #eee;
  914. border-top: 0;
  915. margin-bottom: 10px;
  916. padding: 0 10px;
  917. }
  918. .pagination .prev:hover,
  919. .pagination .next:hover,
  920. .pagination .page-number:hover {
  921. border-bottom-color: #222;
  922. }
  923. }
  924. .comments {
  925. margin: 60px 20px 0;
  926. overflow: hidden;
  927. }
  928. .comment-button-group {
  929. display: flex;
  930. flex-wrap: wrap-reverse;
  931. justify-content: center;
  932. margin: 1em 0;
  933. }
  934. .comment-button-group .comment-button {
  935. margin: 0.1em 0.2em;
  936. }
  937. .comment-button-group .comment-button.active {
  938. background: #fff;
  939. border-color: #222;
  940. color: #222;
  941. }
  942. .comment-position {
  943. display: none;
  944. }
  945. .comment-position.active {
  946. display: block;
  947. }
  948. .tabs-comment {
  949. background: var(--content-bg-color);
  950. margin-top: 4em;
  951. padding-top: 0;
  952. }
  953. .tabs-comment .comments {
  954. border: 0;
  955. box-shadow: none;
  956. margin-top: 0;
  957. padding-top: 0;
  958. }
  959. .container {
  960. min-height: 100%;
  961. position: relative;
  962. }
  963. .main-inner {
  964. margin: 0 auto;
  965. width: 700px;
  966. }
  967. @media (min-width: 1200px) {
  968. .main-inner {
  969. width: 800px;
  970. }
  971. }
  972. @media (min-width: 1600px) {
  973. .main-inner {
  974. width: 900px;
  975. }
  976. }
  977. .header {
  978. background: transparent;
  979. }
  980. .header-inner {
  981. margin: 0 auto;
  982. width: 700px;
  983. }
  984. @media (min-width: 1200px) {
  985. .header-inner {
  986. width: 800px;
  987. }
  988. }
  989. @media (min-width: 1600px) {
  990. .header-inner {
  991. width: 900px;
  992. }
  993. }
  994. .site-brand-container {
  995. display: flex;
  996. flex-shrink: 0;
  997. padding: 0 10px;
  998. }
  999. .headband {
  1000. background: #222;
  1001. height: 3px;
  1002. }
  1003. .site-meta {
  1004. flex-grow: 1;
  1005. text-align: center;
  1006. }
  1007. @media (max-width: 767px) {
  1008. .site-meta {
  1009. text-align: center;
  1010. }
  1011. }
  1012. .brand {
  1013. border-bottom: none;
  1014. color: var(--brand-color);
  1015. display: inline-block;
  1016. line-height: 1.375em;
  1017. padding: 0 40px;
  1018. position: relative;
  1019. }
  1020. .brand:hover {
  1021. color: var(--brand-hover-color);
  1022. }
  1023. .site-title {
  1024. display: inline-block;
  1025. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  1026. font-size: 1.375em;
  1027. font-weight: normal;
  1028. line-height: 1.5;
  1029. vertical-align: top;
  1030. }
  1031. .site-subtitle {
  1032. color: #999;
  1033. font-size: 0.8125em;
  1034. margin: 10px 0;
  1035. }
  1036. .use-motion .brand {
  1037. opacity: 0;
  1038. }
  1039. .use-motion .site-title,
  1040. .use-motion .site-subtitle,
  1041. .use-motion .custom-logo-image {
  1042. opacity: 0;
  1043. position: relative;
  1044. top: -10px;
  1045. }
  1046. .site-nav-toggle,
  1047. .site-nav-right {
  1048. display: none;
  1049. }
  1050. @media (max-width: 767px) {
  1051. .site-nav-toggle,
  1052. .site-nav-right {
  1053. display: flex;
  1054. flex-direction: column;
  1055. justify-content: center;
  1056. }
  1057. }
  1058. .site-nav-toggle .toggle,
  1059. .site-nav-right .toggle {
  1060. color: var(--text-color);
  1061. padding: 10px;
  1062. width: 22px;
  1063. }
  1064. .site-nav-toggle .toggle .toggle-line,
  1065. .site-nav-right .toggle .toggle-line {
  1066. background: var(--text-color);
  1067. border-radius: 1px;
  1068. }
  1069. .site-nav {
  1070. display: block;
  1071. }
  1072. @media (max-width: 767px) {
  1073. .site-nav {
  1074. clear: both;
  1075. display: none;
  1076. }
  1077. }
  1078. .site-nav.site-nav-on {
  1079. display: block;
  1080. }
  1081. .menu {
  1082. margin-top: 20px;
  1083. padding-left: 0;
  1084. text-align: center;
  1085. }
  1086. .menu-item {
  1087. display: inline-block;
  1088. list-style: none;
  1089. margin: 0 10px;
  1090. }
  1091. @media (max-width: 767px) {
  1092. .menu-item {
  1093. display: block;
  1094. margin-top: 10px;
  1095. }
  1096. .menu-item.menu-item-search {
  1097. display: none;
  1098. }
  1099. }
  1100. .menu-item a,
  1101. .menu-item span.exturl {
  1102. border-bottom: 0;
  1103. display: block;
  1104. font-size: 0.8125em;
  1105. transition-property: border-color;
  1106. transition-delay: 0s;
  1107. transition-duration: 0.2s;
  1108. transition-timing-function: ease-in-out;
  1109. }
  1110. @media (hover: none) {
  1111. .menu-item a:hover,
  1112. .menu-item span.exturl:hover {
  1113. border-bottom-color: transparent !important;
  1114. }
  1115. }
  1116. .menu-item .fa {
  1117. margin-right: 8px;
  1118. }
  1119. .menu-item .badge {
  1120. display: inline-block;
  1121. font-weight: bold;
  1122. line-height: 1;
  1123. margin-left: 0.35em;
  1124. margin-top: 0.35em;
  1125. text-align: center;
  1126. white-space: nowrap;
  1127. }
  1128. @media (max-width: 767px) {
  1129. .menu-item .badge {
  1130. float: right;
  1131. margin-left: 0;
  1132. }
  1133. }
  1134. .menu-item-active a,
  1135. .menu .menu-item a:hover,
  1136. .menu .menu-item span.exturl:hover {
  1137. background: var(--menu-item-bg-color);
  1138. }
  1139. .use-motion .menu-item {
  1140. opacity: 0;
  1141. }
  1142. .sidebar {
  1143. background: #222;
  1144. bottom: 0;
  1145. box-shadow: inset 0 2px 6px #000;
  1146. position: fixed;
  1147. top: 0;
  1148. }
  1149. @media (max-width: 991px) {
  1150. .sidebar {
  1151. display: none;
  1152. }
  1153. }
  1154. .sidebar-inner {
  1155. color: #999;
  1156. padding: 18px 10px;
  1157. text-align: center;
  1158. }
  1159. .cc-license {
  1160. margin-top: 10px;
  1161. text-align: center;
  1162. }
  1163. .cc-license .cc-opacity {
  1164. border-bottom: none;
  1165. opacity: 0.7;
  1166. }
  1167. .cc-license .cc-opacity:hover {
  1168. opacity: 0.9;
  1169. }
  1170. .cc-license img {
  1171. display: inline-block;
  1172. }
  1173. .site-author-image {
  1174. border: 2px solid #333;
  1175. display: block;
  1176. margin: 0 auto;
  1177. max-width: 96px;
  1178. padding: 2px;
  1179. }
  1180. .site-author-name {
  1181. color: #f5f5f5;
  1182. font-weight: normal;
  1183. margin: 5px 0 0;
  1184. text-align: center;
  1185. }
  1186. .site-description {
  1187. color: #999;
  1188. font-size: 1em;
  1189. margin-top: 5px;
  1190. text-align: center;
  1191. }
  1192. .links-of-author {
  1193. margin-top: 15px;
  1194. }
  1195. .links-of-author a,
  1196. .links-of-author span.exturl {
  1197. border-bottom-color: #555;
  1198. display: inline-block;
  1199. font-size: 0.8125em;
  1200. margin-bottom: 10px;
  1201. margin-right: 10px;
  1202. vertical-align: middle;
  1203. }
  1204. .links-of-author a::before,
  1205. .links-of-author span.exturl::before {
  1206. background: #3e5465;
  1207. border-radius: 50%;
  1208. content: ' ';
  1209. display: inline-block;
  1210. height: 4px;
  1211. margin-right: 3px;
  1212. vertical-align: middle;
  1213. width: 4px;
  1214. }
  1215. .sidebar-button {
  1216. margin-top: 15px;
  1217. }
  1218. .sidebar-button a {
  1219. border: 1px solid #fc6423;
  1220. border-radius: 4px;
  1221. color: #fc6423;
  1222. display: inline-block;
  1223. padding: 0 15px;
  1224. }
  1225. .sidebar-button a .fa {
  1226. margin-right: 5px;
  1227. }
  1228. .sidebar-button a:hover {
  1229. background: #fc6423;
  1230. border: 1px solid #fc6423;
  1231. color: #fff;
  1232. }
  1233. .sidebar-button a:hover .fa {
  1234. color: #fff;
  1235. }
  1236. .links-of-blogroll {
  1237. font-size: 0.8125em;
  1238. margin-top: 10px;
  1239. }
  1240. .links-of-blogroll-title {
  1241. font-size: 0.875em;
  1242. font-weight: 600;
  1243. margin-top: 0;
  1244. }
  1245. .links-of-blogroll-list {
  1246. list-style: none;
  1247. margin: 0;
  1248. padding: 0;
  1249. }
  1250. #sidebar-dimmer {
  1251. display: none;
  1252. }
  1253. @media (max-width: 767px) {
  1254. #sidebar-dimmer {
  1255. background: #000;
  1256. display: block;
  1257. height: 100%;
  1258. left: 100%;
  1259. opacity: 0;
  1260. position: fixed;
  1261. top: 0;
  1262. width: 100%;
  1263. z-index: 1100;
  1264. }
  1265. .sidebar-active + #sidebar-dimmer {
  1266. opacity: 0.7;
  1267. transform: translateX(-100%);
  1268. transition: opacity 0.5s;
  1269. }
  1270. }
  1271. .sidebar-nav {
  1272. margin: 0;
  1273. padding-bottom: 20px;
  1274. padding-left: 0;
  1275. }
  1276. .sidebar-nav li {
  1277. border-bottom: 1px solid transparent;
  1278. color: #555;
  1279. cursor: pointer;
  1280. display: inline-block;
  1281. font-size: 0.875em;
  1282. }
  1283. .sidebar-nav li.sidebar-nav-overview {
  1284. margin-left: 10px;
  1285. }
  1286. .sidebar-nav li:hover {
  1287. color: #f5f5f5;
  1288. }
  1289. .sidebar-nav .sidebar-nav-active {
  1290. border-bottom-color: #87daff;
  1291. color: #87daff;
  1292. }
  1293. .sidebar-nav .sidebar-nav-active:hover {
  1294. color: #87daff;
  1295. }
  1296. .sidebar-panel {
  1297. display: none;
  1298. overflow-x: hidden;
  1299. overflow-y: auto;
  1300. }
  1301. .sidebar-panel-active {
  1302. display: block;
  1303. }
  1304. .sidebar-toggle {
  1305. background: #222;
  1306. bottom: 45px;
  1307. cursor: pointer;
  1308. height: 14px;
  1309. left: 30px;
  1310. padding: 5px;
  1311. position: fixed;
  1312. width: 14px;
  1313. z-index: 1300;
  1314. }
  1315. @media (max-width: 991px) {
  1316. .sidebar-toggle {
  1317. left: 20px;
  1318. opacity: 0.8;
  1319. display: none;
  1320. }
  1321. }
  1322. .sidebar-toggle:hover .toggle-line {
  1323. background: #87daff;
  1324. }
  1325. .post-toc {
  1326. font-size: 0.875em;
  1327. }
  1328. .post-toc ol {
  1329. list-style: none;
  1330. margin: 0;
  1331. padding: 0 2px 5px 10px;
  1332. text-align: left;
  1333. }
  1334. .post-toc ol > ol {
  1335. padding-left: 0;
  1336. }
  1337. .post-toc ol a {
  1338. transition-property: all;
  1339. transition-delay: 0s;
  1340. transition-duration: 0.2s;
  1341. transition-timing-function: ease-in-out;
  1342. }
  1343. .post-toc .nav-item {
  1344. line-height: 1.8;
  1345. overflow: hidden;
  1346. text-overflow: ellipsis;
  1347. white-space: nowrap;
  1348. }
  1349. .post-toc .nav .nav-child {
  1350. display: none;
  1351. }
  1352. .post-toc .nav .active > .nav-child {
  1353. display: block;
  1354. }
  1355. .post-toc .nav .active-current > .nav-child {
  1356. display: block;
  1357. }
  1358. .post-toc .nav .active-current > .nav-child > .nav-item {
  1359. display: block;
  1360. }
  1361. .post-toc .nav .active > a {
  1362. border-bottom-color: #87daff;
  1363. color: #87daff;
  1364. }
  1365. .post-toc .nav .active-current > a {
  1366. color: #87daff;
  1367. }
  1368. .post-toc .nav .active-current > a:hover {
  1369. color: #87daff;
  1370. }
  1371. .site-state {
  1372. display: flex;
  1373. justify-content: center;
  1374. line-height: 1.4;
  1375. margin-top: 10px;
  1376. overflow: hidden;
  1377. text-align: center;
  1378. white-space: nowrap;
  1379. }
  1380. .site-state-item {
  1381. padding: 0 15px;
  1382. }
  1383. .site-state-item:not(:first-child) {
  1384. border-left: 1px solid #333;
  1385. }
  1386. .site-state-item a {
  1387. border-bottom: none;
  1388. }
  1389. .site-state-item-count {
  1390. display: block;
  1391. font-size: 1.25em;
  1392. font-weight: 600;
  1393. text-align: center;
  1394. }
  1395. .site-state-item-name {
  1396. color: inherit;
  1397. font-size: 0.875em;
  1398. }
  1399. .footer {
  1400. color: #999;
  1401. font-size: 0.875em;
  1402. padding: 20px 0;
  1403. }
  1404. .footer.footer-fixed {
  1405. bottom: 0;
  1406. left: 0;
  1407. position: absolute;
  1408. right: 0;
  1409. }
  1410. .footer-inner {
  1411. box-sizing: border-box;
  1412. margin: 0 auto;
  1413. text-align: center;
  1414. width: 700px;
  1415. }
  1416. @media (min-width: 1200px) {
  1417. .footer-inner {
  1418. width: 800px;
  1419. }
  1420. }
  1421. @media (min-width: 1600px) {
  1422. .footer-inner {
  1423. width: 900px;
  1424. }
  1425. }
  1426. .with-love {
  1427. color: #808080;
  1428. display: inline-block;
  1429. margin: 0 5px;
  1430. }
  1431. .powered-by,
  1432. .theme-info {
  1433. display: inline-block;
  1434. }
  1435. @-moz-keyframes iconAnimate {
  1436. 0%, 100% {
  1437. transform: scale(1);
  1438. }
  1439. 10%, 30% {
  1440. transform: scale(0.9);
  1441. }
  1442. 20%, 40%, 60%, 80% {
  1443. transform: scale(1.1);
  1444. }
  1445. 50%, 70% {
  1446. transform: scale(1.1);
  1447. }
  1448. }
  1449. @-webkit-keyframes iconAnimate {
  1450. 0%, 100% {
  1451. transform: scale(1);
  1452. }
  1453. 10%, 30% {
  1454. transform: scale(0.9);
  1455. }
  1456. 20%, 40%, 60%, 80% {
  1457. transform: scale(1.1);
  1458. }
  1459. 50%, 70% {
  1460. transform: scale(1.1);
  1461. }
  1462. }
  1463. @-o-keyframes iconAnimate {
  1464. 0%, 100% {
  1465. transform: scale(1);
  1466. }
  1467. 10%, 30% {
  1468. transform: scale(0.9);
  1469. }
  1470. 20%, 40%, 60%, 80% {
  1471. transform: scale(1.1);
  1472. }
  1473. 50%, 70% {
  1474. transform: scale(1.1);
  1475. }
  1476. }
  1477. @keyframes iconAnimate {
  1478. 0%, 100% {
  1479. transform: scale(1);
  1480. }
  1481. 10%, 30% {
  1482. transform: scale(0.9);
  1483. }
  1484. 20%, 40%, 60%, 80% {
  1485. transform: scale(1.1);
  1486. }
  1487. 50%, 70% {
  1488. transform: scale(1.1);
  1489. }
  1490. }
  1491. .back-to-top {
  1492. font-size: 12px;
  1493. text-align: center;
  1494. transition-delay: 0s;
  1495. transition-duration: 0.2s;
  1496. transition-timing-function: ease-in-out;
  1497. }
  1498. .back-to-top {
  1499. background: #222;
  1500. bottom: -100px;
  1501. box-sizing: border-box;
  1502. color: #fff;
  1503. cursor: pointer;
  1504. left: 30px;
  1505. opacity: 1;
  1506. padding: 0 6px;
  1507. position: fixed;
  1508. transition-property: bottom;
  1509. z-index: 1300;
  1510. width: initial;
  1511. }
  1512. .back-to-top:hover {
  1513. color: #87daff;
  1514. }
  1515. .back-to-top.back-to-top-on {
  1516. bottom: 19px;
  1517. }
  1518. @media (max-width: 991px) {
  1519. .back-to-top {
  1520. left: 20px;
  1521. opacity: 0.8;
  1522. }
  1523. }
  1524. .reading-progress-bar {
  1525. background: #37c6c0;
  1526. display: block;
  1527. height: 3px;
  1528. left: 0;
  1529. position: fixed;
  1530. top: 0;
  1531. width: 0;
  1532. z-index: 1500;
  1533. }
  1534. .post-body {
  1535. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  1536. overflow-wrap: break-word;
  1537. word-wrap: break-word;
  1538. }
  1539. @media (min-width: 1200px) {
  1540. .post-body {
  1541. font-size: 1.125em;
  1542. }
  1543. }
  1544. .post-body span.exturl .fa {
  1545. font-size: 0.875em;
  1546. margin-left: 4px;
  1547. }
  1548. .post-body .image-caption,
  1549. .post-body .figure .caption {
  1550. color: #999;
  1551. font-size: 0.875em;
  1552. font-weight: bold;
  1553. line-height: 1;
  1554. margin: -20px auto 15px;
  1555. text-align: center;
  1556. }
  1557. .post-sticky-flag {
  1558. display: inline-block;
  1559. transform: rotate(30deg);
  1560. }
  1561. .post-button {
  1562. margin-top: 40px;
  1563. text-align: center;
  1564. }
  1565. .use-motion .post-block,
  1566. .use-motion .pagination,
  1567. .use-motion .comments {
  1568. opacity: 0;
  1569. }
  1570. .use-motion .post-header {
  1571. opacity: 0;
  1572. }
  1573. .use-motion .post-body {
  1574. opacity: 0;
  1575. }
  1576. .use-motion .collection-header {
  1577. opacity: 0;
  1578. }
  1579. .posts-collapse {
  1580. margin-left: 55px;
  1581. position: relative;
  1582. }
  1583. @media (max-width: 767px) {
  1584. .posts-collapse {
  1585. margin-left: 20px;
  1586. margin-right: 20px;
  1587. }
  1588. }
  1589. .posts-collapse .collection-title {
  1590. font-size: 1.125em;
  1591. position: relative;
  1592. }
  1593. .posts-collapse .collection-title::before {
  1594. background: #999;
  1595. border: 1px solid #fff;
  1596. border-radius: 50%;
  1597. content: ' ';
  1598. height: 10px;
  1599. left: 0;
  1600. margin-left: -6px;
  1601. margin-top: -4px;
  1602. position: absolute;
  1603. top: 50%;
  1604. width: 10px;
  1605. }
  1606. .posts-collapse .collection-year {
  1607. margin: 60px 0;
  1608. position: relative;
  1609. }
  1610. .posts-collapse .collection-year::before {
  1611. background: #bbb;
  1612. border-radius: 50%;
  1613. content: ' ';
  1614. height: 8px;
  1615. left: 0;
  1616. margin-left: -4px;
  1617. margin-top: -4px;
  1618. position: absolute;
  1619. top: 50%;
  1620. width: 8px;
  1621. }
  1622. .posts-collapse .collection-header {
  1623. display: inline-block;
  1624. margin: 0 0 0 20px;
  1625. }
  1626. .posts-collapse .collection-header small {
  1627. color: #bbb;
  1628. margin-left: 5px;
  1629. }
  1630. .posts-collapse .post-header {
  1631. border-bottom: 1px dashed #ccc;
  1632. margin: 30px 0;
  1633. padding-left: 15px;
  1634. position: relative;
  1635. transition-property: border;
  1636. transition-delay: 0s;
  1637. transition-duration: 0.2s;
  1638. transition-timing-function: ease-in-out;
  1639. }
  1640. .posts-collapse .post-header::before {
  1641. background: #bbb;
  1642. border: 1px solid #fff;
  1643. border-radius: 50%;
  1644. content: ' ';
  1645. height: 6px;
  1646. left: 0;
  1647. margin-left: -4px;
  1648. position: absolute;
  1649. top: 0.75em;
  1650. transition-property: background;
  1651. width: 6px;
  1652. transition-delay: 0s;
  1653. transition-duration: 0.2s;
  1654. transition-timing-function: ease-in-out;
  1655. }
  1656. .posts-collapse .post-header:hover {
  1657. border-bottom-color: #666;
  1658. }
  1659. .posts-collapse .post-header:hover::before {
  1660. background: #222;
  1661. }
  1662. .posts-collapse .post-meta {
  1663. display: inline;
  1664. font-size: 0.75em;
  1665. margin-right: 10px;
  1666. }
  1667. .posts-collapse .post-title {
  1668. display: inline;
  1669. font-size: 1em;
  1670. font-weight: normal;
  1671. }
  1672. .posts-collapse .post-title a,
  1673. .posts-collapse .post-title span.exturl {
  1674. border-bottom: none;
  1675. color: var(--link-color);
  1676. }
  1677. .posts-collapse::before {
  1678. background: #f5f5f5;
  1679. content: ' ';
  1680. height: 100%;
  1681. left: 0;
  1682. margin-left: -2px;
  1683. position: absolute;
  1684. top: 1.25em;
  1685. width: 4px;
  1686. }
  1687. .posts-collapse .fa-external-link {
  1688. font-size: 0.875em;
  1689. margin-left: 5px;
  1690. }
  1691. .post-eof {
  1692. background: #ccc;
  1693. height: 1px;
  1694. margin: 80px auto 60px;
  1695. text-align: center;
  1696. width: 8%;
  1697. }
  1698. .post-block:last-child .post-eof {
  1699. display: none;
  1700. }
  1701. .posts-expand {
  1702. padding-top: 40px;
  1703. }
  1704. @media (max-width: 767px) {
  1705. .posts-expand {
  1706. margin: 0 20px;
  1707. }
  1708. }
  1709. @media (min-width: 992px) {
  1710. .post-body {
  1711. text-align: justify;
  1712. }
  1713. }
  1714. @media (max-width: 991px) {
  1715. .post-body {
  1716. text-align: justify;
  1717. }
  1718. }
  1719. .post-body h1,
  1720. .post-body h2,
  1721. .post-body h3,
  1722. .post-body h4,
  1723. .post-body h5,
  1724. .post-body h6 {
  1725. padding-top: 10px;
  1726. }
  1727. .post-body h1 .header-anchor,
  1728. .post-body h2 .header-anchor,
  1729. .post-body h3 .header-anchor,
  1730. .post-body h4 .header-anchor,
  1731. .post-body h5 .header-anchor,
  1732. .post-body h6 .header-anchor {
  1733. border-bottom-style: none;
  1734. color: #ccc;
  1735. float: right;
  1736. margin-left: 10px;
  1737. visibility: hidden;
  1738. }
  1739. .post-body h1 .header-anchor:hover,
  1740. .post-body h2 .header-anchor:hover,
  1741. .post-body h3 .header-anchor:hover,
  1742. .post-body h4 .header-anchor:hover,
  1743. .post-body h5 .header-anchor:hover,
  1744. .post-body h6 .header-anchor:hover {
  1745. color: inherit;
  1746. }
  1747. .post-body h1:hover .header-anchor,
  1748. .post-body h2:hover .header-anchor,
  1749. .post-body h3:hover .header-anchor,
  1750. .post-body h4:hover .header-anchor,
  1751. .post-body h5:hover .header-anchor,
  1752. .post-body h6:hover .header-anchor {
  1753. visibility: visible;
  1754. }
  1755. .post-body iframe,
  1756. .post-body img,
  1757. .post-body video {
  1758. margin-bottom: 20px;
  1759. }
  1760. .post-body .video-container {
  1761. height: 0;
  1762. margin-bottom: 20px;
  1763. overflow: hidden;
  1764. padding-top: 75%;
  1765. position: relative;
  1766. width: 100%;
  1767. }
  1768. .post-body .video-container iframe,
  1769. .post-body .video-container object,
  1770. .post-body .video-container embed {
  1771. height: 100%;
  1772. left: 0;
  1773. margin: 0;
  1774. position: absolute;
  1775. top: 0;
  1776. width: 100%;
  1777. }
  1778. .post-gallery {
  1779. align-items: center;
  1780. display: grid;
  1781. grid-gap: 10px;
  1782. grid-template-columns: 1fr 1fr 1fr;
  1783. margin-bottom: 20px;
  1784. }
  1785. @media (max-width: 767px) {
  1786. .post-gallery {
  1787. grid-template-columns: 1fr 1fr;
  1788. }
  1789. }
  1790. .post-gallery a {
  1791. border: 0;
  1792. }
  1793. .post-gallery img {
  1794. margin: 0;
  1795. }
  1796. .posts-expand .post-header {
  1797. font-size: 1.125em;
  1798. }
  1799. .posts-expand .post-title {
  1800. font-weight: normal;
  1801. margin: initial;
  1802. text-align: center;
  1803. overflow-wrap: break-word;
  1804. word-wrap: break-word;
  1805. }
  1806. .posts-expand .post-title-link {
  1807. border-bottom: none;
  1808. color: var(--link-color);
  1809. display: inline-block;
  1810. position: relative;
  1811. vertical-align: top;
  1812. }
  1813. .posts-expand .post-title-link::before {
  1814. background: var(--link-color);
  1815. bottom: 0;
  1816. content: '';
  1817. height: 2px;
  1818. left: 0;
  1819. position: absolute;
  1820. transform: scaleX(0);
  1821. visibility: hidden;
  1822. width: 100%;
  1823. transition-delay: 0s;
  1824. transition-duration: 0.2s;
  1825. transition-timing-function: ease-in-out;
  1826. }
  1827. .posts-expand .post-title-link:hover::before {
  1828. transform: scaleX(1);
  1829. visibility: visible;
  1830. }
  1831. .posts-expand .post-title-link .fa {
  1832. font-size: 0.875em;
  1833. margin-left: 5px;
  1834. }
  1835. .posts-expand .post-meta {
  1836. color: #999;
  1837. font-family: 'Lato', "PingFang SC", "Microsoft YaHei", sans-serif;
  1838. font-size: 0.75em;
  1839. margin: 3px 0 60px 0;
  1840. text-align: center;
  1841. }
  1842. .posts-expand .post-meta .post-description {
  1843. font-size: 0.875em;
  1844. margin-top: 2px;
  1845. }
  1846. .posts-expand .post-meta time {
  1847. border-bottom: 1px dashed #999;
  1848. cursor: pointer;
  1849. }
  1850. .post-meta .post-meta-item + .post-meta-item::before {
  1851. content: '|';
  1852. margin: 0 0.5em;
  1853. }
  1854. .post-meta-divider {
  1855. margin: 0 0.5em;
  1856. }
  1857. .post-meta-item-icon {
  1858. margin-right: 3px;
  1859. }
  1860. @media (max-width: 991px) {
  1861. .post-meta-item-icon {
  1862. display: inline-block;
  1863. }
  1864. }
  1865. @media (max-width: 991px) {
  1866. .post-meta-item-text {
  1867. display: none;
  1868. }
  1869. }
  1870. .post-nav {
  1871. border-top: 1px solid #eee;
  1872. display: flex;
  1873. justify-content: space-between;
  1874. margin-top: 15px;
  1875. padding-top: 10px;
  1876. }
  1877. .post-nav-item {
  1878. flex: 1;
  1879. }
  1880. .post-nav-item a {
  1881. border-bottom: none;
  1882. display: block;
  1883. font-size: 0.875em;
  1884. line-height: 1.6;
  1885. position: relative;
  1886. }
  1887. .post-nav-item a:active {
  1888. top: 2px;
  1889. }
  1890. .post-nav-item .fa {
  1891. font-size: 0.75em;
  1892. }
  1893. .post-nav-item:first-child {
  1894. margin-right: 15px;
  1895. }
  1896. .post-nav-item:first-child a {
  1897. padding-left: 5px;
  1898. }
  1899. .post-nav-item:first-child .fa {
  1900. margin-right: 5px;
  1901. }
  1902. .post-nav-item:last-child {
  1903. margin-left: 15px;
  1904. text-align: right;
  1905. }
  1906. .post-nav-item:last-child a {
  1907. padding-right: 5px;
  1908. }
  1909. .post-nav-item:last-child .fa {
  1910. margin-left: 5px;
  1911. }
  1912. .rtl.post-body p,
  1913. .rtl.post-body a,
  1914. .rtl.post-body h1,
  1915. .rtl.post-body h2,
  1916. .rtl.post-body h3,
  1917. .rtl.post-body h4,
  1918. .rtl.post-body h5,
  1919. .rtl.post-body h6,
  1920. .rtl.post-body li,
  1921. .rtl.post-body ul,
  1922. .rtl.post-body ol {
  1923. direction: rtl;
  1924. font-family: UKIJ Ekran;
  1925. }
  1926. .rtl.post-title {
  1927. font-family: UKIJ Ekran;
  1928. }
  1929. .post-tags {
  1930. margin-top: 40px;
  1931. text-align: center;
  1932. }
  1933. .post-tags a {
  1934. display: inline-block;
  1935. font-size: 0.8125em;
  1936. }
  1937. .post-tags a:not(:last-child) {
  1938. margin-right: 10px;
  1939. }
  1940. .post-widgets {
  1941. border-top: 1px solid #eee;
  1942. margin-top: 15px;
  1943. text-align: center;
  1944. }
  1945. .wp_rating {
  1946. height: 20px;
  1947. line-height: 20px;
  1948. margin-top: 10px;
  1949. padding-top: 6px;
  1950. text-align: center;
  1951. }
  1952. .social-like {
  1953. display: flex;
  1954. font-size: 0.875em;
  1955. justify-content: center;
  1956. text-align: center;
  1957. }
  1958. .reward-container {
  1959. margin: 20px auto;
  1960. padding: 10px 0;
  1961. text-align: center;
  1962. width: 90%;
  1963. }
  1964. .reward-container button {
  1965. background: #ff2a2a;
  1966. border: 0;
  1967. border-radius: 5px;
  1968. color: #fff;
  1969. cursor: pointer;
  1970. line-height: 2;
  1971. outline: 0;
  1972. padding: 0 15px;
  1973. vertical-align: text-top;
  1974. }
  1975. .reward-container button:hover {
  1976. background: #f55;
  1977. }
  1978. #qr {
  1979. padding-top: 20px;
  1980. }
  1981. #qr a {
  1982. border: 0;
  1983. }
  1984. #qr img {
  1985. display: inline-block;
  1986. margin: 0.8em 2em 0 2em;
  1987. max-width: 100%;
  1988. width: 180px;
  1989. }
  1990. #qr p {
  1991. text-align: center;
  1992. }
  1993. .category-all-page .category-all-title {
  1994. text-align: center;
  1995. }
  1996. .category-all-page .category-all {
  1997. margin-top: 20px;
  1998. }
  1999. .category-all-page .category-list {
  2000. list-style: none;
  2001. margin: 0;
  2002. padding: 0;
  2003. }
  2004. .category-all-page .category-list-item {
  2005. margin: 5px 10px;
  2006. }
  2007. .category-all-page .category-list-count {
  2008. color: #bbb;
  2009. }
  2010. .category-all-page .category-list-count::before {
  2011. content: ' (';
  2012. display: inline;
  2013. }
  2014. .category-all-page .category-list-count::after {
  2015. content: ') ';
  2016. display: inline;
  2017. }
  2018. .category-all-page .category-list-child {
  2019. padding-left: 10px;
  2020. }
  2021. .event-list {
  2022. padding: 0;
  2023. }
  2024. .event-list hr {
  2025. background: #222;
  2026. margin: 20px 0 45px 0;
  2027. }
  2028. .event-list hr::after {
  2029. background: #222;
  2030. color: #fff;
  2031. content: 'NOW';
  2032. display: inline-block;
  2033. font-weight: bold;
  2034. padding: 0 5px;
  2035. text-align: right;
  2036. }
  2037. .event-list .event {
  2038. background: #222;
  2039. margin: 20px 0;
  2040. min-height: 40px;
  2041. padding: 15px 0 15px 10px;
  2042. }
  2043. .event-list .event .event-summary {
  2044. color: #fff;
  2045. margin: 0;
  2046. padding-bottom: 3px;
  2047. }
  2048. .event-list .event .event-summary::before {
  2049. animation: dot-flash 1s alternate infinite ease-in-out;
  2050. color: #fff;
  2051. content: '\f111';
  2052. display: inline-block;
  2053. font-family: 'FontAwesome';
  2054. font-size: 10px;
  2055. margin-right: 25px;
  2056. vertical-align: middle;
  2057. }
  2058. .event-list .event .event-relative-time {
  2059. color: #bbb;
  2060. display: inline-block;
  2061. font-size: 12px;
  2062. font-weight: normal;
  2063. padding-left: 12px;
  2064. }
  2065. .event-list .event .event-details {
  2066. color: #fff;
  2067. display: block;
  2068. line-height: 18px;
  2069. margin-left: 56px;
  2070. padding-bottom: 6px;
  2071. padding-top: 3px;
  2072. text-indent: -24px;
  2073. }
  2074. .event-list .event .event-details::before {
  2075. color: #fff;
  2076. display: inline-block;
  2077. font-family: 'FontAwesome';
  2078. margin-right: 9px;
  2079. text-align: center;
  2080. text-indent: 0;
  2081. width: 14px;
  2082. }
  2083. .event-list .event .event-details.event-location::before {
  2084. content: '\f041';
  2085. }
  2086. .event-list .event .event-details.event-duration::before {
  2087. content: '\f017';
  2088. }
  2089. .event-list .event-past {
  2090. background: #f5f5f5;
  2091. }
  2092. .event-list .event-past .event-summary,
  2093. .event-list .event-past .event-details {
  2094. color: #bbb;
  2095. opacity: 0.9;
  2096. }
  2097. .event-list .event-past .event-summary::before,
  2098. .event-list .event-past .event-details::before {
  2099. animation: none;
  2100. color: #bbb;
  2101. }
  2102. @-moz-keyframes dot-flash {
  2103. from {
  2104. opacity: 1;
  2105. transform: scale(1);
  2106. }
  2107. to {
  2108. opacity: 0;
  2109. transform: scale(0.8);
  2110. }
  2111. }
  2112. @-webkit-keyframes dot-flash {
  2113. from {
  2114. opacity: 1;
  2115. transform: scale(1);
  2116. }
  2117. to {
  2118. opacity: 0;
  2119. transform: scale(0.8);
  2120. }
  2121. }
  2122. @-o-keyframes dot-flash {
  2123. from {
  2124. opacity: 1;
  2125. transform: scale(1);
  2126. }
  2127. to {
  2128. opacity: 0;
  2129. transform: scale(0.8);
  2130. }
  2131. }
  2132. @keyframes dot-flash {
  2133. from {
  2134. opacity: 1;
  2135. transform: scale(1);
  2136. }
  2137. to {
  2138. opacity: 0;
  2139. transform: scale(0.8);
  2140. }
  2141. }
  2142. ul.breadcrumb {
  2143. font-size: 0.75em;
  2144. list-style: none;
  2145. margin: 1em 0;
  2146. padding: 0 2em;
  2147. text-align: center;
  2148. }
  2149. ul.breadcrumb li {
  2150. display: inline;
  2151. }
  2152. ul.breadcrumb li + li::before {
  2153. content: '/\00a0';
  2154. font-weight: normal;
  2155. padding: 0.5em;
  2156. }
  2157. ul.breadcrumb li + li:last-child {
  2158. font-weight: bold;
  2159. }
  2160. .tag-cloud {
  2161. text-align: center;
  2162. }
  2163. .tag-cloud a {
  2164. display: inline-block;
  2165. margin: 10px;
  2166. }
  2167. .tag-cloud a:hover {
  2168. color: #222 !important;
  2169. }
  2170. @media (max-width: 767px) {
  2171. .header-inner,
  2172. .main-inner,
  2173. .footer-inner {
  2174. width: auto;
  2175. }
  2176. }
  2177. .header-inner {
  2178. padding-top: 100px;
  2179. }
  2180. @media (max-width: 767px) {
  2181. .header-inner {
  2182. padding-top: 50px;
  2183. }
  2184. }
  2185. .main-inner {
  2186. padding-bottom: 60px;
  2187. }
  2188. .content {
  2189. padding-top: 70px;
  2190. }
  2191. @media (max-width: 767px) {
  2192. .content {
  2193. padding-top: 35px;
  2194. }
  2195. }
  2196. embed {
  2197. display: block;
  2198. margin: 0 auto 25px auto;
  2199. }
  2200. .custom-logo .site-meta-headline {
  2201. text-align: center;
  2202. }
  2203. .custom-logo .site-title {
  2204. color: #222;
  2205. margin: 10px auto 0;
  2206. }
  2207. .custom-logo .site-title a {
  2208. border: 0;
  2209. }
  2210. .custom-logo-image {
  2211. background: #fff;
  2212. margin: 0 auto;
  2213. max-width: 150px;
  2214. padding: 5px;
  2215. }
  2216. .brand {
  2217. background: #222;
  2218. }
  2219. @media (max-width: 767px) {
  2220. .site-nav {
  2221. border-bottom: 1px solid #ddd;
  2222. border-top: 1px solid #ddd;
  2223. left: 0;
  2224. margin: 0;
  2225. padding: 0;
  2226. width: 100%;
  2227. }
  2228. }
  2229. @media (max-width: 767px) {
  2230. .menu {
  2231. text-align: left;
  2232. }
  2233. }
  2234. .menu-item-active a,
  2235. .menu .menu-item a:hover,
  2236. .menu .menu-item span.exturl:hover {
  2237. background: transparent;
  2238. border-bottom: 1px solid var(--link-hover-color) !important;
  2239. }
  2240. @media (max-width: 767px) {
  2241. .menu-item-active a,
  2242. .menu .menu-item a:hover,
  2243. .menu .menu-item span.exturl:hover {
  2244. border-bottom: 1px dotted #ddd !important;
  2245. }
  2246. }
  2247. @media (max-width: 767px) {
  2248. .menu .menu-item {
  2249. margin: 0 10px;
  2250. }
  2251. }
  2252. .menu .menu-item a,
  2253. .menu .menu-item span.exturl {
  2254. border-bottom: 1px solid transparent;
  2255. }
  2256. @media (max-width: 767px) {
  2257. .menu .menu-item a,
  2258. .menu .menu-item span.exturl {
  2259. padding: 5px 10px;
  2260. }
  2261. }
  2262. @media (min-width: 768px) and (max-width: 991px) {
  2263. .menu .menu-item .fa {
  2264. display: block;
  2265. line-height: 2;
  2266. margin-right: 0;
  2267. width: 100%;
  2268. }
  2269. }
  2270. @media (min-width: 992px) {
  2271. .menu .menu-item .fa {
  2272. display: block;
  2273. line-height: 2;
  2274. margin-right: 0;
  2275. width: 100%;
  2276. }
  2277. }
  2278. .menu .menu-item .badge {
  2279. background: #eee;
  2280. padding: 1px 4px;
  2281. }
  2282. .sub-menu {
  2283. margin: 10px 0;
  2284. }
  2285. .sub-menu .menu-item {
  2286. display: inline-block;
  2287. }
  2288. .sidebar {
  2289. left: -320px;
  2290. }
  2291. .sidebar.sidebar-active {
  2292. left: 0;
  2293. }
  2294. .sidebar {
  2295. width: 320px;
  2296. z-index: 1200;
  2297. transition-delay: 0s;
  2298. transition-duration: 0.2s;
  2299. transition-timing-function: ease-out;
  2300. }
  2301. .sidebar a,
  2302. .sidebar span.exturl {
  2303. border-bottom-color: #555;
  2304. color: #999;
  2305. }
  2306. .sidebar a:hover,
  2307. .sidebar span.exturl:hover {
  2308. border-bottom-color: #eee;
  2309. color: #eee;
  2310. }
  2311. .links-of-blogroll-item {
  2312. padding: 2px 10px;
  2313. }
  2314. .links-of-blogroll-item a,
  2315. .links-of-blogroll-item span.exturl {
  2316. box-sizing: border-box;
  2317. display: inline-block;
  2318. max-width: 280px;
  2319. overflow: hidden;
  2320. text-overflow: ellipsis;
  2321. white-space: nowrap;
  2322. }