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: 100px;
  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.8;
  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. margin-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. /* padding: 5px 0; */
  477. }
  478. #navigation.animated-header {
  479. padding: 10px 0;
  480. }
  481. h1.navbar-brand {
  482. font-size: 20px;
  483. font-weight: 700;
  484. margin-top: -12px;
  485. text-transform: uppercase;
  486. }
  487. .navbar-inverse .navbar-nav > li > a {
  488. color: #fff;
  489. font-size: 16px;
  490. text-transform: uppercase;
  491. /* font-weight: bold; */
  492. }
  493. .menu li a {
  494. display: inline-block;
  495. }
  496. .menu li a span:before {
  497. content: "";
  498. position: absolute;
  499. width: 100%;
  500. height: 2px;
  501. bottom: 0;
  502. left: 0;
  503. background-color: #0aa6bd;
  504. visibility: hidden;
  505. -webkit-transform: scaleX(0);
  506. -moz-transform: scaleX(0);
  507. -ms-transform: scaleX(0);
  508. -o-transform: scaleX(0);
  509. transform: scaleX(0);
  510. -webkit-transition: all 0.3s ease-in-out 0s;
  511. -moz-transition: all 0.3s ease-in-out 0s;
  512. -ms-transition: all 0.3s ease-in-out 0s;
  513. -o-transition: all 0.3s ease-in-out 0s;
  514. transition: all 0.3s ease-in-out 0s;
  515. }
  516. .menu li a:hover span:before {
  517. visibility: visible;
  518. -webkit-transform: scaleX(1);
  519. -moz-transform: scaleX(1);
  520. -ms-transform: scaleX(1);
  521. -o-transform: scaleX(1);
  522. transform: scaleX(1);
  523. }
  524. /*=================================================================
  525. Home Slider
  526. ==================================================================*/
  527. #home-slider {
  528. position: relative;
  529. padding: 0;
  530. }
  531. .mask-overly {
  532. /* background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0; */
  533. bottom: 0;
  534. left: 0;
  535. position: absolute;
  536. right: 0;
  537. top: 0;
  538. /* z-index: 9; */
  539. }
  540. #slider #nav-arrows > a {
  541. font-size: 40px;
  542. line-height: 1.5;
  543. }
  544. .slider-1 img{
  545. width: 100%;
  546. /* height: 100%; */
  547. }
  548. .sl-slider-wrapper {
  549. width: 100%;
  550. margin: 0 auto;
  551. position: relative;
  552. /* overflow: hidden; */
  553. }
  554. .sl-slider {
  555. position: absolute;
  556. top: 0;
  557. left: 0;
  558. right: 0;
  559. bottom: 0;
  560. }
  561. /* Slide wrapper and slides */
  562. .sl-slide,
  563. .sl-slides-wrapper,
  564. .sl-slide-inner {
  565. position: absolute;
  566. width: 100%;
  567. height: 100%;
  568. top: 0;
  569. left: 0;
  570. }
  571. .sl-slide {
  572. z-index: 1;
  573. }
  574. .slide-caption {
  575. color: #fff;
  576. display: table;
  577. height: 100%;
  578. left: 0;
  579. min-height: 100%;
  580. position: absolute;
  581. text-align: center;
  582. top: 0;
  583. width: 60%;
  584. z-index: 999;
  585. left: 50%;
  586. transform: translateX(-50%);
  587. }
  588. .slide-caption .caption-content {
  589. vertical-align: middle;
  590. display: table-cell;
  591. }
  592. .caption-content h2 {
  593. color: #fff;
  594. font-size: 50px;
  595. font-weight: 900;
  596. margin-bottom: 25px;
  597. }
  598. .caption-content > p {
  599. display: block;
  600. font-size: 16px;
  601. margin-bottom: 45px;
  602. text-transform: capitalize;
  603. margin-bottom: 65px;
  604. font-weight: 200;
  605. }
  606. /*Slider Arrow Buttons*/
  607. #nav-arrows > a {
  608. border: 1px solid #fff;
  609. color: #fff;
  610. display: block;
  611. height: 60px;
  612. line-height: 76px;
  613. position: absolute;
  614. text-align: center;
  615. top: 50%;
  616. width: 60px;
  617. z-index: 20;
  618. margin-top: -30px;
  619. -webkit-transition: all 0.3s ease 0s;
  620. -moz-transition: all 0.3s ease 0s;
  621. -ms-transition: all 0.3s ease 0s;
  622. -o-transition: all 0.3s ease 0s;
  623. transition: all 0.3s ease 0s;
  624. }
  625. #nav-arrows > a.sl-prev {
  626. transform: translateX(-50px);
  627. opacity:0;
  628. }
  629. #slider:hover #nav-arrows > a.sl-prev {
  630. opacity: 1;
  631. transform: translateX(20px);
  632. }
  633. #nav-arrows > a.sl-next {
  634. right:0;
  635. transform: translateX(50px);
  636. opacity:0;
  637. }
  638. #slider:hover #nav-arrows > a.sl-next {
  639. opacity: 1;
  640. transform: translateX(-20px);
  641. }
  642. #nav-arrows > a.sl-next:hover ,#nav-arrows > a.sl-prev:hover {
  643. background-color: #0aa6bd;
  644. border-color: #0aa6bd;
  645. color: #fff;
  646. }
  647. /* The duplicate parts/slices */
  648. .sl-content-slice {
  649. overflow: hidden;
  650. position: absolute;
  651. -webkit-box-sizing: content-box;
  652. -moz-box-sizing: content-box;
  653. box-sizing: content-box;
  654. background: #fff;
  655. -webkit-backface-visibility: hidden;
  656. -moz-backface-visibility: hidden;
  657. -o-backface-visibility: hidden;
  658. -ms-backface-visibility: hidden;
  659. backface-visibility: hidden;
  660. opacity : 1;
  661. }
  662. /* Horizontal slice */
  663. .sl-slide-horizontal .sl-content-slice {
  664. width: 100%;
  665. height: 50%;
  666. left: -200px;
  667. -webkit-transform: translateY(0%) scale(1);
  668. -moz-transform: translateY(0%) scale(1);
  669. -o-transform: translateY(0%) scale(1);
  670. -ms-transform: translateY(0%) scale(1);
  671. transform: translateY(0%) scale(1);
  672. }
  673. .sl-slide-horizontal .sl-content-slice:first-child {
  674. top: -200px;
  675. padding: 200px 200px 0px 200px;
  676. }
  677. .sl-slide-horizontal .sl-content-slice:nth-child(2) {
  678. top: 50%;
  679. padding: 0px 200px 200px 200px;
  680. }
  681. /* Vertical slice */
  682. .sl-slide-vertical .sl-content-slice {
  683. width: 50%;
  684. height: 100%;
  685. top: -200px;
  686. -webkit-transform: translateX(0%) scale(1);
  687. -moz-transform: translateX(0%) scale(1);
  688. -o-transform: translateX(0%) scale(1);
  689. -ms-transform: translateX(0%) scale(1);
  690. transform: translateX(0%) scale(1);
  691. }
  692. .sl-slide-vertical .sl-content-slice:first-child {
  693. left: -200px;
  694. padding: 200px 0px 200px 200px;
  695. }
  696. .sl-slide-vertical .sl-content-slice:nth-child(2) {
  697. left: 50%;
  698. padding: 200px 200px 200px 0px;
  699. }
  700. /* Content wrapper */
  701. /* Width and height is set dynamically */
  702. .sl-content-wrapper {
  703. position: absolute;
  704. }
  705. .sl-content {
  706. width: 100%;
  707. height: 100%;
  708. }
  709. /*=================================================================
  710. Feature
  711. ==================================================================*/
  712. .list-nav {
  713. padding:0;
  714. margin-top: 20px;
  715. }
  716. .list-nav li {
  717. list-style: none;
  718. margin: 0;
  719. padding: 0;
  720. font-size: 16px;
  721. padding-left: 30px;
  722. margin-bottom: 10px;
  723. position: relative;
  724. }
  725. .list-nav li i {
  726. position: absolute;
  727. left: 0;
  728. top: 4px;
  729. font-size: 28px;
  730. color: #1fb5f6;
  731. }
  732. /*=================================================================
  733. Portfolio
  734. ==================================================================*/
  735. .project-wrapper {
  736. margin: 0;
  737. padding: 0;
  738. list-style: none;
  739. text-align: center;
  740. }
  741. .project-wrapper .row {
  742. margin: 0;
  743. }
  744. .project-wrapper [class^="col-"] {
  745. padding-left: 0;
  746. padding-right: 0;
  747. }
  748. .portfolio-filter {
  749. font-size: 0;
  750. list-style: outside none none;
  751. margin: 0 0 40px;
  752. padding: 0;
  753. }
  754. .portfolio-filter li {
  755. display: inline-block;
  756. }
  757. .portfolio-filter li a {
  758. color: #777;
  759. display: block;
  760. font-size: 14px;
  761. padding: 0 20px;
  762. position: relative;
  763. }
  764. .portfolio-filter li a.active {
  765. color: #0aa6bd;
  766. }
  767. .portfolio-filter li a::after {
  768. bottom: auto;
  769. content: "/";
  770. position: absolute;
  771. right: 0;
  772. top: auto;
  773. }
  774. .portfolio-filter li:last-child a::after {
  775. content: none;
  776. }
  777. .portfolio-item {
  778. cursor: pointer;
  779. overflow: hidden;
  780. position: relative;
  781. }
  782. .portfolio-item img {
  783. -webkit-transition: all 0.4s ease 0s;
  784. -moz-transition: all 0.4s ease 0s;
  785. -o-transition: all 0.4s ease 0s;
  786. transition: all 0.4s ease 0s;
  787. }
  788. .portfolio-item:hover img {
  789. -webkit-transform: translateY(-105px);
  790. -ms-transform: translateY(-105px);
  791. -o-transform: translateY(-105px);
  792. transform: translateY(-105px);
  793. }
  794. figcaption.mask {
  795. background-color: #f1f1f1;
  796. bottom: 0;
  797. color: #333;
  798. padding: 25px;
  799. position: absolute;
  800. width: 100%;
  801. text-align: left;
  802. -webkit-transform: translateY(100%);
  803. -ms-transform: translateY(100%);
  804. -o-transform: translateY(100%);
  805. transform: translateY(100%);
  806. -webkit-transition: all 0.4s ease 0s;
  807. -moz-transition: all 0.4s ease 0s;
  808. -o-transition: all 0.4s ease 0s;
  809. transition: all 0.4s ease 0s;
  810. }
  811. .portfolio-item:hover figcaption.mask {
  812. -webkit-transform: translateY(0px);
  813. -ms-transform: translateY(0px);
  814. -o-transform: translateY(0px);
  815. transform: translateY(0px);
  816. }
  817. figcaption.mask h3 {
  818. margin-top: 0;
  819. color: #333;
  820. font-size: 18px;
  821. margin-bottom:15px;
  822. opacity: 0;
  823. -webkit-transform: translateY(30px);
  824. -ms-transform: translateY(30px);
  825. -o-transform: translateY(30px);
  826. transform: translateY(30px);
  827. -webkit-transition: all 0.4s ease 0.1s;
  828. -moz-transition: all 0.4s ease 0.1s;
  829. -o-transition: all 0.4s ease 0.1s;
  830. transition: all 0.4s ease 0.1s;
  831. }
  832. figcaption.mask p {
  833. line-height: 1.3;
  834. -webkit-transform: translateY(30px);
  835. -ms-transform: translateY(30px);
  836. -o-transform: translateY(30px);
  837. transform: translateY(30px);
  838. opacity: 0;
  839. -webkit-transition: all 0.4s ease 0.3s;
  840. -moz-transition: all 0.4s ease 0.3s;
  841. -o-transition: all 0.4s ease 0.3s;
  842. transition: all 0.4s ease 0.3s;
  843. }
  844. .portfolio-item:hover figcaption.mask h3,
  845. .portfolio-item:hover figcaption.mask p {
  846. opacity: 1;
  847. -webkit-transform: translateY(0px);
  848. -ms-transform: translateY(0px);
  849. -o-transform: translateY(0px);
  850. transform: translateY(0px);
  851. }
  852. ul.external {
  853. list-style: outside none none;
  854. margin: 0;
  855. padding: 0;
  856. position: absolute;
  857. right: 0;
  858. top: -47px;
  859. -webkit-transition: all 0.4s ease 0s;
  860. -moz-transition: all 0.4s ease 0s;
  861. -ms-transition: all 0.4s ease 0s;
  862. -o-transition: all 0.4s ease 0s;
  863. transition: all 0.4s ease 0s;
  864. }
  865. ul.external li {
  866. display: inline-block;
  867. }
  868. ul.external li a {
  869. background-color: rgba(255, 255, 255, 0.9);
  870. color: #818181;
  871. display: block;
  872. padding: 10px 18px 13px;
  873. -webkit-transition: all 0.5s ease 0s;
  874. -moz-transition: all 0.5s ease 0s;
  875. -ms-transition: all 0.5s ease 0s;
  876. -o-transition: all 0.5s ease 0s;
  877. transition: all 0.5s ease 0s;
  878. }
  879. ul.external li a:hover {
  880. background-color: #0aa6bd;
  881. color: #fff;
  882. }
  883. .portfolio-item:hover ul.external {
  884. top: 0;
  885. }
  886. .fancybox-skin {
  887. border-radius: 0;
  888. }
  889. .fancybox-title.fancybox-title-inside-wrap {
  890. padding: 15px;
  891. }
  892. .fancybox-title h3 {
  893. margin: 0 0 15px;
  894. }
  895. .fancybox-title p {
  896. color: #818181;
  897. font-size: 16px;
  898. line-height: 22px;
  899. }
  900. .fancybox-title-inside-wrap {
  901. padding-top: 0;
  902. }
  903. /*=================================================================
  904. Testimonials
  905. ==================================================================*/
  906. .owl-controls .owl-page, .owl-controls .owl-buttons div {
  907. cursor: pointer;
  908. display: inline-block;
  909. margin: 0 8px;
  910. padding: 10px;
  911. }
  912. .price-table {
  913. border: 1px solid #e3e3e3;
  914. }
  915. .price-table.featured {
  916. border-color: #e3e3e3;
  917. border-style: solid;
  918. border-width: 1px 1px 0 1px;
  919. -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
  920. -moz-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
  921. box-shadow: 0 4px 5px rgba(0,0,0,0.19);
  922. }
  923. .price-table > span {
  924. color: #444;
  925. display: block;
  926. font-size: 24px;
  927. padding: 30px 0;
  928. text-transform: uppercase;
  929. font-weight: bold;
  930. letter-spacing: 2px;
  931. }
  932. .price-table .value {
  933. background-color: #f8f8f8;
  934. color: #727272;
  935. padding: 20px 0;
  936. -webkit-transition: all 0.7s ease 0s;
  937. -moz-transition: all 0.7s ease 0s;
  938. -ms-transition: all 0.7s ease 0s;
  939. -o-transition: all 0.7s ease 0s;
  940. transition: all 0.7s ease 0s;
  941. }
  942. .price-table.featured .value {
  943. background-color: #0aa6bd;
  944. color: #fff;
  945. }
  946. .price-table .value span {
  947. display: inline-block;
  948. }
  949. .price-table .value span:first-child {
  950. font-size: 32px;
  951. line-height: 32px;
  952. }
  953. .price-table .value span:nth-child(2) {
  954. font-size: 40px;
  955. line-height: 40px;
  956. margin-bottom: 10px;
  957. }
  958. .price-table .value span:last-child {
  959. font-size: 16px;
  960. }
  961. .price-table ul {
  962. margin: 0;
  963. padding: 0;
  964. list-style: none;
  965. text-align: center;
  966. }
  967. .price-table ul li {
  968. border-top: 1px solid #e3e3e3;
  969. display: block;
  970. padding: 15px 0;
  971. -webkit-transition: all 0.7s ease 0s;
  972. -moz-transition: all 0.7s ease 0s;
  973. -ms-transition: all 0.7s ease 0s;
  974. -o-transition: all 0.7s ease 0s;
  975. transition: all 0.7s ease 0s;
  976. }
  977. .price-table ul li a {
  978. display: block;
  979. text-transform: uppercase;
  980. }
  981. .price-table.featured ul li:last-child,
  982. .price-table ul li:last-child:hover {
  983. background-color: #0aa6bd;
  984. }
  985. .price-table.featured ul li:last-child a,
  986. .price-table ul li:last-child:hover a {
  987. color: #fff;
  988. }
  989. /*============================================================
  990. For Small Desktop
  991. ==============================================================*/
  992. @media (min-width: 980px) and (max-width: 1150px) {
  993. /*about*/
  994. #about .welcome-block img {
  995. margin-bottom: 30px;
  996. }
  997. }
  998. /*============================================================
  999. Tablet (Portrait) Design for a width of 768px
  1000. ==============================================================*/
  1001. @media (min-width: 768px) and (max-width: 979px) {
  1002. /* home slider */
  1003. .caption-content h2 {
  1004. font-size: 40px;
  1005. }
  1006. .caption-content p {
  1007. font-size: 25px;
  1008. }
  1009. .caption-content strong {
  1010. font-size: 45px;
  1011. }
  1012. /* about */
  1013. .recent-works {
  1014. margin-bottom: 50px;
  1015. }
  1016. /* price */
  1017. .price-table {
  1018. margin-bottom: 50px;
  1019. }
  1020. /* contact form */
  1021. .contact-form {
  1022. margin-bottom: 50px;
  1023. }
  1024. }
  1025. /*============================================================
  1026. Mobile (Portrait) Design for a width of 320px
  1027. ==============================================================*/
  1028. @media only screen and (max-width: 767px) {
  1029. body {
  1030. font-size: 14px;
  1031. }
  1032. .parallax {
  1033. background-position: centet tip !important;
  1034. }
  1035. .section-title h2 {
  1036. font-size: 25px;
  1037. }
  1038. .section-title h2:after {
  1039. left: 30%;
  1040. }
  1041. /*navigation*/
  1042. .navbar-inverse .navbar-toggle {
  1043. border-color: #fff;
  1044. }
  1045. .navbar-inverse .navbar-toggle:hover,
  1046. .navbar-inverse .navbar-toggle:focus {
  1047. background-color: transparent;
  1048. }
  1049. /* slider */
  1050. .caption-content h2 {
  1051. font-size: 18px;
  1052. }
  1053. .caption-content > span {
  1054. font-size: 16px;
  1055. margin-bottom: 20px;
  1056. }
  1057. .caption-content p {
  1058. font-size: 16px;
  1059. margin-bottom: 30px;
  1060. }
  1061. .caption-content strong {
  1062. font-size: 22px;
  1063. }
  1064. /* about */
  1065. .recent-works {
  1066. margin-bottom: 85px;
  1067. }
  1068. #about h3 {
  1069. font-size: 18px;
  1070. margin: 0 0 35px !important;
  1071. }
  1072. #about .owl-buttons {
  1073. margin-top: 20px;
  1074. }
  1075. #about .message-body {
  1076. margin-bottom: 45px;
  1077. }
  1078. #about .welcome-block img {
  1079. margin: 0 25px 15px 0;
  1080. }
  1081. /* service */
  1082. .service-item {
  1083. width: 100%;
  1084. }
  1085. /* lightbox */
  1086. .fancybox-title h3 {
  1087. font-size: 20px;
  1088. }
  1089. .fancybox-title p {
  1090. font-size: 14px;
  1091. }
  1092. /* price */
  1093. .price-table {
  1094. margin-bottom: 50px;
  1095. }
  1096. /* follow us */
  1097. .social-button li a {
  1098. height: 65px;
  1099. line-height: 71px;
  1100. width: 65px;
  1101. }
  1102. }
  1103. /*============================================================
  1104. Mobile (Landscape) Design for a width of 480px
  1105. ==============================================================*/
  1106. @media only screen and (min-width: 480px) and (max-width: 767px) {
  1107. .section-title h2:after {
  1108. left: 38%;
  1109. }
  1110. /* home slider */
  1111. .caption-content h2 {
  1112. font-size: 35px;
  1113. }
  1114. .caption-content p {
  1115. font-size: 25px;
  1116. }
  1117. .caption-content strong {
  1118. font-size: 35px;
  1119. }
  1120. /*about*/
  1121. #about .welcome-block h3 {
  1122. margin: 0 0 35px;
  1123. }
  1124. /* service */
  1125. .service-item {
  1126. margin: 0 auto 50px;
  1127. width: 55%;
  1128. }
  1129. /* portfolio */
  1130. .portfolio-item {
  1131. width: 48%;
  1132. }
  1133. figcaption.mask {
  1134. bottom: -132px;
  1135. }
  1136. /* social */
  1137. .social-button li a {
  1138. height: 90px;
  1139. line-height: 96px;
  1140. width: 90px;
  1141. }
  1142. /* price */
  1143. .price-table {
  1144. margin-bottom: 50px;
  1145. }
  1146. }