main.css 36 KB

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