main.css 24 KB

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