main.css 24 KB

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