   .ProductBigBox .container {
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
   }

   .ProductBigBox .mbx {
       width: 100%;
   }

   .ProductBigBox .NyLeft {
       width: 200px;
   }

   .ProductBigBox .NyRight {
       width: calc(100% - 240px);
   }

   @media (max-width: 1200px) {
       .ProductBigBox .NyLeft {
           display: none;
       }

       .ProductBigBox .NyRight {
           width: 100%;
       }
   }

   .NyLeftTitle {
       background: var(--color);
       text-align: center;
       padding: 10px;

   }

   .NyLeftTitle h1 {
       color: #fff;
       font-size: 30px;
       line-height: 1.5;
       font-weight: bold;
   }

   .NyLeftTitle h2 {
       color: #fff;
       font-size: 16px;
       line-height: 1.5;
       font-style: italic;
       text-transform: uppercase;
   }

   .NyNav {
       background: #e6e6e6;
       display: flex;
       flex-wrap: wrap;
       grid-gap: 30px;
       padding: 15px 0;
   }

   .NyNav a {
       width: 100%;
       line-height: 1.5;
       font-size: 14px;
       color: var(--color);
       padding: 0 15px 0 40px;
       display: inline-block;
       overflow: hidden;
       display: -webkit-box;
       -webkit-box-orient: vertical;
       -webkit-line-clamp: 1;
   }

   .LeftContent {
       background: #e6e6e6;
       display: flex;
       flex-wrap: wrap;
       padding: 9px;
   }

   .LeftContent p {
       color: var(--color);
       line-height: 3;
       font-size: 14px;
       font-weight: bold;
   }

   .LeftContent .desc {
       font-size: 14px;
       line-height: 2;
       color: #656565;
   }

   /* 列表 */
   .NyProList {
       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;
       transition: 0.5s;
   }



   .productItem .img {
       position: relative;
       width: 100%;
   }

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

   .productItem .img:hover .cp {
       top: -15px;
   }

   .productItem .text {
       text-align: center;
       height: 45px;
       padding: 0 15px;
       background: var(--color);
       display: flex;
       align-items: center;
       justify-content: center;
   }

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

   @media screen and (max-width: 900px) {}

   @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;
       }
   }