| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305 |
- /* =================================== */
- /* Basic Style
- /* =================================== */
- body {
- background-color: #fff;
- font-family: 'Open Sans', sans-serif;
- line-height: 24px;
- font-size: 16px;
- color: #818181;
- }
- figure, p, address {
- margin: 0;
- }
- iframe {
- border: 0;
- }
- a {
- color: #0aa6bd;
- -webkit-transition: all 0.3s ease-out 0s;
- -moz-transition: all 0.3s ease-out 0s;
- -ms-transition: all 0.3s ease-out 0s;
- -o-transition: all 0.3s ease-out 0s;
- transition: all 0.3s ease-out 0s;
- }
- a, a:hover, a:focus, .btn:focus {
- text-decoration: none;
- outline: none;
- }
- h1, h2, h3, h4, h5, h6,
- .h1, .h2, .h3, .h4, .h5, .h6 {
- font-family: 'Open Sans', sans-serif;
- color: #252525;
- }
- p {
- font-size: 15px;
- }
- main > section {
- padding: 70px 0;
- }
- .btn {
- border-radius: 0;
- border: 0;
- position: relative;
- text-transform: uppercase;
- }
- .btn-blue {
- background-color: rgba(10, 166, 189, 0.75);
- box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
- padding: 15px 55px;
- color: #fff;
- }
- .btn-border {
- border: 2px solid #fff;
- color: #fff;
- padding: 12px 35px;
- }
- .bg-blue {
- background-color: #0aa6bd;
- }
- .logo-img {
- width: 120px;
- margin-top: -4px;
- }
- /* 遮罩 */
- .zhezhao {
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- background: #000;
- opacity: 0.8;
- z-index: 10000;
- }
- /* 登录弹窗 */
- .box{
- width: 430px;
- height: 504px;
- position: fixed;
- background:white;
- top: 50%;
- left:50%;
- margin-left: -215px;
- margin-top: -252px;
- z-index: 10001;
- }
- /* 11/12注册页面 ..........................................*/
- .login,.profile {
- color: white;
- font-size: 16px;
- /* font-weight: 600; */
- }
- .login {
- margin-top: 12px;
- }
- .profile .user-info {
- margin: 0 15px;
- }
- .login img,.profile img {
- width: 20px;
- margin-right: 5px;
- }
- .login > span:hover,.profile > span:hover{
- cursor:pointer;
- /* color: #0aa6bd; */
- }
- .zc-box {
- margin: 50px;
- }
- .back {
- background: #6f6f6f;
- }
- /* 首页内容 ..........................................*/
- .my-text {
- position: absolute;
- width: 13%;
- height: 6%;
- top: 64%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 1000;
- }
- .my-tiyan {
- background: #1E88F5;
- border-radius: 4px;
- width: 100%;
- height: 100%;
- font-family: PingFangSC-Regular;
- font-size: 14px;
- color: #FFFFFF;
- border: 0;
- }
- /* 特色 .......................................*/
- .ts-worp {
- width: 100%;
- padding: 0;
- margin: 0;
- margin-top: 100px;
- }
- .ts-box {
- overflow: hidden;
- /* position: relative; */
- padding: 100px 50px 100px 20px;
- width: 100%;
- display: table;
- background: #F8FAFD;
- }
- .ts-boxtow {
- padding: 100px 20px 100px 50px;
- background: white;
- }
- .ts-box div {
- display: table-cell;
- vertical-align: middle;
- }
- .ts-box img {
- width: 95%;
- }
- .ts-forbox img {
- width: 100%;
- }
- /* .ts-imgmax {
- width: 100%;
- }
- .ts-imgmin {
- width: 100%;
- } */
- .ts-title {
- font-family: PingFangSC-Regular !important;
- color: #0D253E !important;
- font-size: 24px !important;
- margin-bottom: 14px;
- font-weight: 600;
- }
- .left {
- float: left;
- }
- .right {
- float: right;
- }
- .right-text {
- text-align: right;
- }
- .left-text {
- text-align: left;
- }
- .ts-text {
- font-family: PingFangSC-Regular !important;
- color: #9EA8B2 !important;
- }
- /* 功能 .........................................*/
- .gn-beijing {
- width: 100%;
- position: absolute;
- top: 280px;
- }
- .gn-img {
- width: 100px;
- height: 100px;
- border-radius: 50%;
- background: #1E88F5;
- text-align: center;
- line-height: 100px;
- margin: 0 auto;
- position: relative;
- margin-top: 12px;
- }
- .gn-img img {
- width: 50%;
- }
- .gn-huise {
- background: #F4F8FC;
- }
- .gn-xiaoqiu {
- width: 30px;
- height: 30px;
- border-radius: 50%;
- background: #FFCC01;
- box-shadow: 0 0 15px 0 rgba(255,204,1,0.40);
- position: absolute;
- top: 0;
- right: 0;
- }
- .gn-left {
- left: 0;
- }
- .gn-hei>div {
- height: 245px;
- }
- .service-item {
- margin-bottom: 60px;
- padding:0 14px;
- text-align: center;
- }
- .gn-text {
- font-family: PingFangSC-Regular;
- font-size: 18px;
- color: #0D253E;
- font-weight: 600;
- margin-top: 12px;
- }
- .gn-color {
- color: #1E88F5;
- }
- /* 帮助 ........................................*/
- .bz-worp {
- background: white;
- margin: 0 auto;
- padding: 42px 40px 109px 48px;
- }
- .bz-box {
- border: 1px solid #1E88F5;
- border-radius: 5px;
- border-right: 0;
- }
- .bz-sskuang {
- width: 88%;
- float: left;
- line-height: 38px;
- }
- .bz-sousuo {
- width: 70%;
- margin: 0 -5px;
- border: 0;
- outline: none;
- }
- .bz-sousuoimg {
- margin: -3px 10px 0 14px;
- }
- .bz-btn {
- background: #1E88F5;
- border-radius: 0 5px 5px 0;
- width: 12%;
- border: 0;
- color: white;
- height: 40px;
- }
- .bz-content {
- margin-top: 30px;
- border: 0;
- }
- .bz-left {
- width: 100%;
- overflow: hidden;
- }
- .bz-ul {
- border-bottom: 1px solid #D8D8D8;
- overflow: hidden;
- margin-left: -40px;
- }
- .bz-right {
- width: 100%;
- background: white;
- }
- .bz-yuandian {
- background: #FFCC01;
- width: 16px;
- height: 16px;
- border-radius: 50%;
- margin: 4px 8px 0 0;
- }
- .bz-right-conent li {
- border-bottom: 1px solid #E8ECEF;
- padding: 10px 0;
- list-style: none;
- overflow: hidden;
- margin-left: -40px;
- }
- .bz-right-conent li:last-child {
- border-bottom: 0;
- }
- .bz-right-conent {
- margin-top: 30px;
- }
- /* 底部 ...................................*/
- /*footer*/
- .footer{
- width: 100%;
- background: #383838;
- }
- .db-text {
- background: white;
- color: #000;
- }
- .footer .container{
- margin: 0 auto;
- width: 80%;
- height: 260px;
- overflow: hidden;
- text-align: center;
- }
- .footer-section .link{
- overflow: hidden;
- float: left;
- margin-right: 100px;
- }
- .footer-section ul{
- float: left;
- margin-right: 45px;
- }
- .footer-section ul:last-child {
- margin-right: 0;
- }
- .footer-section ul>li{
- list-style: none;
- }
- .footer-section ul>li span {
- display: inline-block;
- margin-bottom: 28px;
- font-size: 16px;
- color: #fff;
- }
- .footer-section ul>li a{
- display: inline-block;
- margin-bottom: 10px;
- font-size: 14px;
- color: #fff;
- cursor: pointer;
- }
- .footer-section ul>li:hover a{
- text-decoration: underline ;
- color: #e41f2b;
- }
- .footer-section ul>li:hover a.no-link{
- text-decoration: none;
- color: #fff;
- cursor: default;
- }
- .footer-section .about{
- float: left;
- margin-right: 30px;
- width: 245px;
- text-align: left;
- }
- .footer-section .about .logo{
- margin-bottom: 18px;
- }
- .footer-section .about .logo img{
- width: 150px;
- /* height: 44px; */
- }
- .footer-section .about .time{
- margin-bottom: 21px;
- font-size: 14px;
- color: #fff;
- }
- .footer-section .qr{
- overflow: hidden;
- text-align: right;
- float: right;
- }
- .footer-section .qr .qr-top{
- overflow: hidden;
- }
- .footer-section .qr .qr-code{
- width: 110px;
- font-size: 14px;
- color: #fff;
- text-align: center;
- }
- .footer-section .qr .qr-mall{
- margin-right: 21px;
- }
- .footer-section .qr .qr-code img{
- width: 100%;
- margin-bottom: 18px;
- }
- .footer-section .qr .qr-bottom{
- margin-top: 22px;
- line-height: 30px;
- text-align: right;
- font-size: 13px;
- color: #fff;
- }
- .footer .footer-list{
- margin: 55px auto 22px;
- }
- .friend-link{
- height: 100px;
- background: #000;
- width: 100%;
- line-height: 100px;
- text-align: center;
- }
- .friend-link span {
- opacity: 0.56;
- font-family: PingFangSC-Regular;
- font-size: 16px;
- color: #FFFFFF;
- letter-spacing: 0;
- text-align: center;
- }
- .friend-link ul{
- overflow: hidden;
- list-style: none ;
- width: 80%;
- margin: 0 auto;
- padding: 0 15px;
- }
- .friend-link ul li{
- float: left;
- }
- .friend-link ul li span{
- font-size: 14px;
- color: #FFFFFF;
- }
- .friend-link ul li a{
- display: inline-block;
- margin-right: 20px;
- font-size: 14px;
- color: #FFFFFF;
- }
- .friend-link ul li a:hover{
- text-decoration: underline ;
- color: #e41f2b;
- }
- .section-title p {
- color: #444;
- /* font-style: italic; */
- font-size: 13px;
- }
- .section-title.white p {
- color: #fff;
- }
- .parallax {
- background-attachment: fixed;
- background-position: center top;
- background-repeat: no-repeat;
- background-size: cover;
- }
- /**
- /* Header
- /* ==========================================*/
- #navigation {
- -webkit-transition: all 0.8s ease 0s;
- -moz-transition: all 0.8s ease 0s;
- -ms-transition: all 0.8s ease 0s;
- -o-transition: all 0.8s ease 0s;
- transition: all 0.8s ease 0s;
- background-color: rgba(0, 0, 0, 0.77);
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
- /* padding: 5px 0; */
- }
- #navigation.animated-header {
- padding: 10px 0;
- }
- h1.navbar-brand {
- font-size: 20px;
- font-weight: 700;
- margin-top: -12px;
- text-transform: uppercase;
- }
- .navbar-inverse .navbar-nav > li > a {
- color: #fff;
- font-size: 16px;
- text-transform: uppercase;
- /* font-weight: bold; */
- }
- .menu li a {
- display: inline-block;
- }
- .menu li a span:before {
- content: "";
- position: absolute;
- width: 100%;
- height: 2px;
- bottom: 0;
- left: 0;
- background-color: #0aa6bd;
- visibility: hidden;
- -webkit-transform: scaleX(0);
- -moz-transform: scaleX(0);
- -ms-transform: scaleX(0);
- -o-transform: scaleX(0);
- transform: scaleX(0);
- -webkit-transition: all 0.3s ease-in-out 0s;
- -moz-transition: all 0.3s ease-in-out 0s;
- -ms-transition: all 0.3s ease-in-out 0s;
- -o-transition: all 0.3s ease-in-out 0s;
- transition: all 0.3s ease-in-out 0s;
- }
- .menu li a:hover span:before {
- visibility: visible;
- -webkit-transform: scaleX(1);
- -moz-transform: scaleX(1);
- -ms-transform: scaleX(1);
- -o-transform: scaleX(1);
- transform: scaleX(1);
- }
- /*=================================================================
- Home Slider
- ==================================================================*/
- #home-slider {
- position: relative;
- padding: 0;
- }
- .mask-overly {
- /* background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0; */
- bottom: 0;
- left: 0;
- position: absolute;
- right: 0;
- top: 0;
- /* z-index: 9; */
- }
- #slider #nav-arrows > a {
- font-size: 40px;
- line-height: 1.5;
- }
- .slider-1 img{
- width: 100%;
- /* height: 100%; */
- }
- .sl-slider-wrapper {
- width: 100%;
- margin: 0 auto;
- position: relative;
- /* overflow: hidden; */
- }
- .sl-slider {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- /* Slide wrapper and slides */
- .sl-slide,
- .sl-slides-wrapper,
- .sl-slide-inner {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- }
- .sl-slide {
- z-index: 1;
- }
- .slide-caption {
- color: #fff;
- display: table;
- height: 100%;
- left: 0;
- min-height: 100%;
- position: absolute;
- text-align: center;
- top: 0;
- width: 60%;
- z-index: 999;
- left: 50%;
- transform: translateX(-50%);
- }
- .slide-caption .caption-content {
- vertical-align: middle;
- display: table-cell;
- }
- .caption-content h2 {
- color: #fff;
- font-size: 50px;
- font-weight: 900;
- margin-bottom: 25px;
- }
- .caption-content > p {
- display: block;
- font-size: 16px;
- margin-bottom: 45px;
- text-transform: capitalize;
- margin-bottom: 65px;
- font-weight: 200;
- }
- /*Slider Arrow Buttons*/
- #nav-arrows > a {
- border: 1px solid #fff;
- color: #fff;
- display: block;
- height: 60px;
- line-height: 76px;
- position: absolute;
- text-align: center;
- top: 50%;
- width: 60px;
- z-index: 20;
- margin-top: -30px;
- -webkit-transition: all 0.3s ease 0s;
- -moz-transition: all 0.3s ease 0s;
- -ms-transition: all 0.3s ease 0s;
- -o-transition: all 0.3s ease 0s;
- transition: all 0.3s ease 0s;
- }
- #nav-arrows > a.sl-prev {
- transform: translateX(-50px);
- opacity:0;
- }
- #slider:hover #nav-arrows > a.sl-prev {
- opacity: 1;
- transform: translateX(20px);
- }
- #nav-arrows > a.sl-next {
- right:0;
- transform: translateX(50px);
- opacity:0;
- }
- #slider:hover #nav-arrows > a.sl-next {
- opacity: 1;
- transform: translateX(-20px);
- }
- #nav-arrows > a.sl-next:hover ,#nav-arrows > a.sl-prev:hover {
- background-color: #0aa6bd;
- border-color: #0aa6bd;
- color: #fff;
- }
- /* The duplicate parts/slices */
- .sl-content-slice {
- overflow: hidden;
- position: absolute;
- -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- background: #fff;
- -webkit-backface-visibility: hidden;
- -moz-backface-visibility: hidden;
- -o-backface-visibility: hidden;
- -ms-backface-visibility: hidden;
- backface-visibility: hidden;
- opacity : 1;
- }
- /* Horizontal slice */
- .sl-slide-horizontal .sl-content-slice {
- width: 100%;
- height: 50%;
- left: -200px;
- -webkit-transform: translateY(0%) scale(1);
- -moz-transform: translateY(0%) scale(1);
- -o-transform: translateY(0%) scale(1);
- -ms-transform: translateY(0%) scale(1);
- transform: translateY(0%) scale(1);
- }
- .sl-slide-horizontal .sl-content-slice:first-child {
- top: -200px;
- padding: 200px 200px 0px 200px;
- }
- .sl-slide-horizontal .sl-content-slice:nth-child(2) {
- top: 50%;
- padding: 0px 200px 200px 200px;
- }
- /* Vertical slice */
- .sl-slide-vertical .sl-content-slice {
- width: 50%;
- height: 100%;
- top: -200px;
- -webkit-transform: translateX(0%) scale(1);
- -moz-transform: translateX(0%) scale(1);
- -o-transform: translateX(0%) scale(1);
- -ms-transform: translateX(0%) scale(1);
- transform: translateX(0%) scale(1);
- }
- .sl-slide-vertical .sl-content-slice:first-child {
- left: -200px;
- padding: 200px 0px 200px 200px;
- }
- .sl-slide-vertical .sl-content-slice:nth-child(2) {
- left: 50%;
- padding: 200px 200px 200px 0px;
- }
- /* Content wrapper */
- /* Width and height is set dynamically */
- .sl-content-wrapper {
- position: absolute;
- }
- .sl-content {
- width: 100%;
- height: 100%;
- }
- /*=================================================================
- Feature
- ==================================================================*/
- .list-nav {
- padding:0;
- margin-top: 20px;
- }
- .list-nav li {
- list-style: none;
- margin: 0;
- padding: 0;
- font-size: 16px;
- padding-left: 30px;
- margin-bottom: 10px;
- position: relative;
- }
- .list-nav li i {
- position: absolute;
- left: 0;
- top: 4px;
- font-size: 28px;
- color: #1fb5f6;
- }
- /*=================================================================
- Portfolio
- ==================================================================*/
- .project-wrapper {
- margin: 0;
- padding: 0;
- list-style: none;
- text-align: center;
- }
- .project-wrapper .row {
- margin: 0;
- }
- .project-wrapper [class^="col-"] {
- padding-left: 0;
- padding-right: 0;
- }
- .portfolio-filter {
- font-size: 0;
- list-style: outside none none;
- margin: 0 0 40px;
- padding: 0;
- }
- .portfolio-filter li {
- display: inline-block;
- }
- .portfolio-filter li a {
- color: #777;
- display: block;
- font-size: 14px;
- padding: 0 20px;
- position: relative;
- }
- .portfolio-filter li a.active {
- color: #0aa6bd;
- }
- .portfolio-filter li a::after {
- bottom: auto;
- content: "/";
- position: absolute;
- right: 0;
- top: auto;
- }
- .portfolio-filter li:last-child a::after {
- content: none;
- }
- .portfolio-item {
- cursor: pointer;
- overflow: hidden;
- position: relative;
- }
- .portfolio-item img {
- -webkit-transition: all 0.4s ease 0s;
- -moz-transition: all 0.4s ease 0s;
- -o-transition: all 0.4s ease 0s;
- transition: all 0.4s ease 0s;
- }
- .portfolio-item:hover img {
- -webkit-transform: translateY(-105px);
- -ms-transform: translateY(-105px);
- -o-transform: translateY(-105px);
- transform: translateY(-105px);
- }
- figcaption.mask {
- background-color: #f1f1f1;
- bottom: 0;
- color: #333;
- padding: 25px;
- position: absolute;
- width: 100%;
- text-align: left;
- -webkit-transform: translateY(100%);
- -ms-transform: translateY(100%);
- -o-transform: translateY(100%);
- transform: translateY(100%);
- -webkit-transition: all 0.4s ease 0s;
- -moz-transition: all 0.4s ease 0s;
- -o-transition: all 0.4s ease 0s;
- transition: all 0.4s ease 0s;
- }
- .portfolio-item:hover figcaption.mask {
- -webkit-transform: translateY(0px);
- -ms-transform: translateY(0px);
- -o-transform: translateY(0px);
- transform: translateY(0px);
- }
- figcaption.mask h3 {
- margin-top: 0;
- color: #333;
- font-size: 18px;
- margin-bottom:15px;
- opacity: 0;
- -webkit-transform: translateY(30px);
- -ms-transform: translateY(30px);
- -o-transform: translateY(30px);
- transform: translateY(30px);
- -webkit-transition: all 0.4s ease 0.1s;
- -moz-transition: all 0.4s ease 0.1s;
- -o-transition: all 0.4s ease 0.1s;
- transition: all 0.4s ease 0.1s;
- }
- figcaption.mask p {
- line-height: 1.3;
- -webkit-transform: translateY(30px);
- -ms-transform: translateY(30px);
- -o-transform: translateY(30px);
- transform: translateY(30px);
- opacity: 0;
- -webkit-transition: all 0.4s ease 0.3s;
- -moz-transition: all 0.4s ease 0.3s;
- -o-transition: all 0.4s ease 0.3s;
- transition: all 0.4s ease 0.3s;
- }
- .portfolio-item:hover figcaption.mask h3,
- .portfolio-item:hover figcaption.mask p {
- opacity: 1;
- -webkit-transform: translateY(0px);
- -ms-transform: translateY(0px);
- -o-transform: translateY(0px);
- transform: translateY(0px);
- }
- ul.external {
- list-style: outside none none;
- margin: 0;
- padding: 0;
- position: absolute;
- right: 0;
- top: -47px;
- -webkit-transition: all 0.4s ease 0s;
- -moz-transition: all 0.4s ease 0s;
- -ms-transition: all 0.4s ease 0s;
- -o-transition: all 0.4s ease 0s;
- transition: all 0.4s ease 0s;
- }
- ul.external li {
- display: inline-block;
- }
- ul.external li a {
- background-color: rgba(255, 255, 255, 0.9);
- color: #818181;
- display: block;
- padding: 10px 18px 13px;
- -webkit-transition: all 0.5s ease 0s;
- -moz-transition: all 0.5s ease 0s;
- -ms-transition: all 0.5s ease 0s;
- -o-transition: all 0.5s ease 0s;
- transition: all 0.5s ease 0s;
- }
- ul.external li a:hover {
- background-color: #0aa6bd;
- color: #fff;
- }
- .portfolio-item:hover ul.external {
- top: 0;
- }
- .fancybox-skin {
- border-radius: 0;
- }
- .fancybox-title.fancybox-title-inside-wrap {
- padding: 15px;
- }
- .fancybox-title h3 {
- margin: 0 0 15px;
- }
- .fancybox-title p {
- color: #818181;
- font-size: 16px;
- line-height: 22px;
- }
- .fancybox-title-inside-wrap {
- padding-top: 0;
- }
- /*=================================================================
- Testimonials
- ==================================================================*/
- .owl-controls .owl-page, .owl-controls .owl-buttons div {
- cursor: pointer;
- display: inline-block;
- margin: 0 8px;
- padding: 10px;
- }
- .price-table {
- border: 1px solid #e3e3e3;
- }
- .price-table.featured {
- border-color: #e3e3e3;
- border-style: solid;
- border-width: 1px 1px 0 1px;
- -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
- -moz-box-shadow: 0 4px 5px rgba(0,0,0,0.19);
- box-shadow: 0 4px 5px rgba(0,0,0,0.19);
- }
- .price-table > span {
- color: #444;
- display: block;
- font-size: 24px;
- padding: 30px 0;
- text-transform: uppercase;
- font-weight: bold;
- letter-spacing: 2px;
- }
- .price-table .value {
- background-color: #f8f8f8;
- color: #727272;
- padding: 20px 0;
- -webkit-transition: all 0.7s ease 0s;
- -moz-transition: all 0.7s ease 0s;
- -ms-transition: all 0.7s ease 0s;
- -o-transition: all 0.7s ease 0s;
- transition: all 0.7s ease 0s;
- }
- .price-table.featured .value {
- background-color: #0aa6bd;
- color: #fff;
- }
- .price-table .value span {
- display: inline-block;
- }
- .price-table .value span:first-child {
- font-size: 32px;
- line-height: 32px;
- }
- .price-table .value span:nth-child(2) {
- font-size: 40px;
- line-height: 40px;
- margin-bottom: 10px;
- }
- .price-table .value span:last-child {
- font-size: 16px;
- }
- .price-table ul {
- margin: 0;
- padding: 0;
- list-style: none;
- text-align: center;
- }
- .price-table ul li {
- border-top: 1px solid #e3e3e3;
- display: block;
- padding: 15px 0;
- -webkit-transition: all 0.7s ease 0s;
- -moz-transition: all 0.7s ease 0s;
- -ms-transition: all 0.7s ease 0s;
- -o-transition: all 0.7s ease 0s;
- transition: all 0.7s ease 0s;
- }
- .price-table ul li a {
- display: block;
- text-transform: uppercase;
- }
- .price-table.featured ul li:last-child,
- .price-table ul li:last-child:hover {
- background-color: #0aa6bd;
- }
- .price-table.featured ul li:last-child a,
- .price-table ul li:last-child:hover a {
- color: #fff;
- }
- /*============================================================
- For Small Desktop
- ==============================================================*/
- @media (min-width: 980px) and (max-width: 1150px) {
- /*about*/
- #about .welcome-block img {
- margin-bottom: 30px;
- }
- }
- /*============================================================
- Tablet (Portrait) Design for a width of 768px
- ==============================================================*/
- @media (min-width: 768px) and (max-width: 979px) {
- /* home slider */
- .caption-content h2 {
- font-size: 40px;
- }
- .caption-content p {
- font-size: 25px;
- }
- .caption-content strong {
- font-size: 45px;
- }
- /* about */
- .recent-works {
- margin-bottom: 50px;
- }
- /* price */
- .price-table {
- margin-bottom: 50px;
- }
- /* contact form */
- .contact-form {
- margin-bottom: 50px;
- }
- }
- /*============================================================
- Mobile (Portrait) Design for a width of 320px
- ==============================================================*/
- @media only screen and (max-width: 767px) {
- body {
- font-size: 14px;
- }
- .parallax {
- background-position: centet tip !important;
- }
- .section-title h2 {
- font-size: 25px;
- }
- .section-title h2:after {
- left: 30%;
- }
- /*navigation*/
- .navbar-inverse .navbar-toggle {
- border-color: #fff;
- }
- .navbar-inverse .navbar-toggle:hover,
- .navbar-inverse .navbar-toggle:focus {
- background-color: transparent;
- }
- /* slider */
- .caption-content h2 {
- font-size: 18px;
- }
- .caption-content > span {
- font-size: 16px;
- margin-bottom: 20px;
- }
- .caption-content p {
- font-size: 16px;
- margin-bottom: 30px;
- }
- .caption-content strong {
- font-size: 22px;
- }
- /* about */
- .recent-works {
- margin-bottom: 85px;
- }
- #about h3 {
- font-size: 18px;
- margin: 0 0 35px !important;
- }
- #about .owl-buttons {
- margin-top: 20px;
- }
- #about .message-body {
- margin-bottom: 45px;
- }
- #about .welcome-block img {
- margin: 0 25px 15px 0;
- }
- /* service */
- .service-item {
- width: 100%;
- }
- /* lightbox */
- .fancybox-title h3 {
- font-size: 20px;
- }
- .fancybox-title p {
- font-size: 14px;
- }
- /* price */
- .price-table {
- margin-bottom: 50px;
- }
- /* follow us */
- .social-button li a {
- height: 65px;
- line-height: 71px;
- width: 65px;
- }
- }
- /*============================================================
- Mobile (Landscape) Design for a width of 480px
- ==============================================================*/
- @media only screen and (min-width: 480px) and (max-width: 767px) {
- .section-title h2:after {
- left: 38%;
- }
- /* home slider */
- .caption-content h2 {
- font-size: 35px;
- }
- .caption-content p {
- font-size: 25px;
- }
- .caption-content strong {
- font-size: 35px;
- }
- /*about*/
- #about .welcome-block h3 {
- margin: 0 0 35px;
- }
- /* service */
- .service-item {
- margin: 0 auto 50px;
- width: 55%;
- }
- /* portfolio */
- .portfolio-item {
- width: 48%;
- }
- figcaption.mask {
- bottom: -132px;
- }
- /* social */
- .social-button li a {
- height: 90px;
- line-height: 96px;
- width: 90px;
- }
- /* price */
- .price-table {
- margin-bottom: 50px;
- }
- }
|