main.css 24 KB

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