Authored by yyq

outlets css

... ... @@ -3,7 +3,7 @@
{{> common/main-banner}}
<div class="center-content">
{{#if column}}
<ul class="column-img-tab">
<ul class="column-img-tab clearfix">
{{# column}}
<li>
<a href="{{url}}" target="_blank"><img class="lazy" data-original="{{image src 378 175}}"></a>
... ...
... ... @@ -9,7 +9,7 @@
<img class="lazy" data-original="{{image thumb 90 120}}">
</a>
<div class="item-text">
<a href="{{url}}">
<a href="{{url}}" target="_blank">
{{productName}}
<p class="price">
<span class="sale-price">{{salesPrice}}</span>
... ...
... ... @@ -134,10 +134,10 @@ $('.time').each(function() {
$('.good-page-btns > label').click(function() {
var nowTime = new Date().getTime(),
data = $limitList.data(),
max = data.max - 1,
max = data.max ? data.max : 1,
page = data.page ? data.page : 0;
if (data.time && nowTime - data.time < 700) {
if (data.time && nowTime - data.time < 500) {
return;
}
... ... @@ -146,19 +146,13 @@ $('.good-page-btns > label').click(function() {
});
if ($(this).hasClass('pre-page-btn')) {
if (page > 0) {
page -= 1;
} else {
limitPageSwitch(-0.1);
}
page += max - 1;
} else {
if (page < max) {
page += 1;
} else {
limitPageSwitch(max + 0.1);
}
page += 1;
}
page = page % max;
limitPageSwitch(page);
});
... ...
... ... @@ -165,6 +165,7 @@
.slide-container {
height: 450px;
margin-top: 10px;
width: 100%;
position: relative;
... ...
.outlets-page {
.center-content {
width: 1150px !important;
}
.column-img-tab {
height: 178px;
margin-top: 15px;
li {
width: 380px;
height: 178px;
max-height: 178px;
margin-left: 5px;
float: left;
overflow: hidden;
... ... @@ -140,7 +142,7 @@
width: 300%;
.list-page {
width: 33%;
width: 33.33%;
max-height: 918px;
overflow: hidden;
display: inline-block;
... ... @@ -164,7 +166,7 @@
}
.item-text {
width: 225px;
width: 64%;
padding-right: 10px;
padding-top: 5px;
float: right;
... ... @@ -181,11 +183,10 @@
.sale-price {
color: #ec0011;
margin-right: 15px;
margin-right: 8px;
}
.market-price {
color: #999;
margin-right: 15px;
text-decoration: line-through;
}
... ...
... ... @@ -2,7 +2,7 @@
.all-goods-menu {
height: 35px;
line-height: 35px;
padding: 45px 0 10px;
padding-top: 45px;
.menu-tag {
color: #d0021b;
... ... @@ -44,6 +44,10 @@
}
}
.sort-layer {
margin-top: 10px;
}
.product-list {
width: 1160px;
... ...