Commit 498a170e92aaed9a2595068efa8218818a1edc96

Authored by liuqimichale
1 parent 1ec54148

企业

webintroduce/src/assets/css/reset.css
@@ -141,5 +141,5 @@ table { @@ -141,5 +141,5 @@ table {
141 /*自定义导航选中样式*/ 141 /*自定义导航选中样式*/
142 .navActive{ 142 .navActive{
143 color: #f00; 143 color: #f00;
144 - border-bottom: 2px solid #f00!important; 144 + border-bottom: 2px solid #70CCBB!important;
145 } 145 }
webintroduce/src/assets/css/variables.scss
1 $baseColor:#000; 1 $baseColor:#000;
2 2
3 -$baseBgColor:#000; 3 +$baseBgColor:rgba(247,248,250,1);
4 4
5 $contentWidth: 1200; 5 $contentWidth: 1200;
6 6
webintroduce/src/assets/images/enterprise/banner.png 0 → 100644

1.19 MB

webintroduce/src/components/VHeader.vue
@@ -23,7 +23,9 @@ export default { @@ -23,7 +23,9 @@ export default {
23 navLinks: [ 23 navLinks: [
24 { name: '首页', linkPath: '/home' }, 24 { name: '首页', linkPath: '/home' },
25 { name: '解决方案', linkPath: '/solution' }, 25 { name: '解决方案', linkPath: '/solution' },
26 - { name: '企业介绍', linkPath: '/enterprise' } 26 + { name: '政府', linkPath: '/solution' },
  27 + { name: '企业', linkPath: '/enterprise' },
  28 + { name: '车主', linkPath: '/solution' },
27 ] 29 ]
28 } 30 }
29 }, 31 },
@@ -34,18 +36,21 @@ export default { @@ -34,18 +36,21 @@ export default {
34 36
35 <style scoped lang="scss"> 37 <style scoped lang="scss">
36 .header-wrap { 38 .header-wrap {
37 - height: 70px;  
38 - line-height: 70px; 39 + height: 80px;
  40 + line-height: 80px;
39 background-color: $baseWhiteBg; 41 background-color: $baseWhiteBg;
40 } 42 }
41 43
42 .bar-wrap { 44 .bar-wrap {
43 >li{ 45 >li{
44 float: left; 46 float: left;
45 - height: 70px;  
46 - line-height: 70px;  
47 - margin-left: 30px; 47 + height: 80px;
  48 + line-height: 80px;
  49 + margin-left: 73px;
48 border-bottom: 2px solid #fff; 50 border-bottom: 2px solid #fff;
  51 + color:rgba(0,0,0,.6);
  52 + font-size: 16px;
  53 + cursor: pointer;
49 } 54 }
50 } 55 }
51 </style> 56 </style>