main.css 24 KB

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