main.css 35 KB

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