main.css 24 KB

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