...
|
...
|
@@ -6,7 +6,7 @@ |
|
|
<div class="brand-box" v-for="brand in item.brands">
|
|
|
<a href="{{brand.domain | brandUrl}}">
|
|
|
<div class="brand-logo">
|
|
|
<img v-lazy="brand.logo | resize 150 150" alt="{{brand.name}}">
|
|
|
<img v-lazy="brand.logo | resize 136 136" alt="{{brand.name}}">
|
|
|
</div>
|
|
|
<span class="brand-name">{{brand.name}}</span>
|
|
|
</a>
|
...
|
...
|
@@ -25,12 +25,17 @@ |
|
|
.per-brand-box {
|
|
|
background: #fff;
|
|
|
padding: 0 30px;
|
|
|
|
|
|
&:not(:first-of-type) {
|
|
|
margin-top: 20px;
|
|
|
}
|
|
|
|
|
|
.index {
|
|
|
padding: 18px 0;
|
|
|
height: 60px;
|
|
|
line-height: 60px;
|
|
|
|
|
|
a {
|
|
|
font-size: 36px;
|
|
|
font-size: 32px;
|
|
|
}
|
|
|
}
|
|
|
}
|
...
|
...
|
@@ -40,15 +45,17 @@ |
|
|
}
|
|
|
|
|
|
.brand-box {
|
|
|
width: 24%;
|
|
|
height: 180px;
|
|
|
width: 172px;
|
|
|
height: 162px;
|
|
|
float: left;
|
|
|
overflow: hidden;
|
|
|
text-align: center;
|
|
|
margin: 0 0.5%;
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
.brand-logo {
|
|
|
height: 150px;
|
|
|
margin: 0 auto;
|
|
|
width: 136px;
|
|
|
height: 136px;
|
|
|
overflow: hidden;
|
|
|
|
|
|
img {
|
...
|
...
|
@@ -57,7 +64,8 @@ |
|
|
}
|
|
|
|
|
|
.brand-name {
|
|
|
width: 100%;
|
|
|
width: 136px;
|
|
|
font-size: 18px;
|
|
|
color: #d0d0d0;
|
|
|
overflow: hidden;
|
|
|
white-space: nowrap;
|
...
|
...
|
|