bike页面更改1
This commit is contained in:
parent
0044180bb7
commit
5676c2e8f1
|
|
@ -23,14 +23,10 @@ useHead({
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
// 延迟加载以确保DOM完全渲染
|
// 延迟加载以确保DOM完全渲染
|
||||||
setTimeout(() => {
|
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 () {
|
$('.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();
|
initBanner();
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
/*首屏巨慕*/
|
/*首屏巨慕*/
|
||||||
.index-giant {
|
.index-giant {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
padding-top: 50px;
|
padding-top: 50px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-image: -webkit-linear-gradient(bottom, #354457 0%, #102438 100%);
|
background-image: -webkit-linear-gradient(bottom, #354457 0%, #102438 100%);
|
||||||
|
|
@ -12,19 +13,23 @@
|
||||||
background-image: linear-gradient(to top, #354457 0%, #102438 100%);
|
background-image: linear-gradient(to top, #354457 0%, #102438 100%);
|
||||||
background: url('../images/P_1_banner_bg.png') no-repeat bottom center;
|
background: url('../images/P_1_banner_bg.png') no-repeat bottom center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-giant-cont {
|
.index-giant-cont {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 15% auto 0 auto;
|
margin: 15% auto 0 auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-giant-cont h1 {
|
.index-giant-cont h1 {
|
||||||
font-size: 4.2rem;
|
font-size: 4.2rem;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-giant-cont p {
|
.index-giant-cont p {
|
||||||
margin: 28px auto;
|
margin: 28px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-giant-cont button {
|
.index-giant-cont button {
|
||||||
width: 230px;
|
width: 230px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
|
|
@ -38,10 +43,12 @@
|
||||||
background-image: -o-linear-gradient(#80D3FF 1%, #008AFF 100%);
|
background-image: -o-linear-gradient(#80D3FF 1%, #008AFF 100%);
|
||||||
background-image: 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;
|
color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*解决方案*/
|
/*解决方案*/
|
||||||
.index-solut {
|
.index-solut {
|
||||||
height: 200px;
|
height: 200px;
|
||||||
|
|
@ -50,15 +57,18 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-solut h2 {
|
.index-solut h2 {
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
color: #485766;
|
color: #485766;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-solut p {
|
.index-solut p {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
color: #BCC3C9;
|
color: #BCC3C9;
|
||||||
margin: 20px auto 40px auto;
|
margin: 20px auto 40px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-solut ul {
|
.index-solut ul {
|
||||||
width: 272px;
|
width: 272px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
|
|
@ -68,15 +78,18 @@
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-solut ul li {
|
.index-solut ul li {
|
||||||
float: left;
|
float: left;
|
||||||
width: 33.3%;
|
width: 33.3%;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-solut-li {
|
.index-solut-li {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
background: #485766;
|
background: #485766;
|
||||||
}
|
}
|
||||||
|
|
||||||
#triangle-up {
|
#triangle-up {
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
|
|
@ -88,6 +101,7 @@
|
||||||
left: 45%;
|
left: 45%;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*解决方案1*/
|
/*解决方案1*/
|
||||||
.solut-detail {
|
.solut-detail {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -96,6 +110,7 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background: #F0F0F0;
|
background: #F0F0F0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.solut-detail ul {
|
.solut-detail ul {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
@ -104,6 +119,7 @@
|
||||||
top: 134px;
|
top: 134px;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.solut-detail ul li {
|
.solut-detail ul li {
|
||||||
width: 132px;
|
width: 132px;
|
||||||
height: 132px;
|
height: 132px;
|
||||||
|
|
@ -111,22 +127,32 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 0 65px;
|
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;
|
margin: 100px auto 65px auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-introd-top h2 {
|
.app-introd-top h2 {
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
color: #485766;
|
color: #485766;
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-introd-top p {
|
.app-introd-top p {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
color: #BCC3C9;
|
color: #BCC3C9;
|
||||||
}
|
}
|
||||||
|
|
||||||
#picplayer {
|
#picplayer {
|
||||||
width: 257px;
|
width: 257px;
|
||||||
height: 528px;
|
height: 528px;
|
||||||
|
|
@ -135,6 +161,7 @@
|
||||||
background-image: url('../images/Device.png');
|
background-image: url('../images/Device.png');
|
||||||
background-size: 100%;
|
background-size: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#piccontent {
|
#piccontent {
|
||||||
width: 224px;
|
width: 224px;
|
||||||
height: 394px;
|
height: 394px;
|
||||||
|
|
@ -144,26 +171,31 @@
|
||||||
top: 62px;
|
top: 62px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#piccontent a {
|
#piccontent a {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#piccontent a img {
|
#piccontent a img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#picbtns {
|
#picbtns {
|
||||||
width: 1036px;
|
width: 1036px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#picbtns .caption {
|
#picbtns .caption {
|
||||||
width: 185px;
|
width: 185px;
|
||||||
margin: 0 37px;
|
margin: 0 37px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#picbtns .caption span {
|
#picbtns .caption span {
|
||||||
width: 60px;
|
width: 60px;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
|
|
@ -173,19 +205,23 @@
|
||||||
background: #D8D8D8;
|
background: #D8D8D8;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#picbtns .caption span:hover {
|
#picbtns .caption span:hover {
|
||||||
background: #485766;
|
background: #485766;
|
||||||
}
|
}
|
||||||
|
|
||||||
#picbtns .caption h2 {
|
#picbtns .caption h2 {
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
color: #485766;
|
color: #485766;
|
||||||
margin: 20px auto 10px auto;
|
margin: 20px auto 10px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#picbtns .caption p {
|
#picbtns .caption p {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*我们的收益*/
|
/*我们的收益*/
|
||||||
.index-profit {
|
.index-profit {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -195,19 +231,23 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background: #F4F5F8;
|
background: #F4F5F8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-profit h2 {
|
.index-profit h2 {
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
color: #485766;
|
color: #485766;
|
||||||
margin: 100px auto 20px auto;
|
margin: 100px auto 20px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-profit p {
|
.index-profit p {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
color: #BCC3C9;
|
color: #BCC3C9;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-profit ul {
|
.index-profit ul {
|
||||||
width: 1200px;
|
width: 1200px;
|
||||||
margin: 60px auto 0 auto;
|
margin: 60px auto 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-profit ul li {
|
.index-profit ul li {
|
||||||
float: left;
|
float: left;
|
||||||
width: 260px;
|
width: 260px;
|
||||||
|
|
@ -216,6 +256,7 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
background: url('../images/bg.png') no-repeat;
|
background: url('../images/bg.png') no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-profit ul li p {
|
.index-profit ul li p {
|
||||||
color: #485766;
|
color: #485766;
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
|
|
@ -223,6 +264,7 @@
|
||||||
margin: 90px auto;
|
margin: 90px auto;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.index-profit ul li h2 {
|
.index-profit ul li h2 {
|
||||||
font-size: 1.8rem;
|
font-size: 1.8rem;
|
||||||
color: #485766;
|
color: #485766;
|
||||||
|
|
@ -230,6 +272,7 @@
|
||||||
bottom: -11%;
|
bottom: -11%;
|
||||||
left: 26%;
|
left: 26%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*推荐投放应用场景*/
|
/*推荐投放应用场景*/
|
||||||
.use-scene {
|
.use-scene {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -237,20 +280,24 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background: #495768;
|
background: #495768;
|
||||||
}
|
}
|
||||||
|
|
||||||
.use-scene-tit h2 {
|
.use-scene-tit h2 {
|
||||||
font-size: 3.2rem;
|
font-size: 3.2rem;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
padding-top: 100px;
|
padding-top: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.use-scene-tit p {
|
.use-scene-tit p {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
color: #BCC3C9;
|
color: #BCC3C9;
|
||||||
margin: 25px auto 60px auto;
|
margin: 25px auto 60px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.use-scene ul {
|
.use-scene ul {
|
||||||
width: 1024px;
|
width: 1024px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.use-scene ul li {
|
.use-scene ul li {
|
||||||
width: 256px;
|
width: 256px;
|
||||||
height: 500px;
|
height: 500px;
|
||||||
|
|
@ -258,9 +305,11 @@
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.use-scene ul li:hover .use-scene-info {
|
.use-scene ul li:hover .use-scene-info {
|
||||||
bottom: 20px;
|
bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.use-scene-info {
|
.use-scene-info {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
width: 90%;
|
width: 90%;
|
||||||
|
|
@ -275,6 +324,7 @@
|
||||||
-webkit-transition: bottom 1s; /* Safari 和 Chrome */
|
-webkit-transition: bottom 1s; /* Safari 和 Chrome */
|
||||||
-o-transition: bottom 1s;
|
-o-transition: bottom 1s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.use-scene-info a {
|
.use-scene-info a {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
|
|
@ -283,6 +333,7 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border-bottom: 2px solid #fff;
|
border-bottom: 2px solid #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.use-scene-info p {
|
.use-scene-info p {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
|
|
@ -293,6 +344,7 @@
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 侧边栏 */
|
/* 侧边栏 */
|
||||||
.left-bar {
|
.left-bar {
|
||||||
width: 31px;
|
width: 31px;
|
||||||
|
|
@ -303,6 +355,7 @@
|
||||||
background: #35424F;
|
background: #35424F;
|
||||||
/*border-radius: 20px 0 0 20px;*/
|
/*border-radius: 20px 0 0 20px;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.left-bar-1, .left-bar-2{
|
/*.left-bar-1, .left-bar-2{
|
||||||
float: left;
|
float: left;
|
||||||
}*/
|
}*/
|
||||||
|
|
@ -321,6 +374,7 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-left: 1px solid #4A5C6E;
|
border-left: 1px solid #4A5C6E;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left-bar-2 a {
|
.left-bar-2 a {
|
||||||
width: 2.1rem;
|
width: 2.1rem;
|
||||||
margin: 0 0.3rem;
|
margin: 0 0.3rem;
|
||||||
|
|
@ -329,12 +383,15 @@
|
||||||
display: block;
|
display: block;
|
||||||
border-bottom: 1px solid #4A5C6E;
|
border-bottom: 1px solid #4A5C6E;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left-bar-2 a:last-child {
|
.left-bar-2 a:last-child {
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left-bar-2 a img {
|
.left-bar-2 a img {
|
||||||
margin: 15px 0;
|
margin: 15px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left-bar-3 {
|
.left-bar-3 {
|
||||||
height: 137px;
|
height: 137px;
|
||||||
width: 137px;
|
width: 137px;
|
||||||
|
|
@ -397,59 +454,72 @@
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: 888888;
|
z-index: 888888;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent {
|
.top-nav-cent {
|
||||||
width: 1024px;
|
width: 1024px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-logo {
|
.top-nav-logo {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-logo img {
|
.top-nav-logo img {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent ul {
|
.top-nav-cent ul {
|
||||||
float: right;
|
float: right;
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent ul li {
|
.top-nav-cent ul li {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 55px;
|
margin-left: 55px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent ul li a {
|
.top-nav-cent ul li a {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent ul li a:hover {
|
.top-nav-cent ul li a:hover {
|
||||||
color: #88AFDB;
|
color: #88AFDB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent ul li a.topnav-a-activ {
|
.top-nav-cent ul li a.topnav-a-activ {
|
||||||
color: #88AFDB;
|
color: #88AFDB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.page-conter {
|
.page-conter {
|
||||||
width: 1366px;
|
width: 1366px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
margin: 60px auto 100px auto;
|
margin: 60px auto 100px auto;
|
||||||
border-radius: 0 0 40px 40px;
|
border-radius: 0 0 40px 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**/
|
/**/
|
||||||
.car-lock {
|
.car-lock {
|
||||||
width: 1042px;
|
width: 1042px;
|
||||||
padding-top: 100px;
|
padding-top: 100px;
|
||||||
margin: 0 auto 50px auto;
|
margin: 0 auto 50px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.car-lock-left {
|
.car-lock-left {
|
||||||
width: 575px;
|
width: 575px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.car-lock-left h2 {
|
.car-lock-left h2 {
|
||||||
font-size: 5.0rem;
|
font-size: 5.0rem;
|
||||||
color: #383B3E;
|
color: #383B3E;
|
||||||
letter-spacing: 0;
|
letter-spacing: 0;
|
||||||
line-height: 1.5
|
line-height: 1.5
|
||||||
}
|
}
|
||||||
|
|
||||||
.car-lock-left p {
|
.car-lock-left p {
|
||||||
margin: 20px auto;
|
margin: 20px auto;
|
||||||
font-size: 1.4rem.;
|
font-size: 1.4rem.;
|
||||||
|
|
@ -457,6 +527,7 @@
|
||||||
letter-spacing: 0;
|
letter-spacing: 0;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.car-lock-left button {
|
.car-lock-left button {
|
||||||
width: 122px;
|
width: 122px;
|
||||||
height: 39px;
|
height: 39px;
|
||||||
|
|
@ -467,19 +538,23 @@
|
||||||
background-image: -o-linear-gradient(#1CC3FF 0%, #0C90FF 100%);
|
background-image: -o-linear-gradient(#1CC3FF 0%, #0C90FF 100%);
|
||||||
background-image: 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;
|
color: #FFFFFF;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**/
|
/**/
|
||||||
.lock-descript {
|
.lock-descript {
|
||||||
width: 1042px;
|
width: 1042px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-line {
|
.title-line {
|
||||||
height: 30px;
|
height: 30px;
|
||||||
border-bottom: 1px solid #D8D8D8;
|
border-bottom: 1px solid #D8D8D8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-font {
|
.title-font {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
|
@ -489,15 +564,18 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 15px;
|
top: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-cont {
|
.h-cont {
|
||||||
margin-top: 58px;
|
margin-top: 58px;
|
||||||
margin-bottom: 100px;
|
margin-bottom: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-cont ul {
|
.h-cont ul {
|
||||||
border-right: 1px solid #ccc;
|
border-right: 1px solid #ccc;
|
||||||
border-top: 1px solid #ccc;
|
border-top: 1px solid #ccc;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-cont ul li {
|
.h-cont ul li {
|
||||||
width: 24.9%;
|
width: 24.9%;
|
||||||
height: 144px;
|
height: 144px;
|
||||||
|
|
@ -507,6 +585,7 @@
|
||||||
border-left: 1px solid #ccc;
|
border-left: 1px solid #ccc;
|
||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-cont ul li p {
|
.h-cont ul li p {
|
||||||
max-width: 170px;
|
max-width: 170px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
@ -514,15 +593,18 @@
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*锁对比*/
|
/*锁对比*/
|
||||||
.table-cont {
|
.table-cont {
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
margin-bottom: 100px;
|
margin-bottom: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-cont table {
|
.table-cont table {
|
||||||
border-right: 1px solid #ccc;
|
border-right: 1px solid #ccc;
|
||||||
border-bottom: 1px solid #ccc;
|
border-bottom: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-cont table th {
|
.table-cont table th {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
|
|
@ -531,6 +613,7 @@
|
||||||
border-left: 1px solid #ccc;
|
border-left: 1px solid #ccc;
|
||||||
border-top: 1px solid #ccc;
|
border-top: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-cont table td {
|
.table-cont table td {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
|
|
@ -539,6 +622,7 @@
|
||||||
border-left: 1px solid #ccc;
|
border-left: 1px solid #ccc;
|
||||||
border-top: 1px solid #ccc;
|
border-top: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-cont table .table-tit td {
|
.table-cont table .table-tit td {
|
||||||
border: none;
|
border: none;
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
|
|
@ -546,14 +630,17 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tr-bg {
|
.tr-bg {
|
||||||
background: #F4F4F4;
|
background: #F4F4F4;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*系统定制*/
|
/*系统定制*/
|
||||||
.h-sett {
|
.h-sett {
|
||||||
margin-top: 58px;
|
margin-top: 58px;
|
||||||
margin-bottom: 100px;
|
margin-bottom: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.writ-modes {
|
.writ-modes {
|
||||||
width: 2%;
|
width: 2%;
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
|
|
@ -564,6 +651,7 @@
|
||||||
background: #F4F4F4;
|
background: #F4F4F4;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sett-masseg {
|
.sett-masseg {
|
||||||
width: 66.8%;
|
width: 66.8%;
|
||||||
height: 136px;
|
height: 136px;
|
||||||
|
|
@ -574,51 +662,62 @@
|
||||||
border: 1px solid #D8D8D8;
|
border: 1px solid #D8D8D8;
|
||||||
margin-left: 2%;
|
margin-left: 2%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*公司愿景*/
|
/*公司愿景*/
|
||||||
.h-vision {
|
.h-vision {
|
||||||
margin-top: 58px;
|
margin-top: 58px;
|
||||||
margin-bottom: 100px;
|
margin-bottom: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-vision ul li {
|
.h-vision ul li {
|
||||||
width: 33.3%;
|
width: 33.3%;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
float: left;
|
float: left;
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-vision ul li a {
|
.h-vision ul li a {
|
||||||
display: block;
|
display: block;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin-right: 20px;
|
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;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-vision ul li div h2 {
|
.h-vision ul li div h2 {
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
color: #393C3F;
|
color: #393C3F;
|
||||||
line-height: 2;
|
line-height: 2;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
|
||||||
.h-vision ul li div p {
|
.h-vision ul li div p {
|
||||||
font-size: 1.4rem;
|
font-size: 1.4rem;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*content-us*/
|
/*content-us*/
|
||||||
.content-bg-us {
|
.content-bg-us {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cont-us {
|
.cont-us {
|
||||||
width: 1042px;
|
width: 1042px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 100px 0;
|
padding: 100px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cont-us p {
|
.cont-us p {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cont-us ul {
|
.cont-us ul {
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cont-us ul li {
|
.cont-us ul li {
|
||||||
height: 30px;
|
height: 30px;
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
|
|
@ -627,13 +726,16 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cont-us ul li img {
|
.cont-us ul li img {
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cont-us ul li span {
|
.cont-us ul li span {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -9px;
|
top: -9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.cont-us ul li img, .cont-us ul li span{
|
/*.cont-us ul li img, .cont-us ul li span{
|
||||||
float: left;
|
float: left;
|
||||||
}*/
|
}*/
|
||||||
|
|
@ -644,10 +746,12 @@
|
||||||
line-height: 62px;
|
line-height: 62px;
|
||||||
background: #F0F0F0;
|
background: #F0F0F0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.foot-bar .cont-dress {
|
.foot-bar .cont-dress {
|
||||||
width: 1042px;
|
width: 1042px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.foot-bar .cont-dress p {
|
.foot-bar .cont-dress p {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
|
|
@ -655,8 +759,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*案例页面*/
|
/*案例页面*/
|
||||||
/*案例页面*/
|
/*案例页面*/
|
||||||
/*案例页面*/
|
/*案例页面*/
|
||||||
|
|
@ -664,18 +766,23 @@
|
||||||
background: #FFFFFF;
|
background: #FFFFFF;
|
||||||
border-bottom: 1px solid #ECF2F8;
|
border-bottom: 1px solid #ECF2F8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent2 ul li {
|
.top-nav-cent2 ul li {
|
||||||
color: #BBC4CE;
|
color: #BBC4CE;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent2 ul li a {
|
.top-nav-cent2 ul li a {
|
||||||
color: #BBC4CE;
|
color: #BBC4CE;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent2 ul li a:hover {
|
.top-nav-cent2 ul li a:hover {
|
||||||
color: #002200;
|
color: #002200;
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-nav-cent ul li a.topnav-a-activ2 {
|
.top-nav-cent ul li a.topnav-a-activ2 {
|
||||||
color: #002200;
|
color: #002200;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*giant-screen*/
|
/*giant-screen*/
|
||||||
.giant-screen {
|
.giant-screen {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -686,21 +793,25 @@
|
||||||
background-image: linear-gradient(#F3F9FF 0%, #D0DFF2 86%, #C6D8EF 98%);
|
background-image: linear-gradient(#F3F9FF 0%, #D0DFF2 86%, #C6D8EF 98%);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.giant-cont {
|
.giant-cont {
|
||||||
width: 670px;
|
width: 670px;
|
||||||
margin: 100px auto;
|
margin: 100px auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.giant-cont h2 {
|
.giant-cont h2 {
|
||||||
font-size: 6.0rem;
|
font-size: 6.0rem;
|
||||||
color: #70849D;
|
color: #70849D;
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
}
|
}
|
||||||
|
|
||||||
.giant-cont p {
|
.giant-cont p {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
color: #A8B6C5;
|
color: #A8B6C5;
|
||||||
margin: 22px auto 50px auto;
|
margin: 22px auto 50px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.giant-cont button {
|
.giant-cont button {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
|
|
@ -713,23 +824,28 @@
|
||||||
background-image: -o-linear-gradient(#7BD0FF 0%, #078EFF 98%);
|
background-image: -o-linear-gradient(#7BD0FF 0%, #078EFF 98%);
|
||||||
background-image: linear-gradient(#7BD0FF 0%, #078EFF 98%);
|
background-image: linear-gradient(#7BD0FF 0%, #078EFF 98%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.giant-cont button a {
|
.giant-cont button a {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*你所在的位置*/
|
/*你所在的位置*/
|
||||||
.location {
|
.location {
|
||||||
width: 1024px;
|
width: 1024px;
|
||||||
margin: 60px auto;
|
margin: 60px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.route-guidance {
|
.route-guidance {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.route-guidance a {
|
.route-guidance a {
|
||||||
color: #70849D;
|
color: #70849D;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.location-cont {
|
.location-cont {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
/*height: 314px;*/
|
/*height: 314px;*/
|
||||||
|
|
@ -738,10 +854,12 @@
|
||||||
box-shadow: 0 0 4px 0 #E3F0FF;
|
box-shadow: 0 0 4px 0 #E3F0FF;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.location-cont ul {
|
.location-cont ul {
|
||||||
/*height: 164px;*/
|
/*height: 164px;*/
|
||||||
/*margin: 50px auto;*/
|
/*margin: 50px auto;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.location-cont ul li {
|
.location-cont ul li {
|
||||||
float: left;
|
float: left;
|
||||||
width: 33.2%;
|
width: 33.2%;
|
||||||
|
|
@ -750,10 +868,12 @@
|
||||||
margin: 20px 0;
|
margin: 20px 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.location-cont ul li.li-border {
|
.location-cont ul li.li-border {
|
||||||
border-right: 1px solid #E4E8EC;
|
border-right: 1px solid #E4E8EC;
|
||||||
border-left: 1px solid #E4E8EC;
|
border-left: 1px solid #E4E8EC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.location-cont ul li span {
|
.location-cont ul li span {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
color: #70849D;
|
color: #70849D;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user