.bottom-info {
  margin: 32px 0 65px 0;
  height: 72px;
  background: #151820;
  display: flex;
}

.bottom-info-left {
  width: 200px;
  box-sizing: border-box;
  border-right: 1px solid #272d3b;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  color: #9ba6c4;
}

.bottom-info-list {
  display: flex;
  flex: 1;
}

.bottom-info-list li {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 50px;
  gap: 15px;
}

.bottom-info-list li:not(:last-child) {
  width: 260px;
}

.bottom-info-list li:last-child {
  flex: 1;
}

.bottom-info-list li:hover {
  background: #242942;
}

.bottom-info-list li img {
  width: 30px;
  height: 30px;
}

.bottom-info-list li div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  white-space: nowrap;
}

.bottom-info-list li div span:nth-child(1) {
  font-weight: 400;
  font-size: 14px;
  color: #9ba6c4;
}

.bottom-info-list li div span:nth-child(2) {
  color: #ffffff;
}

/* .bottom-info-list li div span:not(:first-child) {
    font-weight: 600;
    font-size: 14px;
    color: #c6cdde;
  } */


.bottom-info .swiper-box {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  gap: 16px;
}

.bottom-info .swiper-box .swiper-container {
  width: 236px !important;
}

.bottom-info .swiper-wrapper {
  display: flex;
  flex-direction: row !important;
  align-items: center;
}

.bottom-info .swiper-slide {
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  width: 236px !important;
  padding-left: 5px;
  box-sizing: border-box;
}

.bottom-info .prev {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  /* 左侧透明边框 */
  border-right: 4px solid transparent;
  /* 右侧透明边框 */
  border-bottom: 8px solid #8993ae;
  /* 底部实色边框 */
  transform: rotate(-90deg);
  /* 旋转180度以倒置三角形 */
  margin-top: 2px;
  cursor: pointer;
}

.bottom-info .next {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid #8993ae;
  transform: rotate(90deg);
  margin-top: 2px;
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  .bottom-info {
    display: flex;
    flex-direction: column;
    height: fit-content;
    padding: 0.15rem 0.4rem;
  }

  .bottom-info-left {
    width: 100%;
    padding: 0.28rem 0;
    border-bottom: 1px solid #272d3b;
    border-right: none;
    justify-content: flex-start;
    font-size: 0.24rem;
  }

  .bottom-info-list {
    display: flex;
    flex-direction: column;
    margin-top: 0.2rem;
  }

  .bottom-info-list li {
    padding-left: 0.14rem;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0.04rem;
    padding-bottom: 0.12rem;
    margin-bottom: 0.1rem;
  }

  .bottom-info-list li img {
    width: 0.44rem;
    height: 0.44rem;
  }

  .bottom-info-list li div span {
    font-size: 0.24rem;
  }
}