html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.cover_lp{
  width: 100%;
  height: 100%;
  background: #000;
}
.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: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  top: 0;
  color: #fff;
}

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

.playlet_box2 {
  padding: 0;
  align-items: flex-start;
}

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

.playlet_info2 {
  display: block;
  width: 100%;
  max-height: 100%;
  padding: 0;
  /* flex-shrink: 0; */
}

.app_info {
  width: calc(100% - 30px);
  background: url('./icon/icon-bg.png') no-repeat center center;
  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: 40px;
  height: 40px;
  margin-right: 12px;
}

.app_name {
  font-family: Arial;
  font-weight: bold;
  font-size: 20px;
  line-height: 18px;
  color: #FFFFFF;
  text-align: left;
  font-style: normal;
  display: flex;
  align-items: center;
}

.playlet_img {
  max-width: 60%;
  height: auto;
  max-height: 40vh;
  /* aspect-ratio: 10/13; */
  object-fit: contain;
  /* background: #D8D8D8; */
  border-radius: 8px;
  background-size: cover;
  /* margin-top: 83px; */
}

.playlet_img2{
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: url('./icon/no_img2.png') no-repeat center center;
  background-size: cover;
  object-fit: cover;
}
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0) 100%);
  pointer-events: none;
}
.img_play{
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 精确居中 */
  z-index: 3; /* 确保在上层 */
}
.play_cover{
  display: flex;
  justify-content: center;
}
.playlet_title {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  margin-top: 20px;
  font-weight: bold;
  font-family: Arial, Arial;
  word-break: break-word;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;   
  flex-shrink: 0;
}

.playlet_title2{
  padding: 0 15px;
  z-index: 9;
  margin-top: -30px;
  position: relative;
}

.playlet_introduce {
  position: relative;
  font-family: ArialMT;
  font-size: 14px;
  font-weight: 400;
  color: #B6B6B6;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  margin-top: 12px;
  flex-shrink: 0;
  overflow: hidden;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.playlet_introduce2 {
  padding: 0 15px;
}

.open_button-lp{
  max-width: 100%;
  z-index: 4;
  margin: 20px 15px 0 15px;
}

.img-hand{
  width: 46px;
  position: absolute;
  bottom: -5px;
  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: 100%;
  height: 48px;
  background: linear-gradient( 270deg, #FFA72E 0%, #FCDB00 100%);
  border-radius: 24px; 
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  color: #141414;
  line-height: 18px;
  position: relative;
  font-family: Arial, Arial;
}

.top_open {
  width: auto;
  min-width: 76px;
  height: 30px;
  background: linear-gradient(270deg, #FCDB00 0%, #FFC800 100%);
  border-radius: 50px;
  font-size: 16px;
  color: #141414;
  line-height:24px;
  font-weight: bold;
  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;
}