main.css 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313
  1. /* =================================== */
  2. /* Basic Style
  3. /* =================================== */
  4. body {
  5. background-color: #fff;
  6. font-family: 'Open Sans', sans-serif;
  7. line-height: 24px;
  8. font-size: 16px;
  9. color: #818181;
  10. }
  11. figure, p, address {
  12. margin: 0;
  13. }
  14. iframe {
  15. border: 0;
  16. }
  17. a {
  18. color: #0aa6bd;
  19. -webkit-transition: all 0.3s ease-out 0s;
  20. -moz-transition: all 0.3s ease-out 0s;
  21. -ms-transition: all 0.3s ease-out 0s;
  22. -o-transition: all 0.3s ease-out 0s;
  23. transition: all 0.3s ease-out 0s;
  24. }
  25. a, a:hover, a:focus, .btn:focus {
  26. text-decoration: none;
  27. outline: none;
  28. }
  29. h1, h2, h3, h4, h5, h6,
  30. .h1, .h2, .h3, .h4, .h5, .h6 {
  31. font-family: 'Open Sans', sans-serif;
  32. color: #252525;
  33. }
  34. p {
  35. font-size: 15px;
  36. }
  37. li {
  38. list-style: none;
  39. }
  40. main > section {
  41. /* padding: 70px 0; */
  42. }
  43. .btn {
  44. border-radius: 0;
  45. border: 0;
  46. position: relative;
  47. text-transform: uppercase;
  48. }
  49. .btn-blue {
  50. background-color: rgba(10, 166, 189, 0.75);
  51. box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
  52. padding: 15px 55px;
  53. color: #fff;
  54. }
  55. .btn-border {
  56. border: 2px solid #fff;
  57. color: #fff;
  58. padding: 12px 35px;
  59. }
  60. .bg-blue {
  61. background-color: #0aa6bd;
  62. }
  63. .logo-img {
  64. width: 90px;
  65. margin-top: 2px;
  66. }
  67. /* 顶部导航 */
  68. .top-nav {
  69. background: #484443;
  70. height: 35px;
  71. position: fixed;
  72. top: 0;
  73. left: 0;
  74. z-index: 1001;
  75. width: 100%;
  76. line-height: 35px;
  77. }
  78. .top-nav ul {
  79. float: right;
  80. }
  81. .el-dropdown {
  82. line-height: 50px;
  83. font-size: 16px;
  84. }
  85. /* 遮罩 */
  86. .zhezhao {
  87. position: fixed;
  88. top: 0;
  89. left: 0;
  90. height: 100%;
  91. width: 100%;
  92. background: #000;
  93. opacity: 0.35;
  94. z-index: 10000;
  95. }
  96. /* 登录弹窗 */
  97. .box{
  98. width: 430px;
  99. height: 504px;
  100. position: fixed;
  101. background:white;
  102. top: 50%;
  103. left:50%;
  104. margin-left: -215px;
  105. margin-top: -252px;
  106. z-index: 10001;
  107. }
  108. /* 11/12注册页面 ..........................................*/
  109. .login,.profile {
  110. color: white;
  111. font-size: 12px;
  112. /* font-weight: 600; */
  113. }
  114. .profile .user-info {
  115. margin: 0 15px;
  116. }
  117. .login img,.profile img {
  118. width: 16px;
  119. margin-right: 5px;
  120. }
  121. .login > span:hover,.profile > span:hover{
  122. cursor:pointer;
  123. /* color: #0aa6bd; */
  124. }
  125. .zc-box {
  126. margin: 50px;
  127. }
  128. .back {
  129. background: #6f6f6f;
  130. }
  131. /* 首页内容 ..........................................*/
  132. .my-text {
  133. position: absolute;
  134. width: 13%;
  135. height: 6%;
  136. top: 64%;
  137. left: 50%;
  138. transform: translate(-50%, -50%);
  139. z-index: 100;
  140. }
  141. .my-tiyan {
  142. background: #1E88F5;
  143. border-radius: 4px;
  144. width: 100%;
  145. height: 100%;
  146. font-family: PingFangSC-Regular;
  147. font-size: 14px;
  148. color: #FFFFFF;
  149. border: 0;
  150. }
  151. .my-tiyan:hover {
  152. background: #317ef3;
  153. margin-top: 1px;
  154. }
  155. /* 特色 .......................................*/
  156. .ts-worp {
  157. width: 100%;
  158. padding: 0;
  159. margin: 0;
  160. padding-top: 100px;
  161. }
  162. .ts-box {
  163. overflow: hidden;
  164. /* position: relative; */
  165. padding: 100px 50px 100px 20px;
  166. width: 100%;
  167. display: table;
  168. background: #F8FAFD;
  169. }
  170. .ts-boxtow {
  171. padding: 100px 20px 100px 50px;
  172. background: white;
  173. }
  174. .ts-box div {
  175. display: table-cell;
  176. vertical-align: middle;
  177. }
  178. .ts-box img {
  179. width: 95%;
  180. }
  181. .ts-forbox img {
  182. width: 100%;
  183. }
  184. /* .ts-imgmax {
  185. width: 100%;
  186. }
  187. .ts-imgmin {
  188. width: 100%;
  189. } */
  190. .ts-title {
  191. font-family: PingFangSC-Regular !important;
  192. color: #0D253E !important;
  193. font-size: 24px !important;
  194. margin-bottom: 14px;
  195. font-weight: 600;
  196. }
  197. .left {
  198. float: left;
  199. }
  200. .right {
  201. float: right;
  202. }
  203. .right-text {
  204. text-align: right;
  205. }
  206. .left-text {
  207. text-align: left;
  208. }
  209. .ts-text {
  210. font-family: PingFangSC-Regular !important;
  211. color: #9EA8B2 !important;
  212. }
  213. /* 功能 .........................................*/
  214. .gn-beijing {
  215. width: 100%;
  216. position: absolute;
  217. top: 280px;
  218. }
  219. .gn-img {
  220. width: 100px;
  221. height: 100px;
  222. border-radius: 50%;
  223. background: #1E88F5;
  224. text-align: center;
  225. line-height: 100px;
  226. margin: 0 auto;
  227. position: relative;
  228. margin-top: 12px;
  229. }
  230. .gn-img img {
  231. width: 50%;
  232. }
  233. .gn-huise {
  234. background: #F4F8FC;
  235. }
  236. .gn-xiaoqiu {
  237. width: 30px;
  238. height: 30px;
  239. border-radius: 50%;
  240. background: #FFCC01;
  241. box-shadow: 0 0 15px 0 rgba(255,204,1,0.40);
  242. position: absolute;
  243. top: 0;
  244. right: 0;
  245. }
  246. .gn-left {
  247. left: 0;
  248. }
  249. .gn-hei>div {
  250. height: 245px;
  251. }
  252. .service-item {
  253. margin-bottom: 60px;
  254. padding:0 14px;
  255. text-align: center;
  256. }
  257. .gn-text {
  258. font-family: PingFangSC-Regular;
  259. font-size: 18px;
  260. color: #0D253E;
  261. font-weight: 600;
  262. margin-top: 12px;
  263. }
  264. .gn-color {
  265. color: #1E88F5;
  266. }
  267. /* 帮助 ........................................*/
  268. .bz-worp {
  269. background: white;
  270. margin: 0 auto;
  271. padding: 42px 40px 109px 48px;
  272. }
  273. .bz-box {
  274. border: 1px solid #1E88F5;
  275. border-radius: 5px;
  276. border-right: 0;
  277. }
  278. .bz-sskuang {
  279. width: 88%;
  280. float: left;
  281. line-height: 38px;
  282. }
  283. .bz-sousuo {
  284. width: 70%;
  285. margin: 0 -5px;
  286. border: 0;
  287. outline: none;
  288. }
  289. .bz-sousuoimg {
  290. margin: -3px 10px 0 14px;
  291. }
  292. .bz-btn {
  293. background: #1E88F5;
  294. border-radius: 0 5px 5px 0;
  295. width: 12%;
  296. border: 0;
  297. color: white;
  298. height: 40px;
  299. }
  300. .bz-content {
  301. margin-top: 30px;
  302. border: 0;
  303. }
  304. .bz-left {
  305. width: 100%;
  306. overflow: hidden;
  307. }
  308. .bz-ul {
  309. border-bottom: 1px solid #D8D8D8;
  310. overflow: hidden;
  311. margin-left: -40px;
  312. }
  313. .bz-right {
  314. width: 100%;
  315. background: white;
  316. }
  317. .bz-yuandian {
  318. background: #FFCC01;
  319. width: 16px;
  320. height: 16px;
  321. border-radius: 50%;
  322. margin: 4px 8px 0 0;
  323. }
  324. .bz-right-conent li {
  325. border-bottom: 1px solid #E8ECEF;
  326. padding: 10px 0;
  327. list-style: none;
  328. overflow: hidden;
  329. margin-left: -40px;
  330. }
  331. .bz-right-conent li:last-child {
  332. border-bottom: 0;
  333. }
  334. .bz-right-conent {
  335. margin-top: 30px;
  336. }
  337. /* 底部 ...................................*/
  338. /*footer*/
  339. .footer{
  340. width: 100%;
  341. background-image: url(../img/footer2x.png);
  342. background-size: 100%;
  343. }
  344. .db-text {
  345. background: #1E88F5;
  346. color: #FFFFFF;
  347. }
  348. .footer .container{
  349. margin: 0 auto;
  350. width: 80%;
  351. /* height: 260px; */
  352. overflow: hidden;
  353. text-align: center;
  354. }
  355. .footer-section .link{
  356. overflow: hidden;
  357. float: left;
  358. /* margin-right: 100px; */
  359. width: 52%;
  360. }
  361. .footer-section ul{
  362. float: left;
  363. /* margin-right: 45px; */
  364. width: 25%;
  365. }
  366. .footer-section ul:last-child {
  367. margin-right: 0;
  368. }
  369. .footer-section ul>li{
  370. list-style: none;
  371. }
  372. .footer-section ul>li span {
  373. display: inline-block;
  374. margin-bottom: 28px;
  375. font-size: 16px;
  376. color: #fff;
  377. }
  378. .footer-section ul>li a{
  379. display: inline-block;
  380. margin-bottom: 10px;
  381. font-size: 14px;
  382. color: #fff;
  383. cursor: pointer;
  384. opacity: 0.9;
  385. }
  386. .footer-section ul>li:hover a{
  387. text-decoration: underline ;
  388. color: #1E88F5;
  389. }
  390. .footer-section ul>li:hover a.no-link{
  391. text-decoration: none;
  392. color: #fff;
  393. cursor: default;
  394. }
  395. .footer-section .about{
  396. float: left;
  397. /* margin-right: 30px;
  398. width: 245px; */
  399. width: 25%;
  400. text-align: left;
  401. }
  402. .footer-section .about .logo{
  403. margin-bottom: 18px;
  404. }
  405. .footer-section .about .logo img{
  406. width: 150px;
  407. /* height: 44px; */
  408. }
  409. .footer-section .about .time{
  410. margin-bottom: 21px;
  411. font-size: 14px;
  412. color: #fff;
  413. }
  414. .footer-section .qr{
  415. overflow: hidden;
  416. text-align: right;
  417. float: right;
  418. }
  419. .footer-section .qr .qr-top{
  420. overflow: hidden;
  421. }
  422. .footer-section .qr .qr-code{
  423. width: 110px;
  424. font-size: 14px;
  425. color: #fff;
  426. text-align: center;
  427. }
  428. .footer-section .qr .qr-mall{
  429. margin-right: 21px;
  430. }
  431. .footer-section .qr .qr-code img{
  432. width: 100%;
  433. margin-bottom: 18px;
  434. }
  435. .footer-section .qr .qr-bottom{
  436. margin-top: 22px;
  437. line-height: 30px;
  438. text-align: right;
  439. font-size: 13px;
  440. color: #fff;
  441. }
  442. .footer .footer-list{
  443. margin: 55px auto 22px;
  444. overflow: hidden;
  445. width: 100%;
  446. }
  447. .friend-link{
  448. height: 56px;
  449. background: #14152D;
  450. width: 100%;
  451. line-height: 56px;
  452. text-align: center;
  453. }
  454. .friend-link span {
  455. font-family: PingFangSC-Regular;
  456. font-size: 14px;
  457. color: #7C93AD;
  458. letter-spacing: 0;
  459. text-align: center;
  460. }
  461. .section-title p {
  462. color: #444;
  463. /* font-style: italic; */
  464. font-size: 13px;
  465. }
  466. .section-title.white p {
  467. color: #fff;
  468. }
  469. .parallax {
  470. background-attachment: fixed;
  471. background-position: center top;
  472. background-repeat: no-repeat;
  473. background-size: cover;
  474. }
  475. /**
  476. /* Header
  477. /* ==========================================*/
  478. #navigation {
  479. -webkit-transition: all 0.8s ease 0s;
  480. -moz-transition: all 0.8s ease 0s;
  481. -ms-transition: all 0.8s ease 0s;
  482. -o-transition: all 0.8s ease 0s;
  483. transition: all 0.8s ease 0s;
  484. /* background-color: rgba(0, 0, 0, 0.77); */
  485. /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); */
  486. background: #1C1F48;
  487. opacity: 0.8;
  488. }
  489. #navigation.animated-header {
  490. /* padding: 10px 0; */
  491. }
  492. h1.navbar-brand {
  493. font-size: 20px;
  494. font-weight: 700;
  495. margin-top: -12px;
  496. text-transform: uppercase;
  497. }
  498. .navbar-inverse .navbar-nav > li > a {
  499. color: #fff;
  500. font-size: 16px;
  501. text-transform: uppercase;
  502. /* font-weight: bold; */
  503. }
  504. .navbar-nav>li>a {
  505. padding: 15px 20px 3px 20px !important;
  506. }
  507. .menu li a {
  508. display: inline-block;
  509. }
  510. .menu li a span:before {
  511. content: "";
  512. position: absolute;
  513. width: 100%;
  514. height: 2px;
  515. bottom: 0;
  516. left: 0;
  517. background-color: #0aa6bd;
  518. visibility: hidden;
  519. -webkit-transform: scaleX(0);
  520. -moz-transform: scaleX(0);
  521. -ms-transform: scaleX(0);
  522. -o-transform: scaleX(0);
  523. transform: scaleX(0);
  524. -webkit-transition: all 0.3s ease-in-out 0s;
  525. -moz-transition: all 0.3s ease-in-out 0s;
  526. -ms-transition: all 0.3s ease-in-out 0s;
  527. -o-transition: all 0.3s ease-in-out 0s;
  528. transition: all 0.3s ease-in-out 0s;
  529. }
  530. .menu li a:hover span:before {
  531. visibility: visible;
  532. -webkit-transform: scaleX(1);
  533. -moz-transform: scaleX(1);
  534. -ms-transform: scaleX(1);
  535. -o-transform: scaleX(1);
  536. transform: scaleX(1);
  537. }
  538. /*=================================================================
  539. Home Slider
  540. ==================================================================*/
  541. #home-slider {
  542. position: relative;
  543. padding: 0;
  544. }
  545. .mask-overly {
  546. /* background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0; */
  547. bottom: 0;
  548. left: 0;
  549. position: absolute;
  550. right: 0;
  551. top: 0;
  552. /* z-index: 9; */
  553. }
  554. #slider #nav-arrows > a {
  555. font-size: 40px;
  556. line-height: 1.5;
  557. }
  558. .slider-1 img{
  559. width: 100%;
  560. /* height: 100%; */
  561. }
  562. .sl-slider-wrapper {
  563. width: 100%;
  564. margin: 0 auto;
  565. position: relative;
  566. /* overflow: hidden; */
  567. }
  568. .sl-slider {
  569. position: absolute;
  570. top: 0;
  571. left: 0;
  572. right: 0;
  573. bottom: 0;
  574. }
  575. /* Slide wrapper and slides */
  576. .sl-slide,
  577. .sl-slides-wrapper,
  578. .sl-slide-inner {
  579. position: absolute;
  580. width: 100%;
  581. height: 100%;
  582. top: 0;
  583. left: 0;
  584. }
  585. .sl-slide {
  586. z-index: 1;
  587. }
  588. .slide-caption {
  589. color: #fff;
  590. display: table;
  591. height: 100%;
  592. left: 0;
  593. min-height: 100%;
  594. position: absolute;
  595. text-align: center;
  596. top: 0;
  597. width: 60%;
  598. z-index: 999;
  599. left: 50%;
  600. transform: translateX(-50%);
  601. }
  602. .slide-caption .caption-content {
  603. vertical-align: middle;
  604. display: table-cell;
  605. }
  606. .caption-content h2 {
  607. color: #fff;
  608. font-size: 50px;
  609. font-weight: 900;
  610. margin-bottom: 25px;
  611. }
  612. .caption-content > p {
  613. display: block;
  614. font-size: 16px;
  615. margin-bottom: 45px;
  616. text-transform: capitalize;
  617. margin-bottom: 65px;
  618. font-weight: 200;
  619. }
  620. /*Slider Arrow Buttons*/
  621. #nav-arrows > a {
  622. border: 1px solid #fff;
  623. color: #fff;
  624. display: block;
  625. height: 60px;
  626. line-height: 76px;
  627. position: absolute;
  628. text-align: center;
  629. top: 50%;
  630. width: 60px;
  631. z-index: 20;
  632. margin-top: -30px;
  633. -webkit-transition: all 0.3s ease 0s;
  634. -moz-transition: all 0.3s ease 0s;
  635. -ms-transition: all 0.3s ease 0s;
  636. -o-transition: all 0.3s ease 0s;
  637. transition: all 0.3s ease 0s;
  638. }
  639. #nav-arrows > a.sl-prev {
  640. transform: translateX(-50px);
  641. opacity:0;
  642. }
  643. #slider:hover #nav-arrows > a.sl-prev {
  644. opacity: 1;
  645. transform: translateX(20px);
  646. }
  647. #nav-arrows > a.sl-next {
  648. right:0;
  649. transform: translateX(50px);
  650. opacity:0;
  651. }
  652. #slider:hover #nav-arrows > a.sl-next {
  653. opacity: 1;
  654. transform: translateX(-20px);
  655. }
  656. #nav-arrows > a.sl-next:hover ,#nav-arrows > a.sl-prev:hover {
  657. background-color: #0aa6bd;
  658. border-color: #0aa6bd;
  659. color: #fff;
  660. }
  661. /* The duplicate parts/slices */
  662. .sl-content-slice {
  663. overflow: hidden;
  664. position: absolute;
  665. -webkit-box-sizing: content-box;
  666. -moz-box-sizing: content-box;
  667. box-sizing: content-box;
  668. background: #fff;
  669. -webkit-backface-visibility: hidden;
  670. -moz-backface-visibility: hidden;
  671. -o-backface-visibility: hidden;
  672. -ms-backface-visibility: hidden;
  673. backface-visibility: hidden;
  674. opacity : 1;
  675. }
  676. /* Horizontal slice */
  677. .sl-slide-horizontal .sl-content-slice {
  678. width: 100%;
  679. height: 50%;
  680. left: -200px;
  681. -webkit-transform: translateY(0%) scale(1);
  682. -moz-transform: translateY(0%) scale(1);
  683. -o-transform: translateY(0%) scale(1);
  684. -ms-transform: translateY(0%) scale(1);
  685. transform: translateY(0%) scale(1);
  686. }
  687. .sl-slide-horizontal .sl-content-slice:first-child {
  688. top: -200px;
  689. padding: 200px 200px 0px 200px;
  690. }
  691. .sl-slide-horizontal .sl-content-slice:nth-child(2) {
  692. top: 50%;
  693. padding: 0px 200px 200px 200px;
  694. }
  695. /* Vertical slice */
  696. .sl-slide-vertical .sl-content-slice {
  697. width: 50%;
  698. height: 100%;
  699. top: -200px;
  700. -webkit-transform: translateX(0%) scale(1);
  701. -moz-transform: translateX(0%) scale(1);
  702. -o-transform: translateX(0%) scale(1);
  703. -ms-transform: translateX(0%) scale(1);
  704. transform: translateX(0%) scale(1);
  705. }
  706. .sl-slide-vertical .sl-content-slice:first-child {
  707. left: -200px;
  708. padding: 200px 0px 200px 200px;
  709. }
  710. .sl-slide-vertical .sl-content-slice:nth-child(2) {
  711. left: 50%;
  712. padding: 200px 200px 200px 0px;
  713. }
  714. /* Content wrapper */
  715. /* Width and height is set dynamically */
  716. .sl-content-wrapper {
  717. position: absolute;
  718. }
  719. .sl-content {
  720. width: 100%;
  721. height: 100%;
  722. }
  723. /*=================================================================
  724. Feature
  725. ==================================================================*/
  726. .list-nav {
  727. padding:0;
  728. margin-top: 20px;
  729. }
  730. .list-nav li {
  731. list-style: none;
  732. margin: 0;
  733. padding: 0;
  734. font-size: 16px;
  735. padding-left: 30px;
  736. margin-bottom: 10px;
  737. position: relative;
  738. }
  739. .list-nav li i {
  740. position: absolute;
  741. left: 0;
  742. top: 4px;
  743. font-size: 28px;
  744. color: #1fb5f6;
  745. }
  746. /*=================================================================
  747. Portfolio
  748. ==================================================================*/
  749. .project-wrapper {
  750. margin: 0;
  751. padding: 0;
  752. list-style: none;
  753. text-align: center;
  754. }
  755. .project-wrapper .row {
  756. margin: 0;
  757. }
  758. .project-wrapper [class^="col-"] {
  759. padding-left: 0;
  760. padding-right: 0;
  761. }
  762. .portfolio-filter {
  763. font-size: 0;
  764. list-style: outside none none;
  765. margin: 0 0 40px;
  766. padding: 0;
  767. }
  768. .portfolio-filter li {
  769. display: inline-block;
  770. }
  771. .portfolio-filter li a {
  772. color: #777;
  773. display: block;
  774. font-size: 14px;
  775. padding: 0 20px;
  776. position: relative;
  777. }
  778. .portfolio-filter li a.active {
  779. color: #0aa6bd;
  780. }
  781. .portfolio-filter li a::after {
  782. bottom: auto;
  783. content: "/";
  784. position: absolute;
  785. right: 0;
  786. top: auto;
  787. }
  788. .portfolio-filter li:last-child a::after {
  789. content: none;
  790. }
  791. .portfolio-item {
  792. cursor: pointer;
  793. overflow: hidden;
  794. position: relative;
  795. }
  796. .portfolio-item img {
  797. -webkit-transition: all 0.4s ease 0s;
  798. -moz-transition: all 0.4s ease 0s;
  799. -o-transition: all 0.4s ease 0s;
  800. transition: all 0.4s ease 0s;
  801. }
  802. .portfolio-item:hover img {
  803. -webkit-transform: translateY(-105px);
  804. -ms-transform: translateY(-105px);
  805. -o-transform: translateY(-105px);
  806. transform: translateY(-105px);
  807. }
  808. figcaption.mask {
  809. background-color: #f1f1f1;
  810. bottom: 0;
  811. color: #333;
  812. padding: 25px;
  813. position: absolute;
  814. width: 100%;
  815. text-align: left;
  816. -webkit-transform: translateY(100%);
  817. -ms-transform: translateY(100%);
  818. -o-transform: translateY(100%);
  819. transform: translateY(100%);
  820. -webkit-transition: all 0.4s ease 0s;
  821. -moz-transition: all 0.4s ease 0s;
  822. -o-transition: all 0.4s ease 0s;
  823. transition: all 0.4s ease 0s;
  824. }
  825. .portfolio-item:hover figcaption.mask {
  826. -webkit-transform: translateY(0px);
  827. -ms-transform: translateY(0px);
  828. -o-transform: translateY(0px);
  829. transform: translateY(0px);
  830. }
  831. figcaption.mask h3 {
  832. margin-top: 0;
  833. color: #333;
  834. font-size: 18px;
  835. margin-bottom:15px;
  836. opacity: 0;
  837. -webkit-transform: translateY(30px);
  838. -ms-transform: translateY(30px);
  839. -o-transform: translateY(30px);
  840. transform: translateY(30px);
  841. -webkit-transition: all 0.4s ease 0.1s;
  842. -moz-transition: all 0.4s ease 0.1s;
  843. -o-transition: all 0.4s ease 0.1s;
  844. transition: all 0.4s ease 0.1s;
  845. }
  846. figcaption.mask p {
  847. line-height: 1.3;
  848. -webkit-transform: translateY(30px);
  849. -ms-transform: translateY(30px);
  850. -o-transform: translateY(30px);
  851. transform: translateY(30px);
  852. opacity: 0;
  853. -webkit-transition: all 0.4s ease 0.3s;
  854. -moz-transition: all 0.4s ease 0.3s;
  855. -o-transition: all 0.4s ease 0.3s;
  856. transition: all 0.4s ease 0.3s;
  857. }
  858. .portfolio-item:hover figcaption.mask h3,
  859. .portfolio-item:hover figcaption.mask p {
  860. opacity: 1;
  861. -webkit-transform: translateY(0px);
  862. -ms-transform: translateY(0px);
  863. -o-transform: translateY(0px);
  864. transform: translateY(0px);
  865. }
  866. ul.external {
  867. list-style: outside none none;
  868. margin: 0;
  869. padding: 0;
  870. position: absolute;
  871. right: 0;
  872. top: -47px;
  873. -webkit-transition: all 0.4s ease 0s;
  874. -moz-transition: all 0.4s ease 0s;
  875. -ms-transition: all 0.4s ease 0s;
  876. -o-transition: all 0.4s ease 0s;
  877. transition: all 0.4s ease 0s;
  878. }
  879. ul.external li {
  880. display: inline-block;
  881. }
  882. ul.external li a {
  883. background-color: rgba(255, 255, 255, 0.9);
  884. color: #818181;
  885. display: block;
  886. padding: 10px 18px 13px;
  887. -webkit-transition: all 0.5s ease 0s;
  888. -moz-transition: all 0.5s ease 0s;
  889. -ms-transition: all 0.5s ease 0s;
  890. -o-transition: all 0.5s ease 0s;
  891. transition: all 0.5s ease 0s;
  892. }
  893. ul.external li a:hover {
  894. background-color: #0aa6bd;
  895. color: #fff;
  896. }
  897. .portfolio-item:hover ul.external {
  898. top: 0;
  899. }
  900. .fancybox-skin {
  901. border-radius: 0;
  902. }
  903. .fancybox-title.fancybox-title-inside-wrap {
  904. padding: 15px;
  905. }
  906. .fancybox-title h3 {
  907. margin: 0 0 15px;
  908. }
  909. .fancybox-title p {
  910. color: #818181;
  911. font-size: 16px;
  912. line-height: 22px;
  913. }
  914. .fancybox-title-inside-wrap {
  915. padding-top: 0;
  916. }
  917. /*=================================================================
  918. Testimonials
  919. ==================================================================*/
  920. .owl-controls .owl-page, .owl-controls .owl-buttons div {
  921. cursor: pointer;
  922. display: inline-block;
  923. margin: 0 8px;
  924. padding: 10px;
  925. }
  926. .price-table {
  927. border: 1px solid #e3e3e3;
  928. }
  929. .price-table.featured {
  930. border-color: #e3e3e3;
  931. border-style: solid;
  932. border-width: 1px 1px 0 1px;
  933. -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
  934. -moz-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
  935. box-shadow: 0 4px 5px rgba(0,0,0,0.19);
  936. }
  937. .price-table > span {
  938. color: #444;
  939. display: block;
  940. font-size: 24px;
  941. padding: 30px 0;
  942. text-transform: uppercase;
  943. font-weight: bold;
  944. letter-spacing: 2px;
  945. }
  946. .price-table .value {
  947. background-color: #f8f8f8;
  948. color: #727272;
  949. padding: 20px 0;
  950. -webkit-transition: all 0.7s ease 0s;
  951. -moz-transition: all 0.7s ease 0s;
  952. -ms-transition: all 0.7s ease 0s;
  953. -o-transition: all 0.7s ease 0s;
  954. transition: all 0.7s ease 0s;
  955. }
  956. .price-table.featured .value {
  957. background-color: #0aa6bd;
  958. color: #fff;
  959. }
  960. .price-table .value span {
  961. display: inline-block;
  962. }
  963. .price-table .value span:first-child {
  964. font-size: 32px;
  965. line-height: 32px;
  966. }
  967. .price-table .value span:nth-child(2) {
  968. font-size: 40px;
  969. line-height: 40px;
  970. margin-bottom: 10px;
  971. }
  972. .price-table .value span:last-child {
  973. font-size: 16px;
  974. }
  975. .price-table ul {
  976. margin: 0;
  977. padding: 0;
  978. list-style: none;
  979. text-align: center;
  980. }
  981. .price-table ul li {
  982. border-top: 1px solid #e3e3e3;
  983. display: block;
  984. padding: 15px 0;
  985. -webkit-transition: all 0.7s ease 0s;
  986. -moz-transition: all 0.7s ease 0s;
  987. -ms-transition: all 0.7s ease 0s;
  988. -o-transition: all 0.7s ease 0s;
  989. transition: all 0.7s ease 0s;
  990. }
  991. .price-table ul li a {
  992. display: block;
  993. text-transform: uppercase;
  994. }
  995. .price-table.featured ul li:last-child,
  996. .price-table ul li:last-child:hover {
  997. background-color: #0aa6bd;
  998. }
  999. .price-table.featured ul li:last-child a,
  1000. .price-table ul li:last-child:hover a {
  1001. color: #fff;
  1002. }
  1003. /*============================================================
  1004. For Small Desktop
  1005. ==============================================================*/
  1006. @media (min-width: 980px) and (max-width: 1150px) {
  1007. /*about*/
  1008. #about .welcome-block img {
  1009. margin-bottom: 30px;
  1010. }
  1011. }
  1012. /*============================================================
  1013. Tablet (Portrait) Design for a width of 768px
  1014. ==============================================================*/
  1015. @media (min-width: 768px) and (max-width: 979px) {
  1016. /* home slider */
  1017. .caption-content h2 {
  1018. font-size: 40px;
  1019. }
  1020. .caption-content p {
  1021. font-size: 25px;
  1022. }
  1023. .caption-content strong {
  1024. font-size: 45px;
  1025. }
  1026. /* about */
  1027. .recent-works {
  1028. margin-bottom: 50px;
  1029. }
  1030. /* price */
  1031. .price-table {
  1032. margin-bottom: 50px;
  1033. }
  1034. /* contact form */
  1035. .contact-form {
  1036. margin-bottom: 50px;
  1037. }
  1038. }
  1039. /*============================================================
  1040. Mobile (Portrait) Design for a width of 320px
  1041. ==============================================================*/
  1042. @media only screen and (max-width: 767px) {
  1043. body {
  1044. font-size: 14px;
  1045. }
  1046. .parallax {
  1047. background-position: centet tip !important;
  1048. }
  1049. .section-title h2 {
  1050. font-size: 25px;
  1051. }
  1052. .section-title h2:after {
  1053. left: 30%;
  1054. }
  1055. /*navigation*/
  1056. .navbar-inverse .navbar-toggle {
  1057. border-color: #fff;
  1058. }
  1059. .navbar-inverse .navbar-toggle:hover,
  1060. .navbar-inverse .navbar-toggle:focus {
  1061. background-color: transparent;
  1062. }
  1063. /* slider */
  1064. .caption-content h2 {
  1065. font-size: 18px;
  1066. }
  1067. .caption-content > span {
  1068. font-size: 16px;
  1069. margin-bottom: 20px;
  1070. }
  1071. .caption-content p {
  1072. font-size: 16px;
  1073. margin-bottom: 30px;
  1074. }
  1075. .caption-content strong {
  1076. font-size: 22px;
  1077. }
  1078. /* about */
  1079. .recent-works {
  1080. margin-bottom: 85px;
  1081. }
  1082. #about h3 {
  1083. font-size: 18px;
  1084. margin: 0 0 35px !important;
  1085. }
  1086. #about .owl-buttons {
  1087. margin-top: 20px;
  1088. }
  1089. #about .message-body {
  1090. margin-bottom: 45px;
  1091. }
  1092. #about .welcome-block img {
  1093. margin: 0 25px 15px 0;
  1094. }
  1095. /* service */
  1096. .service-item {
  1097. width: 100%;
  1098. }
  1099. /* lightbox */
  1100. .fancybox-title h3 {
  1101. font-size: 20px;
  1102. }
  1103. .fancybox-title p {
  1104. font-size: 14px;
  1105. }
  1106. /* price */
  1107. .price-table {
  1108. margin-bottom: 50px;
  1109. }
  1110. /* follow us */
  1111. .social-button li a {
  1112. height: 65px;
  1113. line-height: 71px;
  1114. width: 65px;
  1115. }
  1116. }
  1117. /*============================================================
  1118. Mobile (Landscape) Design for a width of 480px
  1119. ==============================================================*/
  1120. @media only screen and (min-width: 480px) and (max-width: 767px) {
  1121. .section-title h2:after {
  1122. left: 38%;
  1123. }
  1124. /* home slider */
  1125. .caption-content h2 {
  1126. font-size: 35px;
  1127. }
  1128. .caption-content p {
  1129. font-size: 25px;
  1130. }
  1131. .caption-content strong {
  1132. font-size: 35px;
  1133. }
  1134. /*about*/
  1135. #about .welcome-block h3 {
  1136. margin: 0 0 35px;
  1137. }
  1138. /* service */
  1139. .service-item {
  1140. margin: 0 auto 50px;
  1141. width: 55%;
  1142. }
  1143. /* portfolio */
  1144. .portfolio-item {
  1145. width: 48%;
  1146. }
  1147. figcaption.mask {
  1148. bottom: -132px;
  1149. }
  1150. /* social */
  1151. .social-button li a {
  1152. height: 90px;
  1153. line-height: 96px;
  1154. width: 90px;
  1155. }
  1156. /* price */
  1157. .price-table {
  1158. margin-bottom: 50px;
  1159. }
  1160. }