bike页面更改1
This commit is contained in:
parent
0044180bb7
commit
5676c2e8f1
|
|
@ -23,14 +23,10 @@ useHead({
|
|||
onMounted(() => {
|
||||
// 延迟加载以确保DOM完全渲染
|
||||
setTimeout(() => {
|
||||
// 检查jQuery是否加载
|
||||
if (typeof $ === 'undefined') {
|
||||
console.error('jQuery未加载');
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
// 设置首页巨幕高度
|
||||
$('.index-giant').height($(window).height());
|
||||
// $('.index-giant').height($(window).height());
|
||||
|
||||
// 解决方案切换功能
|
||||
$('.index-solut ul li').on('click', function () {
|
||||
|
|
@ -53,48 +49,6 @@ onMounted(() => {
|
|||
}
|
||||
});
|
||||
|
||||
// 左侧栏动画功能
|
||||
(function offBar() {
|
||||
let off = true;
|
||||
$('.left-bar-1').on('click', function () {
|
||||
if (off) {
|
||||
$('.left-bar').animate({'right': 0}, "1000");
|
||||
off = false;
|
||||
} else {
|
||||
$('.left-bar').animate({'right': '-32px'}, "slow");
|
||||
off = true;
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
||||
// 微信二维码悬停效果
|
||||
$('.left-bar-2 a.wecate').hover(function () {
|
||||
$('.left-bar-3').show();
|
||||
}, function () {
|
||||
$('.left-bar-3').hide();
|
||||
});
|
||||
|
||||
// 腾讯QQ悬停效果
|
||||
$('._tencent').hover(function () {
|
||||
$('.left-bar-4').show();
|
||||
}, function () {
|
||||
$('.left-bar-4').hide();
|
||||
});
|
||||
|
||||
// 电话悬停效果
|
||||
$('._phone').hover(function () {
|
||||
$('.left-bar-5').show();
|
||||
}, function () {
|
||||
$('.left-bar-5').hide();
|
||||
});
|
||||
|
||||
// 锚点滚动功能
|
||||
$(".miaodian a").click(function () {
|
||||
$("body").animate({
|
||||
scrollTop: 3550
|
||||
}, 1500);
|
||||
return false;
|
||||
});
|
||||
|
||||
// 初始化轮播图
|
||||
initBanner();
|
||||
|
|
|
|||
|
|
@ -3,8 +3,9 @@
|
|||
/*首页*/
|
||||
|
||||
/*首屏巨慕*/
|
||||
.index-giant{
|
||||
.index-giant {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
padding-top: 50px;
|
||||
text-align: center;
|
||||
background-image: -webkit-linear-gradient(bottom, #354457 0%, #102438 100%);
|
||||
|
|
@ -12,20 +13,24 @@
|
|||
background-image: linear-gradient(to top, #354457 0%, #102438 100%);
|
||||
background: url('../images/P_1_banner_bg.png') no-repeat bottom center;
|
||||
}
|
||||
.index-giant-cont{
|
||||
|
||||
.index-giant-cont {
|
||||
width: 100%;
|
||||
margin: 15% auto 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
.index-giant-cont h1{
|
||||
|
||||
.index-giant-cont h1 {
|
||||
font-size: 4.2rem;
|
||||
color: #FFFFFF;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.index-giant-cont p{
|
||||
|
||||
.index-giant-cont p {
|
||||
margin: 28px auto;
|
||||
}
|
||||
.index-giant-cont button{
|
||||
|
||||
.index-giant-cont button {
|
||||
width: 230px;
|
||||
height: 50px;
|
||||
font-size: 1.8rem;
|
||||
|
|
@ -38,28 +43,33 @@
|
|||
background-image: -o-linear-gradient(#80D3FF 1%, #008AFF 100%);
|
||||
background-image: linear-gradient(#80D3FF 1%, #008AFF 100%);
|
||||
}
|
||||
.index-giant-cont button a{
|
||||
|
||||
.index-giant-cont button a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*解决方案*/
|
||||
.index-solut{
|
||||
.index-solut {
|
||||
height: 200px;
|
||||
padding-top: 120px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
.index-solut h2{
|
||||
|
||||
.index-solut h2 {
|
||||
font-size: 3.2rem;
|
||||
color: #485766;
|
||||
}
|
||||
.index-solut p{
|
||||
|
||||
.index-solut p {
|
||||
font-size: 1.2rem;
|
||||
color: #BCC3C9;
|
||||
margin: 20px auto 40px auto;
|
||||
}
|
||||
.index-solut ul{
|
||||
|
||||
.index-solut ul {
|
||||
width: 272px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
|
|
@ -68,16 +78,19 @@
|
|||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.index-solut ul li{
|
||||
|
||||
.index-solut ul li {
|
||||
float: left;
|
||||
width: 33.3%;
|
||||
cursor: pointer;
|
||||
}
|
||||
.index-solut-li{
|
||||
|
||||
.index-solut-li {
|
||||
color: #fff;
|
||||
background: #485766;
|
||||
}
|
||||
#triangle-up{
|
||||
|
||||
#triangle-up {
|
||||
width: 0;
|
||||
height: 0;
|
||||
margin: 0 auto;
|
||||
|
|
@ -88,15 +101,17 @@
|
|||
left: 45%;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
/*解决方案1*/
|
||||
.solut-detail{
|
||||
.solut-detail {
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
background: #F0F0F0;
|
||||
}
|
||||
.solut-detail ul{
|
||||
|
||||
.solut-detail ul {
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
|
|
@ -104,30 +119,41 @@
|
|||
top: 134px;
|
||||
display: none;
|
||||
}
|
||||
.solut-detail ul li{
|
||||
|
||||
.solut-detail ul li {
|
||||
width: 132px;
|
||||
height: 132px;
|
||||
float: left;
|
||||
text-align: center;
|
||||
margin: 0 65px;
|
||||
}
|
||||
.solut-detail-ul1{width: 1048px;}
|
||||
.solut-detail-ul2{width: 786px;}
|
||||
|
||||
.solut-detail-ul1 {
|
||||
width: 1048px;
|
||||
}
|
||||
|
||||
.solut-detail-ul2 {
|
||||
width: 786px;
|
||||
}
|
||||
|
||||
/**/
|
||||
.app-introduce{
|
||||
.app-introduce {
|
||||
margin: 100px auto 65px auto;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
.app-introd-top h2{
|
||||
|
||||
.app-introd-top h2 {
|
||||
font-size: 3.2rem;
|
||||
color: #485766;
|
||||
}
|
||||
.app-introd-top p{
|
||||
|
||||
.app-introd-top p {
|
||||
font-size: 1.2rem;
|
||||
color: #BCC3C9;
|
||||
}
|
||||
#picplayer{
|
||||
|
||||
#picplayer {
|
||||
width: 257px;
|
||||
height: 528px;
|
||||
margin: 70px auto 60px auto;
|
||||
|
|
@ -135,7 +161,8 @@
|
|||
background-image: url('../images/Device.png');
|
||||
background-size: 100%;
|
||||
}
|
||||
#piccontent{
|
||||
|
||||
#piccontent {
|
||||
width: 224px;
|
||||
height: 394px;
|
||||
margin: 0 auto;
|
||||
|
|
@ -144,27 +171,32 @@
|
|||
top: 62px;
|
||||
overflow: hidden;
|
||||
}
|
||||
#piccontent a{
|
||||
|
||||
#piccontent a {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
#piccontent a img{
|
||||
|
||||
#piccontent a img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
#picbtns{
|
||||
|
||||
#picbtns {
|
||||
width: 1036px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
#picbtns .caption{
|
||||
|
||||
#picbtns .caption {
|
||||
width: 185px;
|
||||
margin: 0 37px;
|
||||
text-align: center;
|
||||
float: left;
|
||||
}
|
||||
#picbtns .caption span{
|
||||
|
||||
#picbtns .caption span {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
line-height: 70px;
|
||||
|
|
@ -173,21 +205,25 @@
|
|||
background: #D8D8D8;
|
||||
border-radius: 50%;
|
||||
}
|
||||
#picbtns .caption span:hover{
|
||||
|
||||
#picbtns .caption span:hover {
|
||||
background: #485766;
|
||||
}
|
||||
#picbtns .caption h2{
|
||||
|
||||
#picbtns .caption h2 {
|
||||
font-size: 1.6rem;
|
||||
color: #485766;
|
||||
margin: 20px auto 10px auto;
|
||||
}
|
||||
#picbtns .caption p{
|
||||
|
||||
#picbtns .caption p {
|
||||
font-size: 1.2rem;
|
||||
color: #999999;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/*我们的收益*/
|
||||
.index-profit{
|
||||
.index-profit {
|
||||
width: 100%;
|
||||
height: 600px;
|
||||
margin: 0 auto;
|
||||
|
|
@ -195,20 +231,24 @@
|
|||
text-align: center;
|
||||
background: #F4F5F8;
|
||||
}
|
||||
.index-profit h2{
|
||||
|
||||
.index-profit h2 {
|
||||
font-size: 3.2rem;
|
||||
color: #485766;
|
||||
margin: 100px auto 20px auto;
|
||||
}
|
||||
.index-profit p{
|
||||
|
||||
.index-profit p {
|
||||
font-size: 1.2rem;
|
||||
color: #BCC3C9;
|
||||
}
|
||||
.index-profit ul{
|
||||
|
||||
.index-profit ul {
|
||||
width: 1200px;
|
||||
margin: 60px auto 0 auto;
|
||||
}
|
||||
.index-profit ul li{
|
||||
|
||||
.index-profit ul li {
|
||||
float: left;
|
||||
width: 260px;
|
||||
height: 216px;
|
||||
|
|
@ -216,52 +256,61 @@
|
|||
position: relative;
|
||||
background: url('../images/bg.png') no-repeat;
|
||||
}
|
||||
.index-profit ul li p{
|
||||
|
||||
.index-profit ul li p {
|
||||
color: #485766;
|
||||
font-size: 1.4rem;
|
||||
width: 128px;
|
||||
margin: 90px auto;
|
||||
text-align: left;
|
||||
}
|
||||
.index-profit ul li h2{
|
||||
|
||||
.index-profit ul li h2 {
|
||||
font-size: 1.8rem;
|
||||
color: #485766;
|
||||
position: absolute;
|
||||
bottom: -11%;
|
||||
left: 26%;
|
||||
}
|
||||
|
||||
/*推荐投放应用场景*/
|
||||
.use-scene{
|
||||
.use-scene {
|
||||
width: 100%;
|
||||
height: 755px;
|
||||
text-align: center;
|
||||
background: #495768;
|
||||
}
|
||||
.use-scene-tit h2{
|
||||
|
||||
.use-scene-tit h2 {
|
||||
font-size: 3.2rem;
|
||||
color: #FFFFFF;
|
||||
padding-top: 100px;
|
||||
}
|
||||
.use-scene-tit p{
|
||||
|
||||
.use-scene-tit p {
|
||||
font-size: 1.2rem;
|
||||
color: #BCC3C9;
|
||||
margin: 25px auto 60px auto;
|
||||
}
|
||||
.use-scene ul{
|
||||
|
||||
.use-scene ul {
|
||||
width: 1024px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.use-scene ul li{
|
||||
|
||||
.use-scene ul li {
|
||||
width: 256px;
|
||||
height: 500px;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.use-scene ul li:hover .use-scene-info{
|
||||
|
||||
.use-scene ul li:hover .use-scene-info {
|
||||
bottom: 20px;
|
||||
}
|
||||
.use-scene-info{
|
||||
|
||||
.use-scene-info {
|
||||
color: #fff;
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
|
|
@ -275,7 +324,8 @@
|
|||
-webkit-transition: bottom 1s; /* Safari 和 Chrome */
|
||||
-o-transition: bottom 1s;
|
||||
}
|
||||
.use-scene-info a{
|
||||
|
||||
.use-scene-info a {
|
||||
color: #fff;
|
||||
padding: 4px;
|
||||
font-size: 1.8rem;
|
||||
|
|
@ -283,18 +333,20 @@
|
|||
display: inline-block;
|
||||
border-bottom: 2px solid #fff;
|
||||
}
|
||||
.use-scene-info p{
|
||||
|
||||
.use-scene-info p {
|
||||
font-size: 1.2rem;
|
||||
color: #FFFFFF;
|
||||
text-align: left;
|
||||
line-height: 1.6;
|
||||
background:-webkit-linear-gradient(top,#fff,#888);
|
||||
-webkit-background-clip:text;
|
||||
-webkit-text-fill-color:transparent;
|
||||
text-transform:uppercase;
|
||||
background: -webkit-linear-gradient(top, #fff, #888);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* 侧边栏 */
|
||||
.left-bar{
|
||||
.left-bar {
|
||||
width: 31px;
|
||||
height: 228;
|
||||
position: fixed;
|
||||
|
|
@ -303,6 +355,7 @@
|
|||
background: #35424F;
|
||||
/*border-radius: 20px 0 0 20px;*/
|
||||
}
|
||||
|
||||
/*.left-bar-1, .left-bar-2{
|
||||
float: left;
|
||||
}*/
|
||||
|
|
@ -315,13 +368,14 @@
|
|||
/*.left-bar-1 img{
|
||||
|
||||
}*/
|
||||
.left-bar-2{
|
||||
.left-bar-2 {
|
||||
height: 100%;
|
||||
width: 31px;
|
||||
text-align: center;
|
||||
border-left: 1px solid #4A5C6E;
|
||||
}
|
||||
.left-bar-2 a{
|
||||
|
||||
.left-bar-2 a {
|
||||
width: 2.1rem;
|
||||
margin: 0 0.3rem;
|
||||
height: 45px;
|
||||
|
|
@ -329,13 +383,16 @@
|
|||
display: block;
|
||||
border-bottom: 1px solid #4A5C6E;
|
||||
}
|
||||
.left-bar-2 a:last-child{
|
||||
|
||||
.left-bar-2 a:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
.left-bar-2 a img{
|
||||
|
||||
.left-bar-2 a img {
|
||||
margin: 15px 0;
|
||||
}
|
||||
.left-bar-3{
|
||||
|
||||
.left-bar-3 {
|
||||
height: 137px;
|
||||
width: 137px;
|
||||
line-height: 137px;
|
||||
|
|
@ -348,7 +405,7 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
.left-bar-4{
|
||||
.left-bar-4 {
|
||||
color: #fff;
|
||||
height: 40px;
|
||||
width: 137px;
|
||||
|
|
@ -362,7 +419,7 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
.left-bar-5{
|
||||
.left-bar-5 {
|
||||
color: #fff;
|
||||
height: 40px;
|
||||
width: 137px;
|
||||
|
|
@ -376,7 +433,7 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
.left-bar-3 img{
|
||||
.left-bar-3 img {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
|
|
@ -384,7 +441,7 @@
|
|||
/*锁页面*/
|
||||
/*锁页面*/
|
||||
/*锁页面*/
|
||||
.top-nav{
|
||||
.top-nav {
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
|
|
@ -397,67 +454,81 @@
|
|||
left: 0;
|
||||
z-index: 888888;
|
||||
}
|
||||
.top-nav-cent{
|
||||
|
||||
.top-nav-cent {
|
||||
width: 1024px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.top-nav-logo{
|
||||
|
||||
.top-nav-logo {
|
||||
color: #fff;
|
||||
float: left;
|
||||
}
|
||||
.top-nav-logo img{
|
||||
|
||||
.top-nav-logo img {
|
||||
position: relative;
|
||||
top: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.top-nav-cent ul{
|
||||
|
||||
.top-nav-cent ul {
|
||||
float: right;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
.top-nav-cent ul li{
|
||||
|
||||
.top-nav-cent ul li {
|
||||
color: #fff;
|
||||
float: left;
|
||||
margin-left: 55px;
|
||||
}
|
||||
.top-nav-cent ul li a{
|
||||
|
||||
.top-nav-cent ul li a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.top-nav-cent ul li a:hover{
|
||||
|
||||
.top-nav-cent ul li a:hover {
|
||||
color: #88AFDB;
|
||||
}
|
||||
.top-nav-cent ul li a.topnav-a-activ{
|
||||
|
||||
.top-nav-cent ul li a.topnav-a-activ {
|
||||
color: #88AFDB;
|
||||
}
|
||||
.page-conter{
|
||||
|
||||
.page-conter {
|
||||
width: 1366px;
|
||||
background: #fff;
|
||||
margin: 60px auto 100px auto;
|
||||
border-radius: 0 0 40px 40px;
|
||||
}
|
||||
|
||||
/**/
|
||||
.car-lock{
|
||||
.car-lock {
|
||||
width: 1042px;
|
||||
padding-top: 100px;
|
||||
margin: 0 auto 50px auto;
|
||||
}
|
||||
.car-lock-left{
|
||||
|
||||
.car-lock-left {
|
||||
width: 575px;
|
||||
}
|
||||
.car-lock-left h2{
|
||||
|
||||
.car-lock-left h2 {
|
||||
font-size: 5.0rem;
|
||||
color: #383B3E;
|
||||
letter-spacing: 0;
|
||||
line-height: 1.5
|
||||
}
|
||||
.car-lock-left p{
|
||||
|
||||
.car-lock-left p {
|
||||
margin: 20px auto;
|
||||
font-size: 1.4rem.;
|
||||
color: #383B3E;
|
||||
letter-spacing: 0;
|
||||
line-height: 20px;
|
||||
}
|
||||
.car-lock-left button{
|
||||
|
||||
.car-lock-left button {
|
||||
width: 122px;
|
||||
height: 39px;
|
||||
border: none;
|
||||
|
|
@ -467,20 +538,24 @@
|
|||
background-image: -o-linear-gradient(#1CC3FF 0%, #0C90FF 100%);
|
||||
background-image: linear-gradient(#1CC3FF 0%, #0C90FF 100%);
|
||||
}
|
||||
.car-lock-left button a{
|
||||
|
||||
.car-lock-left button a {
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/**/
|
||||
.lock-descript{
|
||||
.lock-descript {
|
||||
width: 1042px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.title-line{
|
||||
|
||||
.title-line {
|
||||
height: 30px;
|
||||
border-bottom: 1px solid #D8D8D8;
|
||||
}
|
||||
.title-font{
|
||||
|
||||
.title-font {
|
||||
width: 100px;
|
||||
height: 30px;
|
||||
color: #393C3F;
|
||||
|
|
@ -489,16 +564,19 @@
|
|||
position: relative;
|
||||
top: 15px;
|
||||
}
|
||||
.h-cont{
|
||||
|
||||
.h-cont {
|
||||
margin-top: 58px;
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
.h-cont ul{
|
||||
|
||||
.h-cont ul {
|
||||
border-right: 1px solid #ccc;
|
||||
border-top: 1px solid #ccc;
|
||||
overflow: hidden;
|
||||
}
|
||||
.h-cont ul li{
|
||||
|
||||
.h-cont ul li {
|
||||
width: 24.9%;
|
||||
height: 144px;
|
||||
float: left;
|
||||
|
|
@ -507,54 +585,63 @@
|
|||
border-left: 1px solid #ccc;
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
.h-cont ul li p{
|
||||
|
||||
.h-cont ul li p {
|
||||
max-width: 170px;
|
||||
text-align: center;
|
||||
margin: 12px auto 0 auto;
|
||||
font-size: 1.2rem;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
/*锁对比*/
|
||||
.table-cont{
|
||||
.table-cont {
|
||||
margin-top: 12px;
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
.table-cont table{
|
||||
border-right:1px solid #ccc;
|
||||
border-bottom:1px solid #ccc;
|
||||
|
||||
.table-cont table {
|
||||
border-right: 1px solid #ccc;
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
.table-cont table th{
|
||||
|
||||
.table-cont table th {
|
||||
height: 50px;
|
||||
font-size: 1.4rem;
|
||||
color: #393C3F;
|
||||
text-align: center;
|
||||
border-left:1px solid #ccc;
|
||||
border-top:1px solid #ccc;
|
||||
border-left: 1px solid #ccc;
|
||||
border-top: 1px solid #ccc;
|
||||
}
|
||||
.table-cont table td{
|
||||
|
||||
.table-cont table td {
|
||||
height: 50px;
|
||||
font-size: 1.2rem;
|
||||
color: #333333;
|
||||
padding-left: 25px;
|
||||
border-left:1px solid #ccc;
|
||||
border-top:1px solid #ccc;
|
||||
border-left: 1px solid #ccc;
|
||||
border-top: 1px solid #ccc;
|
||||
}
|
||||
.table-cont table .table-tit td{
|
||||
|
||||
.table-cont table .table-tit td {
|
||||
border: none;
|
||||
font-size: 1.4rem;
|
||||
color: #393C3F;
|
||||
text-align: center;
|
||||
font-weight: 700;
|
||||
}
|
||||
.tr-bg{
|
||||
|
||||
.tr-bg {
|
||||
background: #F4F4F4;
|
||||
}
|
||||
|
||||
/*系统定制*/
|
||||
.h-sett{
|
||||
.h-sett {
|
||||
margin-top: 58px;
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
.writ-modes{
|
||||
|
||||
.writ-modes {
|
||||
width: 2%;
|
||||
font-size: 1.4rem;
|
||||
color: #393C3F;
|
||||
|
|
@ -564,7 +651,8 @@
|
|||
background: #F4F4F4;
|
||||
border-radius: 100px;
|
||||
}
|
||||
.sett-masseg{
|
||||
|
||||
.sett-masseg {
|
||||
width: 66.8%;
|
||||
height: 136px;
|
||||
font-size: 1.2rem;
|
||||
|
|
@ -574,52 +662,63 @@
|
|||
border: 1px solid #D8D8D8;
|
||||
margin-left: 2%;
|
||||
}
|
||||
|
||||
/*公司愿景*/
|
||||
.h-vision{
|
||||
.h-vision {
|
||||
margin-top: 58px;
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
.h-vision ul li{
|
||||
|
||||
.h-vision ul li {
|
||||
width: 33.3%;
|
||||
height: 60px;
|
||||
float: left;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.h-vision ul li a{
|
||||
|
||||
.h-vision ul li a {
|
||||
display: block;
|
||||
height: 100%;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.h-vision ul li a, .h-vision ul li div{
|
||||
|
||||
.h-vision ul li a, .h-vision ul li div {
|
||||
float: left;
|
||||
}
|
||||
.h-vision ul li div h2{
|
||||
|
||||
.h-vision ul li div h2 {
|
||||
font-size: 1.6rem;
|
||||
color: #393C3F;
|
||||
line-height: 2;
|
||||
font-weight: 700;
|
||||
}
|
||||
.h-vision ul li div p{
|
||||
|
||||
.h-vision ul li div p {
|
||||
font-size: 1.4rem;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
/*content-us*/
|
||||
.content-bg-us{
|
||||
.content-bg-us {
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
}
|
||||
.cont-us{
|
||||
|
||||
.cont-us {
|
||||
width: 1042px;
|
||||
margin: 0 auto;
|
||||
padding: 100px 0;
|
||||
}
|
||||
.cont-us p{
|
||||
|
||||
.cont-us p {
|
||||
text-align: center;
|
||||
}
|
||||
.cont-us ul{
|
||||
|
||||
.cont-us ul {
|
||||
margin-top: 50px;
|
||||
}
|
||||
.cont-us ul li{
|
||||
|
||||
.cont-us ul li {
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
float: left;
|
||||
|
|
@ -627,57 +726,65 @@
|
|||
text-align: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.cont-us ul li img{
|
||||
|
||||
.cont-us ul li img {
|
||||
margin-right: 10px;
|
||||
}
|
||||
.cont-us ul li span{
|
||||
|
||||
.cont-us ul li span {
|
||||
position: relative;
|
||||
top: -9px;
|
||||
}
|
||||
|
||||
/*.cont-us ul li img, .cont-us ul li span{
|
||||
float: left;
|
||||
}*/
|
||||
/*footer*/
|
||||
.foot-bar{
|
||||
.foot-bar {
|
||||
width: 100%;
|
||||
height: 62px;
|
||||
line-height: 62px;
|
||||
background: #F0F0F0;
|
||||
}
|
||||
.foot-bar .cont-dress{
|
||||
|
||||
.foot-bar .cont-dress {
|
||||
width: 1042px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.foot-bar .cont-dress p{
|
||||
|
||||
.foot-bar .cont-dress p {
|
||||
width: 50%;
|
||||
font-size: 1.2rem;
|
||||
color: #485766;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*案例页面*/
|
||||
/*案例页面*/
|
||||
/*案例页面*/
|
||||
.top-nav2{
|
||||
.top-nav2 {
|
||||
background: #FFFFFF;
|
||||
border-bottom: 1px solid #ECF2F8;
|
||||
}
|
||||
.top-nav-cent2 ul li{
|
||||
|
||||
.top-nav-cent2 ul li {
|
||||
color: #BBC4CE;
|
||||
}
|
||||
.top-nav-cent2 ul li a{
|
||||
|
||||
.top-nav-cent2 ul li a {
|
||||
color: #BBC4CE;
|
||||
}
|
||||
.top-nav-cent2 ul li a:hover{
|
||||
|
||||
.top-nav-cent2 ul li a:hover {
|
||||
color: #002200;
|
||||
}
|
||||
.top-nav-cent ul li a.topnav-a-activ2{
|
||||
|
||||
.top-nav-cent ul li a.topnav-a-activ2 {
|
||||
color: #002200;
|
||||
}
|
||||
|
||||
/*giant-screen*/
|
||||
.giant-screen{
|
||||
.giant-screen {
|
||||
width: 100%;
|
||||
letter-spacing: 1px;
|
||||
margin: 60px auto 0 auto;
|
||||
|
|
@ -686,22 +793,26 @@
|
|||
background-image: linear-gradient(#F3F9FF 0%, #D0DFF2 86%, #C6D8EF 98%);
|
||||
overflow: hidden;
|
||||
}
|
||||
.giant-cont{
|
||||
|
||||
.giant-cont {
|
||||
width: 670px;
|
||||
margin: 100px auto;
|
||||
text-align: center;
|
||||
}
|
||||
.giant-cont h2{
|
||||
|
||||
.giant-cont h2 {
|
||||
font-size: 6.0rem;
|
||||
color: #70849D;
|
||||
font-weight: 200;
|
||||
}
|
||||
.giant-cont p{
|
||||
|
||||
.giant-cont p {
|
||||
font-size: 1.2rem;
|
||||
color: #A8B6C5;
|
||||
margin: 22px auto 50px auto;
|
||||
}
|
||||
.giant-cont button{
|
||||
|
||||
.giant-cont button {
|
||||
color: #fff;
|
||||
width: 200px;
|
||||
height: 40px;
|
||||
|
|
@ -713,24 +824,29 @@
|
|||
background-image: -o-linear-gradient(#7BD0FF 0%, #078EFF 98%);
|
||||
background-image: linear-gradient(#7BD0FF 0%, #078EFF 98%);
|
||||
}
|
||||
.giant-cont button a{
|
||||
|
||||
.giant-cont button a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*你所在的位置*/
|
||||
.location{
|
||||
.location {
|
||||
width: 1024px;
|
||||
margin: 60px auto;
|
||||
}
|
||||
.route-guidance{
|
||||
|
||||
.route-guidance {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.route-guidance a{
|
||||
|
||||
.route-guidance a {
|
||||
color: #70849D;
|
||||
text-decoration: none;
|
||||
}
|
||||
.location-cont{
|
||||
|
||||
.location-cont {
|
||||
width: 100%;
|
||||
/*height: 314px;*/
|
||||
background: #FFFFFF;
|
||||
|
|
@ -738,11 +854,13 @@
|
|||
box-shadow: 0 0 4px 0 #E3F0FF;
|
||||
overflow: hidden;
|
||||
}
|
||||
.location-cont ul{
|
||||
|
||||
.location-cont ul {
|
||||
/*height: 164px;*/
|
||||
/*margin: 50px auto;*/
|
||||
}
|
||||
.location-cont ul li{
|
||||
|
||||
.location-cont ul li {
|
||||
float: left;
|
||||
width: 33.2%;
|
||||
height: 164px;
|
||||
|
|
@ -750,11 +868,13 @@
|
|||
margin: 20px 0;
|
||||
text-align: center;
|
||||
}
|
||||
.location-cont ul li.li-border{
|
||||
|
||||
.location-cont ul li.li-border {
|
||||
border-right: 1px solid #E4E8EC;
|
||||
border-left: 1px solid #E4E8EC;
|
||||
}
|
||||
.location-cont ul li span{
|
||||
|
||||
.location-cont ul li span {
|
||||
font-size: 1.2rem;
|
||||
color: #70849D;
|
||||
margin-top: 20px;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user