...
|
...
|
@@ -1650,6 +1650,28 @@ $(function() { |
|
|
});
|
|
|
});
|
|
|
|
|
|
$(function(){
|
|
|
var font = $('.description-content .basic li');
|
|
|
var fontwidth = $('.description-content ul li:nth-child(4) .valueSpace').width()-1;
|
|
|
$('.description-content ul li:nth-child(8) .valueSpace').css({
|
|
|
'display':'inline-block',
|
|
|
'text-align':'right',
|
|
|
'width':fontwidth
|
|
|
});
|
|
|
font.each(function(i,ele){
|
|
|
|
|
|
if((i+1) % 4 === 0){
|
|
|
$(this).find('.justpostion').css({'display':'inline-block','float':'right'});
|
|
|
}else if((i+1) % 4 === 1) {
|
|
|
return;
|
|
|
}else {
|
|
|
$(this).css('text-align','center');
|
|
|
}
|
|
|
|
|
|
|
|
|
});
|
|
|
});
|
|
|
|
|
|
|
|
|
// 数据懒加载
|
|
|
dataLazyLoad.init({cls: '.datalazyload', threshold: 500}); |
...
|
...
|
|