styles.css 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526
  1. /* @import url(http://fonts.useso.com/css?family=Open+Sans:400,700,600);
  2. @import url(http://fonts.useso.com/css?family=Oswald:400,700); */
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. font-family: 'Open Sans', sans-serif;
  7. }
  8. body {
  9. height: 100%;
  10. font-family: 'Open Sans', sans-serif;
  11. font-size: 16px;
  12. line-height: 1.7;
  13. color: #666666;
  14. -webkit-font-smoothing: antialiased;
  15. -webkit-text-size-adjust: 100%;
  16. background: #fff;
  17. transition: all 0.3s linear;
  18. -webkit-transition: all 0.3s linear;
  19. -moz-transition: all 0.3s linear;
  20. -o-transition: all 0.3s linear;
  21. }
  22. ::selection {
  23. color: #fff;
  24. background: #005f8d;
  25. }
  26. ::-moz-selection {
  27. color: #fff;
  28. background: #005f8d;
  29. }
  30. p {
  31. color: #858585;
  32. margin: 0 0 1em !important;
  33. }
  34. h1, h2, h3, h4, h5, h6 {
  35. font-family: 'Oswald', sans-serif;
  36. }
  37. .fitImage {
  38. max-width: 100%;
  39. vertical-align: middle;
  40. display: inline-block;
  41. }
  42. .animated {
  43. /* -webkit-animation-duration: 1s; */
  44. animation-duration: 1s;
  45. -webkit-animation-delay: 0s;
  46. animation-delay: 0s;
  47. }
  48. .mcbook {
  49. opacity: 0;
  50. }
  51. .show {
  52. opacity: 1;
  53. }
  54. .pDark p {
  55. color: #6D6D6D;
  56. }
  57. #services .circle:hover {
  58. transform: rotate(360deg);
  59. -webkit-transform: rotate(360deg);
  60. -moz-transform: rotate(360deg);
  61. -o-transform: rotate(360deg);
  62. -ms-transform: rotateY(360deg);
  63. transition: all 0.2s linear 0s;
  64. -webkit-transition: all 0.2s linear 0s;
  65. -moz-transition: all 0.2s linear 0s;
  66. -o-transition: all 0.2s linear 0s;
  67. }
  68. .pDark h3 {
  69. color: #BEBEBE;
  70. }
  71. .btn {
  72. background: #005f8d;
  73. }
  74. .btn:hover {
  75. background: #145AC4;
  76. }
  77. .btn, .form-control, .team-socials i {
  78. border-radius: 5px !important;
  79. }
  80. .form-group {
  81. margin: 0 auto;
  82. margin-bottom: 15px;
  83. width: 95%;
  84. }
  85. .form-control {
  86. border: none;
  87. padding: 22px 4px;
  88. outline: none;
  89. color: #5A5A5A;
  90. margin: 0;
  91. width: 210px;
  92. max-width: 100%;
  93. display: block;
  94. margin-bottom: 20px;
  95. background: #fff;
  96. font-size: inherit;
  97. border-radius: 0px !important;
  98. width: 99%;
  99. }
  100. .button-outline {
  101. -webkit-font-smoothing: antialiased;
  102. display: inline-block;
  103. vertical-align: middle;
  104. zoom: 1;
  105. color: #fff;
  106. padding: 10px 25px;
  107. border: 2px solid #fff;
  108. border-radius: 0px;
  109. font-size: 16px;
  110. font-weight: 400;
  111. background: rgba(255, 255, 255, 0.15);
  112. }
  113. .button-outline:hover {
  114. color: #fff;
  115. background: rgba(255, 255, 255, 0.35);
  116. }
  117. a {
  118. color: #005f8d;
  119. text-decoration: none;
  120. text-shadow: none;
  121. -webkit-transition: all 0.2s linear;
  122. -moz-transition: all 0.2s linear;
  123. -ms-transition: all 0.2s linear;
  124. -o-transition: all 0.2s linear;
  125. transition: all 0.2s linear;
  126. }
  127. a:hover {
  128. color: #000;
  129. text-decoration: none;
  130. }
  131. .btn {
  132. border: 0px;
  133. border-radius: 0px;
  134. }
  135. .btn-primary {
  136. background: #005f8d;
  137. }
  138. .form-control {
  139. border-radius: 0px;
  140. }
  141. .mrgn30 {
  142. margin: 30px 0;
  143. }
  144. .copyright {
  145. color: #6D6D6D;
  146. background: #161616;
  147. padding: 20px 0;
  148. }
  149. #top {
  150. position: relative;
  151. }
  152. .topHome {
  153. position: fixed;
  154. bottom: 20px;
  155. right: 20px;
  156. z-index: 5;
  157. }
  158. .topHome:hover {
  159. color: #F89F9F;
  160. }
  161. /* Header
  162. ----------------------------------------------*/
  163. #section-top {
  164. background: #4E4E4E;
  165. }
  166. #section-top ul {
  167. margin: 0;
  168. padding: 0;
  169. list-style: none;
  170. float: right;
  171. }
  172. #section-top ul li {
  173. display: inline-block;
  174. }
  175. #section-top ul li a {
  176. border-radius: 2px;
  177. display: inline-block;
  178. height: 35px;
  179. line-height: 35px;
  180. width: 35px;
  181. text-align: center;
  182. }
  183. #section-top .region-top-first {
  184. float: right;
  185. }
  186. .header { /* ✅ 导航栏 */
  187. position: fixed;
  188. width: 100%;
  189. z-index: 50;
  190. border-radius: 0;
  191. top: 0px;
  192. background: rgba(255, 255, 255, 0);
  193. }
  194. .addBg { /* ✅ 导航栏 背景 */
  195. background: #457fea;
  196. transition: all 0.3s linear;
  197. -webkit-transition: all 0.3s linear;
  198. -moz-transition: all 0.3s linear;
  199. -o-transition: all 0.3s linear;
  200. }
  201. .navbar-inverse {
  202. background: transparent;
  203. }
  204. .navbar-inverse .navbar-toggle {
  205. background-color: #005f8d;
  206. }
  207. .navbar-inverse .navbar-toggle .icon-bar {
  208. /*background-color: #005f8d;*/
  209. }
  210. .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  211. background: #005f8d;
  212. }
  213. .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  214. color: #00a1cb;
  215. }
  216. /*导航栏高亮文字颜色*/
  217. .addBg .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  218. color: #ffffff;
  219. }
  220. /*导航栏文字颜色*/
  221. .navbar-inverse .navbar-toggle:hover .icon-bar {
  222. background: #a7d0ff;
  223. }
  224. .navbar-toggle {
  225. }
  226. .hero-text h1 {
  227. color: #fff !important;
  228. }
  229. .hero-text {
  230. color: #000;
  231. width: 83%;
  232. text-align: center;
  233. margin: 40% auto 24px auto;
  234. font-family: 'Oswald', sans-serif;
  235. }
  236. .hero-text p {
  237. font-family: 'Oswald', sans-serif;
  238. padding: 0;
  239. margin: 12px 8% 0;
  240. text-shadow: 0px 1px 2px rgba(0, 0, 0, .2);
  241. }
  242. /*.carousel-inner*/
  243. #myCarousel {
  244. margin-top: 50px;
  245. border-bottom: 4px solid #005f8d;
  246. }
  247. .carousel-inner > .item {
  248. }
  249. .carousel-caption {
  250. padding: 0px;
  251. bottom: 40%;
  252. display: block;
  253. height: 80px;
  254. }
  255. .carousel-caption h1 {
  256. font-size: 45px;
  257. padding: 10px 15px;
  258. background: rgba(128, 180, 33, 0.80);
  259. color: #FFFFFF;
  260. text-shadow: none;
  261. font-weight: bold;
  262. display: inline-block;
  263. }
  264. .carousel-caption h3 {
  265. font-size: 30px;
  266. color: #1C4604;
  267. font-weight: bold;
  268. text-shadow: #fff 1px 1px 1px;
  269. }
  270. .actionPanel {
  271. padding: 25px 0;
  272. background: #005f8d;
  273. }
  274. .actionPanel h3 {
  275. margin: 0px;
  276. }
  277. .circle {
  278. background: #fff;
  279. height: 90px;
  280. width: 90px;
  281. border-radius: 95px;
  282. color: #005f8d;
  283. line-height: 90px !important;
  284. }
  285. #section-strapline {
  286. background: #fcfdff;
  287. line-height: 42px;
  288. clear: both;
  289. }
  290. /*----Nav ----*/
  291. .header .navbar-brand {
  292. float: left;
  293. padding: 22px 15px;
  294. line-height: 18px;
  295. height: 50px; /*color:#005f8d;*/
  296. }
  297. .navbar-brand b {
  298. color: #00a1cb;
  299. font-family: 'Oswald', sans-serif;
  300. font-weight: 900;
  301. }
  302. .addBg .navbar-brand b {
  303. color: #fff;
  304. }
  305. .navbar-brand b i {
  306. color: #fff;
  307. font-style: normal;
  308. }
  309. .logo {
  310. font-size: 2.2em;
  311. text-shadow: none;
  312. margin: 8px 0 0 0;
  313. }
  314. .logo:hover {
  315. color: #5A5A5A;
  316. }
  317. .header .navbar {
  318. margin: 0;
  319. background: transparent;
  320. border: 0;
  321. }
  322. /*导航栏透明时文字颜色*/
  323. .navbar-inverse .navbar-nav > li > a {
  324. color: #a7d0ff;
  325. font-size: 1.2em;
  326. line-height: normal;
  327. margin: 17px;
  328. padding: 6px 0px !important;
  329. border-radius: 5px;
  330. font-family: 'Oswald', sans-serif;
  331. font-weight: 400;
  332. text-transform: uppercase;
  333. }
  334. .addBg .navbar-inverse .navbar-nav > li > a {
  335. color: #fff;
  336. }
  337. /*导航栏透明时高亮文字颜色*/
  338. .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  339. color: #ffffff;
  340. background: none;
  341. border-radius: 0px;
  342. }
  343. .addBg .navbar-inverse .navbar-nav > .active > a, .addBg .navbar-inverse .navbar-nav > .active > a:hover, .addBg .navbar-inverse .navbar-nav > .active > a:focus {
  344. color: #00486B;
  345. background: none;
  346. border-radius: 0px;
  347. }
  348. .navbar-inverse .navbar-nav > .active {
  349. }
  350. .header .navbar-nav > li > a {
  351. padding: 25px 18px;
  352. }
  353. .page-section {
  354. width: 100%;
  355. height: auto;
  356. padding: 35px 0;
  357. }
  358. .noPadd {
  359. padding: 0;
  360. }
  361. .page-section h1 {
  362. font-size: 3.5em;
  363. margin: 90px 0 30px;
  364. line-height: 1.2em;
  365. }
  366. .page-section h1 span {
  367. font-weight: 200;
  368. }
  369. .page-section h2 {
  370. color: #005f8d;
  371. }
  372. .page-section p {
  373. font-size: 1.1em;
  374. line-height: 1.6em;
  375. }
  376. .darkBg {
  377. background: #000;
  378. }
  379. .darkBg .fa {
  380. color: #005f8d;
  381. }
  382. /*--- Banner ----*/
  383. .banner-container {
  384. width: 100%;
  385. position: relative;
  386. padding: 0px;
  387. box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
  388. /*background: url("../images/banner-bg.jpg") no-repeat;*/
  389. background-size: 100% 100%;
  390. background-size: cover;
  391. position: relative;
  392. border-bottom: 2px #005f8d solid;
  393. }
  394. .banner-container > img {
  395. width: 100%;
  396. }
  397. .banner-content {
  398. position: absolute;
  399. z-index: 3;
  400. top: 0px;
  401. left: 0px;
  402. right: 0px;
  403. }
  404. .hero-text h1 {
  405. color: #fff;
  406. font-size: 6.5em;
  407. margin: 2% 0 30px;
  408. line-height: 1.5em;
  409. font-family: 'Roboto', sans-serif;
  410. text-shadow: 1px 1px 1px #8F8F8F;
  411. font-weight: 900;
  412. font-size: 48px;
  413. margin: 37px 0 13px;
  414. text-transform: uppercase;
  415. text-shadow: 0 1px 1px rgba(124, 124, 124, 1);
  416. background: rgba(0, 161, 203, 0.53);
  417. display: inline-block;
  418. /* float: left; */
  419. margin: 0 auto;
  420. text-align: center;
  421. padding: 15px 17px;
  422. }
  423. .hero-text p {
  424. font-size: 1.6em;
  425. color: #fff;
  426. font-style: normal;
  427. font-family: 'Roboto', sans-serif;
  428. text-shadow: 1px 1px 1px #8F8F8F;
  429. }
  430. .arrow-link {
  431. display: block;
  432. font-size: 32px;
  433. margin-top: 20px;
  434. height: 60px;
  435. line-height: 60px;
  436. overflow: hidden;
  437. text-align: center;
  438. vertical-align: top;
  439. width: 60px;
  440. margin: 0 auto;
  441. }
  442. a.arrow-link {
  443. color: #005f8d;
  444. }
  445. a.arrow-link:hover {
  446. color: #005f8d;
  447. }
  448. .colord { /*公司简介背景*/
  449. background: #2f5bac;
  450. }
  451. .colord p {
  452. color: #DAE0FF;
  453. }
  454. .colord h3 {
  455. color: #fff;
  456. }
  457. /*公司介绍下方文本框 背景*/
  458. .c1 {
  459. background: #49c7d0;
  460. padding: 15px;
  461. height: 600px; /* 设置固定高度 */
  462. }
  463. .c2 {
  464. background: #457fea;
  465. padding: 15px;
  466. height: 600px; /* 设置固定高度 */
  467. }
  468. .c1:hover, .c2:hover {
  469. background: rgba(0, 43, 54, 0.89);
  470. cursor: pointer;
  471. }
  472. .hero-button {
  473. text-align: center;
  474. background: rgba(255, 255, 255, 0.36);
  475. border: 1px solid #fff;
  476. padding: 20px;
  477. display: inline-block;
  478. margin: 0 auto;
  479. clear: left;
  480. width: auto;
  481. }
  482. .hero-img {
  483. text-align: center;
  484. margin: 124px auto 24px auto;
  485. }
  486. .da-slider {
  487. margin: 0 auto !important;
  488. }
  489. .heading h2 {
  490. color: #222;
  491. }
  492. #contactUs .heading h2 {
  493. color: #fff;
  494. }
  495. .sub-heading {
  496. padding: 15px 0;
  497. }
  498. .sub-heading h2 {
  499. font-size: 18px;
  500. margin: 15px 0 8px;
  501. }
  502. .sub-heading p {
  503. color: #5A5A5A;
  504. }
  505. .heading {
  506. padding: 3px 10px;
  507. padding-bottom: 15px;
  508. margin-bottom: 30px;
  509. display: block;
  510. }
  511. /*test part*/
  512. /* 电脑端 (PC) 显示:左右排列 */
  513. .feature-container-custom {
  514. display: flex;
  515. flex-direction: row; /* 电脑端左右布局 */
  516. align-items: center;
  517. justify-content: space-between;
  518. max-width: 1200px;
  519. margin: 0 auto;
  520. padding: 20px;
  521. gap: 20px;
  522. }
  523. .feature-media {
  524. flex: 1;
  525. max-width: 50%; /* 电脑端图片最大50% */
  526. }
  527. .feature-media img {
  528. width: 100%;
  529. height: auto;
  530. border-radius: 10px;
  531. }
  532. .feature-text {
  533. flex: 1.5;
  534. max-width: 50%;
  535. font-size: 16px;
  536. line-height: 1.6;
  537. text-align: justify;
  538. }
  539. /* 📱 手机端自适应 (当屏幕宽度小于 768px) */
  540. @media screen and (max-width: 768px) {
  541. .feature-container-custom {
  542. flex-direction: column; /* 改为上下排列 */
  543. text-align: center; /* 文字居中 */
  544. padding: 10px;
  545. }
  546. .feature-media {
  547. max-width: 100%; /* 图片宽度变为100% */
  548. }
  549. .feature-text {
  550. max-width: 100%; /* 文字宽度100% */
  551. font-size: 14px; /* 字体缩小 */
  552. padding: 10px;
  553. }
  554. .feature-text p {
  555. max-height: none; /* 移除文字高度限制 */
  556. overflow: visible; /* 允许文字完整显示 */
  557. }
  558. }
  559. .heading p {
  560. font-size: 1.2em;
  561. }
  562. .pdingBtm30 {
  563. padding-bottom: 30px;
  564. }
  565. .da-arrows span:after {
  566. width: 25px;
  567. height: 37px;
  568. }
  569. .da-arrows span {
  570. position: absolute;
  571. top: 50%;
  572. height: 34px;
  573. width: 34px;
  574. border-radius: 60px;
  575. background: none;
  576. }
  577. .da-dots span {
  578. display: inline-block;
  579. position: relative;
  580. width: 16px;
  581. height: 16px;
  582. border-radius: 50%;
  583. background: rgba(255, 255, 255, 0.13);
  584. margin: 3px;
  585. cursor: pointer;
  586. box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1) inset, 1px 1px 1px rgba(255, 255, 255, 0.1);
  587. border: 2px solid #005f8d;
  588. }
  589. img, video, iframe, embed, object {
  590. max-width: 100%;
  591. height: auto;
  592. }
  593. #aboutUs {
  594. background: #fff;
  595. padding-top: 35px;
  596. padding-bottom: 25px;
  597. overflow: hidden;
  598. }
  599. #aboutUs .feature {
  600. margin-top: 30px;
  601. margin-bottom: 54px;
  602. }
  603. #aboutUs .right {
  604. padding-left: 32px;
  605. float: right;
  606. }
  607. #aboutUs .left {
  608. padding-right: 32px;
  609. float: left;
  610. }
  611. #aboutUs h3 {
  612. font: 18px/34px;
  613. text-transform: uppercase;
  614. letter-spacing: 1px;
  615. color: #222;
  616. }
  617. .fluid-video-wrapper {
  618. margin-top: 18px;
  619. }
  620. #aboutUs .left {
  621. padding-right: 32px;
  622. float: left;
  623. }
  624. #aboutUs .right {
  625. float: right;
  626. }
  627. .row .six {
  628. width: 50%;
  629. }
  630. /* Features
  631. -------------------------------------------------*/
  632. #news {
  633. background: #fff;
  634. padding-top: 35px;
  635. padding-bottom: 25px;
  636. overflow: hidden;
  637. }
  638. #news .feature {
  639. margin-top: 30px;
  640. margin-bottom: 54px;
  641. }
  642. #news .right {
  643. padding-left: 32px;
  644. float: right;
  645. }
  646. #news .left {
  647. padding-right: 32px;
  648. float: left;
  649. }
  650. #news h3 {
  651. font: 18px/34px;
  652. text-transform: uppercase;
  653. letter-spacing: 1px;
  654. color: #222;
  655. }
  656. .announcement-text {
  657. justify-content: flex-end; /* 让整个内容靠右 */
  658. }
  659. .fluid-video-wrapper {
  660. margin-top: 18px;
  661. }
  662. .row .six {
  663. width: 50%;
  664. }
  665. /* Services
  666. /* 外层容器 */
  667. .container {
  668. width: 90%; /* 控制整体宽度 */
  669. max-width: 1200px; /* 最大宽度,防止超出屏幕 */
  670. margin: 0 auto; /* 居中 */
  671. }
  672. /* 使用 Flexbox 让图片和文本左右排列 */
  673. .grid {
  674. display: flex; /* 让子元素水平排列 */
  675. align-items: flex-start; /* 让图片和文字顶部对齐 */
  676. justify-content: space-between; /* 让图片和文字保持间距 */
  677. flex-wrap: wrap; /* 允许在小屏幕下换行 */
  678. flex-direction: row-reverse; /* 反转排列顺序,让图片在左边,文字在右边 */
  679. }
  680. /* 文字部分 */
  681. .text-content {
  682. flex: 1; /* 让文字部分占据 50% */
  683. max-width: 50%; /* 限制最大宽度 */
  684. padding-left: 40px; /* 文字和图片之间的间距 */
  685. color: white; /* 文字颜色 */
  686. display: flex;
  687. flex-direction: column;
  688. justify-content: flex-start; /* 让标题和段落排成列 */
  689. }
  690. /* 标题部分居中 */
  691. .text-content h2 {
  692. text-align: center; /* 标题居中 */
  693. margin-top: 0; /* 去除标题的默认上边距 */
  694. margin-bottom: 20px; /* 给标题与段落之间加点间距 */
  695. }
  696. /* 段落部分左右对齐 */
  697. .text-content p {
  698. text-align: justify; /* 段落文字左右对齐 */
  699. margin: 0;
  700. }
  701. /* 图片部分 */
  702. .image-content {
  703. flex: 1; /* 让图片部分占据 50% */
  704. max-width: 50%; /* 限制最大宽度 */
  705. max-height: fit-content;
  706. }
  707. /* 让图片自适应 */
  708. .image-content img {
  709. width: 100%; /* 让图片宽度自适应 */
  710. height: auto; /* 保持图片比例 */
  711. display: block; /* 去除底部默认间隙 */
  712. }
  713. /* 在小屏幕(如手机)下调整布局 */
  714. @media (max-width: 768px) {
  715. .grid {
  716. flex-direction: column; /* 改为上下排列 */
  717. text-align: center; /* 让文字居中 */
  718. }
  719. .text-content, .image-content {
  720. max-width: 100%; /* 让内容占满屏幕 */
  721. padding: 0; /* 移除间距 */
  722. }
  723. }
  724. #heading3 {
  725. text-align: center; /* 让文字居中 */
  726. margin: 10px 0 45px 0;
  727. }
  728. /* Team*/
  729. #news {
  730. background: #fff;
  731. padding-top: 35px;
  732. padding-bottom: 25px;
  733. overflow: hidden;
  734. }
  735. #news .feature {
  736. margin-top: 30px;
  737. margin-bottom: 54px;
  738. }
  739. #news .right {
  740. padding-left: 32px;
  741. float: right;
  742. }
  743. #news .left {
  744. padding-right: 32px;
  745. float: left;
  746. }
  747. #news h3 {
  748. font: 18px/34px;
  749. text-transform: uppercase;
  750. letter-spacing: 1px;
  751. color: #222;
  752. }
  753. .fluid-video-wrapper {
  754. margin-top: 18px;
  755. }
  756. #news .left {
  757. padding-right: 32px;
  758. float: left;
  759. }
  760. #news .right {
  761. float: right;
  762. }
  763. .row .six {
  764. width: 50%;
  765. }
  766. #contactUs {
  767. /*background: #005f8d;*/;
  768. }
  769. #contactUs .btn {
  770. border-radius: 0px !important;
  771. background: rgba(0, 0, 0, 0.32);
  772. }
  773. .descrition {
  774. min-height: 90px;
  775. /*text-align: center;*/
  776. /*border-bottom: 1px solid #dadde2;*/
  777. padding: 5px 15px;
  778. }
  779. #services h2 {
  780. color: #fff;
  781. }
  782. /* --Portfolio----- */
  783. #work { /*阿尔兹海默症 背景*/
  784. background: #2f5bac;
  785. color: #fff;
  786. }
  787. #work h2 {
  788. color: #fff !important;
  789. }
  790. #work p {
  791. color: #fff;
  792. }
  793. #portfolio {
  794. width: 100%;
  795. display: flex;
  796. justify-content: center; /* 水平居中 */
  797. align-items: center; /* 垂直居中 */
  798. position: relative;
  799. }
  800. #portfolio video {
  801. width: 80%; /* 控制视频宽度,可以调整 */
  802. max-width: 900px; /* 最大宽度,避免过大 */
  803. height: auto; /* 保持原始比例 */
  804. border-radius: 10px; /* 添加圆角 */
  805. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
  806. cursor: pointer; /* ✅ 鼠标指针变为手型 */
  807. }
  808. nav#filter {
  809. margin-bottom: 1.5em;
  810. }
  811. nav#filter li {
  812. display: inline-block;
  813. margin: 0 0 0 5px;
  814. }
  815. nav#filter a {
  816. padding: 4px 12px;
  817. line-height: 20px;
  818. border: 1px solid #005f8d;
  819. text-decoration: none;
  820. }
  821. .current {
  822. background: #005f8d;
  823. color: #fff;
  824. }
  825. .page-section.intro {
  826. min-height: 600px;
  827. }
  828. .btn {
  829. font-weight: 200;
  830. }
  831. .btn-dark {
  832. background: #444;
  833. color: #fff;
  834. }
  835. .btn-dark:hover {
  836. background: #000;
  837. color: #fff;
  838. }
  839. .back-to-top {
  840. display: inline-block;
  841. clear: both;
  842. background: #fff;
  843. color: #333;
  844. padding: 0 10px 5px;
  845. margin: 20px 0 0;
  846. text-shadow: none;
  847. }
  848. .back-to-top:hover {
  849. background: #333;
  850. color: #fff;
  851. text-decoration: none;
  852. }
  853. hr {
  854. border-color: #ddd;
  855. }
  856. body {
  857. margin: 0;
  858. font-family: Arial, sans-serif;
  859. }
  860. #navigation {
  861. position: fixed;
  862. top: 0;
  863. right: 0;
  864. margin: 0;
  865. padding: 0;
  866. width: 200px;
  867. background: #ffffff;
  868. box-shadow: 0 10px 10px -10px #000000;
  869. }
  870. #navigation > li {
  871. margin: 0;
  872. padding: 0;
  873. list-style: none;
  874. }
  875. #navigation > li > a {
  876. margin: 1px;
  877. color: #000000;
  878. background: #cccccc;
  879. display: block;
  880. padding: 5px;
  881. text-decoration: none;
  882. transition: all 400ms;
  883. }
  884. #navigation > li > a.current, #navigation > li:hover > a {
  885. background: #999999;
  886. }
  887. .pageSection {
  888. min-height: 600px;
  889. padding: 20px;
  890. background: #dddddd;
  891. }
  892. .pageSection:nth-child(odd) {
  893. background: #eeeeee;
  894. }
  895. .socialIcons li {
  896. list-style: none;
  897. display: inline;
  898. margin-right: 6px;
  899. }
  900. footer {
  901. border-top: 1px solid #e5e5e5;
  902. padding: 45px 0;
  903. background: #fff;
  904. }
  905. .social a:hover {
  906. color: #000;
  907. }
  908. .social a {
  909. font-size: 32px;
  910. margin: 0 10px;
  911. color: #005f8d;
  912. background: rgba(255, 255, 255, 0.44);
  913. padding: 0px 10px;
  914. }
  915. .contact ul li {
  916. margin-bottom: 10px;
  917. }
  918. .contact ul li i {
  919. margin-right: 15px;
  920. }
  921. /*Clients*/
  922. .clients #owl-demo .item {
  923. background: none;
  924. }
  925. .clients .helper {
  926. display: inline-block;
  927. height: 100%;
  928. vertical-align: middle;
  929. }
  930. .clients .helper img {
  931. vertical-align: middle;
  932. max-height: 70px;
  933. max-width: 80%;
  934. }
  935. .clients .helper:hover {
  936. cursor: e-resize;
  937. }
  938. .clients .customNavigation > a {
  939. font-size: 25px;
  940. cursor: pointer;
  941. margin: 0px 5px;
  942. }
  943. .portfolio-item img:hover {
  944. width: 110%;
  945. height: 110%;
  946. }
  947. @media (min-width: 768px) {
  948. .header .navbar-brand {
  949. padding-left: 0;
  950. }
  951. .navbar-nav {
  952. float: right;
  953. }
  954. .navbar-inverse .navbar-nav > li > a {
  955. font-size: 1.1em;
  956. padding: 6px 0px !important;
  957. border-radius: 5px;
  958. margin: 19px 20px;
  959. }
  960. }
  961. @media (max-width: 768px) {
  962. .hero-text {
  963. color: #000;
  964. width: 83%;
  965. text-align: center;
  966. margin: 27% auto 24px auto;
  967. }
  968. .hero-text h1 {
  969. font-size: 21px !important;
  970. }
  971. a.arrow-link {
  972. display: none;
  973. }
  974. .banner-container {
  975. background-size: contain;
  976. }
  977. .row .six {
  978. width: auto;
  979. }
  980. .da-slide h2 {
  981. font-size: 28px;
  982. }
  983. .banner-content p {
  984. font-size: 1.2em;
  985. text-shadow: none;
  986. }
  987. .hero-img {
  988. display: none;
  989. }
  990. .da-slide p {
  991. width: 67%;
  992. top: 122px;
  993. }
  994. .team-member .member-img img {
  995. max-width: 100%;
  996. }
  997. .da-slider {
  998. height: 380px;
  999. width: 100%;
  1000. min-width: initial;
  1001. margin: 0px !important;
  1002. }
  1003. .header .navbar-nav > li > a {
  1004. padding: 25px 12px;
  1005. }
  1006. .portfolio-item img {
  1007. text-decoration: none;
  1008. display: block;
  1009. width: 330px;
  1010. height: 228px;
  1011. float: left;
  1012. margin: 0 3px 3px 0;
  1013. opacity: 1;
  1014. -webkit-transform: scale(1, 1);
  1015. -webkit-transition-timing-function: ease-out;
  1016. -webkit-transition-duration: 250ms;
  1017. -moz-transform: scale(1, 1);
  1018. -moz-transition-timing-function: ease-out;
  1019. -moz-transition-duration: 250ms;
  1020. }
  1021. .portfolio-item:hover .folio-info {
  1022. top: 0px;
  1023. }
  1024. .portfolio-item .portfolio-desc .folio-info {
  1025. padding: 0px;
  1026. }
  1027. .portfolio-item .portfolio-desc .folio-info h5 {
  1028. font-size: 1em;
  1029. }
  1030. ;
  1031. }
  1032. @media (max-width: 760px) {
  1033. .header .navbar-nav > li > a {
  1034. padding: 7px 12px;
  1035. font-size: 14px;
  1036. }
  1037. .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  1038. border-color: #A8A8A8;
  1039. }
  1040. ;
  1041. }
  1042. @media (max-width: 480px) {
  1043. .banner-container {
  1044. background-size: contain;
  1045. }
  1046. .hero-text h1 {
  1047. font-size: 17px !important;
  1048. }
  1049. .banner-container > img {
  1050. width: 100%;
  1051. height: 240px;
  1052. }
  1053. .responsive-headline {
  1054. font-size: 16px !important
  1055. }
  1056. .hero-text {
  1057. margin-top: 29%;
  1058. }
  1059. .navbar {
  1060. min-height: 69px;
  1061. }
  1062. .arrow-link {
  1063. display: none;
  1064. }
  1065. .da-slide h2 {
  1066. font-size: 22px;
  1067. top: 7px;
  1068. text-shadow: none;
  1069. }
  1070. .da-slide p {
  1071. width: 65%;
  1072. top: 42px;
  1073. height: 50px;
  1074. }
  1075. #section-top ul li a {
  1076. height: 28px;
  1077. line-height: 28px;
  1078. width: 26px;
  1079. }
  1080. .team-socials a {
  1081. background: white;
  1082. padding: 1px 0;
  1083. margin: 2px;
  1084. }
  1085. .team-socials i {
  1086. width: 19px;
  1087. height: 19px;
  1088. position: relative;
  1089. display: inline-block;
  1090. text-align: center;
  1091. font-size: 16px;
  1092. }
  1093. .page-section {
  1094. padding: 0px;
  1095. }
  1096. .page-section h1 {
  1097. font-size: 3em;
  1098. }
  1099. .page-section h2 {
  1100. font-size: 2em;
  1101. }
  1102. .page-section p {
  1103. font-size: 1em;
  1104. margin: 0 0 20px;
  1105. }
  1106. .portfolio-item .portfolio-desc .folio-info h5 {
  1107. font-size: 11px;
  1108. }
  1109. ;
  1110. }
  1111. @media (max-width: 320px) {
  1112. .banner-container {
  1113. background-size: contain;
  1114. }
  1115. .da-slider {
  1116. height: 300px;
  1117. }
  1118. .da-slider {
  1119. width: 100%;
  1120. min-width: initial;
  1121. position: relative;
  1122. margin: 0 auto;
  1123. }
  1124. .da-dots {
  1125. bottom: 2px;
  1126. }
  1127. .grid .text-content {
  1128. padding-left: 29%;
  1129. padding-right: 2%;
  1130. }
  1131. .portfolio-item:hover .folio-info {
  1132. top: 0px;
  1133. }
  1134. .portfolio-item .portfolio-desc .folio-info h5 {
  1135. text-transform: uppercase;
  1136. text-align: center;
  1137. font-weight: normal;
  1138. font-size: 10px;
  1139. margin: 10px 0 0 0;
  1140. }
  1141. nav#filter li {
  1142. display: inline-block;
  1143. margin: 0 0 23px 5px;
  1144. }
  1145. ;
  1146. }
  1147. #owl-demo .item {
  1148. background: #3fbf79;
  1149. padding: 30px 0px;
  1150. margin: 10px;
  1151. color: #FFF;
  1152. -webkit-border-radius: 3px;
  1153. -moz-border-radius: 3px;
  1154. border-radius: 3px;
  1155. text-align: center;
  1156. }
  1157. .customNavigation {
  1158. text-align: center;
  1159. }
  1160. .customNavigation a {
  1161. -webkit-user-select: none;
  1162. -khtml-user-select: none;
  1163. -moz-user-select: none;
  1164. -ms-user-select: none;
  1165. user-select: none;
  1166. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1167. }
  1168. .contact-parlex {
  1169. padding-top: 0px;
  1170. background-image: url('../images/banner-bg.jpg');
  1171. background-size: cover;
  1172. background-repeat: no-repeat;
  1173. background-attachment: fixed;
  1174. }
  1175. .parlex-back { /*联系我们 背景*/
  1176. padding: 30px 0;
  1177. background-color: #2f5bac;
  1178. color: #FDFDFD !important;
  1179. }
  1180. .parlex-back .heading p {
  1181. color: #FDFDFD;
  1182. }
  1183. #clients {
  1184. background: #fff;
  1185. }
  1186. #ContentText { /*文本*/
  1187. color: rgb(217, 225, 229); /* 半透明蓝色 */
  1188. font-size: 25px;
  1189. text-decoration: underline; /* 下划线 */
  1190. }
  1191. iframe { /*地图大小*/
  1192. width: 100%;
  1193. height: 500px; /* 或根据需要调整 */
  1194. }
  1195. /*Price table*/
  1196. .flat .plan {
  1197. border-radius: 0px;
  1198. list-style: none;
  1199. padding: 0 0 20px;
  1200. margin: 0 0 15px;
  1201. background: #fff;
  1202. text-align: center;
  1203. box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.29) !important;
  1204. }
  1205. .flat .plan li {
  1206. padding: 10px 15px;
  1207. color: #ccc;
  1208. border-top: 1px solid #f5f5f5;
  1209. -webkit-transition: 300ms;
  1210. transition: 300ms;
  1211. }
  1212. .flat .plan li.plan-price {
  1213. border-top: 0;
  1214. }
  1215. .flat .plan li.plan-name {
  1216. border-radius: 0;
  1217. padding: 15px;
  1218. font-size: 24px;
  1219. line-height: 24px;
  1220. color: #fff;
  1221. background: #4E4E4E;
  1222. margin-bottom: 30px;
  1223. border-top: 0;
  1224. }
  1225. .flat .plan li > strong {
  1226. color: #6B6B6B;
  1227. font-weight: normal;
  1228. }
  1229. .flat .plan li.plan-action {
  1230. margin-top: 10px;
  1231. border-top: 0;
  1232. }
  1233. .flat .plan.featured {
  1234. -webkit-transform: scale(1.1);
  1235. -ms-transform: scale(1.1);
  1236. transform: scale(1.1);
  1237. }
  1238. .flat .plan.featured:hover li.plan-name, .flat .plan:hover li.plan-name, .flat .plan.featured.plan-name {
  1239. background: #005f8d !important;
  1240. }
  1241. .customNavigation {
  1242. display: none;
  1243. }
  1244. #clients .heading {
  1245. margin: 0px;
  1246. }
  1247. .isotope-item {
  1248. margin: 0px;
  1249. padding: 0px;
  1250. box-sizing: border-box;
  1251. opacity: 1;
  1252. }
  1253. .isotopeWrapper article {
  1254. margin: 0px;
  1255. }
  1256. #customH2 {
  1257. text-align: center !important;
  1258. color: #FFF(247, 243, 242) !important;
  1259. font-size: 24px !important;
  1260. margin: 10px 0 45px 0 !important;
  1261. }