Authored by 2586703@qq.com

产品bug修复

... ... @@ -6,6 +6,7 @@
line-height: 60rem / $pxConvertRem;
color: #000;
font-size: 40rem / $pxConvertRem;
font-weight:bold;
}
.date-pageview {
... ...
... ... @@ -90,28 +90,18 @@
z-index: 2;
float: right;
}
i {
position: absolute;
z-index: 1;
left: 0;
right: 0;
top: 0;
bottom: 0;
opacity: 0.8;
}
}
.new-tag i {
background: #93c163;
.new-tag {
background: #86bf4a;
}
.sale-tag i {
background: #dc524f;
.sale-tag {
background: #d62927;
}
.few-tag i {
background: #fdaf3a;
.few-tag {
background: #ff9e0d;
}
}
... ...
... ... @@ -17,7 +17,7 @@ $pxConvertRem : 40;
padding: 20rem / $pxConvertRem 0 0 30rem / $pxConvertRem;
background: #fff;
z-index: 10;
border-bottom: 1px solid #969696;
border-bottom: 1px solid #b0b0b0;
&.fixed {
position: fixed;
... ...
... ... @@ -49,9 +49,9 @@
}
.brand-name {
margin: 2rem / $pxConvertRem 0 0 0;
margin: 2px 0 0 0;
line-height: 24rem / $pxConvertRem;
font-size: 14rem / $pxConvertRem;
font-size: 18rem / $pxConvertRem;
color: #babac2;
text-align: center;
text-decoration: none;
... ...
... ... @@ -12,21 +12,18 @@
<div class="tag-container">
{{# isNew}}
<div class="good-tag new-tag clearfix">
<i></i>
<span>新品到着</span>
<em>NEW</em>
</div>
{{/ isNew}}
{{# isSale}}
<div class="good-tag sale-tag clearfix">
<i></i>
<span>打折商品</span>
<em>SALE</em>
</div>
{{/ isSale}}
{{# isFew}}
<div class="good-tag few-tag clearfix">
<i></i>
<span>即将售罄</span>
<em>FEW</em>
</div>
... ...