html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.container {
  display: flex;
  flex-direction: column;
  height: 100%;
  /* overflow: hidden; */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.glass {
  width: 100%;
  /* 根据需要设置宽度 */
  height: 100%;
  /* 根据需要设置高度 */
  /* 设置背景图片 */
  /* 使用 multiply 实现毛玻璃效果 */
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: multiply, multiply;
  filter: blur(2px);
  background-size: 180%;
  background-position: top center;
}

.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));

}

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  top: 0;
}

.playlet_box {
  flex: 1; 
  height: calc(100vh - 130px); 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 60px;
  margin-bottom: 70px;
  overflow-y: auto;
  z-index: 3; 
  padding: 20px 0;
}

.playlet_info {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
  /* flex-shrink: 0; */
}


.app_info {
  width: calc(100% - 30px);
  background-image: url('./icon/icon-bg.png');
  background-size: cover; 
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  padding: 10px 15px;
  z-index: 4;
  justify-content: space-between;
  position: fixed;
}

.app_img {
  width: 144px;
  height: 40px;
}

.app_name {
  height: 24px;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
  margin-left: 6px;
}

.playlet_img {
  width: 260px;
  height: 345px;
  background: #D8D8D8;
  border-radius: 12px;
  /* margin-top: 83px; */
}

.img_play{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 精确居中 */
  z-index: 3; /* 确保在上层 */
}

.playlet_title {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 18px;
  text-align: left;
  font-style: normal;
  margin-top: 19px;
  padding: 0 15px;
  font-family: Arial, Arial;
}

.playlet_introduce {
  font-family: ArialMT;
  font-size: 14px;
  color: #B6B6B6;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  padding: 0 16px;
  margin-top: 20px;
  flex-shrink: 0;
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.open_button-lp{
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
}

.img-hand{
  position: absolute;
  bottom: 0px;
  right: 5px;;
  animation: bounce 1s linear infinite;
  transform-origin: right bottom;
}

@keyframes bounce {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-25deg); /* 逆时针旋转45度 */
  }
  100% {
    transform: rotate(0deg); /* 顺时针旋转45度回到初始位置 */
  }
}

.open_button {
  display: flex;
  justify-content: center;
  width: 342px;
  height: 48px;
  background: linear-gradient( 270deg, #FCDB00 0%, #FFBF00 100%);
  border-radius: 24px; 
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 18px;
  position: relative;
  font-family: Arial, Arial;
}

.top_open {
  width: auto;
  min-width: 60px;
  height: 30px;
  background: linear-gradient(270deg, #FCDB00 0%, #FFC800 100%);
  border-radius: 24px;
  font-size: 15px;
  color: #333333;
  line-height: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  white-space: nowrap;
  font-family: Arial, Arial;
}

.user_info {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #fff;
  z-index: 900;
}

.shadow {
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 60px 17px #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}