   /* 列表 */
   .NyProList {
       padding: 20px 40px;
       width: 100%;
       margin-bottom: 30px;
       display: grid;
       align-items: start;
       grid-template-columns: repeat(3, 1fr);
       grid-gap: 25px;
       min-height: 300px;
   }



   .NyProList .productItem {
       width: 100%;
       background: #fff;
       border: 1px solid #ecf1f2;
       transition: 0.5s;
   }

   .NyProList .productItem:hover {
       background: var(--color);
   }

   .productItem .img {
       position: relative;
       width: 100%;
       background: #fff;
       display: flex;
       justify-content: center;
   }

   .productItem .img .cp {
       position: relative;
       z-index: 1;
       width: 100%;
   }

   .productItem .text {
       text-align: center;
       height: 45px;
       border-bottom: 1px solid #ecf1f2;
       background: #fff;
       margin-bottom: 4px;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .productItem .text h1 {
       line-height: 1.25;
       font-size: 14px;
       color: #585858;
       overflow: hidden;
       display: -webkit-box;
       -webkit-box-orient: vertical;
       -webkit-line-clamp: 2;
   }

   @media screen and (max-width: 900px) {
       .NyProList {
           padding: 30px 15px;
       }
   }

   @media (max-width: 720px) {
       .NyProList {
           grid-template-columns: repeat(2, 1fr);
           grid-gap: 15px;
       }


   }

   @media (max-width: 380px) {
       .NyProList {
           grid-template-columns: repeat(1, 1fr);
           grid-gap: 15px;
       }
   }