.choice-banner {
  height: 250px;
  background-image: url(../images/choiceness/banner.jpg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: 100% 100%;
}
.choice-banner .choice-tabs {
  width: 800px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  background-image: url(../images/common/title-bg.png);
  background-size: 100% 100%;
  margin-top: 65px;
  scale: 0.8;
  padding: 0 120px;
  font-size: 28px;
  font-family: KaiTi;
  font-weight: 400;
  color: #583a1c;
  align-items: center;
}
.choice-banner .choice-tabs span {
  opacity: 0.8;
  position: relative;
  cursor: pointer;
}
.choice-banner .choice-tabs .active {
  opacity: 1;
}
.choice-banner .choice-tabs .active::before {
  content: "";
  width: 24px;
  height: 8px;
  position: absolute;
  left: -35px;
  top: 50%;
  background-image: url(../images/choiceness/tab.png);
  background-size: 100% 100%;
}
.choice-banner .choice-tabs .active::after {
  content: "";
  width: 24px;
  height: 8px;
  position: absolute;
  right: -35px;
  top: 50%;
  background-image: url(../images/choiceness/tab.png);
  background-size: 100% 100%;
}
.relics-list {
  display: flex;
  flex-wrap: wrap;
}
.relics-list .item {
  width: 390px;
  height: 400px;
  background-image: url(../images/choiceness/relic-bg.jpg);
  background-size: 100% 100%;
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
}
.relics-list .item img {
  width: 400px;
  height: 400px;
  object-fit: cover;
}
.relics-list .item .content {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: none;
}
.relics-list .item:not(:nth-child(3n)) {
  margin-right: 30px;
}
.relics-list .item:hover .content {
  display: flex;
}
