.scene{
    width: 1440px;
    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: 342px;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 8px 20px 0 #0000001a; */
    margin-bottom: 24px;
    cursor: pointer;
    position: relative;
  }
  
  .scene .scene-item:hover{
    box-shadow: 0 8px 20px 0 #0000001a;
  }
  
  .scene .scene-item img{
    width: 100%;
    aspect-ratio: 342/257;
  }
  
  .scene-item-font{
    color: #1d2129;
    font-family: "OPPOSans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    padding: 16px;
  }
  
  .scene-item-p{
    padding: 0 16px 16px;
  
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; */
    align-self: stretch;
    overflow: hidden;
    color: #4e5969;
    text-overflow: ellipsis;
    font-family: "OPPOSans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .scene-item-popup{
    display: flex;
    position: absolute;
    z-index: 999;
    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;
    }
  }
  