     .NyBigBox {
         background: #EFF2FB;
     }


     /* 产品详情 */
     .cpjj {
         position: relative;
         z-index: 2;
         width: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
         grid-gap: 150px;
     }

     .CpImg {
         width: 520px;
         position: relative;
     }

     .CpImg1 {
         width: 100%;
         margin: 0;
     }

     .CpImg2 {
         width: 100%;
         height: auto;
         margin-top: 10px;
     }

     .CpImg img {
         width: 100%;
         height: 100%;
         object-fit: contain;
         background: #fff;
     }

     .CpText {
         width: 520px;
         display: flex;
         flex-direction: column;
     }

     .CpText h1 {
         color: #0A0A0A;
         font-size: 42px;
         line-height: 1.25;
     }

     .CpText .desc {
         margin-top: 60px;
         margin-bottom: 90px;
         display: flex;
         flex-direction: column;
         grid-gap: 5px;
     }

     .CpText .desc li {
         color: #575757;
         font-size: 16px;
         line-height: 1.5;
         display: list-item;
         list-style: disc;
     }

     .CpText .More {
         display: flex;
         grid-gap: 45px;
     }

     .CpText .More a {
         border-radius: 5px;
         border: 1px solid #000;
         width: 180px;
         height: 50px;
         display: flex;
         align-items: center;
         justify-content: center;
         grid-gap: 10px;
         color: #000;
         font-size: 16px;
     }

     .CpText .More a:first-child {
         background: var(--color);
         border: 1px solid var(--color);
         color: #fff;
     }


     @media (max-width:1440px) {
         .cpjj {
             grid-gap: 60px;
         }
     }

     @media (max-width:1200px) {
         .cpjj {
             grid-gap: 0;
         }

         .CpImg {
             width: 50%;
             position: relative;
         }

         .CpText {
             padding-left: 30px;
             width: 50%;
         }

         .CpText h1 {
             font-size: 28px;
         }

         .CpText .desc {
             margin-top: 30px;
             margin-bottom: 30px;
         }

         .CpText .More {
             display: flex;
             grid-gap: 15px;
         }

         .CpText .More {
             display: flex;
             grid-gap: 15px;
         }
     }

     @media (max-width:720px) {
         .cpjj {
             flex-wrap: wrap;
             grid-gap: 30px;
         }

         .CpImg {
             width: 100%;
             position: relative;
         }

         .CpText {
             padding-left: 0px;
             width: 100%;
         }

         .CpText h1 {
             font-size: 24px;
         }
     }



     /* 详情 */
     .NyCpXq {
         margin: 120px 0;
         width: 100%;
         display: flex;
         flex-wrap: wrap;
         grid-gap: 60px;
     }

     .CpXqList {
         width: 100%;
         position: relative;
         display: flex;
         justify-content: space-around;
         align-items: center;
         background: #fff;
     }

     .CpXqList h1 {
         color: #000;
         font-size: 24px;
         line-height: 80px;
         border-bottom: 4px solid #fff;
     }

     .CpXqList h1.cur {
         border-bottom: 4px solid var(--color);
     }

     .contentBox {
         width: 100%;
     }

     .content {
         background: #fff;
         padding: 30px;
         width: 100%;
         min-height: 500px;
         display: none;
     }

     .content.cur {
         display: block;
     }



     @media (max-width: 1200px) {
         .NyCpXq {
             margin: 90px 0;
             grid-gap: 30px;
         }

         .CpXqList h1 {
             font-size: 20px;
         }
     }

     @media (max-width: 720px) {
         .NyCpXq {
             margin: 60px 0;
         }

         .CpXqList h1 {
             font-size: 18px;
         }

         .content {
             padding: 15px;
         }
     }

     @media (max-width: 400px) {
         .CpXqList h1 {
             font-size: 16px;
         }

         .content {
             padding: 15px;
         }
     }
