style.css 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757
  1. body {
  2. background: #fff;
  3. color: #444;
  4. font-family: "Open Sans", sans-serif;
  5. }
  6. a {
  7. color: #00b1e4;
  8. transition: 0.5s;
  9. }
  10. a:hover, a:active, a:focus {
  11. color: #51d8af;
  12. outline: none;
  13. text-decoration: none;
  14. }
  15. p {
  16. padding: 0;
  17. margin: 0 0 30px 0;
  18. }
  19. h1, h2, h3, h4, h5, h6 {
  20. font-family: "Montserrat", sans-serif;
  21. font-weight: 400;
  22. margin: 0 0 20px 0;
  23. padding: 0;
  24. }
  25. /* Back to top button */
  26. .back-to-top {
  27. position: fixed;
  28. display: none;
  29. background: #00b1e4;
  30. color: #fff;
  31. padding: 6px 12px 9px 12px;
  32. font-size: 16px;
  33. border-radius: 2px;
  34. right: 15px;
  35. bottom: 15px;
  36. transition: background 0.5s;
  37. }
  38. @media (max-width: 768px) {
  39. .back-to-top {
  40. bottom: 15px;
  41. }
  42. }
  43. .back-to-top:focus {
  44. background: #00b1e4;
  45. color: #fff;
  46. outline: none;
  47. }
  48. .back-to-top:hover {
  49. background: #0c2e8a;
  50. color: #fff;
  51. }
  52. /*--------------------------------------------------------------
  53. # Top Bar
  54. --------------------------------------------------------------*/
  55. #topbar {
  56. padding: 10px 0;
  57. border-bottom: 1px solid #eee;
  58. font-size: 14px;
  59. background: #071e33;
  60. }
  61. #topbar .contact-info a {
  62. line-height: 1;
  63. color: #acacac;
  64. }
  65. #topbar .contact-info a:hover {
  66. color: #00b1e4;
  67. }
  68. #topbar .contact-info i {
  69. color: #00b1e4;
  70. padding: 4px 4px 0 0;
  71. }
  72. .contact-info.float-left {
  73. color: #acacac;
  74. }
  75. #topbar .contact-info .fa-phone {
  76. padding-left: 20px;
  77. margin-left: 20px;
  78. border-left: 1px solid #e9e9e947;
  79. }
  80. #topbar .social-links a {
  81. color: #00b1e4;
  82. padding: 4px 12px;
  83. display: inline-block;
  84. line-height: 1px;
  85. border-left: 1px solid #e9e9e924;
  86. }
  87. #topbar .social-links a:hover {
  88. color: #fff;
  89. }
  90. #topbar .social-links a:first-child {
  91. border-left: 0;
  92. }
  93. /*--------------------------------------------------------------
  94. # Header
  95. --------------------------------------------------------------*/
  96. #header {
  97. padding: 20px 0;
  98. height: 84px;
  99. transition: all 0.5s;
  100. z-index: 997;
  101. background: #fff;
  102. box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
  103. }
  104. #header #logo h1 {
  105. font-size: 28px;
  106. margin: 6px 0 0 0;
  107. padding: 0;
  108. line-height: 1;
  109. font-family: "Montserrat", sans-serif;
  110. font-weight: 700;
  111. }
  112. #header #logo h1 a {
  113. color: #071e33;
  114. line-height: 1;
  115. display: inline-block;
  116. color: #00b1e4;
  117. }
  118. #header #logo h1 a span {
  119. color: #071e33;
  120. }
  121. #header #logo img {
  122. padding: 0;
  123. margin: 0;
  124. }
  125. @media (max-width: 768px) {
  126. #header {
  127. padding: 20px 0;
  128. height: 74px;
  129. }
  130. #header #logo h1 {
  131. font-size: 34px;
  132. }
  133. #header #logo img {
  134. max-height: 40px;
  135. }
  136. }
  137. /*--------------------------------------------------------------
  138. # Intro Section
  139. --------------------------------------------------------------*/
  140. #intro {
  141. width: 100%;
  142. height: 70vh;
  143. position: relative;
  144. background-size: cover;
  145. }
  146. #intro .intro-content {
  147. position: absolute;
  148. bottom: 0;
  149. top: 0;
  150. left: 14%;
  151. right: 0;
  152. z-index: 10;
  153. display: flex;
  154. justify-content: center;
  155. flex-direction: column;
  156. text-align: left;
  157. }
  158. #intro .intro-content h2 {
  159. color: #3a3a3a;
  160. margin-bottom: 30px;
  161. font-size: 24px;
  162. font-weight: normal;
  163. text-align: left;
  164. }
  165. #intro .intro-content h2 span {
  166. color: #071e33;
  167. text-align: right;
  168. font-size: 66px;
  169. text-transform: uppercase;
  170. font-weight: 700;
  171. }
  172. @media (max-width: 767px) {
  173. #intro .intro-content h2 {
  174. font-size: 22px;
  175. background: #ffffffa3;
  176. padding: 15px;
  177. }
  178. }
  179. #intro .intro-content .btn-get-started, #intro .intro-content .btn-projects {
  180. font-family: "Raleway", sans-serif;
  181. font-size: 15px;
  182. font-weight: bold;
  183. letter-spacing: 1px;
  184. display: inline-block;
  185. padding: 10px 32px;
  186. border-radius: 2px;
  187. transition: 0.5s;
  188. margin: 0;
  189. color: #fff;
  190. }
  191. #intro .intro-content .btn-get-started {
  192. background: #00b1e4;
  193. border: 2px solid #00b1e4;
  194. }
  195. #intro .intro-content .btn-get-started:hover {
  196. background: none;
  197. color: #00b1e4;
  198. }
  199. #intro .intro-content .btn-projects {
  200. background: #00b1e4;
  201. border: 2px solid #00b1e4;
  202. }
  203. #intro .intro-content .btn-projects:hover {
  204. background: none;
  205. color: #00b1e4;
  206. }
  207. #intro #intro-carousel {
  208. z-index: 8;
  209. }
  210. #intro #intro-carousel::before {
  211. content: '';
  212. background-color: rgba(255, 255, 255, 0.7);
  213. position: absolute;
  214. height: 100%;
  215. width: 100%;
  216. top: 0;
  217. right: 0;
  218. left: 0;
  219. bottom: 0;
  220. z-index: 7;
  221. }
  222. #intro #intro-carousel .item {
  223. width: 100%;
  224. height: 60vh;
  225. background-size: cover;
  226. background-position: center;
  227. -webkit-transition-property: opacity;
  228. transition-property: opacity;
  229. }
  230. /*--------------------------------------------------------------
  231. # Navigation Menu
  232. --------------------------------------------------------------*/
  233. /* Nav Menu Essentials */
  234. .nav-menu, .nav-menu * {
  235. margin: 0;
  236. padding: 0;
  237. list-style: none;
  238. }
  239. .nav-menu ul {
  240. position: absolute;
  241. display: none;
  242. top: 100%;
  243. left: 0;
  244. z-index: 99;
  245. }
  246. .nav-menu li {
  247. position: relative;
  248. white-space: nowrap;
  249. }
  250. .nav-menu > li {
  251. float: left;
  252. }
  253. .nav-menu li:hover > ul,
  254. .nav-menu li.sfHover > ul {
  255. display: block;
  256. }
  257. .nav-menu ul ul {
  258. top: 0;
  259. left: 100%;
  260. }
  261. .nav-menu ul li {
  262. min-width: 180px;
  263. }
  264. /* Nav Menu Arrows */
  265. .sf-arrows .sf-with-ul {
  266. padding-right: 22px;
  267. }
  268. .sf-arrows .sf-with-ul:after {
  269. content: "\f107";
  270. position: absolute;
  271. right: 8px;
  272. font-family: FontAwesome;
  273. font-style: normal;
  274. font-weight: normal;
  275. }
  276. .sf-arrows ul .sf-with-ul:after {
  277. content: "\f105";
  278. }
  279. /* Nav Meu Container */
  280. #nav-menu-container {
  281. float: right;
  282. margin: 0;
  283. }
  284. @media (max-width: 768px) {
  285. #nav-menu-container {
  286. display: none;
  287. }
  288. }
  289. /* Nav Meu Styling */
  290. .nav-menu a {
  291. padding: 10px 8px;
  292. text-decoration: none;
  293. display: inline-block;
  294. color: #555;
  295. font-family: "Raleway", sans-serif;
  296. font-weight: 700;
  297. font-size: 14px;
  298. outline: none;
  299. }
  300. .nav-menu li:hover > a, .nav-menu > .menu-active > a {
  301. color: #00b1e4;
  302. }
  303. .nav-menu > li {
  304. margin-left: 10px;
  305. }
  306. .nav-menu ul {
  307. margin: 4px 0 0 0;
  308. padding: 10px;
  309. box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  310. background: #fff;
  311. }
  312. .nav-menu ul li {
  313. transition: 0.3s;
  314. }
  315. .nav-menu ul li a {
  316. padding: 10px;
  317. color: #333;
  318. transition: 0.3s;
  319. display: block;
  320. font-size: 13px;
  321. text-transform: none;
  322. }
  323. .nav-menu ul li:hover > a {
  324. color: #00b1e4;
  325. }
  326. .nav-menu ul ul {
  327. margin: 0;
  328. }
  329. /* Mobile Nav Toggle */
  330. #mobile-nav-toggle {
  331. position: fixed;
  332. right: 0;
  333. top: 0;
  334. z-index: 999;
  335. margin: 20px 20px 0 0;
  336. border: 0;
  337. background: none;
  338. font-size: 24px;
  339. display: none;
  340. transition: all 0.4s;
  341. outline: none;
  342. cursor: pointer;
  343. }
  344. #mobile-nav-toggle i {
  345. color: #555;
  346. }
  347. @media (max-width: 768px) {
  348. #mobile-nav-toggle {
  349. display: inline;
  350. }
  351. }
  352. /* Mobile Nav Styling */
  353. #mobile-nav {
  354. position: fixed;
  355. top: 0;
  356. padding-top: 18px;
  357. bottom: 0;
  358. z-index: 998;
  359. left: -260px;
  360. width: 260px;
  361. overflow-y: auto;
  362. transition: 0.4s;
  363. background: #00b1e4;
  364. }
  365. #mobile-nav ul {
  366. padding: 0;
  367. margin: 0;
  368. list-style: none;
  369. }
  370. #mobile-nav ul li {
  371. position: relative;
  372. }
  373. #mobile-nav ul li a {
  374. color: #fffc;
  375. font-size: 16px;
  376. overflow: hidden;
  377. padding: 10px 22px 10px 15px;
  378. position: relative;
  379. text-decoration: none;
  380. width: 100%;
  381. display: block;
  382. outline: none;
  383. }
  384. #mobile-nav ul li a:hover {
  385. color: #fff;
  386. }
  387. #mobile-nav ul li li {
  388. padding-left: 30px;
  389. }
  390. #mobile-nav ul .menu-has-children i {
  391. position: absolute;
  392. right: 0;
  393. z-index: 99;
  394. padding: 15px;
  395. cursor: pointer;
  396. color: #fff;
  397. }
  398. #mobile-nav ul .menu-has-children i.fa-chevron-up {
  399. color: #00b1e4;
  400. }
  401. #mobile-nav ul .menu-item-active {
  402. color: #00b1e4;
  403. }
  404. #mobile-body-overly {
  405. width: 100%;
  406. height: 100%;
  407. z-index: 997;
  408. top: 0;
  409. left: 0;
  410. position: fixed;
  411. background: rgba(13, 13, 13, 0.9);
  412. display: none;
  413. }
  414. /* Mobile Nav body classes */
  415. body.mobile-nav-active {
  416. overflow: hidden;
  417. }
  418. body.mobile-nav-active #mobile-nav {
  419. left: 0;
  420. }
  421. body.mobile-nav-active #mobile-nav-toggle {
  422. color: #fff;
  423. }
  424. /*-------------------------------------------------
  425. Inner Banner
  426. ---------------------------------------------------*/
  427. #innerBanner {
  428. background: linear-gradient(45deg, #00b1e4 -132%, #0c2e8a 100%);
  429. padding: 40px 0;
  430. text-align: center;
  431. background: #00b1e4;
  432. }
  433. #innerBanner h2 {
  434. color: #fff;
  435. text-align: center;
  436. font-weight: normal;
  437. font-size: 18px;
  438. margin: 0px;
  439. }
  440. #innerBanner h2 span {
  441. color: #fff;
  442. font-weight: bold;
  443. font-size: 38px;
  444. text-align: center;
  445. }
  446. .svgImg {
  447. }
  448. .svgImg img {
  449. width: 120px;
  450. }
  451. /*--------------------------------------------------------------
  452. # Sections
  453. --------------------------------------------------------------*/
  454. /* Sections Header
  455. --------------------------------*/
  456. .section-header {
  457. margin-bottom: 30px;
  458. }
  459. .section-header h2 {
  460. font-size: 32px;
  461. color: #071e33;
  462. text-transform: uppercase;
  463. font-weight: 700;
  464. position: relative;
  465. padding-bottom: 20px;
  466. /* display: inline-block; */
  467. text-align: center;
  468. }
  469. .section-header h2::before {
  470. content: '';
  471. position: absolute;
  472. display: block;
  473. width: 62px;
  474. height: 3px;
  475. bottom: 0;
  476. left: 0;
  477. border-top: #00b1e4 solid 2px;
  478. right: 0;
  479. text-align: center;
  480. margin: 0 auto;
  481. }
  482. .section-header p {
  483. padding: 0;
  484. margin: 0;
  485. text-align: center;
  486. color: #333;
  487. }
  488. /* About Section
  489. --------------------------------*/
  490. #about {
  491. padding: 60px 0 60px 0;
  492. }
  493. #about .about-img {
  494. overflow: hidden;
  495. }
  496. #about .about-img img {
  497. margin-left: -15px;
  498. max-width: 100%;
  499. }
  500. @media (max-width: 768px) {
  501. #about .about-img {
  502. height: auto;
  503. }
  504. #about .about-img img {
  505. margin-left: 0;
  506. padding-bottom: 30px;
  507. }
  508. }
  509. #about .content h2 {
  510. color: #000000;
  511. font-weight: 700;
  512. font-size: 18px;
  513. font-family: "Raleway", sans-serif;
  514. }
  515. #about .content h3 {
  516. color: #555;
  517. font-weight: 300;
  518. font-size: 18px;
  519. line-height: 26px;
  520. font-style: italic;
  521. }
  522. #about .content p {
  523. line-height: 26px;
  524. }
  525. #about .content p:last-child {
  526. margin-bottom: 0;
  527. }
  528. #about .content i {
  529. font-size: 20px;
  530. padding-right: 4px;
  531. color: #00b1e4;
  532. }
  533. #about .content ul {
  534. list-style: none;
  535. padding: 0;
  536. }
  537. #about .content ul li {
  538. padding-bottom: 10px;
  539. }
  540. /* Services Section
  541. --------------------------------*/
  542. #services {
  543. padding: 60px 0 0 0;
  544. }
  545. #services .box {
  546. padding: 40px;
  547. margin-bottom: 40px;
  548. background: #fff;
  549. transition: 0.4s;
  550. border: 1px solid #dedede;
  551. }
  552. #services .box:hover {
  553. box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  554. transform: translateY(-10px);
  555. -webkit-transform: translateY(-10px);
  556. -moz-transform: translateY(-10px);
  557. }
  558. #services .box .icon {
  559. display: block;
  560. width: 100%;
  561. text-align: center;
  562. padding: 15px;
  563. }
  564. #services .box .icon i {
  565. color: #444;
  566. font-size: 44px;
  567. transition: 0.5s;
  568. line-height: 0;
  569. margin-top: 0px;
  570. }
  571. #services .box .icon i:before {
  572. background: #00b1e4;
  573. background-clip: border-box;
  574. -webkit-background-clip: text;
  575. -webkit-text-fill-color: transparent;
  576. }
  577. #services .box h4 {
  578. margin-left: 100px;
  579. font-weight: 700;
  580. margin-bottom: 24px;
  581. font-size: 22px;
  582. display: block;
  583. width: 100%;
  584. text-align: center;
  585. float: left;
  586. margin: 0;
  587. }
  588. #services .box h4 a {
  589. color: #444;
  590. }
  591. #services .box p {
  592. font-size: 14px;
  593. line-height: 24px;
  594. text-align: center;
  595. display: block;
  596. margin: 0;
  597. padding-top: 15px;
  598. }
  599. @media (max-width: 767px) {
  600. #services .box .box {
  601. margin-bottom: 20px;
  602. }
  603. #services .box .icon {
  604. float: none;
  605. text-align: center;
  606. padding-bottom: 15px;
  607. }
  608. #services .box h4, #services .box p {
  609. margin-left: 0;
  610. text-align: center;
  611. }
  612. }
  613. /* product Section
  614. --------------------------------*/
  615. #product {
  616. padding: 60px 0 0 0;
  617. }
  618. #product .box {
  619. padding: 40px;
  620. margin-bottom: 40px;
  621. background: #fff;
  622. transition: 0.4s;
  623. border: 1px solid #dedede;
  624. }
  625. #product .box:hover {
  626. box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  627. transform: translateY(-10px);
  628. -webkit-transform: translateY(-10px);
  629. -moz-transform: translateY(-10px);
  630. }
  631. #product .box .icon {
  632. display: block;
  633. width: 100%;
  634. text-align: center;
  635. padding: 15px;
  636. }
  637. #product .box .icon i {
  638. color: #444;
  639. font-size: 44px;
  640. transition: 0.5s;
  641. line-height: 0;
  642. margin-top: 0px;
  643. }
  644. #product .box .icon i:before {
  645. background: #00b1e4;
  646. background-clip: border-box;
  647. -webkit-background-clip: text;
  648. -webkit-text-fill-color: transparent;
  649. }
  650. #product .box h4 {
  651. margin-left: 100px;
  652. font-weight: 700;
  653. margin-bottom: 24px;
  654. font-size: 22px;
  655. display: block;
  656. width: 100%;
  657. text-align: center;
  658. float: left;
  659. margin: 0;
  660. }
  661. #product .box h4 a {
  662. color: #444;
  663. }
  664. #product .box p {
  665. font-size: 14px;
  666. line-height: 24px;
  667. text-align: center;
  668. display: block;
  669. margin: 0;
  670. padding-top: 15px;
  671. }
  672. @media (max-width: 767px) {
  673. #product .box .box {
  674. margin-bottom: 20px;
  675. }
  676. #product .box .icon {
  677. float: none;
  678. text-align: center;
  679. padding-bottom: 15px;
  680. }
  681. #product .box h4, #product .box p {
  682. margin-left: 0;
  683. text-align: center;
  684. }
  685. }
  686. /* Clients Section
  687. --------------------------------*/
  688. #clients {
  689. padding: 60px 0;
  690. }
  691. #clients img {
  692. max-width: 100%;
  693. opacity: 0.5;
  694. transition: 0.3s;
  695. padding: 15px 0;
  696. }
  697. #clients img:hover {
  698. opacity: 1;
  699. }
  700. #clients .owl-nav, #clients .owl-dots {
  701. margin-top: 5px;
  702. text-align: center;
  703. }
  704. #clients .owl-dot {
  705. display: inline-block;
  706. margin: 0 5px;
  707. width: 12px;
  708. height: 12px;
  709. border-radius: 50%;
  710. background-color: #ddd;
  711. }
  712. #clients .owl-dot.active {
  713. background-color: #00b1e4;
  714. }
  715. /* Our Portfolio Section
  716. --------------------------------*/
  717. #portfolio {
  718. padding: 90px 50px;
  719. color: #ffffff9c;
  720. background: #fff;
  721. }
  722. #portfolio .portfolio-overlay {
  723. position: absolute;
  724. top: 0;
  725. right: 0;
  726. bottom: 0;
  727. left: 0;
  728. width: 100%;
  729. height: 100%;
  730. opacity: 1;
  731. -webkit-transition: all ease-in-out 0.4s;
  732. transition: all ease-in-out 0.4s;
  733. }
  734. #portfolio .portfolio-item {
  735. overflow: hidden;
  736. position: relative;
  737. padding: 0;
  738. vertical-align: middle;
  739. text-align: center;
  740. }
  741. #portfolio .portfolio-item h2 {
  742. color: #ffffff;
  743. font-size: 16px;
  744. margin: 0;
  745. text-transform: capitalize;
  746. font-weight: 700;
  747. background: #00000085;
  748. border: 1px solid #fff;
  749. padding: 25px;
  750. /* background: linear-gradient(45deg, #00b1e457 0%, #405ece91 100%); */
  751. }
  752. #portfolio .portfolio-item h2 {
  753. opacity: 0;
  754. }
  755. #portfolio .portfolio-item:hover h2 {
  756. opacity: 1;
  757. }
  758. #portfolio .portfolio-item img {
  759. -webkit-transition: all ease-in-out 0.4s;
  760. transition: all ease-in-out 0.4s;
  761. width: 100%;
  762. }
  763. #portfolio .portfolio-item:hover img {
  764. -webkit-transform: scale(1.1);
  765. transform: scale(1.1);
  766. }
  767. #portfolio .portfolio-item:hover .portfolio-overlay {
  768. opacity: 1;
  769. background: rgba(0, 0, 0, 0.7);
  770. }
  771. #portfolio .portfolio-info {
  772. position: absolute;
  773. top: 50%;
  774. left: 50%;
  775. -webkit-transform: translate(-50%, -50%);
  776. transform: translate(-50%, -50%);
  777. }
  778. /* Testimonials Section
  779. --------------------------------*/
  780. #testimonials {
  781. padding: 60px 0;
  782. }
  783. #testimonials .testimonial-item {
  784. box-sizing: content-box;
  785. padding: 30px 30px 0 30px;
  786. margin: 30px 15px;
  787. text-align: center;
  788. min-height: 250px;
  789. /* box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08); */
  790. }
  791. @media (max-width: 767px) {
  792. #testimonials .testimonial-item {
  793. margin: 30px 10px;
  794. }
  795. }
  796. #testimonials .testimonial-item .testimonial-img {
  797. width: 90px;
  798. border-radius: 50%;
  799. border: 4px solid #fff;
  800. margin: 0 auto;
  801. }
  802. #testimonials .testimonial-item h3 {
  803. font-size: 18px;
  804. font-weight: bold;
  805. margin: 10px 0 5px 0;
  806. color: #111;
  807. }
  808. #testimonials .testimonial-item h4 {
  809. font-size: 14px;
  810. color: #999;
  811. margin: 0;
  812. }
  813. #testimonials .testimonial-item .quote-sign-left {
  814. margin-top: -15px;
  815. padding-right: 10px;
  816. display: inline-block;
  817. width: 37px;
  818. }
  819. #testimonials .testimonial-item .quote-sign-right {
  820. margin-bottom: -15px;
  821. padding-left: 10px;
  822. display: inline-block;
  823. max-width: 100%;
  824. width: 37px;
  825. }
  826. #testimonials .testimonial-item p {
  827. font-style: italic;
  828. margin: 0 auto 15px auto;
  829. background: #f1f1f1;
  830. width: 100%;
  831. border: 1px solid #dcdcdc;
  832. border-radius: 15px 15px 0 15px;
  833. padding: 22px 15px;
  834. font-size: 15px;
  835. color: #686868;
  836. }
  837. #testimonials .owl-nav, #testimonials .owl-dots {
  838. margin-top: 5px;
  839. text-align: center;
  840. }
  841. #testimonials .owl-dot {
  842. display: inline-block;
  843. margin: 0 5px;
  844. width: 12px;
  845. height: 12px;
  846. border-radius: 50%;
  847. background-color: #ddd;
  848. }
  849. #testimonials .owl-dot.active {
  850. background-color: #00b1e4;
  851. }
  852. .map {
  853. margin: 80px auto 40px;
  854. }
  855. p.help-block,
  856. p.help-block ul {
  857. float: left;
  858. margin: 0;
  859. padding: 0;
  860. }
  861. p.help-block li {
  862. float: left;
  863. margin: 10px 0 0 0;
  864. padding: 0;
  865. list-style: none;
  866. color: red;
  867. }
  868. /* Call To Action Section
  869. --------------------------------*/
  870. #call-to-action {
  871. background: #00b1e4;
  872. background-size: cover;
  873. padding: 40px 0;
  874. }
  875. #call-to-action .cta-title {
  876. color: #fff;
  877. font-size: 28px;
  878. font-weight: 700;
  879. }
  880. #call-to-action .cta-text {
  881. color: #fff;
  882. }
  883. @media (min-width: 769px) {
  884. #call-to-action .cta-btn-container {
  885. display: flex;
  886. align-items: center;
  887. justify-content: flex-end;
  888. }
  889. }
  890. #call-to-action .cta-btn {
  891. font-family: "Montserrat", sans-serif;
  892. font-weight: 700;
  893. font-size: 16px;
  894. letter-spacing: 1px;
  895. display: inline-block;
  896. padding: 8px 26px;
  897. border-radius: 3px;
  898. transition: 0.5s;
  899. margin: 10px;
  900. border: 3px solid #fff;
  901. color: #fff;
  902. }
  903. #call-to-action .cta-btn:hover {
  904. background: #ffffff;
  905. border: 3px solid #ffffff;
  906. color: #00a3d1;
  907. }
  908. /* Our Team Section
  909. --------------------------------*/
  910. #team {
  911. background: #fff;
  912. padding: 60px 0 0 0;
  913. }
  914. #team .member {
  915. text-align: center;
  916. margin-bottom: 20px;
  917. }
  918. #team .member .pic {
  919. overflow: hidden;
  920. text-align: center;
  921. }
  922. #team .member .pic img {
  923. max-width: 100%;
  924. padding: 20px 20px 0;
  925. }
  926. #team .member .details {
  927. background: #fff;
  928. color: #071e33;
  929. padding: 15px 0;
  930. border-radius: 0 0 3px 3px;
  931. }
  932. #team .member h4 {
  933. font-weight: 700;
  934. margin-bottom: 2px;
  935. font-size: 18px;
  936. }
  937. #team .member span {
  938. font-style: italic;
  939. display: block;
  940. font-size: 13px;
  941. }
  942. #team .member .social {
  943. margin-top: 5px;
  944. padding: 6px;
  945. text-align: center;
  946. }
  947. #team .member .social a {
  948. color: #00b1e4;
  949. margin: 2px 6px;
  950. /* border: 1px solid #00b1e4; */
  951. width: 42px;
  952. display: inline-block;
  953. /* opacity: .4; */
  954. background: #eaeaea;
  955. padding: 4px;
  956. }
  957. #team .member .social a:hover {
  958. color: #081e5b;
  959. margin: 2px 6px;
  960. border: 1px solid #081e5b;
  961. opacity: 1;
  962. }
  963. #team .member .social i {
  964. font-size: 16px;
  965. margin: 0 2px;
  966. }
  967. /* Contact Section
  968. --------------------------------*/
  969. #contact {
  970. padding: 60px 0;
  971. }
  972. #contact .contact-info {
  973. margin-bottom: 20px;
  974. text-align: center;
  975. }
  976. #contact .contact-info i {
  977. font-size: 24px;
  978. display: inline-block;
  979. margin-bottom: 0;
  980. color: #00b1e4;
  981. float: left;
  982. }
  983. #contact .contact-info address, #contact .contact-info p {
  984. margin-bottom: 0;
  985. color: #000;
  986. display: block;
  987. float: left;
  988. width: 100%;
  989. margin-bottom: 15px;
  990. padding: 0;
  991. margin-top: 0;
  992. margin-left: 27px;
  993. font-size: 14px;
  994. }
  995. #contact .contact-info h3 {
  996. font-size: 16px;
  997. margin-bottom: 15px;
  998. font-weight: bold;
  999. text-transform: uppercase;
  1000. color: #1c4450;
  1001. float: left;
  1002. margin: 8px 15px;
  1003. }
  1004. #contact .contact-info a {
  1005. color: #000;
  1006. }
  1007. #contact .contact-info a:hover {
  1008. color: #00b1e4;
  1009. }
  1010. #contact .contact-address, #contact .contact-phone, #contact .contact-email {
  1011. margin-bottom: 20px;
  1012. }
  1013. @media (min-width: 768px) {
  1014. #contact .contact-address, #contact .contact-phone, #contact .contact-email {
  1015. padding: 0;
  1016. text-align: left;
  1017. }
  1018. }
  1019. @media (min-width: 768px) {
  1020. #contact .contact-phone {
  1021. }
  1022. }
  1023. #contact #google-map {
  1024. height: 290px;
  1025. margin-bottom: 20px;
  1026. }
  1027. @media (max-width: 576px) {
  1028. #contact #google-map {
  1029. margin-top: 20px;
  1030. }
  1031. }
  1032. #contact .form #sendmessage {
  1033. color: #00b1e4;
  1034. border: 1px solid #00b1e4;
  1035. display: none;
  1036. text-align: center;
  1037. padding: 15px;
  1038. font-weight: 600;
  1039. margin-bottom: 15px;
  1040. }
  1041. #contact .form #errormessage {
  1042. color: red;
  1043. display: none;
  1044. border: 1px solid red;
  1045. text-align: center;
  1046. padding: 15px;
  1047. font-weight: 600;
  1048. margin-bottom: 15px;
  1049. }
  1050. #contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  1051. display: block;
  1052. }
  1053. #contact .form .validation {
  1054. color: red;
  1055. display: none;
  1056. margin: 0 0 20px;
  1057. font-weight: 400;
  1058. font-size: 13px;
  1059. }
  1060. #contact .form input, #contact .form textarea {
  1061. padding: 10px 14px;
  1062. border-radius: 0;
  1063. box-shadow: none;
  1064. font-size: 15px;
  1065. }
  1066. #contact .form button[type="submit"] {
  1067. background: #00b1e4;
  1068. border: 0;
  1069. border-radius: 3px;
  1070. padding: 10px 30px;
  1071. color: #fff;
  1072. transition: 0.4s;
  1073. cursor: pointer;
  1074. }
  1075. #contact .form button[type="submit"]:hover {
  1076. background: #0299c4;
  1077. }
  1078. /*--------------------------------------------------------------
  1079. # Footer
  1080. --------------------------------------------------------------*/
  1081. #footer {
  1082. background: #071e33;
  1083. padding: 0 0 30px 0;
  1084. font-size: 14px;
  1085. color: #fff;
  1086. }
  1087. #footer .copyright {
  1088. text-align: center;
  1089. padding-top: 30px;
  1090. color: #ffffffad;
  1091. }
  1092. #footer .credits {
  1093. text-align: center;
  1094. font-size: 13px;
  1095. color: #ffffff85;
  1096. margin-top: 8px;
  1097. }
  1098. #footer .credits a {
  1099. color: #00b1e4;
  1100. }
  1101. .owl-carousel .owl-item img {
  1102. display: block;
  1103. width: auto;
  1104. height: 70px;
  1105. margin: 0 auto;
  1106. }
  1107. #carousel-img-height {
  1108. height: 400px;
  1109. object-fit: cover; /* 保持图片宽高比并填充容器 */
  1110. }
  1111. .carousel-container {
  1112. position: relative; /* 使得绝对定位的子元素参照此元素定位 */
  1113. }
  1114. .float-buttons {
  1115. display: flex; /* 使用Flexbox布局 */
  1116. justify-content: center; /* 水平居中 */
  1117. position: absolute;
  1118. top: 260px; /* 调整此值以改变按钮距离顶部的距离 */
  1119. width: 100%; /* 让按钮栏宽度与轮播图一致 */
  1120. z-index: 10; /* 确保按钮在轮播图之上 */
  1121. }
  1122. .float-button {
  1123. margin: 0 5px; /* 左右间隔 */
  1124. }
  1125. .float-button:not(:last-child) {
  1126. margin-right: 10px; /* 仅在非最后一个按钮右侧添加间隔 */
  1127. }
  1128. /*--------------------------------------------------------------
  1129. # Features
  1130. --------------------------------------------------------------*/
  1131. .features .icon-box h4 {
  1132. font-size: 20px;
  1133. font-weight: 700;
  1134. margin: 5px 0 10px 60px;
  1135. }
  1136. .features .icon-box i {
  1137. font-size: 48px;
  1138. float: left;
  1139. color: #5846f9;
  1140. }
  1141. .features .icon-box p {
  1142. font-size: 15px;
  1143. color: #848484;
  1144. margin-left: 60px;
  1145. }
  1146. .features .image {
  1147. background-position: center center;
  1148. background-repeat: no-repeat;
  1149. background-size: cover;
  1150. min-height: 400px;
  1151. }
  1152. .parent {
  1153. display: grid;
  1154. grid-template-columns: repeat(2, 1fr);
  1155. grid-template-rows: repeat(5, 1fr);
  1156. grid-column-gap: 0px;
  1157. grid-row-gap: 0px;
  1158. }
  1159. .div1 {
  1160. grid-area: 2 / 1 / 3 / 2;
  1161. }
  1162. .div2 {
  1163. grid-area: 2 / 2 / 3 / 3;
  1164. }
  1165. .btn-group {
  1166. display: flex;
  1167. justify-content: center;
  1168. }
  1169. @media (min-width: 768px) {
  1170. .btn-group {
  1171. display: flex;
  1172. justify-content: center;
  1173. }
  1174. }
  1175. .card-with-image {
  1176. position: relative;
  1177. overflow: hidden;
  1178. min-height: 200px; /* 根据需要调整高度 */
  1179. }
  1180. .count-up .count-item .count-icon i {
  1181. font-size: 2.5rem;
  1182. color: #6e45e2;
  1183. }
  1184. .count-up .count-item .count-content {
  1185. margin: 10px 0;
  1186. }
  1187. .count-up .count-item .count-content .count-number {
  1188. font-size: 4rem;
  1189. font-weight: bold;
  1190. color: #ff9624;
  1191. }
  1192. .count-up .count-item p {
  1193. font-size: 1.25rem;
  1194. font-weight: 700;
  1195. }
  1196. .feature-data .count-up {
  1197. color: #333;
  1198. font-size: 70px;
  1199. }
  1200. .feature-data .text-muted {
  1201. color: #666;
  1202. font-size: 90px;
  1203. }
  1204. .layui-card {
  1205. text-align: center;
  1206. }
  1207. .layui-col-md12 {
  1208. text-align: center;
  1209. }
  1210. .layui-carousel {
  1211. margin-top: 10px;
  1212. background-color: transparent !important;
  1213. }
  1214. .parent {
  1215. display: grid;
  1216. place-items: center; /* 同时设置水平和垂直居中 */
  1217. }
  1218. .layui-card-header {
  1219. border-bottom: 1px solid #1e9fff;
  1220. font-size: 20px;
  1221. background-color: rgba(49, 189, 236, 0.1);
  1222. }
  1223. .layui-count-num {
  1224. font-size: 20px;
  1225. }
  1226. .layui-carousel-title {
  1227. font-size: 30px;
  1228. color: #31bdec;
  1229. }
  1230. .layui-card-custom1 {
  1231. background-color: #01205c;
  1232. }
  1233. #logo {
  1234. position: relative; /* 为logo的容器添加相对定位,以便内部元素可以进行绝对定位 */
  1235. }
  1236. .logo-image {
  1237. position: absolute; /* 使用绝对定位 */
  1238. top: 50%; /* 根据需要调整垂直位置,这里假设将其居中对齐 */
  1239. left: -60px; /* 调整水平距离,负值使其向左移动,具体数值根据logo大小和所需位置调整 */
  1240. transform: translateY(-50%); /* 如果图片需要垂直居中,使用此行代码进行微调 */
  1241. height: 50px; /* 设置图片高度,根据实际logo尺寸调整 */
  1242. width: auto; /* 保持图片宽高比 */
  1243. }
  1244. .logo-text {
  1245. display: inline-block; /* 确保文字周围有空间放置logo */
  1246. margin-right: 5px; /* 可根据需要调整与后面文字的间距 */
  1247. }
  1248. /* 移除导航栏背景色 */
  1249. #nav-menu-container .layui-nav {
  1250. background-color: transparent !important; /* 将背景色设置为透明,使用!important确保覆盖默认样式 */
  1251. }
  1252. /* 改变鼠标悬停时的指示颜色 */
  1253. #nav-menu-container .layui-nav .layui-nav-item a:hover,
  1254. #nav-menu-container .layui-nav .layui-nav-bar {
  1255. background-color: rgba(30, 153, 255, 0.5) !important; /* 将指示颜色设置为蓝色 */
  1256. }
  1257. /* 如果需要也可以调整展开子菜单时的背景色 */
  1258. #nav-menu-container .layui-nav-child dd.layui-this a,
  1259. #nav-menu-container .layui-nav-child dd.layui-this {
  1260. background-color: rgba(30, 153, 255, 0.5) !important; /* 子菜单选中项的背景色也改为蓝色 */
  1261. }
  1262. #phone-number {
  1263. color: #333; /* 根据需要调整颜色 */
  1264. margin-top: 12px; /* 调整上边距以对齐 */
  1265. font-size: 20px; /* 调整字体大小 */
  1266. }
  1267. /* 如果需要图标,确保引入Font Awesome或其他图标库,并调整图标样式 */
  1268. .fa-phone-square {
  1269. margin-right: 5px; /* 图标与文字之间的间隔 */
  1270. }
  1271. #innerBanner {
  1272. position: relative;
  1273. overflow: hidden;
  1274. background-color: #01205c;
  1275. width: 100%;
  1276. height: auto;
  1277. }
  1278. .serverbg::before {
  1279. width: 300px;
  1280. height: auto;
  1281. }
  1282. #innerBanner::before {
  1283. content: "";
  1284. position: absolute;
  1285. top: 0;
  1286. right: -100%; /* 初始位置完全在左侧 */
  1287. width: 33.33%;
  1288. height: 100%;
  1289. background-image: url('/image/blockchain-3448502_1280.jpg');
  1290. background-size: cover;
  1291. background-repeat: no-repeat;
  1292. animation: slideIn 2s forwards;
  1293. }
  1294. @keyframes slideIn {
  1295. 0% {
  1296. right: -100%;
  1297. }
  1298. 100% {
  1299. right: 0; /* 移动到Banner宽度的三分之一位置 */
  1300. }
  1301. }
  1302. .fixed-size-image {
  1303. width: 530px;
  1304. height: auto;
  1305. margin: 10px;
  1306. vertical-align: middle; /* 避免与其他元素底部对齐的问题 */
  1307. }
  1308. .image-container {
  1309. display: flex;
  1310. align-content: center;
  1311. }
  1312. /* 添加到你的CSS文件或<style>标签内 */
  1313. .card {
  1314. border-radius: 10px;
  1315. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  1316. }
  1317. .card-body {
  1318. background: linear-gradient(to right, #00BFFF, #0077B3);
  1319. color: white;
  1320. padding: 20px;
  1321. border-radius: inherit;
  1322. transition: transform 0.3s ease; /* 添加过渡效果以便平滑浮动 */
  1323. }
  1324. .count-up {
  1325. display: inline-block;
  1326. font-size: 2rem;
  1327. font-weight: bold;
  1328. position: relative;
  1329. }
  1330. /* 鼠标悬停时的浮动效果 */
  1331. .card:hover .card-body {
  1332. transform: translateY(-10px); /* 向上浮动10像素 */
  1333. box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* 可选:增加阴影来增强浮动效果 */
  1334. }
  1335. /* 翻转数字动画的基础样式 */
  1336. .flip-card-front, .flip-card-back {
  1337. position: absolute;
  1338. width: 100%;
  1339. height: 100%;
  1340. backface-visibility: hidden;
  1341. }
  1342. .flip-card-front {
  1343. transform: rotateY(0deg);
  1344. animation: flipIn 1s ease-in-out both;
  1345. }
  1346. .flip-card-back {
  1347. transform: rotateY(180deg);
  1348. }
  1349. @keyframes flipIn {
  1350. from {
  1351. transform: rotateY(180deg);
  1352. }
  1353. to {
  1354. transform: rotateY(0deg);
  1355. }
  1356. }
  1357. #custom-unaffected-card-body {
  1358. color: white; /* 或指定你需要的颜色,如果需要的话 */
  1359. font-size: 16px; /* 保持或调整为你希望的字体大小 */
  1360. }
  1361. .features {
  1362. background-color: #f9f9f9;
  1363. padding: 80px 0;
  1364. }
  1365. .container {
  1366. max-width: 1200px;
  1367. margin: 0 auto;
  1368. }
  1369. .section-header h2 {
  1370. margin-bottom: 1rem;
  1371. }
  1372. .section-header p {
  1373. max-width: 32rem;
  1374. margin: 0 auto;
  1375. font-size: 1.1rem;
  1376. }
  1377. .service-description {
  1378. display: grid;
  1379. grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  1380. grid-gap: 20px;
  1381. justify-content: center;
  1382. }
  1383. .service-item {
  1384. position: relative;
  1385. background-color: #ffffff;
  1386. border-radius: 16px;
  1387. padding: 30px;
  1388. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  1389. transition: transform 0.3s ease, box-shadow 0.3s ease;
  1390. display: flex;
  1391. flex-direction: column;
  1392. }
  1393. .service-item:hover {
  1394. transform: translateY(-5px);
  1395. box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
  1396. }
  1397. .service-item::before {
  1398. content: "";
  1399. position: absolute;
  1400. top: 0;
  1401. left: 0;
  1402. right: 0;
  1403. bottom: 0;
  1404. background-size: cover;
  1405. background-position: center;
  1406. opacity: 0.15;
  1407. border-radius: inherit;
  1408. z-index: -1;
  1409. }
  1410. .service-item h4,
  1411. .service-item p {
  1412. margin: 0;
  1413. text-align: center;
  1414. }
  1415. .service-item h4 {
  1416. font-size: 1.5rem;
  1417. color: #343a40;
  1418. }
  1419. .service-item p {
  1420. font-size: 1rem;
  1421. color: #6c757d;
  1422. margin-top: 1rem;
  1423. }
  1424. .service-item a {
  1425. color: #007bff;
  1426. transition: color 0.3s ease;
  1427. }
  1428. .service-item a:hover {
  1429. color: #0056b3;
  1430. }
  1431. .btn-primary {
  1432. background-color: #007bff;
  1433. border-color: #007bff;
  1434. font-weight: 600;
  1435. transition: all 0.3s ease;
  1436. }
  1437. .btn-primary:hover {
  1438. background-color: #0056b3;
  1439. border-color: #0056b3;
  1440. }
  1441. .footer-links {
  1442. background-color: #f9f9f9;
  1443. padding: 2rem;
  1444. border-radius: 16px; /* 增加圆角大小以显得更加友好 */
  1445. box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1); /* 加深阴影,提高层次感 */
  1446. margin-bottom: 4rem;
  1447. font-family: Arial, sans-serif; /* 设置统一的字体以保证良好的阅读体验 */
  1448. }
  1449. .footer-links h3 {
  1450. color: #333;
  1451. margin-bottom: 1.5rem;
  1452. text-transform: uppercase;
  1453. letter-spacing: 1.5px;
  1454. font-size: 1.2rem;
  1455. font-weight: 700; /* 增强标题的重量感 */
  1456. }
  1457. .link-list {
  1458. list-style: none;
  1459. padding: 0;
  1460. display: flex;
  1461. flex-wrap: wrap;
  1462. justify-content: space-between;
  1463. }
  1464. .link-list li {
  1465. margin-bottom: 1.2rem;
  1466. }
  1467. .link-list a {
  1468. display: inline-block; /* 保证链接块级元素表现一致 */
  1469. padding: 0.5rem 1rem; /* 添加内边距,提高点击区域 */
  1470. color: #333;
  1471. text-decoration: none;
  1472. transition: color 0.3s ease, background-color 0.3s ease; /* 添加背景过渡效果 */
  1473. border-radius: 8px; /* 给链接添加圆角 */
  1474. }
  1475. .link-list a:hover,
  1476. .link-list a:focus {
  1477. color: #fff; /* 改为白色以对比主题色 */
  1478. background-color: #007bff; /* 使用鲜艳的主题色 */
  1479. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 鼠标悬停时增加轻微阴影 */
  1480. }
  1481. /* 小屏幕优化 */
  1482. @media (max-width: 768px) {
  1483. .link-list {
  1484. justify-content: flex-start;
  1485. }
  1486. .link-list li {
  1487. margin-bottom: 0.75rem;
  1488. width: calc(50% - 1rem); /* 考虑间距,避免换行时错位 */
  1489. }
  1490. }
  1491. /* 更小屏幕优化 */
  1492. @media (max-width: 480px) {
  1493. .link-list li {
  1494. width: 100%;
  1495. margin-bottom: 1rem;
  1496. }
  1497. }
  1498. #services .fullscreen-image {
  1499. position: relative;
  1500. width: 100%;
  1501. height: 100vh; /* 设置高度为视口高度 */
  1502. overflow: hidden;
  1503. }
  1504. #services .fullscreen-image p {
  1505. margin: 0; /* 移除默认的段落外边距 */
  1506. }
  1507. #services .fullscreen-image img {
  1508. position: absolute;
  1509. top: 50%;
  1510. left: 50%;
  1511. min-width: 100%; /* 至少100%宽度 */
  1512. min-height: 100%; /* 至少100%高度 */
  1513. transform: translate(-50%, -50%);
  1514. object-fit: cover; /* 保持图片原始比例的同时填满容器 */
  1515. }
  1516. .service-row {
  1517. display: flex;
  1518. flex-wrap: wrap;
  1519. justify-content: center;
  1520. }
  1521. .service-item-container {
  1522. flex: 0 0 auto;
  1523. max-width: 25%; /* 大屏幕每行4个 */
  1524. margin: 0 8px; /* 添加一些左右间距 */
  1525. }
  1526. @media (max-width: 991.98px) {
  1527. .service-item-container {
  1528. max-width: 50%; /* 中等屏幕每行2个 */
  1529. }
  1530. }
  1531. @media (max-width: 767.98px) {
  1532. .service-item-container {
  1533. max-width: 100%; /* 小屏幕每行1个 */
  1534. }
  1535. }