.xiao-down {
  white-space: nowrap;
  overflow-x: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-overflow-scrolling: touch;
}

.xiao-details {
  flex: 1;
}

.xiao-name {
  font-size: 16px;
  font-weight: bold;
}

.xiao-description {
  font-size: 14px;
  color: #666;
}

.xiao-download-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  outline: none; /* 添加此行 */
  border: none; /* 添加此行 */
}

.xiao-download-button:hover {
  background-color: #0056b3;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}