...
|
...
|
@@ -1654,23 +1654,23 @@ $(function() { |
|
|
});
|
|
|
});
|
|
|
|
|
|
$(function(){
|
|
|
var font = $('.description-content .basic li');
|
|
|
var fontwidth = $('.description-content ul li:nth-child(4) .valueSpace').width();
|
|
|
$('.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');
|
|
|
}
|
|
|
$(function() {
|
|
|
var font = $('.description-content .basic li');
|
|
|
var fontwidth = $('.description-content ul li:nth-child(4) .valueSpace').width();
|
|
|
$('.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');
|
|
|
}
|
|
|
|
|
|
|
|
|
});
|
...
|
...
|
|