/* 按键样式 */
a.download-link {
  text-decoration: none;
  color: #007bff;
  background-color: #f8f9fa;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  margin: 6px;
  font-size: 18px;

}

a.download-link:hover {
  background-color: #007bff;
  color: white;
}

/* 样式定义 链接栏*/
.link-list {
  list-style: none;
  padding: 0;
}

.link-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.link-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  border-radius: 5px;
  transition: border-radius 0.3s;
}

.link-item a:hover,
.link-item a:focus,
.link-item a.active {
  border-radius: 15px;
  background-color: #f2f2f2;
}

.link-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/*底部栏*/
.timestamp {
  text-align: center;
  margin-top: 20px;
}
