...
|
...
|
@@ -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();
|
...
|
...
|
|