|  | @@ -356,13 +356,13 @@ const cellStyleHandler = ({ column }) => {
 | 
	
		
			
				|  |  |    const dayDetailedFormat = /\d{4}-\d{2}-\d{2}/;
 | 
	
		
			
				|  |  |    const monthFormat = /\d{4}-\d{2}/;
 | 
	
		
			
				|  |  |    if (columnName.includes('~') || columnName.includes('截止') || columnName.includes('近90天平台退货率') || columnName.includes('余额')) {
 | 
	
		
			
				|  |  | -    return { fontSize: '12px', backgroundColor: '#b3ced7' };
 | 
	
		
			
				|  |  | +    return { fontSize: '12px', backgroundColor: '#e0f2fe' };
 | 
	
		
			
				|  |  |    }
 | 
	
		
			
				|  |  |    if (monthFormat.test(columnName) && !dayDetailedFormat.test(columnName)) {
 | 
	
		
			
				|  |  | -    return { fontSize: '12px', backgroundColor: '#8cbacc' };
 | 
	
		
			
				|  |  | +    return { fontSize: '12px', backgroundColor: 'rgba(186,230,253,0.9)' };
 | 
	
		
			
				|  |  |    }
 | 
	
		
			
				|  |  |    if (dayFormat.test(columnName)) {
 | 
	
		
			
				|  |  | -    return { fontSize: '12px', backgroundColor: '#d0dadf' };
 | 
	
		
			
				|  |  | +    return { fontSize: '12px', backgroundColor: '#f0f9ff' };
 | 
	
		
			
				|  |  |    }
 | 
	
		
			
				|  |  |    return { fontSize: '12px' };
 | 
	
		
			
				|  |  |  };
 |