html,
body {
  height: 100%;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;

  /* WebKit 浏览器 */
  ::-webkit-scrollbar {
    width: 0; /* 设置滚动条宽度 */
  }

  ::-webkit-scrollbar-track {
    opacity: 0;
  }

  ::-webkit-scrollbar-thumb {
    opacity: 0;
  }
}
body {
  background-color: #000000;
  margin: 0;
  font-family: Helvetica, sans-serif;
  overflow: hidden;
}

a {
  color: #ffffff;
}

#info {
  position: absolute;
  width: 100%;
  color: #ffffff;
  padding: 5px;
  font-family: Monospace;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  z-index: 1;
}

#menu {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.bss {
  height: 100vh;
  width: 100%;
}
.element {
  width: 120px;
  height: 160px;
  box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.5);
  border: 1px solid rgba(127, 255, 255, 0.25);
  text-align: center;
  cursor: default;
}

.element:hover {
  box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.75);
  border: 1px solid rgba(127, 255, 255, 0.75);
}

.element .number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 12px;
  color: rgba(127, 255, 255, 0.75);
}

.element .id {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 12px;
  color: rgba(127, 255, 255, 0.75);
}

.element .symbolBox {
  position: absolute;
  top: 24px;
  left: 15px;
  right: 0px;
  font-size: 60px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.95);
  display: block;
  width: 90px;
  height: 110px;
  overflow: hidden;
}
.element .symbolBox img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
}

.element .details {
  position: absolute;
  bottom: 6px;
  left: 0px;
  right: 0px;
  font-size: 12px;
  color: rgba(127, 255, 255, 0.75);
}

button {
  color: rgba(127, 255, 255, 0.75);
  background: transparent;
  outline: 1px solid rgba(127, 255, 255, 0.75);
  border: 0px;
  padding: 5px 10px;
  cursor: pointer;
}
button img {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  vertical-align: bottom;
}
button:hover {
  background-color: rgba(0, 255, 255, 0.5);
}
button:active {
  color: #000000;
  background-color: rgba(0, 255, 255, 0.75);
}
.changeImgBoxs {
  background-color: rgba(0, 255, 255, 0.75);
  width: 440px;
  height: 650px;
  position: relative;
  overflow: hidden;
}
.changeImgBoxs .details {
  position: absolute;
  bottom: 26px;
  left: 0px;
  right: 0px;
  font-size: 36px;
  color: rgba(127, 255, 255, 0.75);
  text-align: center;
}
.symbolBox2 {
  width: 400px;
  margin-left: 20px;
  margin-top: 20px;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.symbol2 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
}

.priceLists {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.closeBtn {
  position: absolute;
  right: 30px;
  top: 20px;
  width: 40px;
  height: 40px;
  font-size: 38px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid rgba(127, 255, 255, 0.75);
  color: rgba(127, 255, 255, 0.75);
  cursor: pointer;
}

.listBoxs {
  width: 80%;
  height: 80%;
  border-radius: 20px;
  border: 2px solid rgba(127, 255, 255, 0.75);
  box-shadow: 0 0 20px rgba(127, 255, 255, 0.75);
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.listBoxs .tit {
  height: 80px;
  width: 100%;
  font-size: 38px;
  text-align: center;
  line-height: 80px;
  color: rgba(127, 255, 255, 0.75);
}
.listBoxs .listBox {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 20px;
  padding: 24px 20px;
  margin-bottom: 100px;
  overflow: auto;
}
.listBox label {
  font-size: 24px;
  color: rgba(127, 255, 255, 0.75);
  display: block;
  width: 100%;
  text-align: right;
  padding-right: 20px;
  line-height: 80px;
}
.listBox dl {
  width: 100%;
  padding: 10px;
  border: 2px solid rgba(127, 255, 255, 0.75);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(127, 255, 255, 0.75);
  background: rgba(127, 255, 255, 0.25);
}
.listBox dl dt {
  width: 100%;
  height: 150px;
  position: relative;
  overflow: hidden;
}
.listBox dl dt img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listBox dl dd {
  text-align: center;
  font-size: 15px;
  margin-top: 8px;
  color: rgba(127, 255, 255, 0.75);
}
.listBoxs .clear {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 5%;
  width: 100%;
  height: 100px;
}
.listBoxs .clear2 {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 50px;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  color: rgba(127, 255, 255, 0.75);
  border-radius: 5px;
  border: 2px solid rgba(127, 255, 255, 0.75);
  box-shadow: 0 0 10px rgba(127, 255, 255, 0.75);
  background: rgba(127, 255, 255, 0.25);
}
.listBoxs .clear2:not(:first-child) {
  margin-left: 30px;
}
.spic {
  position: absolute;
  right: 20px;
  top: 70px;
  width: 400px;
  height: 80%;
}
/*特等奖*/
.spic p {
  color: rgba(127, 255, 255, 0.75);
  font-size: 25px;
  line-height: 3;
}
.spic dl {
  width: 240px;
  height: 320px;
  padding: 20px;
  border: 2px solid rgba(127, 255, 255, 0.75);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(127, 255, 255, 0.75);
  background: rgba(127, 255, 255, 0.25);
  margin-right: 20px;
}
.spic dl dt {
  width: 100%;
  height: 83%;
  position: relative;
  overflow: hidden;
}
.spic dl dt img {
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.spic dl dd {
  text-align: center;
  font-size: 32px;
  line-height: 70px;
  color: rgba(127, 255, 255, 0.75);
}

/*礼包*/
.imgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 400px;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 100px;
}
.imgBox p {
  height: 100px;
  line-height: 140px;
  color: rgba(127, 255, 255, 0.75);
  font-size: 36px;
  text-align: center;
}
.imgBox img {
  width: 300px;
  height: 300px;
}

.listAllItemBoxWrap {
  display: flex;
  margin: 0 5%;
  height: 100%;
}

.listAllItemBox {
  flex: 1;
  height: 75%;
  border-radius: 20px;
  border: 2px solid rgba(127, 255, 255, 0.75);
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: rgba(127, 255, 255, 0.75);
}

.listAllItemBox:not(:first-child) {
  margin-left: 5%;
}

.listAllItemBoxHeader {
  display: flex;
  align-items: center;
  padding: 4%;
  border-bottom: 1px solid rgba(127, 255, 255, 0.75);
}

.listAllItemBoxHeaderTitle {
  font-size: 24px;
  font-weight: bold;
}

.listALlItemBoxHeaderSearch input {
  height: 32px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(127, 255, 255, 0.75);
  color: rgba(127, 255, 255, 0.75);
  caret-color: rgba(127, 255, 255, 0.75); /* 设置光标颜色 */
  outline: none;
}

.listALlItemBoxHeaderSearch input::placeholder {
  color: rgba(127, 255, 255, 0.75); /* 设置占位符文本颜色 */
}

.listALlItemBoxHeaderSearch input:focus {
  border-bottom-color: rgba(127, 255, 255, 0.75); /* 设置选中时的下划线边框颜色 */
}

.listAllItemBoxContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 10px;
  padding: 24px 12px;
  overflow: auto;
}

.listAllItemBoxContainerCard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  background-color: rgba(127, 255, 255, 0.25);
  cursor: pointer;
}

.listAllItemBoxContainerCardIcon {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
}

.listAllItemBoxContainerCardImg {
  width: 100%;
  height: 88px;
  overflow: hidden;
}

.listAllItemBoxContainerCardImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listAllItemBoxContainerCardName {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}
