.scene{
  width: 1200px;
  margin: 0 auto;
}

.scene .scene-item-list{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.scene .scene-item{
  width: 384px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px 0 #0000001a;
  margin-bottom: 24px;
  cursor: pointer;
  position: relative;
}

.scene .scene-item img{
  width: 100%;
  aspect-ratio: 9/5;
}

.scene-item-font{
  color: #1d2129;
  font-family: "OPPOSans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  padding: 16px;
}

.scene-item-popup{
  display: flex;
  position: absolute;
  z-index: 9;
  bottom: -125px;;
width: 384px;
padding: 16px;
flex-direction: column;
align-items: flex-start;
gap: 8px;
color: #fff;
/* display: none; */
transition: bottom 0.3s ease-in;
background: linear-gradient(90deg, #17B29F 0%, #39D98C 100%);
}

/* .scene-item-popup{
  display: flex;
  width: 384px;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  display: none;
  background: linear-gradient(90deg, #17B29F 0%, #39D98C 100%);
} */

.scene-item-popup-title{
  align-self: stretch;
  color: #ffffff;
  font-family: "OPPOSans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  width: calc(100% - 32px);
}

.scene-item-popup-shorttitle{
  align-self: stretch;
  color: #ffffff;
  font-family: "OPPOSans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  width: calc(100% - 32px);
}

.scene .scene-item:hover>.scene-item-popup{
  /* display: block; */
  bottom: 0;
  
}


 /* 768以下 */
 @media (max-width: 768px) {
  .scene {
      width: calc(100% - 24px);
      margin: 0 auto;
  }
}
