|  | @@ -1058,11 +1058,11 @@ export default {
 | 
	
		
			
				|  |  |        if (paragraphs.length <= 0) {
 | 
	
		
			
				|  |  |          // 单行情况下
 | 
	
		
			
				|  |  |          span.classList = 'paragraph';
 | 
	
		
			
				|  |  | -        span.style = 'display: flex; flex-wrap: wrap; margin-bottom: 22px;font-weight: 500;';
 | 
	
		
			
				|  |  | +        span.style = 'display: inline flex; flex-wrap: wrap; margin-bottom: 22px;font-weight: 500;';
 | 
	
		
			
				|  |  |        } else {
 | 
	
		
			
				|  |  |          // 多行情况下
 | 
	
		
			
				|  |  |          paragraphs.forEach((item) => {
 | 
	
		
			
				|  |  | -          item.style = 'display: flex; flex-wrap: wrap; margin-bottom: 22px;font-weight: 500;';
 | 
	
		
			
				|  |  | +          item.style = 'display: inline flex; flex-wrap: wrap; margin-bottom: 22px;font-weight: 500;';
 | 
	
		
			
				|  |  |          });
 | 
	
		
			
				|  |  |          span.classList = 'articel';
 | 
	
		
			
				|  |  |          span.style = 'font-weight: 500;';
 |