 .product-grid {
   margin-top: 24px;
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 40px 14px;
 }

 .product-item {
   width: 292px;
   height: 208px;
   overflow: hidden;
   cursor: pointer;
   transition: all 0.8s ease;
   opacity: 0;
   -webkit-transform: translate3d(0, 30px, 0);
   transform: translate3d(0, 30px, 0);
 }

 .product-item:hover .product-img {
   transform: scale(1.3);
 }

 .product-item:hover .product-label {
   color: #3C7BFF;
 }

 .product-item .image-container {
   width: 292px;
   height: 168px;
   overflow: hidden;
   border-radius: 8px;
   border: 1px solid #EBEBEB;
   box-sizing: border-box;
 }

 .image-container .image-background {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   transition: transform 0.8s ease;
 }

 .image-container .image-background::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   backdrop-filter: blur(10px);
   /* 对背景图做模糊 */
   -webkit-backdrop-filter: blur(10px);
   z-index: 1;
   filter: brightness(1.2);
 }

 .product-img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   z-index: 2;
   transition: all 0.8s ease;
 }

 .play-btn {
   position: absolute;
   width: 68px;
   height: 68px;
   z-index: 3;
 }

 .product-label {
   margin: 8px 4px 0;
   font-family: AlibabaPuHuiTi;
   font-size: 20px;
   font-weight: normal;
   line-height: 28px;
   color: #292929;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   transition: color 0.8s ease;
 }

 .empty-container {
   background-image: url('/static/image/entInfo/product_no_content-8768ee5a221773d6464596aef983dd0a.png');
 }