main.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211
  1. /* 更新日志*/
  2. .breadcrumb-box {
  3. float: left;
  4. min-width: 100px;
  5. font-size: 16px;
  6. text-align: left;
  7. }
  8. .breadcrumb-box span {
  9. padding: 0 15px;
  10. }
  11. .log-page {
  12. margin-bottom: 50px;
  13. }
  14. .update-content {
  15. margin-left: 100px;
  16. padding: 10px 60px;
  17. }
  18. .update-log {
  19. margin:auto;
  20. margin-top: 10px;
  21. max-width: 1200px;
  22. background-color: #f9f9f9;
  23. padding: 10px;
  24. border: 1px solid #ddd;
  25. border-radius: 5px;
  26. font-family: Arial, sans-serif;
  27. color: #333;
  28. }
  29. .update-log .update-log-link {
  30. width: 100%;
  31. float: left;
  32. display: block;
  33. }
  34. .update-log .login-out-link {
  35. float: left;
  36. color: #555;
  37. font-size: 12px;
  38. width: 30%;
  39. display: block;
  40. text-align: right;
  41. }
  42. .update-log .timestamp {
  43. color: #555;
  44. font-size: 12px;
  45. }
  46. .update-log .timestamp a {
  47. color: #ED9027;
  48. }
  49. .update-log .message {
  50. margin-top: 5px;
  51. font-size: 12px;
  52. padding-left: 20px;
  53. color: #555;
  54. }
  55. .update-log .highlight {
  56. color: #007BFF;
  57. text-decoration: none;
  58. font-size: 12px;
  59. }
  60. .update-log .log-date {
  61. border-bottom: 1px solid #ddd;
  62. padding:10px 0;
  63. }
  64. .update-log .log-date a {
  65. color: #555;
  66. }
  67. .update-log .log-line {
  68. padding: 10px 0;
  69. display: none;
  70. }
  71. .update-log .active {
  72. display: block;
  73. }
  74. /* Fonts START */
  75. @font-face {
  76. font-family: 'Roboto';
  77. src: local('Roboto Bold'), local('Roboto-Bold'),
  78. url('../fonts/Roboto-Bold.woff2') format('woff2');
  79. font-weight: 700;
  80. font-style: normal;
  81. font-display: swap;
  82. }
  83. @font-face {
  84. font-family: 'Roboto';
  85. src: local('Roboto Light'), local('Roboto-Light'),
  86. url('../fonts/Roboto-Light.woff2') format('woff2');
  87. font-weight: 300;
  88. font-style: normal;
  89. font-display: swap;
  90. }
  91. @font-face {
  92. font-family: 'Roboto';
  93. src: local('Roboto Black'), local('Roboto-Black'),
  94. url('../fonts/Roboto-Black.woff2') format('woff2');
  95. font-weight: 900;
  96. font-style: normal;
  97. font-display: swap;
  98. }
  99. @font-face {
  100. font-family: 'Roboto';
  101. src: local('Roboto Medium'), local('Roboto-Medium'),
  102. url('../fonts/Roboto-Medium.woff2') format('woff2');
  103. font-weight: 500;
  104. font-style: normal;
  105. font-display: swap;
  106. }
  107. @font-face {
  108. font-family: 'Roboto';
  109. src: local('Roboto'), local('Roboto-Regular'),
  110. url('../fonts/Roboto-Regular.woff2') format('woff2');
  111. font-weight: normal;
  112. font-style: normal;
  113. font-display: swap;
  114. }
  115. /* Fonts END */
  116. /* Global Styles START */
  117. :root {
  118. --color-def: #d97707;
  119. --color-2: #2B2C30;
  120. --color-1: #2a2832;
  121. --color-3: #2a1832;
  122. --color-4: #171521;
  123. --color-contact: #4c4d51;
  124. }
  125. * {
  126. box-sizing: border-box;
  127. }
  128. html, body {
  129. overflow-x: hidden;
  130. }
  131. body {
  132. font-family: 'Roboto';
  133. background-color: #ffffff;
  134. color: #fff;
  135. line-height: 1.5;
  136. margin: 0;
  137. padding: 0;
  138. min-width: 310px;
  139. position: relative;
  140. font-weight: 300;
  141. }
  142. input, label, textarea, button {
  143. font-family: 'Roboto';
  144. outline: none;
  145. }
  146. .menu-overlay {
  147. display: block;
  148. position: absolute;
  149. top: 0;
  150. left: 0;
  151. width: 100%;
  152. height: 100%;
  153. background-color: rgba(31, 29, 37, .8);
  154. z-index: 9;
  155. transition: 0.8s ease;
  156. transform: translateX(100%);
  157. }
  158. .menu-overlay__active {
  159. transform: none;
  160. }
  161. h1, h2, h3, h4, h5, h6, p {
  162. margin: 0;
  163. }
  164. p {
  165. margin-bottom: 20px;
  166. }
  167. h1 {
  168. font-size: 60px;
  169. font-weight: 300;
  170. }
  171. h2 {
  172. font-size: 24px;
  173. font-weight: 300;
  174. }
  175. .title-wrapper {
  176. margin: 0 auto 30px auto;
  177. /*max-width: 500px;*/
  178. }
  179. input, textarea, div {
  180. box-sizing: border-box;
  181. }
  182. .title {
  183. font-size: 32px;
  184. line-height: 52px;
  185. margin-bottom: 15px;
  186. text-transform: uppercase;
  187. }
  188. .subtitle {
  189. font-weight: 300;
  190. line-height: 1.6;
  191. margin-bottom: 25px;
  192. color: #bbb6b6;
  193. font-size: 18px;
  194. }
  195. a {
  196. color: #fff;
  197. text-decoration: none;
  198. }
  199. .uppercase {
  200. text-transform: uppercase;
  201. }
  202. .content {
  203. width: 100%;
  204. padding-left: 264px;
  205. overflow: hidden;
  206. }
  207. .content-inner {
  208. padding: 10px 60px;
  209. margin: 0 auto;
  210. }
  211. /* ====== Zoom effect ====== */
  212. .mfp-zoom-in {
  213. /* start state */
  214. /* animate in */
  215. /* animate out */
  216. }
  217. .mfp-zoom-in .mfp-with-anim {
  218. opacity: 0;
  219. transition: all 0.2s ease-in-out;
  220. transform: scale(0.8);
  221. }
  222. .mfp-zoom-in.mfp-bg {
  223. opacity: 0;
  224. transition: all 0.3s ease-out;
  225. }
  226. .mfp-zoom-in.mfp-ready .mfp-with-anim {
  227. opacity: 1;
  228. transform: scale(1);
  229. }
  230. .mfp-zoom-in.mfp-ready.mfp-bg {
  231. opacity: 0.8;
  232. }
  233. .mfp-zoom-in.mfp-removing .mfp-with-anim {
  234. transform: scale(0.8);
  235. opacity: 0;
  236. }
  237. .mfp-zoom-in.mfp-removing.mfp-bg {
  238. opacity: 0;
  239. }
  240. /* ====== Newspaper effect ====== */
  241. .mfp-newspaper {
  242. /* start state */
  243. /* animate in */
  244. /* animate out */
  245. }
  246. .mfp-newspaper .mfp-with-anim {
  247. opacity: 0;
  248. -webkit-transition: all 0.2s ease-in-out;
  249. transition: all 0.5s;
  250. transform: scale(0) rotate(500deg);
  251. }
  252. .mfp-newspaper.mfp-bg {
  253. opacity: 0;
  254. transition: all 0.5s;
  255. }
  256. .mfp-newspaper.mfp-ready .mfp-with-anim {
  257. opacity: 1;
  258. transform: scale(1) rotate(0deg);
  259. }
  260. .mfp-newspaper.mfp-ready.mfp-bg {
  261. opacity: 0.8;
  262. }
  263. .mfp-newspaper.mfp-removing .mfp-with-anim {
  264. transform: scale(0) rotate(500deg);
  265. opacity: 0;
  266. }
  267. .mfp-newspaper.mfp-removing.mfp-bg {
  268. opacity: 0;
  269. }
  270. /* ====== Move-horizontal effect ====== */
  271. .mfp-move-horizontal {
  272. /* start state */
  273. /* animate in */
  274. /* animate out */
  275. }
  276. .mfp-move-horizontal .mfp-with-anim {
  277. opacity: 0;
  278. transition: all 0.3s;
  279. transform: translateX(-50px);
  280. }
  281. .mfp-move-horizontal.mfp-bg {
  282. opacity: 0;
  283. transition: all 0.3s;
  284. }
  285. .mfp-move-horizontal.mfp-ready .mfp-with-anim {
  286. opacity: 1;
  287. transform: translateX(0);
  288. }
  289. .mfp-move-horizontal.mfp-ready.mfp-bg {
  290. opacity: 0.8;
  291. }
  292. .mfp-move-horizontal.mfp-removing .mfp-with-anim {
  293. transform: translateX(50px);
  294. opacity: 0;
  295. }
  296. .mfp-move-horizontal.mfp-removing.mfp-bg {
  297. opacity: 0;
  298. }
  299. /* ====== Move-from-top effect ====== */
  300. .mfp-move-from-top {
  301. /* start state */
  302. /* animate in */
  303. /* animate out */
  304. }
  305. .mfp-move-from-top .mfp-content {
  306. vertical-align: top;
  307. }
  308. .mfp-move-from-top .mfp-with-anim {
  309. opacity: 0;
  310. transition: all 0.2s;
  311. transform: translateY(-100px);
  312. }
  313. .mfp-move-from-top.mfp-bg {
  314. opacity: 0;
  315. transition: all 0.2s;
  316. }
  317. .mfp-move-from-top.mfp-ready .mfp-with-anim {
  318. opacity: 1;
  319. transform: translateY(0);
  320. }
  321. .mfp-move-from-top.mfp-ready.mfp-bg {
  322. opacity: 0.8;
  323. }
  324. .mfp-move-from-top.mfp-removing .mfp-with-anim {
  325. transform: translateY(-50px);
  326. opacity: 0;
  327. }
  328. .mfp-move-from-top.mfp-removing.mfp-bg {
  329. opacity: 0;
  330. }
  331. /* ====== 3d unfold ====== */
  332. .mfp-3d-unfold {
  333. /* start state */
  334. /* animate in */
  335. /* animate out */
  336. }
  337. .mfp-3d-unfold .mfp-content {
  338. perspective: 2000px;
  339. }
  340. .mfp-3d-unfold .mfp-with-anim {
  341. opacity: 0;
  342. transition: all 0.3s ease-in-out;
  343. transform-style: preserve-3d;
  344. transform: rotateY(-60deg);
  345. }
  346. .mfp-3d-unfold.mfp-bg {
  347. opacity: 0;
  348. transition: all 0.5s;
  349. }
  350. .mfp-3d-unfold.mfp-ready .mfp-with-anim {
  351. opacity: 1;
  352. transform: rotateY(0deg);
  353. }
  354. .mfp-3d-unfold.mfp-ready.mfp-bg {
  355. opacity: 0.8;
  356. }
  357. .mfp-3d-unfold.mfp-removing .mfp-with-anim {
  358. transform: rotateY(60deg);
  359. opacity: 0;
  360. }
  361. .mfp-3d-unfold.mfp-removing.mfp-bg {
  362. opacity: 0;
  363. }
  364. /* ====== Zoom-out effect ====== */
  365. .mfp-zoom-out {
  366. /* start state */
  367. /* animate in */
  368. /* animate out */
  369. }
  370. .mfp-zoom-out .mfp-with-anim {
  371. opacity: 0;
  372. transition: all 0.3s ease-in-out;
  373. transform: scale(1.3);
  374. }
  375. .mfp-zoom-out.mfp-bg {
  376. opacity: 0;
  377. transition: all 0.3s ease-out;
  378. }
  379. .mfp-zoom-out.mfp-ready .mfp-with-anim {
  380. opacity: 1;
  381. transform: scale(1);
  382. }
  383. .mfp-zoom-out.mfp-ready.mfp-bg {
  384. opacity: 0.8;
  385. }
  386. .mfp-zoom-out.mfp-removing .mfp-with-anim {
  387. transform: scale(1.3);
  388. opacity: 0;
  389. }
  390. .mfp-zoom-out.mfp-removing.mfp-bg {
  391. opacity: 0;
  392. }
  393. .mfp-with-fade .mfp-content, .mfp-with-fade.mfp-bg {
  394. opacity: 0;
  395. transition: opacity .5s ease-out;
  396. }
  397. .mfp-with-fade.mfp-ready .mfp-content {
  398. opacity: 1;
  399. }
  400. .mfp-with-fade.mfp-ready.mfp-bg {
  401. opacity: 0.8;
  402. }
  403. .mfp-with-fade.mfp-removing.mfp-bg {
  404. opacity: 0;
  405. }
  406. .text-center {
  407. text-align: center;
  408. }
  409. .color-white {
  410. color: #fff;
  411. }
  412. .prz-custom-cursor {
  413. background-repeat: no-repeat;
  414. background-size: contain;
  415. }
  416. .wow {
  417. animation-duration: 1.5s;
  418. }
  419. /* Global Styles END */
  420. /* Settings START */
  421. .settings-wrap {
  422. position: fixed;
  423. top: 50%;
  424. transform: translateY(-50%) translateX(calc(100% - 50px));
  425. right: 0;
  426. z-index: 15;
  427. display: flex;
  428. align-items: center;
  429. transition: 0.5s ease;
  430. }
  431. .settings-wrap.is-active {
  432. transform: translateY(-50%);
  433. }
  434. .settings-btn {
  435. color: var(--color-1);
  436. background-color: #fff;
  437. display: flex;
  438. justify-content: center;
  439. align-items: center;
  440. width: 50px;
  441. height: 50px;
  442. cursor: pointer;
  443. font-size: 22px;
  444. }
  445. .settings-btn i {
  446. animation: rotate 7s linear infinite;
  447. }
  448. @keyframes rotate {
  449. from {
  450. transform: rotate(0deg);
  451. }
  452. to {
  453. transform: rotate(360deg);
  454. }
  455. }
  456. .settings-content {
  457. background-color: #413f4b;
  458. color: #fff;
  459. min-width: 300px;
  460. padding: 30px 20px;
  461. }
  462. .settings-title {
  463. font-size: 18px;
  464. font-weight: 700;
  465. margin-bottom: 10px;
  466. }
  467. .settings-color-wrap {
  468. display: flex;
  469. column-gap: 10px;
  470. }
  471. .settings-color-item {
  472. width: 30px;
  473. height: 30px;
  474. display: inline-block;
  475. cursor: pointer;
  476. border: 1px solid #fff;
  477. }
  478. .settings-color-item.color-1 {
  479. background-color: var(--color-1);
  480. }
  481. .settings-color-item.color-2 {
  482. background-color: var(--color-2);
  483. }
  484. .settings-color-item.color-3 {
  485. background-color: var(--color-3);
  486. }
  487. .settings-color-item.color-4 {
  488. background-color: var(--color-4);
  489. }
  490. /* Settings END */
  491. /* Sidebar START */
  492. .sidebar-logo {
  493. position: absolute;
  494. top: 30px;
  495. left: 50px;
  496. z-index: 1;
  497. text-align: center;
  498. }
  499. .sidebar-logo img {
  500. max-width: 100px;
  501. }
  502. .sidebar-logo span {
  503. margin-top: 10px;
  504. display: block;
  505. font-size: 14px;
  506. color: #ffffff;
  507. position: relative;
  508. left: -4px;
  509. }
  510. .sidebar-logo:hover {
  511. color: #fff;
  512. }
  513. .menu-wrap {
  514. position: fixed;
  515. left: 0;
  516. top: 0;
  517. height: 100%;
  518. box-shadow: 0px 0px 15.3px 1.7px rgba(0, 0, 0, 0.34);
  519. z-index: 11;
  520. transition: 0.5s ease;
  521. transform: translateX(-100%);
  522. overflow-y: auto;
  523. -ms-overflow-style: none;
  524. scrollbar-width: none;
  525. background-color:var(--color-def);
  526. }
  527. .menu-nav {
  528. padding: 50px;
  529. padding-top: 140px;
  530. transition: 0.5s ease;
  531. opacity: 0;
  532. transform: translateX(-100%);
  533. z-index: 0;
  534. position: relative;
  535. min-width: 248px;
  536. }
  537. @media screen and (min-height: 610px) {
  538. .menu-nav {
  539. height: 100%;
  540. }
  541. }
  542. .menu-nav::before {
  543. content: '';
  544. display: block;
  545. position: absolute;
  546. top: 0;
  547. left: 0;
  548. width: 100%;
  549. height: 100%;
  550. background-color: var(--color-def);
  551. transition: 0.8s ease;
  552. transform: translateX(-100%);
  553. z-index: -1;
  554. }
  555. .menu-nav ul {
  556. padding: 0;
  557. margin: 0;
  558. }
  559. .menu-nav ul li {
  560. list-style-type: none;
  561. }
  562. .menu-nav ul li:nth-last-child(n+1) a {
  563. margin-bottom: 15px;
  564. }
  565. .menu-nav ul a {
  566. text-transform: uppercase;
  567. text-decoration: none;
  568. font-weight: 300;
  569. font-size: 16px;
  570. display: block;
  571. letter-spacing: 2px;
  572. position: relative;
  573. transition: 0.5s ease;
  574. }
  575. .menu-nav ul a:hover {
  576. transform: translateX(15px);
  577. color: #ffffff;
  578. }
  579. .menu-nav ul a:hover:before {
  580. opacity: 1;
  581. }
  582. .menu-nav ul a::before {
  583. content: '\f054';
  584. font: normal normal normal 15px/1 "FontAwesome";
  585. display: inline-block;
  586. transition: 0.5s ease;
  587. opacity: 0;
  588. margin-left: -15px;
  589. position: absolute;
  590. left: -15px;
  591. top: 50%;
  592. transform: translateY(-50%);
  593. }
  594. .menu-nav .menu-contacts {
  595. margin-top: 50px;
  596. }
  597. .menu-nav .menu-contacts .menu-contacts__item {
  598. display: flex;
  599. align-items: center;
  600. font-size: 16px;
  601. letter-spacing: 0;
  602. color: #fff;
  603. opacity: 0.5;
  604. transition: opacity 0.8s ease;
  605. }
  606. .menu-nav .menu-contacts .menu-contacts__item:hover {
  607. opacity: 1;
  608. }
  609. .menu-nav .menu-contacts .menu-contacts__icon {
  610. display: inline-block;
  611. margin-right: 15px;
  612. min-width: 20px;
  613. text-align: center;
  614. }
  615. .menu-nav .menu-contacts .menu-contacts__icon i {
  616. display: inline-block;
  617. font-size: 20px;
  618. }
  619. .menu-nav .menu-contacts .menu-contacts__item p {
  620. margin-bottom: 0;
  621. }
  622. .menu-nav .menu-contacts .menu-contacts__item:nth-last-child(n+2) {
  623. margin-bottom: 25px;
  624. }
  625. .menu-nav .menu-social {
  626. display: flex;
  627. column-gap: 10px;
  628. margin-top: 50px;
  629. margin-left: -10px;
  630. }
  631. .menu-nav .menu-social a {
  632. font-size: 24px;
  633. display: flex;
  634. flex-direction: column;
  635. align-items: center;
  636. justify-content: center;
  637. color: rgba(255, 255, 255, 0.7);
  638. transition: 0.7s ease;
  639. border: 2px solid transparent;
  640. width: 40px;
  641. height: 40px;
  642. border-radius: 50%;
  643. }
  644. .menu-nav .menu-social a i {
  645. font-size: 18px;
  646. }
  647. .menu-nav .menu-social a:hover {
  648. color: #fff;
  649. border: 2px solid #fff;
  650. }
  651. .menu-close__wrap {
  652. margin-top: 10px;
  653. }
  654. .menu-close {
  655. display: flex;
  656. flex-direction: column;
  657. justify-content: center;
  658. height: 50px;
  659. width: 70px;
  660. position: relative;
  661. }
  662. .menu-close:hover img {
  663. margin-left: -20px;
  664. }
  665. .menu-close img {
  666. width: 40px;
  667. transition: 0.5s ease;
  668. }
  669. .menu-active {
  670. transform: none;
  671. }
  672. .menu-item-active {
  673. opacity: 1;
  674. transform: none;
  675. }
  676. .menu-item-active::before {
  677. transform: none;
  678. }
  679. .def-row {
  680. display: flex;
  681. }
  682. .sidebar {
  683. position: absolute;
  684. left: 0;
  685. top: 0;
  686. z-index: 9;
  687. background-color: var(--color-def);
  688. height: 100%;
  689. padding: 30px 20px;
  690. }
  691. .sidebar .logo {
  692. display: block;
  693. }
  694. .sidebar .logo img {
  695. width: 47px;
  696. display: block;
  697. }
  698. .sidebar .hamburger-button {
  699. display: block;
  700. position: fixed;
  701. top: 50%;
  702. transform: translateY(-50%);
  703. width: 42px;
  704. }
  705. .sidebar .hamburger-button:hover span:nth-child(1) {
  706. width: 22px;
  707. }
  708. .sidebar .hamburger-button:hover span:nth-child(2) {
  709. width: 32px;
  710. }
  711. .sidebar .hamburger-button:hover span:nth-child(3) {
  712. width: 42px;
  713. }
  714. .sidebar .hamburger-button span {
  715. display: block;
  716. height: 1px;
  717. background-color: #fff;
  718. }
  719. .sidebar .hamburger-button span:nth-last-child(n+2) {
  720. margin-bottom: 10px;
  721. }
  722. .sidebar .hamburger-button span:nth-child(1) {
  723. width: 42px;
  724. transition: 0.3s ease;
  725. }
  726. .sidebar .hamburger-button span:nth-child(2) {
  727. width: 32px;
  728. }
  729. .sidebar .hamburger-button span:nth-child(3) {
  730. width: 22px;
  731. transition: 0.5s ease;
  732. }
  733. /* Sidebar END */
  734. /* Banner START */
  735. .prelodaer-wrap {
  736. position: fixed;
  737. top: 0;
  738. left: 0;
  739. width: 100%;
  740. height: 100%;
  741. background-color: #8e9093;
  742. z-index: 99;
  743. animation: preloader 1.8s 3s ease forwards;
  744. }
  745. .preloader-item {
  746. display: flex;
  747. justify-content: center;
  748. align-items: center;
  749. height: 100%;
  750. position: relative;
  751. z-index: 0;
  752. }
  753. .preloader-item::after {
  754. content: '';
  755. display: block;
  756. position: absolute;
  757. top: 0;
  758. left: 0;
  759. width: 100%;
  760. height: 100%;
  761. background-color: var(--color-def);
  762. transform: translateX(100%);
  763. animation: overlay 2s 0.1s ease forwards;
  764. z-index: -1;
  765. }
  766. .preloader-item img {
  767. max-width: 120px;
  768. display: block;
  769. transform: translateX(100%);
  770. opacity: 0;
  771. animation: overlay 2s 0.5s ease forwards;
  772. }
  773. @keyframes overlay {
  774. from {
  775. transform: translateX(100%);
  776. opacity: 0;
  777. }
  778. to {
  779. transform: none;
  780. opacity: 1;
  781. }
  782. }
  783. @keyframes img {
  784. from {
  785. transform: translateX(100%);
  786. }
  787. to {
  788. transform: none;
  789. }
  790. }
  791. @keyframes preloader {
  792. from {
  793. transform: translateX(0);
  794. }
  795. to {
  796. transform: translateX(-100%);
  797. }
  798. }
  799. .home {
  800. height: 100vh;
  801. }
  802. .swiper-banner .swiper-slide {
  803. padding: 70px 70px 70px 0;
  804. }
  805. .banner-item {
  806. height: calc(100vh - 140px);
  807. padding: 150px 70px 70px 70px;
  808. display: flex;
  809. flex-direction: column;
  810. justify-content: center;
  811. position: relative;
  812. z-index: 0;
  813. background-repeat: no-repeat;
  814. background-size: cover;
  815. box-shadow: 0px 4px 4px rgba(34, 32, 32, 0.1);
  816. }
  817. .banner-item::before {
  818. content: '';
  819. display: block;
  820. position: absolute;
  821. top: 0;
  822. left: 0;
  823. width: 100%;
  824. height: 100%;
  825. background-color: rgba(65, 54, 54, 0.5);
  826. z-index: -1;
  827. }
  828. .banner-content {
  829. max-width: 650px;
  830. }
  831. .banner-title-mini {
  832. font-size: 14px;
  833. display: inline-block;
  834. margin-bottom: 10px;
  835. }
  836. .banner-title-mini::before {
  837. content: '';
  838. display: inline-block;
  839. height: 1px;
  840. width: 30px;
  841. background-color: #fff;
  842. margin-right: 20px;
  843. vertical-align: middle;
  844. }
  845. .banner-title {
  846. font-size: 45px;
  847. line-height: 55px;
  848. font-weight: 700;
  849. margin-bottom: 20px;
  850. }
  851. .banner-desc {
  852. color: #f0eded;
  853. font-size: 16px;
  854. line-height: 24px;
  855. max-width: 550px;
  856. }
  857. .animeslide-slide.swiper-slide-active [data-animate] {
  858. opacity: 1;
  859. transform: none;
  860. }
  861. .animeslide-slide.swiper-slide-active .banner-title-mini {
  862. transition-delay: 0.3s;
  863. }
  864. .animeslide-slide.swiper-slide-active .banner-title {
  865. transition-delay: 0.6s;
  866. }
  867. .animeslide-slide.swiper-slide-active .banner-desc {
  868. transition-delay: 0.9s;
  869. }
  870. .animeslide-slide.swiper-slide-active .banner-btn {
  871. transition-delay: 1.2s;
  872. }
  873. .animeslide-slide.swiper-slide-active .banner-right img {
  874. transition-delay: 1.6s;
  875. }
  876. .animeslide-slide.swiper-slide-active .banner-right::before {
  877. transition-delay: 1.8s;
  878. transition-duration: 0.8s;
  879. opacity: 1;
  880. }
  881. [data-animate] {
  882. opacity: 0;
  883. transition: all 0.8s ease-out;
  884. }
  885. [data-animate="bottom"] {
  886. transform: translate3d(0, 15px, 0);
  887. }
  888. .banner-nav-wrap {
  889. background-color: var(--color-def);
  890. display: flex;
  891. align-items: center;
  892. column-gap: 20px;
  893. position: absolute;
  894. bottom: 70px;
  895. right: 70px;
  896. z-index: 1;
  897. height: 60px;
  898. width: 400px;
  899. padding: 0 20px;
  900. }
  901. .banner-btn a {}
  902. .swiper-banner .swiper-button-next, .swiper-rtl .swiper-button-prev,
  903. .swiper-banner .swiper-button-prev, .swiper-rtl .swiper-button-next,
  904. .swiper-banner .swiper-scrollbar {
  905. color: #fff;
  906. position: static;
  907. margin: 0;
  908. }
  909. .swiper-banner .swiper-button-next::after, .swiper-rtl .swiper-button-prev::after,
  910. .swiper-banner .swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  911. font-size: 22px !important;
  912. }
  913. .swiper-banner .swiper-scrollbar-drag {
  914. background-color: #c5c5ca;
  915. }
  916. /* Banner END */
  917. /* Contact page START */
  918. .contact-title {
  919. max-width: 600px;
  920. margin: 0 auto;
  921. }
  922. .contact-content {
  923. padding: 100px 0 100px 88px;
  924. min-height: 100vh;
  925. position: relative;
  926. z-index: 0;
  927. background-size: cover;
  928. background-repeat: no-repeat;
  929. display: flex;
  930. align-items: center;
  931. }
  932. .contact-content::before {
  933. content: '';
  934. position: absolute;
  935. top: 0;
  936. left: 0;
  937. width: 100%;
  938. height: 100%;
  939. z-index: -1;
  940. background-color: var(--color-def);
  941. opacity: 0.7;
  942. }
  943. .contact-content .title-center {
  944. max-width: 700px;
  945. margin: 0 auto 50px auto;
  946. }
  947. .contact-row {
  948. display: flex;
  949. align-items: center;
  950. justify-content: center;
  951. column-gap: 40px;
  952. }
  953. .s-contact .left {
  954. padding: 60px 40px 40px 40px;
  955. background-color: #333335;
  956. width: 400px;
  957. font-weight: 300;
  958. }
  959. .s-contact .left label,
  960. .s-contact .left input,
  961. .s-contact .left textarea {
  962. display: block;
  963. font-size: 16px;
  964. color: #fff;
  965. font-weight: 300;
  966. transition: 0.35s ease;
  967. }
  968. .s-contact .left input,
  969. .s-contact .left textarea {
  970. background-color: transparent;
  971. border: 1px solid #797a7d;
  972. padding: 10px 20px;
  973. width: 100%;
  974. margin-bottom: 10px;
  975. }
  976. .s-contact .left label {
  977. background-color: #3c3a3a;
  978. display: inline-block;
  979. position: absolute;
  980. top: -10px;
  981. left: 10px;
  982. padding-left: 10px;
  983. padding-right: 10px;
  984. transition: 0.5s ease;
  985. color: #bab9b9;
  986. font-size: 14px;
  987. }
  988. .input-field {
  989. position: relative;
  990. margin-bottom: 30px;
  991. }
  992. .input-field:hover input,
  993. .input-field:hover textarea {
  994. border-color: #fff;
  995. }
  996. .input-field:hover label {
  997. color: #fff;
  998. }
  999. .input-field input:focus,
  1000. .input-field textarea:focus {
  1001. border-color: #fff;
  1002. }
  1003. .input-field input:focus ~ label,
  1004. .input-field textarea:focus ~ label {
  1005. color: #fff;
  1006. }
  1007. .input-field.is-active label {
  1008. color: #fff;
  1009. }
  1010. .input-field.is-active input,
  1011. .input-field.is-active textarea {
  1012. border-color: #fff;
  1013. }
  1014. .s-contact .button-field {
  1015. text-align: center;
  1016. }
  1017. .s-contact .left button {
  1018. background-color: #707174;
  1019. color: #fff;
  1020. border: none;
  1021. display: inline-block;
  1022. font-weight: 300;
  1023. padding: 15px 50px;
  1024. font-size: 16px;
  1025. text-transform: uppercase;
  1026. font-weight: 300;
  1027. cursor: pointer;
  1028. overflow: hidden;
  1029. position: relative;
  1030. z-index: 0;
  1031. transition: 0.5s ease;
  1032. }
  1033. .s-contact .left button:hover::after {
  1034. transform: none;
  1035. }
  1036. .s-contact .left button::after {
  1037. content: '';
  1038. display: block;
  1039. position: absolute;
  1040. background-color: #636467;
  1041. top: 0;
  1042. left: 0;
  1043. width: 100%;
  1044. height: 100%;
  1045. z-index: -1;
  1046. transition: 0.5s ease;
  1047. transform: translateY(-100%);
  1048. }
  1049. .contact-info-item {
  1050. display: flex;
  1051. font-size: 18px;
  1052. margin-bottom: 20px;
  1053. }
  1054. .contact-info-title {
  1055. font-size: 20px;
  1056. font-weight: 400;
  1057. margin-bottom: 5px;
  1058. }
  1059. .contact-info-icon {
  1060. margin-right: 15px;
  1061. min-width: 24px;
  1062. text-align: center;
  1063. font-size: 20px;
  1064. }
  1065. .contact-social {
  1066. margin-top: 50px;
  1067. }
  1068. .contact-social-title {
  1069. margin-bottom: 15px;
  1070. font-size: 20px;
  1071. font-weight: 400;
  1072. }
  1073. .contact-social-row {
  1074. display: flex;
  1075. column-gap: 10px;
  1076. margin-left: -10px;
  1077. }
  1078. .contact-social-row a {
  1079. font-size: 24px;
  1080. display: flex;
  1081. flex-direction: column;
  1082. align-items: center;
  1083. justify-content: center;
  1084. color: rgba(255, 255, 255, 0.7);
  1085. transition: 0.7s ease;
  1086. border: 2px solid transparent;
  1087. width: 40px;
  1088. height: 40px;
  1089. border-radius: 50%;
  1090. }
  1091. .contact-social-row a i {
  1092. font-size: 18px;
  1093. }
  1094. .contact-social-row a:hover {
  1095. color: #fff;
  1096. border: 2px solid #fff;
  1097. }
  1098. .mfp-bg {
  1099. opacity: .6;
  1100. }
  1101. .form-alert {
  1102. max-width: 370px;
  1103. margin: auto;
  1104. text-align: center;
  1105. background: #39393c;
  1106. padding: 50px 30px;
  1107. position: relative;
  1108. }
  1109. .form-alert p {
  1110. margin-bottom: 0;
  1111. }
  1112. .mfp-close-btn-in .mfp-close {
  1113. color: #fff !important;
  1114. }
  1115. /* Contact page END */
  1116. /* Album START */
  1117. .gallery-content {
  1118. min-height: 1000px;
  1119. }
  1120. .grid-album {
  1121. display: none;
  1122. }
  1123. .grid-album.is-active {
  1124. display: block;
  1125. }
  1126. .album-tab {
  1127. display: flex;
  1128. justify-content: left;
  1129. flex-wrap: wrap;
  1130. column-gap: 15px;
  1131. margin-bottom: 30px;
  1132. }
  1133. .album-tab a {
  1134. border: 2px solid #ccc;
  1135. border-radius: 30px;
  1136. display: inline-block;
  1137. padding: 5px 25px;
  1138. transition: 0.5s ease;
  1139. margin-bottom: 15px;
  1140. color: #000;
  1141. }
  1142. .album-tab a:hover {
  1143. background-color: #fff;
  1144. color: #000;
  1145. }
  1146. .album-tab a.is-active {
  1147. background-color: #ED9027;
  1148. border: 2px solid #ED9027;
  1149. color: #000;
  1150. font-weight: 500;
  1151. }
  1152. .album-item a:hover .album-thumb img {
  1153. transform: scale(1.1);
  1154. }
  1155. .album-thumb {
  1156. margin-bottom: 10px;
  1157. overflow: hidden;
  1158. }
  1159. .album-thumb img {
  1160. width: 100%;
  1161. height: 100%;
  1162. display: block;
  1163. transition: transform 1s ease;
  1164. }
  1165. .album-name {
  1166. font-size: 22px;
  1167. font-weight: 500;
  1168. margin-bottom: 5px;
  1169. white-space: nowrap; /* 防止文字换行 */
  1170. overflow: hidden; /* 隐藏超出部分 */
  1171. text-overflow: ellipsis; /* 超出部分显示为省略号 */
  1172. max-width: 100%; /* 设置最大宽度 */
  1173. }
  1174. .album-desc {
  1175. color: #c8c6c6;
  1176. margin-bottom: 20px;
  1177. white-space: nowrap; /* 防止文字换行 */
  1178. overflow: hidden; /* 隐藏超出部分 */
  1179. text-overflow: ellipsis; /* 超出部分显示为省略号 */
  1180. max-width: 100%; /* 设置最大宽度 */
  1181. }
  1182. .grid-album::after {
  1183. content: '';
  1184. display: block;
  1185. clear: both;
  1186. }
  1187. .grid-album .grid-sizer,
  1188. .grid-album .grid-item {
  1189. width: calc(24% - 18px);
  1190. margin-bottom: 15px;
  1191. }
  1192. .grid-album .grid-item {
  1193. float: left;
  1194. z-index: 0;
  1195. overflow: hidden;
  1196. }
  1197. /* Album END */
  1198. /* Gallery START */
  1199. .grid-single {
  1200. border-bottom: 1px solid #464545;
  1201. padding-bottom: 50px;
  1202. }
  1203. .grid-single::after {
  1204. content: '';
  1205. display: block;
  1206. clear: both;
  1207. }
  1208. .grid-single .grid-sizer,
  1209. .grid-single .grid-item {
  1210. width: calc(25% - 15px);
  1211. margin-bottom: 15px;
  1212. }
  1213. .grid-single .grid-item {
  1214. float: left;
  1215. z-index: 0;
  1216. overflow: hidden;
  1217. }
  1218. .grid-single .grid-item:hover a::before,
  1219. .grid-single .grid-item:hover a::after {
  1220. opacity: 1;
  1221. }
  1222. .grid-single .grid-item img {
  1223. display: block;
  1224. width: 100%;
  1225. transition: 0.35s ease;
  1226. }
  1227. .gallery-wrap {
  1228. padding: 30px 0;
  1229. }
  1230. .gallery-wrap .def-title-wrapper {
  1231. text-align: center;
  1232. }
  1233. .b-lazy {
  1234. -webkit-transition: opacity 500ms ease-in-out;
  1235. -moz-transition: opacity 500ms ease-in-out;
  1236. -o-transition: opacity 500ms ease-in-out;
  1237. transition: opacity 500ms ease-in-out;
  1238. max-width: 100%;
  1239. opacity: 0;
  1240. }
  1241. .b-lazy.b-loaded {
  1242. opacity: 1;
  1243. }
  1244. .grid-nav-wrap {
  1245. display: flex;
  1246. justify-content: center;
  1247. align-items: center;
  1248. margin-top: 35px;
  1249. column-gap: 30px;
  1250. }
  1251. .grid-nav-wrap a {
  1252. display: inline-block;
  1253. padding: 10px 25px;
  1254. background-color: #383636;
  1255. font-weight: 300;
  1256. font-size: 16px;
  1257. transition: background-color 0.35s ease;
  1258. vertical-align: middle;
  1259. }
  1260. .grid-nav-wrap a:hover {
  1261. background-color: #545050;
  1262. }
  1263. /* Gallery END */
  1264. /* About page START */
  1265. .about-content {
  1266. padding: 60px 0 100px 100px;
  1267. position: relative;
  1268. z-index: 0;
  1269. background-size: cover;
  1270. background-repeat: no-repeat;
  1271. }
  1272. .about-content::before {
  1273. content: '';
  1274. position: absolute;
  1275. top: 0;
  1276. left: 0;
  1277. width: 100%;
  1278. height: 100%;
  1279. z-index: -1;
  1280. background-color: var(--color-def);
  1281. opacity: 0.8;
  1282. }
  1283. .about-content .content-inner {
  1284. max-width: 1000px;
  1285. padding: 0 20px;
  1286. }
  1287. .s-about .sub-title {
  1288. font-size: 18px;
  1289. margin-bottom: 15px;
  1290. font-weight: 500;
  1291. }
  1292. .about-desc {
  1293. line-height: 1.7;
  1294. }
  1295. .about-desc {
  1296. color: #ccc9c9;
  1297. }
  1298. .about-content .left-avatar {
  1299. height: 500px;
  1300. overflow: hidden;
  1301. margin-bottom: 30px;
  1302. }
  1303. .about-content .right {
  1304. max-width: 800px;
  1305. }
  1306. .about-content .left img {
  1307. width: 100%;
  1308. height: 100%;
  1309. object-fit: cover;
  1310. display: block;
  1311. }
  1312. .link-portfolio {
  1313. display: flex;
  1314. align-items: center;
  1315. font-weight: 300;
  1316. margin-top: 40px;
  1317. border-left: 1px solid #fff;
  1318. padding-left: 10px;
  1319. padding-top: 10px;
  1320. padding-bottom: 10px;
  1321. position: relative;
  1322. width: 200px;
  1323. overflow: hidden;
  1324. }
  1325. .link-portfolio:hover img {
  1326. transform: translateX(40%);
  1327. }
  1328. .link-portfolio:hover::before, .link-portfolio:hover::after {
  1329. width: 100%;
  1330. }
  1331. .link-portfolio:hover .right-border {
  1332. height: 100%;
  1333. }
  1334. .link-portfolio img {
  1335. margin-left: 15px;
  1336. width: 35px;
  1337. transition: 0.5s ease;
  1338. }
  1339. .link-portfolio::before, .link-portfolio::after {
  1340. content: '';
  1341. display: block;
  1342. position: absolute;
  1343. transition: 0.5s ease;
  1344. height: 1px;
  1345. width: 0;
  1346. background-color: #fff;
  1347. }
  1348. .link-portfolio::before {
  1349. top: 0;
  1350. left: 0;
  1351. }
  1352. .link-portfolio::after {
  1353. bottom: 0;
  1354. right: 0;
  1355. }
  1356. .link-portfolio .right-border {
  1357. display: block;
  1358. position: absolute;
  1359. transition: 0.5s ease;
  1360. height: 0;
  1361. width: 1px;
  1362. background-color: #fff;
  1363. right: 0;
  1364. bottom: 0;
  1365. }
  1366. /* About page END */
  1367. /* Footer START */
  1368. .site-footer {
  1369. padding: 20px 20px 20px 110px;
  1370. }
  1371. .footer-copyright {
  1372. text-align: center;
  1373. color: #2a2832;
  1374. }
  1375. /* Footer END */
  1376. .menu-nav .menu-nav-son {
  1377. display: block;
  1378. }
  1379. /*.menu-nav .menu-nav-son .menu-nav-son2 {*/
  1380. /* display: none;*/
  1381. /*}*/
  1382. .menu-nav .son-active {
  1383. display: block;
  1384. }
  1385. .menu-nav .menu-nav-son li {
  1386. padding-left: 20px;
  1387. }
  1388. .menu-nav .menu-nav-son li a{
  1389. font-size: 14px;
  1390. }
  1391. /* 图片容器 */
  1392. .album-thumb {
  1393. position: relative;
  1394. overflow: hidden;
  1395. }
  1396. /* 图片样式 */
  1397. .album-thumb img {
  1398. width: 100%;
  1399. height: auto;
  1400. display: block;
  1401. transition: transform 0.3s ease;
  1402. }
  1403. /* 遮罩层文字样式 */
  1404. .album-mask .album-name {
  1405. font-size: 18px;
  1406. font-weight: bold;
  1407. margin-bottom: 10px;
  1408. }
  1409. .album-mask .album-desc {
  1410. font-size: 14px;
  1411. text-align: center;
  1412. }
  1413. /* 鼠标悬停时图片放大效果 */
  1414. .album-thumb:hover img {
  1415. transform: scale(1.1);
  1416. }
  1417. .gallery-album .album-name {
  1418. font-size: 18px;
  1419. text-align: center;
  1420. }
  1421. .gallery-album .album-desc {
  1422. font-size: 14px;
  1423. text-align: center;
  1424. }
  1425. /*
  1426. * 产品详情css
  1427. */
  1428. /* 图片容器 */
  1429. .album-thumb {
  1430. position: relative;
  1431. overflow: hidden;
  1432. cursor: pointer;
  1433. }
  1434. /* 图片样式 */
  1435. .album-thumb img {
  1436. width: 100%;
  1437. height: auto;
  1438. display: block;
  1439. transition: transform 0.3s ease;
  1440. }
  1441. /* 遮罩层 */
  1442. .album-mask {
  1443. position: absolute;
  1444. top: 0;
  1445. left: 0;
  1446. width: 100%;
  1447. height: 100%;
  1448. background: rgba(0, 0, 0, 0.5);
  1449. opacity: 0;
  1450. transition: opacity 0.3s ease;
  1451. display: flex;
  1452. justify-content: flex-end;
  1453. align-items: flex-end;
  1454. padding: 10px;
  1455. }
  1456. /* 鼠标悬停时显示遮罩层 */
  1457. .album-thumb:hover .album-mask {
  1458. opacity: 1;
  1459. }
  1460. /* 下载图标样式 */
  1461. .download-icon {
  1462. color: #fff;
  1463. font-size: 24px;
  1464. text-decoration: none;
  1465. transition: color 0.3s ease;
  1466. }
  1467. .download-icon:hover {
  1468. color: #007bff;
  1469. }
  1470. /* 全屏遮罩层 */
  1471. .fullscreen-mask {
  1472. position: fixed;
  1473. top: 0;
  1474. left: 0;
  1475. width: 100%;
  1476. height: 100%;
  1477. background: rgba(0, 0, 0, 0.8);
  1478. display: flex;
  1479. justify-content: center;
  1480. align-items: center;
  1481. z-index: 1000;
  1482. opacity: 0;
  1483. visibility: hidden;
  1484. transition: opacity 0.3s ease, visibility 0.3s ease;
  1485. }
  1486. /* 全屏图片 */
  1487. .fullscreen-mask img {
  1488. max-width: 80%;
  1489. max-height: 90%;
  1490. transform: scale(0.8);
  1491. transition: transform 0.3s ease;
  1492. }
  1493. /* 全屏按钮样式 */
  1494. .fullscreen-btn {
  1495. position: absolute;
  1496. top: 50%;
  1497. transform: translateY(-50%);
  1498. color: #ffffff;
  1499. font-size: 56px;
  1500. cursor: pointer;
  1501. z-index: 999;
  1502. }
  1503. .fullscreen-btn:hover {
  1504. color: #007bff;
  1505. }
  1506. .fullscreen-btn-left {
  1507. left: 10px;
  1508. }
  1509. .fullscreen-btn-right {
  1510. right: 10px;
  1511. }
  1512. /* 显示全屏遮罩层 */
  1513. .fullscreen-mask.active {
  1514. opacity: 1;
  1515. visibility: visible;
  1516. }
  1517. /* 全屏图片放大 */
  1518. .fullscreen-mask.active img {
  1519. transform: scale(1);
  1520. }
  1521. .gallery-album-line {
  1522. width: 100%;
  1523. border-bottom: 1px solid #ccc;
  1524. margin-bottom: 30px;
  1525. font-size: 16px;
  1526. text-align: right;
  1527. line-height: 40px;
  1528. height: 40px;
  1529. }
  1530. .gallery-album-line a{
  1531. color: #000;
  1532. }
  1533. .gallery-album-prev {
  1534. float: left;
  1535. color: #333;
  1536. }
  1537. .gallery-album-line .gallery-album-prev {
  1538. color: #000;
  1539. }
  1540. /*表格样式*/
  1541. table.album_table {
  1542. width: 100%;
  1543. border-collapse: collapse;
  1544. margin: 20px 0px 30px;
  1545. }
  1546. table.album_table th, table.album_table tr {
  1547. border-bottom: 1px solid #ccc;
  1548. }
  1549. table.album_table th, table.album_table td {
  1550. padding: 12px;
  1551. text-align: left;
  1552. }
  1553. table.album_table th {
  1554. color: #555;
  1555. font-weight: bold;
  1556. font-size: 16px;
  1557. }
  1558. table.album_table td {
  1559. color: #555;
  1560. }
  1561. table.album_table img {
  1562. max-height: 200px;
  1563. border-radius: 5px;
  1564. }
  1565. table.album_table button {
  1566. background-color: #d97707;
  1567. color: white;
  1568. border: none;
  1569. padding: 8px 12px;
  1570. border-radius: 4px;
  1571. cursor: pointer;
  1572. transition: background-color 0.3s ease;
  1573. }
  1574. table.album_table button:hover {
  1575. background-color: #d97707;
  1576. }
  1577. /* 视频遮罩层样式 */
  1578. .overlay {
  1579. display: none;
  1580. position: fixed;
  1581. top: 0;
  1582. left: 0;
  1583. width: 100%;
  1584. height: 100%;
  1585. background: rgba(0, 0, 0, 0.89);
  1586. justify-content: center;
  1587. align-items: center;
  1588. z-index: 1000;
  1589. }
  1590. .video-container {
  1591. position: relative;
  1592. width: 80%;
  1593. max-width: 800px;
  1594. }
  1595. video {
  1596. width: 100%;
  1597. height: auto;
  1598. }
  1599. .close-btn {
  1600. position: absolute;
  1601. top: -30px;
  1602. right: -30px;
  1603. background: red;
  1604. color: white;
  1605. border: none;
  1606. padding: 10px;
  1607. cursor: pointer;
  1608. border-radius: 50%;
  1609. }
  1610. .download-btn {
  1611. margin-left: 10px;
  1612. }
  1613. .search-wrapper {
  1614. width: 100%;
  1615. margin-bottom: 30px;
  1616. text-align: right;
  1617. height: 47px;
  1618. }
  1619. .search-box {
  1620. position: relative;
  1621. float: left;
  1622. box-sizing: border-box;
  1623. }
  1624. /* 搜索输入框 */
  1625. .search-box .srch-iput {
  1626. border: 1px solid #DDD;
  1627. border-radius: 50px;
  1628. background: url("/static/images/search.png") center no-repeat;
  1629. color: #999;
  1630. transition: all .5s;
  1631. width: 30px;
  1632. padding: 7.5px 15px;
  1633. font-size: 12px
  1634. }
  1635. .search-box:hover .srch-iput {
  1636. border: 1px solid #DDD;
  1637. width: 200px;
  1638. background: url("/static/images/search.png") right no-repeat;
  1639. padding: 7.5px 15px
  1640. }
  1641. /* 搜索图标 */
  1642. .search-box .fa-search {
  1643. color: #888;
  1644. font-size: 18px;
  1645. cursor: pointer;
  1646. }
  1647. /* 鼠标悬停时图标颜色变化 */
  1648. .search-box .fa-search:hover {
  1649. color: #888;
  1650. }
  1651. #videoPlayer {
  1652. max-height: 600px;
  1653. }
  1654. /* iframe 主体内容 */
  1655. .main-body{
  1656. background-color:#ffffff;
  1657. }
  1658. .main-body .album-thumb {
  1659. border:2px solid #ccc;
  1660. width: 100%;
  1661. min-height: 340px;
  1662. }
  1663. .main-body .album-thumb-gallery {
  1664. height: calc(24% - 18px);
  1665. }
  1666. .main-body {
  1667. color: #2a2832;
  1668. }
  1669. .main-body .album-name {
  1670. color: #2a2832;
  1671. }
  1672. .main-body .album-desc {
  1673. color: #2a2832;
  1674. }
  1675. .main-body .update-content {
  1676. margin-left: 0px;
  1677. }
  1678. .main-body .update-content .update-log {
  1679. max-width: none;
  1680. }
  1681. .is-hidden {
  1682. visibility: hidden;
  1683. }
  1684. .fullscreen-btn-download {
  1685. position: absolute;
  1686. bottom: 35px;
  1687. right: 20px;
  1688. font-size: 24px;
  1689. cursor: pointer;
  1690. color: #ffffff;
  1691. background-color: rgba(0, 0, 0, 0.5);
  1692. padding: 10px;
  1693. border-radius: 50%;
  1694. top: 90%;
  1695. }
  1696. .clear {
  1697. clear: both;
  1698. }
  1699. .menu-login-out {
  1700. margin-top: 10px;
  1701. left: 25px;
  1702. }
  1703. .layui-layer-content {
  1704. color: #2B2C30;
  1705. }
  1706. .layui-layer-btn .layui-layer-btn0 {
  1707. background-color: #45a049;
  1708. }
  1709. @media screen and (max-width: 1440px) {
  1710. .main-body .album-thumb {
  1711. min-height: 231px;
  1712. }
  1713. }
  1714. /* Responsive START */
  1715. @media screen and (max-width: 1024px) {
  1716. .container-full {
  1717. padding: 0 20px;
  1718. }
  1719. .grid-single .grid-sizer,
  1720. .grid-single .grid-item {
  1721. width: calc(33% - 15px);
  1722. }
  1723. .main-body .album-thumb-gallery {
  1724. height: calc(33% - 15px);
  1725. }
  1726. .main-body .album-thumb {
  1727. min-height: 197px;
  1728. }
  1729. }
  1730. @media screen and (max-width: 992px) {
  1731. /* Sidebar 992 START */
  1732. .menu-nav {
  1733. padding-top: 120px;
  1734. }
  1735. /* Sidebar 992 END */
  1736. /* Banner 992 START */
  1737. .swiper-banner .swiper-slide {
  1738. padding: 30px 30px 30px 0;
  1739. }
  1740. .banner-item {
  1741. padding: 150px 50px 70px 50px;
  1742. height: auto;
  1743. }
  1744. .banner-nav-wrap {
  1745. bottom: 30px;
  1746. right: 30px;
  1747. }
  1748. /* Banner 992 END */
  1749. /* About 992 START */
  1750. .about-content {
  1751. padding: 40px 0 100px 100px;
  1752. }
  1753. /* About 992 END */
  1754. /* Contact page 992 START */
  1755. .contact-row {
  1756. flex-direction: column;
  1757. }
  1758. .s-contact .left {
  1759. margin-bottom: 30px;
  1760. }
  1761. /* Contact page 992 END */
  1762. .breadcrumb-box {
  1763. margin-bottom: 3px;
  1764. }
  1765. .search-box {
  1766. left: -2px;
  1767. }
  1768. .grid-album .grid-sizer,
  1769. .grid-album .grid-item {
  1770. width: calc(33.3% - 25px);
  1771. }
  1772. .main-body .album-thumb-gallery {
  1773. height: calc(33.3% - 25px);
  1774. }
  1775. }
  1776. @media screen and (max-width: 768px) {
  1777. /* Sidebar 768 START */
  1778. .sidebar {
  1779. height: auto;
  1780. width: 100%;
  1781. padding: 10px 20px;
  1782. display: flex;
  1783. justify-content: space-between;
  1784. align-items: center;
  1785. }
  1786. .sidebar .hamburger-button {
  1787. top: 0;
  1788. right: 0;
  1789. transform: none;
  1790. position: static;
  1791. }
  1792. .sidebar .logo {
  1793. position: static;
  1794. }
  1795. .content {
  1796. padding-left: 0;
  1797. margin-top: 52px;
  1798. }
  1799. /* Sidebar 768 END */
  1800. /* Banner 768 START */
  1801. .swiper-banner .swiper-slide {
  1802. padding: 0;
  1803. }
  1804. .banner-nav-wrap {
  1805. bottom: 0;
  1806. right: 0;
  1807. }
  1808. .banner-title {
  1809. font-size: 32px;
  1810. line-height: 42px;
  1811. }
  1812. .banner-item {
  1813. padding: 100px 40px 150px 40px;
  1814. height: calc(100vh - 52px);
  1815. background-position: center center;
  1816. }
  1817. /* Banner 768 END */
  1818. /* Album 768 START */
  1819. .gallery-wrap {
  1820. margin-left: 0;
  1821. }
  1822. .gallery-wrap .content-inner {
  1823. padding: 0 40px;
  1824. }
  1825. .grid-album .grid-sizer,
  1826. .grid-album .grid-item {
  1827. width: calc(50% - 10px);
  1828. }
  1829. /* Album 768 END */
  1830. /* Contact page 768 START */
  1831. .contact-content {
  1832. padding: 100px 40px;
  1833. }
  1834. /* Contact page 768 END */
  1835. /* Footer 768 START */
  1836. .site-footer {
  1837. padding: 20px;
  1838. }
  1839. .footer-copyright {
  1840. font-size: 14px;
  1841. }
  1842. /* Footer 768 END */
  1843. .update-content {
  1844. padding: 10px 10px;
  1845. }
  1846. .album_table .void-img{width: 100px;}
  1847. .grid-album .grid-sizer,
  1848. .grid-album .grid-item {
  1849. width: calc(33.3% - 25px);
  1850. }
  1851. .main-body .album-thumb-gallery {
  1852. height: calc(33.3% - 25px);
  1853. }
  1854. }
  1855. @media screen and (max-width: 575px) {
  1856. /* Global 575 START */
  1857. .title {
  1858. font-size: 40px;
  1859. margin-bottom: 10px;
  1860. }
  1861. .subtitle {
  1862. font-size: 16px;
  1863. }
  1864. .preloader-item img {
  1865. max-width: 80px;
  1866. }
  1867. /* Global 575 END */
  1868. .grid-single .grid-sizer,
  1869. .grid-single .grid-item {
  1870. width: calc(50% - 10px);
  1871. margin-bottom: 10px;
  1872. }
  1873. /* About 575 START */
  1874. .about-content .left-avatar {
  1875. height: 340px;
  1876. }
  1877. /* About 575 END */
  1878. /* Album 575 START */
  1879. .gallery-wrap .content-inner {
  1880. padding: 0 20px;
  1881. }
  1882. .grid-album .grid-sizer,
  1883. .grid-album .grid-item {
  1884. width: 100%;
  1885. }
  1886. /* Album 575 END */
  1887. /* Gallery single 575 START */
  1888. .grid-single {
  1889. padding-bottom: 50px;
  1890. }
  1891. /* Gallery single 575 END */
  1892. /* Contact page 575 START */
  1893. .contact-content {
  1894. padding: 110px 20px 50px 20px;
  1895. }
  1896. .s-contact .left {
  1897. width: 100%;
  1898. max-width: 400px;
  1899. padding: 40px 20px;
  1900. }
  1901. /* Contact page 575 END */
  1902. .update-content {
  1903. padding: 10px 10px;
  1904. }
  1905. .breadcrumb-box {
  1906. padding: 5px 0px;
  1907. float: left;
  1908. min-width:auto;
  1909. }
  1910. .album_table .void-img{width: 100px;}
  1911. .grid-album .grid-sizer,
  1912. .grid-album .grid-item {
  1913. width: 100%;
  1914. }
  1915. .main-body .album-thumb {
  1916. min-height: 530px;
  1917. }
  1918. }
  1919. @media screen and (max-width: 480px) {
  1920. /* Sidebar 480 START */
  1921. .sidebar {
  1922. padding: 8px 20px;
  1923. }
  1924. .sidebar-logo {
  1925. top: 20px;
  1926. left: 25px;
  1927. }
  1928. .sidebar .logo img {
  1929. width: 40px;
  1930. }
  1931. .sidebar .hamburger-button span:nth-last-child(n+2) {
  1932. margin-bottom: 9px;
  1933. }
  1934. .menu-nav {
  1935. padding: 130px 25px 25px 25px;
  1936. }
  1937. .menu-nav ul a {
  1938. font-size: 18px;
  1939. }
  1940. .menu-close__wrap {
  1941. left: 25px;
  1942. }
  1943. .menu-nav .menu-contacts {
  1944. margin-top: 50px;
  1945. }
  1946. .menu-nav .menu-social {
  1947. margin-top: 50px;
  1948. }
  1949. /* Sidebar 480 END */
  1950. /* Banner 480 START */
  1951. .banner-item {
  1952. padding: 60px 30px 100px 30px;
  1953. }
  1954. .banner-nav-wrap {
  1955. width: 100%;
  1956. max-width: 400px;
  1957. }
  1958. /* Banner 480 END */
  1959. .grid-album .grid-sizer,
  1960. .grid-album .grid-item {
  1961. width: 100%;
  1962. }
  1963. .main-body .album-thumb {
  1964. min-height: 436px;
  1965. }
  1966. }
  1967. /* Responsive END */