/* 重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  
}

/* 外层容器 */
.button-container-wrapper {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 可滚动的按钮容器 */
.button-container {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px;
  flex: 1;
  /* 隐藏滚动条但保留功能 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.button-container::-webkit-scrollbar {
  display: none;
}

.btn {
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  background-color: #00cc66;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
}

.btn:hover {
  background-color: #00b359;
}

/* 固定在右侧的更多按钮 */
.fixed-more-btn {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  z-index: 10;
}

.more-btn {
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  background-color: #ff9900;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
}

.more-btn:hover {
  background-color: #ff8500;
}


.btn-link {
  display: inline-block;
  text-decoration: none;
}