﻿.tagscloud ul {  
    list-style: none; /* 移除列表项前的默认标记 */  
    padding: 0; /* 移除默认的填充 */  
    margin: 0; /* 移除默认的边距 */  
    display: flex; /* 使用弹性盒模型来水平排列列表项 */  
    flex-wrap: wrap; /* 如果需要，允许列表项换行 */  
}  
  
.tagscloud ul li {  
    background-color: #f0f0f0; /* 浅灰色背景 */  
    margin: 5px; /* 列表项之间的间距 */  
    padding: 5px 10px; /* 列表项内的填充 */  
    border-radius: 5px; /* 圆角边框 */  
}  
  
.tagscloud ul li a {  
    color: #333; /* 深灰色文字 */  
    text-decoration: none; /* 移除下划线 */  
}  
  
.tagscloud ul li a:hover {  
    text-decoration: underline; /* 鼠标悬停时添加下划线 */  
}  
  
.h_title {  
    /* 如果需要，可以添加标题的样式 */  
    color: #333; /* 深灰色标题 */  
    text-align: center; /* 标题居中显示 */  
}
