main.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190
  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: #ED9027;
  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. }
  498. .sidebar-logo img {
  499. max-width: 100px;
  500. }
  501. .menu-wrap {
  502. position: fixed;
  503. left: 0;
  504. top: 0;
  505. height: 100%;
  506. box-shadow: 0px 0px 15.3px 1.7px rgba(0, 0, 0, 0.34);
  507. z-index: 11;
  508. transition: 0.5s ease;
  509. transform: translateX(-100%);
  510. overflow-y: auto;
  511. -ms-overflow-style: none;
  512. scrollbar-width: none;
  513. background-color:var(--color-def);
  514. }
  515. .menu-nav {
  516. padding: 50px;
  517. padding-top: 120px;
  518. transition: 0.5s ease;
  519. opacity: 0;
  520. transform: translateX(-100%);
  521. z-index: 0;
  522. position: relative;
  523. min-width: 248px;
  524. }
  525. @media screen and (min-height: 610px) {
  526. .menu-nav {
  527. height: 100%;
  528. }
  529. }
  530. .menu-nav::before {
  531. content: '';
  532. display: block;
  533. position: absolute;
  534. top: 0;
  535. left: 0;
  536. width: 100%;
  537. height: 100%;
  538. background-color: var(--color-def);
  539. transition: 0.8s ease;
  540. transform: translateX(-100%);
  541. z-index: -1;
  542. }
  543. .menu-nav ul {
  544. padding: 0;
  545. margin: 0;
  546. }
  547. .menu-nav ul li {
  548. list-style-type: none;
  549. }
  550. .menu-nav ul li:nth-last-child(n+1) a {
  551. margin-bottom: 15px;
  552. }
  553. .menu-nav ul a {
  554. text-transform: uppercase;
  555. text-decoration: none;
  556. font-weight: 300;
  557. font-size: 16px;
  558. display: block;
  559. letter-spacing: 2px;
  560. position: relative;
  561. transition: 0.5s ease;
  562. }
  563. .menu-nav ul a:hover {
  564. transform: translateX(15px);
  565. color: #ffffff;
  566. }
  567. .menu-nav ul a:hover:before {
  568. opacity: 1;
  569. }
  570. .menu-nav ul a::before {
  571. content: '\f054';
  572. font: normal normal normal 15px/1 "FontAwesome";
  573. display: inline-block;
  574. transition: 0.5s ease;
  575. opacity: 0;
  576. margin-left: -15px;
  577. position: absolute;
  578. left: -15px;
  579. top: 50%;
  580. transform: translateY(-50%);
  581. }
  582. .menu-nav .menu-contacts {
  583. margin-top: 50px;
  584. }
  585. .menu-nav .menu-contacts .menu-contacts__item {
  586. display: flex;
  587. align-items: center;
  588. font-size: 16px;
  589. letter-spacing: 0;
  590. color: #fff;
  591. opacity: 0.5;
  592. transition: opacity 0.8s ease;
  593. }
  594. .menu-nav .menu-contacts .menu-contacts__item:hover {
  595. opacity: 1;
  596. }
  597. .menu-nav .menu-contacts .menu-contacts__icon {
  598. display: inline-block;
  599. margin-right: 15px;
  600. min-width: 20px;
  601. text-align: center;
  602. }
  603. .menu-nav .menu-contacts .menu-contacts__icon i {
  604. display: inline-block;
  605. font-size: 20px;
  606. }
  607. .menu-nav .menu-contacts .menu-contacts__item p {
  608. margin-bottom: 0;
  609. }
  610. .menu-nav .menu-contacts .menu-contacts__item:nth-last-child(n+2) {
  611. margin-bottom: 25px;
  612. }
  613. .menu-nav .menu-social {
  614. display: flex;
  615. column-gap: 10px;
  616. margin-top: 50px;
  617. margin-left: -10px;
  618. }
  619. .menu-nav .menu-social a {
  620. font-size: 24px;
  621. display: flex;
  622. flex-direction: column;
  623. align-items: center;
  624. justify-content: center;
  625. color: rgba(255, 255, 255, 0.7);
  626. transition: 0.7s ease;
  627. border: 2px solid transparent;
  628. width: 40px;
  629. height: 40px;
  630. border-radius: 50%;
  631. }
  632. .menu-nav .menu-social a i {
  633. font-size: 18px;
  634. }
  635. .menu-nav .menu-social a:hover {
  636. color: #fff;
  637. border: 2px solid #fff;
  638. }
  639. .menu-close__wrap {
  640. margin-top: 10px;
  641. }
  642. .menu-close {
  643. display: flex;
  644. flex-direction: column;
  645. justify-content: center;
  646. height: 50px;
  647. width: 70px;
  648. position: relative;
  649. }
  650. .menu-close:hover img {
  651. margin-left: -20px;
  652. }
  653. .menu-close img {
  654. width: 40px;
  655. transition: 0.5s ease;
  656. }
  657. .menu-active {
  658. transform: none;
  659. }
  660. .menu-item-active {
  661. opacity: 1;
  662. transform: none;
  663. }
  664. .menu-item-active::before {
  665. transform: none;
  666. }
  667. .def-row {
  668. display: flex;
  669. }
  670. .sidebar {
  671. position: absolute;
  672. left: 0;
  673. top: 0;
  674. z-index: 9;
  675. background-color: var(--color-def);
  676. height: 100%;
  677. padding: 30px 20px;
  678. }
  679. .sidebar .logo {
  680. display: block;
  681. }
  682. .sidebar .logo img {
  683. width: 47px;
  684. display: block;
  685. }
  686. .sidebar .hamburger-button {
  687. display: block;
  688. position: fixed;
  689. top: 50%;
  690. transform: translateY(-50%);
  691. width: 42px;
  692. }
  693. .sidebar .hamburger-button:hover span:nth-child(1) {
  694. width: 22px;
  695. }
  696. .sidebar .hamburger-button:hover span:nth-child(2) {
  697. width: 32px;
  698. }
  699. .sidebar .hamburger-button:hover span:nth-child(3) {
  700. width: 42px;
  701. }
  702. .sidebar .hamburger-button span {
  703. display: block;
  704. height: 1px;
  705. background-color: #fff;
  706. }
  707. .sidebar .hamburger-button span:nth-last-child(n+2) {
  708. margin-bottom: 10px;
  709. }
  710. .sidebar .hamburger-button span:nth-child(1) {
  711. width: 42px;
  712. transition: 0.3s ease;
  713. }
  714. .sidebar .hamburger-button span:nth-child(2) {
  715. width: 32px;
  716. }
  717. .sidebar .hamburger-button span:nth-child(3) {
  718. width: 22px;
  719. transition: 0.5s ease;
  720. }
  721. /* Sidebar END */
  722. /* Banner START */
  723. .prelodaer-wrap {
  724. position: fixed;
  725. top: 0;
  726. left: 0;
  727. width: 100%;
  728. height: 100%;
  729. background-color: #8e9093;
  730. z-index: 99;
  731. animation: preloader 1.8s 3s ease forwards;
  732. }
  733. .preloader-item {
  734. display: flex;
  735. justify-content: center;
  736. align-items: center;
  737. height: 100%;
  738. position: relative;
  739. z-index: 0;
  740. }
  741. .preloader-item::after {
  742. content: '';
  743. display: block;
  744. position: absolute;
  745. top: 0;
  746. left: 0;
  747. width: 100%;
  748. height: 100%;
  749. background-color: var(--color-def);
  750. transform: translateX(100%);
  751. animation: overlay 2s 0.1s ease forwards;
  752. z-index: -1;
  753. }
  754. .preloader-item img {
  755. max-width: 120px;
  756. display: block;
  757. transform: translateX(100%);
  758. opacity: 0;
  759. animation: overlay 2s 0.5s ease forwards;
  760. }
  761. @keyframes overlay {
  762. from {
  763. transform: translateX(100%);
  764. opacity: 0;
  765. }
  766. to {
  767. transform: none;
  768. opacity: 1;
  769. }
  770. }
  771. @keyframes img {
  772. from {
  773. transform: translateX(100%);
  774. }
  775. to {
  776. transform: none;
  777. }
  778. }
  779. @keyframes preloader {
  780. from {
  781. transform: translateX(0);
  782. }
  783. to {
  784. transform: translateX(-100%);
  785. }
  786. }
  787. .home {
  788. height: 100vh;
  789. }
  790. .swiper-banner .swiper-slide {
  791. padding: 70px 70px 70px 0;
  792. }
  793. .banner-item {
  794. height: calc(100vh - 140px);
  795. padding: 150px 70px 70px 70px;
  796. display: flex;
  797. flex-direction: column;
  798. justify-content: center;
  799. position: relative;
  800. z-index: 0;
  801. background-repeat: no-repeat;
  802. background-size: cover;
  803. box-shadow: 0px 4px 4px rgba(34, 32, 32, 0.1);
  804. }
  805. .banner-item::before {
  806. content: '';
  807. display: block;
  808. position: absolute;
  809. top: 0;
  810. left: 0;
  811. width: 100%;
  812. height: 100%;
  813. background-color: rgba(65, 54, 54, 0.5);
  814. z-index: -1;
  815. }
  816. .banner-content {
  817. max-width: 650px;
  818. }
  819. .banner-title-mini {
  820. font-size: 14px;
  821. display: inline-block;
  822. margin-bottom: 10px;
  823. }
  824. .banner-title-mini::before {
  825. content: '';
  826. display: inline-block;
  827. height: 1px;
  828. width: 30px;
  829. background-color: #fff;
  830. margin-right: 20px;
  831. vertical-align: middle;
  832. }
  833. .banner-title {
  834. font-size: 45px;
  835. line-height: 55px;
  836. font-weight: 700;
  837. margin-bottom: 20px;
  838. }
  839. .banner-desc {
  840. color: #f0eded;
  841. font-size: 16px;
  842. line-height: 24px;
  843. max-width: 550px;
  844. }
  845. .animeslide-slide.swiper-slide-active [data-animate] {
  846. opacity: 1;
  847. transform: none;
  848. }
  849. .animeslide-slide.swiper-slide-active .banner-title-mini {
  850. transition-delay: 0.3s;
  851. }
  852. .animeslide-slide.swiper-slide-active .banner-title {
  853. transition-delay: 0.6s;
  854. }
  855. .animeslide-slide.swiper-slide-active .banner-desc {
  856. transition-delay: 0.9s;
  857. }
  858. .animeslide-slide.swiper-slide-active .banner-btn {
  859. transition-delay: 1.2s;
  860. }
  861. .animeslide-slide.swiper-slide-active .banner-right img {
  862. transition-delay: 1.6s;
  863. }
  864. .animeslide-slide.swiper-slide-active .banner-right::before {
  865. transition-delay: 1.8s;
  866. transition-duration: 0.8s;
  867. opacity: 1;
  868. }
  869. [data-animate] {
  870. opacity: 0;
  871. transition: all 0.8s ease-out;
  872. }
  873. [data-animate="bottom"] {
  874. transform: translate3d(0, 15px, 0);
  875. }
  876. .banner-nav-wrap {
  877. background-color: var(--color-def);
  878. display: flex;
  879. align-items: center;
  880. column-gap: 20px;
  881. position: absolute;
  882. bottom: 70px;
  883. right: 70px;
  884. z-index: 1;
  885. height: 60px;
  886. width: 400px;
  887. padding: 0 20px;
  888. }
  889. .banner-btn a {}
  890. .swiper-banner .swiper-button-next, .swiper-rtl .swiper-button-prev,
  891. .swiper-banner .swiper-button-prev, .swiper-rtl .swiper-button-next,
  892. .swiper-banner .swiper-scrollbar {
  893. color: #fff;
  894. position: static;
  895. margin: 0;
  896. }
  897. .swiper-banner .swiper-button-next::after, .swiper-rtl .swiper-button-prev::after,
  898. .swiper-banner .swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  899. font-size: 22px !important;
  900. }
  901. .swiper-banner .swiper-scrollbar-drag {
  902. background-color: #c5c5ca;
  903. }
  904. /* Banner END */
  905. /* Contact page START */
  906. .contact-title {
  907. max-width: 600px;
  908. margin: 0 auto;
  909. }
  910. .contact-content {
  911. padding: 100px 0 100px 88px;
  912. min-height: 100vh;
  913. position: relative;
  914. z-index: 0;
  915. background-size: cover;
  916. background-repeat: no-repeat;
  917. display: flex;
  918. align-items: center;
  919. }
  920. .contact-content::before {
  921. content: '';
  922. position: absolute;
  923. top: 0;
  924. left: 0;
  925. width: 100%;
  926. height: 100%;
  927. z-index: -1;
  928. background-color: var(--color-def);
  929. opacity: 0.7;
  930. }
  931. .contact-content .title-center {
  932. max-width: 700px;
  933. margin: 0 auto 50px auto;
  934. }
  935. .contact-row {
  936. display: flex;
  937. align-items: center;
  938. justify-content: center;
  939. column-gap: 40px;
  940. }
  941. .s-contact .left {
  942. padding: 60px 40px 40px 40px;
  943. background-color: #333335;
  944. width: 400px;
  945. font-weight: 300;
  946. }
  947. .s-contact .left label,
  948. .s-contact .left input,
  949. .s-contact .left textarea {
  950. display: block;
  951. font-size: 16px;
  952. color: #fff;
  953. font-weight: 300;
  954. transition: 0.35s ease;
  955. }
  956. .s-contact .left input,
  957. .s-contact .left textarea {
  958. background-color: transparent;
  959. border: 1px solid #797a7d;
  960. padding: 10px 20px;
  961. width: 100%;
  962. margin-bottom: 10px;
  963. }
  964. .s-contact .left label {
  965. background-color: #3c3a3a;
  966. display: inline-block;
  967. position: absolute;
  968. top: -10px;
  969. left: 10px;
  970. padding-left: 10px;
  971. padding-right: 10px;
  972. transition: 0.5s ease;
  973. color: #bab9b9;
  974. font-size: 14px;
  975. }
  976. .input-field {
  977. position: relative;
  978. margin-bottom: 30px;
  979. }
  980. .input-field:hover input,
  981. .input-field:hover textarea {
  982. border-color: #fff;
  983. }
  984. .input-field:hover label {
  985. color: #fff;
  986. }
  987. .input-field input:focus,
  988. .input-field textarea:focus {
  989. border-color: #fff;
  990. }
  991. .input-field input:focus ~ label,
  992. .input-field textarea:focus ~ label {
  993. color: #fff;
  994. }
  995. .input-field.is-active label {
  996. color: #fff;
  997. }
  998. .input-field.is-active input,
  999. .input-field.is-active textarea {
  1000. border-color: #fff;
  1001. }
  1002. .s-contact .button-field {
  1003. text-align: center;
  1004. }
  1005. .s-contact .left button {
  1006. background-color: #707174;
  1007. color: #fff;
  1008. border: none;
  1009. display: inline-block;
  1010. font-weight: 300;
  1011. padding: 15px 50px;
  1012. font-size: 16px;
  1013. text-transform: uppercase;
  1014. font-weight: 300;
  1015. cursor: pointer;
  1016. overflow: hidden;
  1017. position: relative;
  1018. z-index: 0;
  1019. transition: 0.5s ease;
  1020. }
  1021. .s-contact .left button:hover::after {
  1022. transform: none;
  1023. }
  1024. .s-contact .left button::after {
  1025. content: '';
  1026. display: block;
  1027. position: absolute;
  1028. background-color: #636467;
  1029. top: 0;
  1030. left: 0;
  1031. width: 100%;
  1032. height: 100%;
  1033. z-index: -1;
  1034. transition: 0.5s ease;
  1035. transform: translateY(-100%);
  1036. }
  1037. .contact-info-item {
  1038. display: flex;
  1039. font-size: 18px;
  1040. margin-bottom: 20px;
  1041. }
  1042. .contact-info-title {
  1043. font-size: 20px;
  1044. font-weight: 400;
  1045. margin-bottom: 5px;
  1046. }
  1047. .contact-info-icon {
  1048. margin-right: 15px;
  1049. min-width: 24px;
  1050. text-align: center;
  1051. font-size: 20px;
  1052. }
  1053. .contact-social {
  1054. margin-top: 50px;
  1055. }
  1056. .contact-social-title {
  1057. margin-bottom: 15px;
  1058. font-size: 20px;
  1059. font-weight: 400;
  1060. }
  1061. .contact-social-row {
  1062. display: flex;
  1063. column-gap: 10px;
  1064. margin-left: -10px;
  1065. }
  1066. .contact-social-row a {
  1067. font-size: 24px;
  1068. display: flex;
  1069. flex-direction: column;
  1070. align-items: center;
  1071. justify-content: center;
  1072. color: rgba(255, 255, 255, 0.7);
  1073. transition: 0.7s ease;
  1074. border: 2px solid transparent;
  1075. width: 40px;
  1076. height: 40px;
  1077. border-radius: 50%;
  1078. }
  1079. .contact-social-row a i {
  1080. font-size: 18px;
  1081. }
  1082. .contact-social-row a:hover {
  1083. color: #fff;
  1084. border: 2px solid #fff;
  1085. }
  1086. .mfp-bg {
  1087. opacity: .6;
  1088. }
  1089. .form-alert {
  1090. max-width: 370px;
  1091. margin: auto;
  1092. text-align: center;
  1093. background: #39393c;
  1094. padding: 50px 30px;
  1095. position: relative;
  1096. }
  1097. .form-alert p {
  1098. margin-bottom: 0;
  1099. }
  1100. .mfp-close-btn-in .mfp-close {
  1101. color: #fff !important;
  1102. }
  1103. /* Contact page END */
  1104. /* Album START */
  1105. .gallery-content {
  1106. min-height: 1000px;
  1107. }
  1108. .grid-album {
  1109. display: none;
  1110. }
  1111. .grid-album.is-active {
  1112. display: block;
  1113. }
  1114. .album-tab {
  1115. display: flex;
  1116. justify-content: left;
  1117. flex-wrap: wrap;
  1118. column-gap: 15px;
  1119. margin-bottom: 30px;
  1120. }
  1121. .album-tab a {
  1122. border: 2px solid #ccc;
  1123. border-radius: 30px;
  1124. display: inline-block;
  1125. padding: 5px 25px;
  1126. transition: 0.5s ease;
  1127. margin-bottom: 15px;
  1128. color: #000;
  1129. }
  1130. .album-tab a:hover {
  1131. background-color: #fff;
  1132. color: #000;
  1133. }
  1134. .album-tab a.is-active {
  1135. background-color: #e4e4e4;
  1136. color: #000;
  1137. font-weight: 500;
  1138. }
  1139. .album-item a:hover .album-thumb img {
  1140. transform: scale(1.1);
  1141. }
  1142. .album-thumb {
  1143. margin-bottom: 10px;
  1144. overflow: hidden;
  1145. }
  1146. .album-thumb img {
  1147. width: 100%;
  1148. height: 100%;
  1149. display: block;
  1150. transition: transform 1s ease;
  1151. }
  1152. .album-name {
  1153. font-size: 22px;
  1154. font-weight: 500;
  1155. margin-bottom: 5px;
  1156. white-space: nowrap; /* 防止文字换行 */
  1157. overflow: hidden; /* 隐藏超出部分 */
  1158. text-overflow: ellipsis; /* 超出部分显示为省略号 */
  1159. max-width: 100%; /* 设置最大宽度 */
  1160. }
  1161. .album-desc {
  1162. color: #c8c6c6;
  1163. margin-bottom: 20px;
  1164. white-space: nowrap; /* 防止文字换行 */
  1165. overflow: hidden; /* 隐藏超出部分 */
  1166. text-overflow: ellipsis; /* 超出部分显示为省略号 */
  1167. max-width: 100%; /* 设置最大宽度 */
  1168. }
  1169. .grid-album::after {
  1170. content: '';
  1171. display: block;
  1172. clear: both;
  1173. }
  1174. .grid-album .grid-sizer,
  1175. .grid-album .grid-item {
  1176. width: calc(24% - 18px);
  1177. margin-bottom: 15px;
  1178. }
  1179. .grid-album .grid-item {
  1180. float: left;
  1181. z-index: 0;
  1182. overflow: hidden;
  1183. }
  1184. /* Album END */
  1185. /* Gallery START */
  1186. .grid-single {
  1187. border-bottom: 1px solid #464545;
  1188. padding-bottom: 50px;
  1189. }
  1190. .grid-single::after {
  1191. content: '';
  1192. display: block;
  1193. clear: both;
  1194. }
  1195. .grid-single .grid-sizer,
  1196. .grid-single .grid-item {
  1197. width: calc(25% - 15px);
  1198. margin-bottom: 15px;
  1199. }
  1200. .grid-single .grid-item {
  1201. float: left;
  1202. z-index: 0;
  1203. overflow: hidden;
  1204. }
  1205. .grid-single .grid-item:hover a::before,
  1206. .grid-single .grid-item:hover a::after {
  1207. opacity: 1;
  1208. }
  1209. .grid-single .grid-item img {
  1210. display: block;
  1211. width: 100%;
  1212. transition: 0.35s ease;
  1213. }
  1214. .gallery-wrap {
  1215. padding: 30px 0;
  1216. }
  1217. .gallery-wrap .def-title-wrapper {
  1218. text-align: center;
  1219. }
  1220. .b-lazy {
  1221. -webkit-transition: opacity 500ms ease-in-out;
  1222. -moz-transition: opacity 500ms ease-in-out;
  1223. -o-transition: opacity 500ms ease-in-out;
  1224. transition: opacity 500ms ease-in-out;
  1225. max-width: 100%;
  1226. opacity: 0;
  1227. }
  1228. .b-lazy.b-loaded {
  1229. opacity: 1;
  1230. }
  1231. .grid-nav-wrap {
  1232. display: flex;
  1233. justify-content: center;
  1234. align-items: center;
  1235. margin-top: 35px;
  1236. column-gap: 30px;
  1237. }
  1238. .grid-nav-wrap a {
  1239. display: inline-block;
  1240. padding: 10px 25px;
  1241. background-color: #383636;
  1242. font-weight: 300;
  1243. font-size: 16px;
  1244. transition: background-color 0.35s ease;
  1245. vertical-align: middle;
  1246. }
  1247. .grid-nav-wrap a:hover {
  1248. background-color: #545050;
  1249. }
  1250. /* Gallery END */
  1251. /* About page START */
  1252. .about-content {
  1253. padding: 60px 0 100px 100px;
  1254. position: relative;
  1255. z-index: 0;
  1256. background-size: cover;
  1257. background-repeat: no-repeat;
  1258. }
  1259. .about-content::before {
  1260. content: '';
  1261. position: absolute;
  1262. top: 0;
  1263. left: 0;
  1264. width: 100%;
  1265. height: 100%;
  1266. z-index: -1;
  1267. background-color: var(--color-def);
  1268. opacity: 0.8;
  1269. }
  1270. .about-content .content-inner {
  1271. max-width: 1000px;
  1272. padding: 0 20px;
  1273. }
  1274. .s-about .sub-title {
  1275. font-size: 18px;
  1276. margin-bottom: 15px;
  1277. font-weight: 500;
  1278. }
  1279. .about-desc {
  1280. line-height: 1.7;
  1281. }
  1282. .about-desc {
  1283. color: #ccc9c9;
  1284. }
  1285. .about-content .left-avatar {
  1286. height: 500px;
  1287. overflow: hidden;
  1288. margin-bottom: 30px;
  1289. }
  1290. .about-content .right {
  1291. max-width: 800px;
  1292. }
  1293. .about-content .left img {
  1294. width: 100%;
  1295. height: 100%;
  1296. object-fit: cover;
  1297. display: block;
  1298. }
  1299. .link-portfolio {
  1300. display: flex;
  1301. align-items: center;
  1302. font-weight: 300;
  1303. margin-top: 40px;
  1304. border-left: 1px solid #fff;
  1305. padding-left: 10px;
  1306. padding-top: 10px;
  1307. padding-bottom: 10px;
  1308. position: relative;
  1309. width: 200px;
  1310. overflow: hidden;
  1311. }
  1312. .link-portfolio:hover img {
  1313. transform: translateX(40%);
  1314. }
  1315. .link-portfolio:hover::before, .link-portfolio:hover::after {
  1316. width: 100%;
  1317. }
  1318. .link-portfolio:hover .right-border {
  1319. height: 100%;
  1320. }
  1321. .link-portfolio img {
  1322. margin-left: 15px;
  1323. width: 35px;
  1324. transition: 0.5s ease;
  1325. }
  1326. .link-portfolio::before, .link-portfolio::after {
  1327. content: '';
  1328. display: block;
  1329. position: absolute;
  1330. transition: 0.5s ease;
  1331. height: 1px;
  1332. width: 0;
  1333. background-color: #fff;
  1334. }
  1335. .link-portfolio::before {
  1336. top: 0;
  1337. left: 0;
  1338. }
  1339. .link-portfolio::after {
  1340. bottom: 0;
  1341. right: 0;
  1342. }
  1343. .link-portfolio .right-border {
  1344. display: block;
  1345. position: absolute;
  1346. transition: 0.5s ease;
  1347. height: 0;
  1348. width: 1px;
  1349. background-color: #fff;
  1350. right: 0;
  1351. bottom: 0;
  1352. }
  1353. /* About page END */
  1354. /* Footer START */
  1355. .site-footer {
  1356. padding: 20px 20px 20px 110px;
  1357. }
  1358. .footer-copyright {
  1359. text-align: center;
  1360. color: #2a2832;
  1361. }
  1362. /* Footer END */
  1363. .menu-nav .menu-nav-son {
  1364. display: block;
  1365. }
  1366. /*.menu-nav .menu-nav-son .menu-nav-son2 {*/
  1367. /* display: none;*/
  1368. /*}*/
  1369. .menu-nav .son-active {
  1370. display: block;
  1371. }
  1372. .menu-nav .menu-nav-son li {
  1373. padding-left: 20px;
  1374. }
  1375. .menu-nav .menu-nav-son li a{
  1376. font-size: 14px;
  1377. }
  1378. /* 图片容器 */
  1379. .album-thumb {
  1380. position: relative;
  1381. overflow: hidden;
  1382. }
  1383. /* 图片样式 */
  1384. .album-thumb img {
  1385. width: 100%;
  1386. height: auto;
  1387. display: block;
  1388. transition: transform 0.3s ease;
  1389. }
  1390. /* 遮罩层文字样式 */
  1391. .album-mask .album-name {
  1392. font-size: 18px;
  1393. font-weight: bold;
  1394. margin-bottom: 10px;
  1395. }
  1396. .album-mask .album-desc {
  1397. font-size: 14px;
  1398. text-align: center;
  1399. }
  1400. /* 鼠标悬停时图片放大效果 */
  1401. .album-thumb:hover img {
  1402. transform: scale(1.1);
  1403. }
  1404. .gallery-album .album-name {
  1405. font-size: 18px;
  1406. text-align: center;
  1407. }
  1408. .gallery-album .album-desc {
  1409. font-size: 14px;
  1410. text-align: center;
  1411. }
  1412. /*
  1413. * 产品详情css
  1414. */
  1415. /* 图片容器 */
  1416. .album-thumb {
  1417. position: relative;
  1418. overflow: hidden;
  1419. cursor: pointer;
  1420. }
  1421. /* 图片样式 */
  1422. .album-thumb img {
  1423. width: 100%;
  1424. height: auto;
  1425. display: block;
  1426. transition: transform 0.3s ease;
  1427. }
  1428. /* 遮罩层 */
  1429. .album-mask {
  1430. position: absolute;
  1431. top: 0;
  1432. left: 0;
  1433. width: 100%;
  1434. height: 100%;
  1435. background: rgba(0, 0, 0, 0.5);
  1436. opacity: 0;
  1437. transition: opacity 0.3s ease;
  1438. display: flex;
  1439. justify-content: flex-end;
  1440. align-items: flex-end;
  1441. padding: 10px;
  1442. }
  1443. /* 鼠标悬停时显示遮罩层 */
  1444. .album-thumb:hover .album-mask {
  1445. opacity: 1;
  1446. }
  1447. /* 下载图标样式 */
  1448. .download-icon {
  1449. color: #fff;
  1450. font-size: 24px;
  1451. text-decoration: none;
  1452. transition: color 0.3s ease;
  1453. }
  1454. .download-icon:hover {
  1455. color: #007bff;
  1456. }
  1457. /* 全屏遮罩层 */
  1458. .fullscreen-mask {
  1459. position: fixed;
  1460. top: 0;
  1461. left: 0;
  1462. width: 100%;
  1463. height: 100%;
  1464. background: rgba(0, 0, 0, 0.8);
  1465. display: flex;
  1466. justify-content: center;
  1467. align-items: center;
  1468. z-index: 1000;
  1469. opacity: 0;
  1470. visibility: hidden;
  1471. transition: opacity 0.3s ease, visibility 0.3s ease;
  1472. }
  1473. /* 全屏图片 */
  1474. .fullscreen-mask img {
  1475. max-width: 80%;
  1476. max-height: 90%;
  1477. transform: scale(0.8);
  1478. transition: transform 0.3s ease;
  1479. }
  1480. /* 全屏按钮样式 */
  1481. .fullscreen-btn {
  1482. position: absolute;
  1483. top: 50%;
  1484. transform: translateY(-50%);
  1485. color: #ffffff;
  1486. font-size: 56px;
  1487. cursor: pointer;
  1488. z-index: 999;
  1489. }
  1490. .fullscreen-btn:hover {
  1491. color: #007bff;
  1492. }
  1493. .fullscreen-btn-left {
  1494. left: 10px;
  1495. }
  1496. .fullscreen-btn-right {
  1497. right: 10px;
  1498. }
  1499. /* 显示全屏遮罩层 */
  1500. .fullscreen-mask.active {
  1501. opacity: 1;
  1502. visibility: visible;
  1503. }
  1504. /* 全屏图片放大 */
  1505. .fullscreen-mask.active img {
  1506. transform: scale(1);
  1507. }
  1508. .gallery-album-line {
  1509. width: 100%;
  1510. border-bottom: 1px solid #ccc;
  1511. margin-bottom: 30px;
  1512. font-size: 16px;
  1513. text-align: right;
  1514. line-height: 40px;
  1515. }
  1516. .gallery-album-line a{
  1517. color: #000;
  1518. }
  1519. .gallery-album-prev {
  1520. float: left;
  1521. color: #333;
  1522. }
  1523. .gallery-album-line .gallery-album-prev {
  1524. color: #000;
  1525. }
  1526. /*表格样式*/
  1527. table.album_table {
  1528. width: 100%;
  1529. border-collapse: collapse;
  1530. margin: 20px 0px 30px;
  1531. }
  1532. table.album_table th, table.album_table td {
  1533. padding: 12px;
  1534. text-align: left;
  1535. border-bottom: 1px solid #ccc;
  1536. }
  1537. table.album_table th {
  1538. color: #555;
  1539. font-weight: bold;
  1540. font-size: 16px;
  1541. }
  1542. table.album_table td {
  1543. color: #555;
  1544. }
  1545. table.album_table img {
  1546. border-radius: 5px;
  1547. }
  1548. table.album_table button {
  1549. background-color: #ccc;
  1550. color: white;
  1551. border: none;
  1552. padding: 8px 12px;
  1553. border-radius: 4px;
  1554. cursor: pointer;
  1555. transition: background-color 0.3s ease;
  1556. }
  1557. table.album_table button:hover {
  1558. background-color: #777;
  1559. }
  1560. /* 视频遮罩层样式 */
  1561. .overlay {
  1562. display: none;
  1563. position: fixed;
  1564. top: 0;
  1565. left: 0;
  1566. width: 100%;
  1567. height: 100%;
  1568. background: rgba(0, 0, 0, 0.89);
  1569. justify-content: center;
  1570. align-items: center;
  1571. z-index: 1000;
  1572. }
  1573. .video-container {
  1574. position: relative;
  1575. width: 80%;
  1576. max-width: 800px;
  1577. }
  1578. video {
  1579. width: 100%;
  1580. height: auto;
  1581. }
  1582. .close-btn {
  1583. position: absolute;
  1584. top: -30px;
  1585. right: -30px;
  1586. background: red;
  1587. color: white;
  1588. border: none;
  1589. padding: 10px;
  1590. cursor: pointer;
  1591. border-radius: 50%;
  1592. }
  1593. .download-btn {
  1594. margin-left: 10px;
  1595. }
  1596. .search-wrapper {
  1597. width: 100%;
  1598. margin-bottom: 30px;
  1599. text-align: right;
  1600. height: 47px;
  1601. }
  1602. .search-box {
  1603. position: relative;
  1604. float: left;
  1605. box-sizing: border-box;
  1606. }
  1607. /* 搜索输入框 */
  1608. .search-box .srch-iput {
  1609. border: 1px solid #DDD;
  1610. border-radius: 50px;
  1611. background: url("/static/images/search.png") center no-repeat;
  1612. color: #999;
  1613. transition: all .5s;
  1614. width: 30px;
  1615. padding: 7.5px 15px;
  1616. font-size: 12px
  1617. }
  1618. .search-box:hover .srch-iput {
  1619. border: 1px solid #DDD;
  1620. width: 200px;
  1621. background: url("/static/images/search.png") right no-repeat;
  1622. padding: 7.5px 15px
  1623. }
  1624. /* 搜索图标 */
  1625. .search-box .fa-search {
  1626. color: #888;
  1627. font-size: 18px;
  1628. cursor: pointer;
  1629. }
  1630. /* 鼠标悬停时图标颜色变化 */
  1631. .search-box .fa-search:hover {
  1632. color: #888;
  1633. }
  1634. #videoPlayer {
  1635. max-height: 600px;
  1636. }
  1637. /* iframe 主体内容 */
  1638. .main-body{
  1639. background-color:#ffffff;
  1640. }
  1641. .main-body .album-thumb {
  1642. border:2px solid #ccc;
  1643. width: 100%;
  1644. min-height: 340px;
  1645. }
  1646. .main-body .album-thumb-gallery {
  1647. height: calc(24% - 18px);
  1648. }
  1649. .main-body {
  1650. color: #2a2832;
  1651. }
  1652. .main-body .album-name {
  1653. color: #2a2832;
  1654. }
  1655. .main-body .album-desc {
  1656. color: #2a2832;
  1657. }
  1658. .main-body .update-content {
  1659. margin-left: 0px;
  1660. }
  1661. .main-body .update-content .update-log {
  1662. max-width: none;
  1663. }
  1664. .is-hidden {
  1665. visibility: hidden;
  1666. }
  1667. .fullscreen-btn-download {
  1668. position: absolute;
  1669. bottom: 35px;
  1670. right: 20px;
  1671. font-size: 24px;
  1672. cursor: pointer;
  1673. color: #ffffff;
  1674. background-color: rgba(0, 0, 0, 0.5);
  1675. padding: 10px;
  1676. border-radius: 50%;
  1677. top: 90%;
  1678. }
  1679. .clear {
  1680. clear: both;
  1681. }
  1682. .menu-login-out {
  1683. margin-top: 10px;
  1684. left: 25px;
  1685. }
  1686. .layui-layer-content {
  1687. color: #2B2C30;
  1688. }
  1689. .layui-layer-btn .layui-layer-btn0 {
  1690. background-color: #45a049;
  1691. }
  1692. @media screen and (max-width: 1440px) {
  1693. .main-body .album-thumb {
  1694. min-height: 231px;
  1695. }
  1696. }
  1697. /* Responsive START */
  1698. @media screen and (max-width: 1024px) {
  1699. .container-full {
  1700. padding: 0 20px;
  1701. }
  1702. .grid-single .grid-sizer,
  1703. .grid-single .grid-item {
  1704. width: calc(33% - 15px);
  1705. }
  1706. .main-body .album-thumb-gallery {
  1707. height: calc(33% - 15px);
  1708. }
  1709. .main-body .album-thumb {
  1710. min-height: 197px;
  1711. }
  1712. }
  1713. @media screen and (max-width: 992px) {
  1714. /* Sidebar 992 START */
  1715. .menu-nav {
  1716. padding-top: 120px;
  1717. }
  1718. /* Sidebar 992 END */
  1719. /* Banner 992 START */
  1720. .swiper-banner .swiper-slide {
  1721. padding: 30px 30px 30px 0;
  1722. }
  1723. .banner-item {
  1724. padding: 150px 50px 70px 50px;
  1725. height: auto;
  1726. }
  1727. .banner-nav-wrap {
  1728. bottom: 30px;
  1729. right: 30px;
  1730. }
  1731. /* Banner 992 END */
  1732. /* About 992 START */
  1733. .about-content {
  1734. padding: 40px 0 100px 100px;
  1735. }
  1736. /* About 992 END */
  1737. /* Contact page 992 START */
  1738. .contact-row {
  1739. flex-direction: column;
  1740. }
  1741. .s-contact .left {
  1742. margin-bottom: 30px;
  1743. }
  1744. /* Contact page 992 END */
  1745. .breadcrumb-box {
  1746. margin-bottom: 3px;
  1747. }
  1748. .search-box {
  1749. left: -2px;
  1750. }
  1751. .grid-album .grid-sizer,
  1752. .grid-album .grid-item {
  1753. width: calc(33.3% - 25px);
  1754. }
  1755. .main-body .album-thumb-gallery {
  1756. height: calc(33.3% - 25px);
  1757. }
  1758. }
  1759. @media screen and (max-width: 768px) {
  1760. /* Sidebar 768 START */
  1761. .sidebar {
  1762. height: auto;
  1763. width: 100%;
  1764. padding: 10px 20px;
  1765. display: flex;
  1766. justify-content: space-between;
  1767. align-items: center;
  1768. }
  1769. .sidebar .hamburger-button {
  1770. top: 0;
  1771. right: 0;
  1772. transform: none;
  1773. position: static;
  1774. }
  1775. .sidebar .logo {
  1776. position: static;
  1777. }
  1778. .content {
  1779. padding-left: 0;
  1780. margin-top: 52px;
  1781. }
  1782. /* Sidebar 768 END */
  1783. /* Banner 768 START */
  1784. .swiper-banner .swiper-slide {
  1785. padding: 0;
  1786. }
  1787. .banner-nav-wrap {
  1788. bottom: 0;
  1789. right: 0;
  1790. }
  1791. .banner-title {
  1792. font-size: 32px;
  1793. line-height: 42px;
  1794. }
  1795. .banner-item {
  1796. padding: 100px 40px 150px 40px;
  1797. height: calc(100vh - 52px);
  1798. background-position: center center;
  1799. }
  1800. /* Banner 768 END */
  1801. /* Album 768 START */
  1802. .gallery-wrap {
  1803. margin-left: 0;
  1804. }
  1805. .gallery-wrap .content-inner {
  1806. padding: 0 40px;
  1807. }
  1808. .grid-album .grid-sizer,
  1809. .grid-album .grid-item {
  1810. width: calc(50% - 10px);
  1811. }
  1812. /* Album 768 END */
  1813. /* Contact page 768 START */
  1814. .contact-content {
  1815. padding: 100px 40px;
  1816. }
  1817. /* Contact page 768 END */
  1818. /* Footer 768 START */
  1819. .site-footer {
  1820. padding: 20px;
  1821. }
  1822. .footer-copyright {
  1823. font-size: 14px;
  1824. }
  1825. /* Footer 768 END */
  1826. .update-content {
  1827. padding: 10px 10px;
  1828. }
  1829. .album_table .void-img{width: 100px;}
  1830. .grid-album .grid-sizer,
  1831. .grid-album .grid-item {
  1832. width: calc(33.3% - 25px);
  1833. }
  1834. .main-body .album-thumb-gallery {
  1835. height: calc(33.3% - 25px);
  1836. }
  1837. }
  1838. @media screen and (max-width: 575px) {
  1839. /* Global 575 START */
  1840. .title {
  1841. font-size: 40px;
  1842. margin-bottom: 10px;
  1843. }
  1844. .subtitle {
  1845. font-size: 16px;
  1846. }
  1847. .preloader-item img {
  1848. max-width: 80px;
  1849. }
  1850. /* Global 575 END */
  1851. .grid-single .grid-sizer,
  1852. .grid-single .grid-item {
  1853. width: calc(50% - 10px);
  1854. margin-bottom: 10px;
  1855. }
  1856. /* About 575 START */
  1857. .about-content .left-avatar {
  1858. height: 340px;
  1859. }
  1860. /* About 575 END */
  1861. /* Album 575 START */
  1862. .gallery-wrap .content-inner {
  1863. padding: 0 20px;
  1864. }
  1865. .grid-album .grid-sizer,
  1866. .grid-album .grid-item {
  1867. width: 100%;
  1868. }
  1869. /* Album 575 END */
  1870. /* Gallery single 575 START */
  1871. .grid-single {
  1872. padding-bottom: 50px;
  1873. }
  1874. /* Gallery single 575 END */
  1875. /* Contact page 575 START */
  1876. .contact-content {
  1877. padding: 110px 20px 50px 20px;
  1878. }
  1879. .s-contact .left {
  1880. width: 100%;
  1881. max-width: 400px;
  1882. padding: 40px 20px;
  1883. }
  1884. /* Contact page 575 END */
  1885. .update-content {
  1886. padding: 10px 10px;
  1887. }
  1888. .breadcrumb-box {
  1889. padding: 5px 0px;
  1890. float: left;
  1891. min-width:auto;
  1892. }
  1893. .album_table .void-img{width: 100px;}
  1894. .grid-album .grid-sizer,
  1895. .grid-album .grid-item {
  1896. width: 100%;
  1897. }
  1898. .main-body .album-thumb {
  1899. min-height: 530px;
  1900. }
  1901. }
  1902. @media screen and (max-width: 480px) {
  1903. /* Sidebar 480 START */
  1904. .sidebar {
  1905. padding: 8px 20px;
  1906. }
  1907. .sidebar-logo {
  1908. top: 20px;
  1909. left: 25px;
  1910. }
  1911. .sidebar .logo img {
  1912. width: 40px;
  1913. }
  1914. .sidebar .hamburger-button span:nth-last-child(n+2) {
  1915. margin-bottom: 9px;
  1916. }
  1917. .menu-nav {
  1918. padding: 130px 25px 25px 25px;
  1919. }
  1920. .menu-nav ul a {
  1921. font-size: 18px;
  1922. }
  1923. .menu-close__wrap {
  1924. left: 25px;
  1925. }
  1926. .menu-nav .menu-contacts {
  1927. margin-top: 50px;
  1928. }
  1929. .menu-nav .menu-social {
  1930. margin-top: 50px;
  1931. }
  1932. /* Sidebar 480 END */
  1933. /* Banner 480 START */
  1934. .banner-item {
  1935. padding: 60px 30px 100px 30px;
  1936. }
  1937. .banner-nav-wrap {
  1938. width: 100%;
  1939. max-width: 400px;
  1940. }
  1941. /* Banner 480 END */
  1942. .grid-album .grid-sizer,
  1943. .grid-album .grid-item {
  1944. width: 100%;
  1945. }
  1946. .main-body .album-thumb {
  1947. min-height: 436px;
  1948. }
  1949. }
  1950. /* Responsive END */