.game-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.game-list-header-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
}

/* 自定义下拉框容器 */
.custom-select-container {
  position: relative;
  /* width: 114px; */
  user-select: none;
  display: flex;
  gap: 10px;
}

/* 选中项样式 */
.custom-select-selected {
  width: 114px;
  height: 32px;
  background-color: #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.custom-select-text {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

/* 下拉箭头 */
.custom-select-arrow {
  transition: transform 0.2s ease;
  margin-left: 4px;
}

/* 箭头旋转效果 */
.custom-select-container.active .custom-select-arrow {
  transform: rotate(0deg);
}
.custom-select-arrow {
  transform: rotate(180deg);
}

/* 下拉选项容器 */
.custom-select-options {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 114px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: all 0.3s ease;
  transform-origin: top center;
  transform: scale(0.9);
}

/* 显示下拉选项 */
.custom-select-container.active .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* 下拉选项箭头阴影 */
.custom-select-options-arrow-shadow {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(0, 0, 0, 0.1);
  z-index: 100;
}

/* 下拉选项箭头 */
.custom-select-options-arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  z-index: 101;
}

/* 下拉选项 */
.custom-select-option {
  height: 32px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* 下拉选项悬停和选中效果 */
.custom-select-option:hover,
.custom-select-option.active {
  background-color: #e5e5e5;
}

/* 保留原始select用于表单提交，但隐藏它 */
.game-list-header-sort {
  display: none;
}

.index-content {
  width: 1270px;
  margin: auto;
}

.game-list-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

.page-index-content {
  width: 1270px;
  margin: 0 auto;
}

.game-list-results .card-list-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* 游戏卡片占位样式 */
.game-list-results .game-card-header {
  background-color: #f0f0f0;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 分页器容器样式 */
.game-list-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  gap: 16px;
}

/* 分页器样式 */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px; /* 页数之间的间距是4px */
}

.pagination a:hover {
  background-color: #f7f7f7;
}

.pagination .current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: #ff6b00; /* 项目主题色，这里假设是橙色 */
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.pagination .more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
}

.pagination .prev,
.pagination .next {
  width: 74px;
  height: 32px;
  padding: 0;
  justify-content: center;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 14px;
}

/* 跳转页面输入框和按钮样式 */
.pagination-jump {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
}

.pagination-jump-input {
  width: 40px;
  height: 32px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
}

.pagination-jump-btn {
  width: 60px;
  height: 32px;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 16px;
}

.pagination-jump-btn:hover {
  background-color: #f7f7f7;
}
.suggested-item {
  margin-top: 45px;
}
.suggested-items-tip {
  font-weight: 400;
  font-size: 16px;
  color: #53565a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.suggested-items-title {
  font-weight: 600;
  font-size: 18px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.suggested-items-title .suggested-items-title-line {
  width: 32px;
  height: 1px;
  background-color: #91969c;
}

.suggested-items-title .suggested-items-title-text {
  margin: 0px 16px;
}
.suggested-items-full {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.breadcrumb-full {
  margin: 12px 0;
  cursor: default;
}
.breadcrumb-item {
  font-weight: 400;
  font-size: 12px;
  color: #000000;
}
.breadcrumb-item.link:hover {
  color: var(--primary-button-color);
}
.breadcrumb-full .breadcrumb-item:last-child {
  color: #999;
}
.breadcrumb-separator {
  font-weight: 400;
  font-size: 12px;
  color: #909399;
  margin: 0 8px;
}
.floating-button {
  border-radius: 8px;
  padding: 10px 16px;
  box-sizing: border-box;
  background: rgba(41, 41, 41, 1);
  position: fixed;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.85;
  cursor: pointer;
  display: none;
}
.filter-rate {
  width: 2px;
  height: 2px;
  background: #fff;
  margin: 0px 8px;
  cursor: default;
}
.filter-text {
  display: inline-flex;
  /* display: flex; */
  cursor: pointer;
  font-size: 14px;
  align-items: center;
}
.triangle-up {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 5px solid #fff;
  display: inline-block;
  margin-left: 4px;
}
.game-empty-search {
  height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.game-empty-search-text {
  font-weight: 400;
  font-size: 16px;
  color: #76787b;
  margin-top: 8px;
  cursor: default;
}
.select-button {
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #e5e8ec;
  padding: 6px 12px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
}
.select-button:hover {
  color: var(--primary-button-color);
  border-color: var(--primary-button-color);
}
.select-button.active {
  color: var(--primary-button-color);
  border-color: var(--primary-button-color);
}
.floating-show {
  display: block;
}
/* .total-games-count{
  color: var(--primary-button-color);
  font-size: 14px;
}
.total-games-total-text{
  font-size: 14px;
}
.total-games-total-unit{
  font-size: 14px;
} */