﻿/* 高亮样式 */  
.highlight {  
    background-color: yellow;  
}  
  
/* 搜索结果样式 */  
#searchResults {  
    margin-top: 20px;  
}  
  
#searchResults ul {  
    list-style-type: none;  
    padding: 0;  
}  
  
#searchResults li {  
    margin-bottom: 5px;  
    cursor: pointer;  
}  
  
#searchResults li:hover {  
    background-color: #f5f5f5;  
}