.content {
  /* background: url(../image/bg_23.gif) no-repeat; */
  /* background-size: 100% auto; */
  box-sizing: border-box;
  padding: 14px;
  padding-bottom: 50px;
}

.title_nav {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.title_nav img {
  width: auto;
  height: 20px;
  margin-right: 5px;
}

.card_zhu {
  display: grid;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
  padding-bottom: 20px;
}

.card_zhu_item {
  position: relative;
}

.card_zhu_item .one {
  position: absolute;
  left: 49%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  z-index: 2;
}

.card_zhu_item .two {
  position: absolute;
  left: 49%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  z-index: 3;
}

.card_zhu_item .three {
  position: absolute;
  left: 49%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  z-index: 3;
}

.card_zhu_item .nums {
  position: absolute;
  right: 3px;
  top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 13px;
}

.btns {
  position: relative;
  overflow: hidden;
  width: 214px;
  height: 53px;
  background: #F7D548;
  box-shadow: 0px 1px 4px 0px rgba(18, 30, 67, 0.5), inset 0px 0px 4px 4px rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: inset 0px 0px 10px 1px #fff;
  cursor: pointer;
}

.btns:before {
  content: "";
  position: absolute;
  left: -200px;
  width: 200px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  transform: rotate(-45deg);
  animation: run 4s linear;
  animation-iteration-count: infinite;
  transition: .5s all;
}

@keyframes run {
  0% {
    left: -200px;
    top: 0;
  }

  25% {
    left: -200px;
    top: 0;
  }

  50% {
    left: -200px;
    top: 0;
  }

  75% {
    left: -200px;
    top: 0;
  }

  100% {
    left: 320px;
    top: 0;
  }
}

.card_hide {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 8;
}

.card_ok .two {
  animation: oneTurns 3s linear infinite forwards !important;
}

.card_ok .one {
  animation: oneTurns 3s linear infinite forwards !important;
}

@keyframes oneTurns {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.box_card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.box_card .middle {
  padding: 0 30px;
}

.desc {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.card_item_w {
  width: 80px;
}

.card_item_w .card_zhu_item .nums {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  top: 5px;
  right: 8px;
  font-size: 13px;
}

.meng {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  max-width: 450px;
  min-height: 100vh;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
}

/* 洗牌 */
.shuffle_box_w {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
}

.shuffle_box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#box {
  opacity: 0;
}

.showDivAni {
  animation: showDivAni 2s forwards;
}

.pc .title_color {
  font-size: 28px !important;
  padding-top: 30px;
  padding-bottom: 20px;
}

.pc .title_index img {
  height: 20px !important;
}

.pc .title_index .left,
.pc .title_index .right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc .title_index .title_index_cont {
  padding: 0 10px;
}

@keyframes showDivAni {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (min-width:450px) and (max-width:1200px) {
  .content {
    padding-top: 0px;
  }

  .card_zhu {
    align-items: center;
    justify-content: center;
    width: 88%;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  #card_fu {
    width: 66%;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr !important;
  }

  /* .shuffle_box {
    width: 50%;
    height: 100%;
    margin: 0 auto;
  } */
}


@media screen and (min-width: 1200px) {
  .content {
    padding-top: 0px;
  }

  .card_zhu {
    align-items: center;
    justify-content: center;
    width: 88%;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  #card_fu {
    width: 33%;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr !important;
  }

  /* .shuffle_box {
    width: 50%;
    height: 100%;
    margin: 0 auto;
  } */
}

@media screen and (max-width: 450px) {
  .phone .title_color {
    padding-top: 0;
  }

}