53 lines
		
	
	
		
			761 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			761 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* 日志详情样式 */
 | 
						|
.content-header {
 | 
						|
    display: flex;
 | 
						|
    justify-content: space-between;
 | 
						|
    align-items: center;
 | 
						|
    margin-bottom: 20px;
 | 
						|
}
 | 
						|
 | 
						|
.content-header h1 {
 | 
						|
    margin: 0;
 | 
						|
    font-size: 24px;
 | 
						|
}
 | 
						|
 | 
						|
.log-info {
 | 
						|
    padding: 10px;
 | 
						|
}
 | 
						|
 | 
						|
.info-item {
 | 
						|
    margin-bottom: 15px;
 | 
						|
    display: flex;
 | 
						|
}
 | 
						|
 | 
						|
.info-item .label {
 | 
						|
    width: 100px;
 | 
						|
    font-weight: 600;
 | 
						|
    color: #495057;
 | 
						|
}
 | 
						|
 | 
						|
.info-item .value {
 | 
						|
    flex: 1;
 | 
						|
}
 | 
						|
 | 
						|
.description {
 | 
						|
    background-color: #f8f9fa;
 | 
						|
    padding: 15px;
 | 
						|
    border-radius: 5px;
 | 
						|
    margin-top: 20px;
 | 
						|
    display: block;
 | 
						|
}
 | 
						|
 | 
						|
.description .label {
 | 
						|
    display: block;
 | 
						|
    width: 100%;
 | 
						|
    margin-bottom: 10px;
 | 
						|
}
 | 
						|
 | 
						|
.description .value {
 | 
						|
    display: block;
 | 
						|
    width: 100%;
 | 
						|
    white-space: pre-wrap;
 | 
						|
    word-break: break-word;
 | 
						|
}
 |