Authored by htoooth

fix css

... ... @@ -1863,19 +1863,24 @@ $(function() {
});
// 调整模特卡的间距
$('.model-card-item .item .key').each(function(i) {
var index = i + 1;
$('.model-card-item').each(function() {
var $this = $(this);
if (index % 3 === 2) {
$(this).css({
'padding-left': '30px'
});
} else if (index % 3 === 0) {
$(this).css({
'padding-left': '50px'
});
}
$this.find('.item .key').each(function(i) {
var index = i + 1;
if (index % 3 === 2) {
$(this).css({
'padding-left': '40px'
});
} else if (index % 3 === 0) {
$(this).css({
'padding-left': '60px'
});
}
});
});
});
yasAtBottom.yasBottom();
... ...
... ... @@ -267,7 +267,7 @@
.price-row {
display: inline-block;
height: 20px;
margin-bottom: 12px;
margin-bottom: 10px;
}
.promotioGn-price {
... ... @@ -1133,7 +1133,7 @@
.text {
float: left;
width: 538px;
width: 530px;
padding-left: 40px;
margin-left: 240px;
line-height: 24px;
... ...