
body{
  margin: 0;
  padding: 0;
  position: relative;
}
html,body {
  font-size: 100px;
 }
.bg{
   background-size: cover;position: relative; height: 19.67rem; margin: 0 auto;
}
.bg_pro{
  background-size: cover;position: relative; 
  width: 10.80rem;
  height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  -ms-overflow-style: none;  /* IE和Edge */
  scrollbar-width: none;  /* Firefox */
}
.srcEl{
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 10.80rem;
  opacity: 0;
  transition: opacity 2s; /* 2秒内淡入 */
}
.srcEl.fadeIn {
  opacity: 1;
}
.container{
  height: 100%;
  position: relative;
}
.bg .poster{
  height: 19.67rem;
  width: 100%;
}
.poster img{
  height: 100%;
  width: 100%;
  object-fit: cover;
 
}
.btn{
  background: url(/wap/special/gods_monsters/image/btn.gif) top center no-repeat;
  background-size: contain;
  position: relative;
  height: 1.08rem;
  position: absolute;
  width: 3.6rem;
  height: 0.94rem;
  left: 50%;
  margin-left: -1.8rem;
  top: 17.8rem;
  /* margin: 0 auto; */
  overflow: hidden;
}
.bg_pro .poster{
  height: 100vh;
  width: 100%;
}
.bg_pro .btn{
  top: 88.5%;
}

.bg_pro .srcEl{
  width: 10.80rem;
}
.bottom{
  background: url(/wap/special/gods_monsters/image/bottom.webp) top center no-repeat;
  background-size: cover;
  width: 100%;
  height: 0.9rem;
  position: relative;
  /* top: 18rem; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 0.2rem;
  box-sizing: border-box;
  padding: 0 0.7rem;

}
.bottom a{
  text-decoration: none;
  color: #ffffff;
}
.bottom img{
  width: 2rem;
  position: relative;
  bottom: 0.2rem;
}

@media (min-width: 1000px) {
  .bottom img{
    width: 150px;
    position: relative;
    bottom: -1px;
    /* bottom: 0.2rem; */
  }
}

/* .btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, transparent, rgba(255, 244, 227, 0.4), transparent, transparent);
  transition: all 650ms;
  animation: sg_data 2s linear infinite;
} */

@keyframes sg_data {
  from {
    left: 0
  }

  to {
    left: 100%
  }
}


@keyframes ripple-animation {
  0% {
      width: 0;
      height: 0;
      margin-left: 0;
      margin-top: 0;
      opacity: 1;
  }
  100% {
      width: 240px;  /* 可以根据需要调整扩大的尺寸 */
      height: 240px;
      margin-left: -120px;  /* 确保从中心点扩展 */
      margin-top: -120px;
      opacity: 0;
  }
}

.ripple {
  position: fixed;
  border: 4px solid rgb(255, 255, 255);
  border-radius: 50%;
  pointer-events: none;
  animation: ripple-animation 1s ease-out forwards;
}