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

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

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

     .CpImg1 img {
         background: #F6F9FD;
         border-radius: 32px;
     }

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

     .CpImg2 img {
         background: #F6F9FD;
         border-radius: 10px;
     }

     .CpImg img {
         width: 100%;
         height: 100%;
         object-fit: contain;
         padding: 30px;
     }

     .CpText {
         width: calc(100% - 750px);
         display: flex;
         flex-direction: column;
         grid-gap: 30px;
     }

     .CpText h1 {
         color: #000;
         font-size: 42px;
         font-weight: 700;
         letter-spacing: 2px;
         padding-bottom: 15px;
         border-bottom: 1px solid #C7C7C7;
     }

     .CpText h2 {
         color: #696969;
         font-size: 18px;
         font-weight: 400;
         line-height: 1.5;
         letter-spacing: 1px;
     }

     .CpText h3 {
         font-weight: 400;
         font-size: 16px;
         color: #5B5B5B;
     }

     .CpText span {
         display: flex;
         grid-gap: 60px;
     }

     .CpText span a {
         width: 180px;
         height: 50px;
         border-radius: 25px;
         border: 1px solid #000;
         display: flex;
         align-items: center;
         justify-content: center;
         grid-gap: 15px;
     }

     .CpText span a:last-child {
         width: 180px;
         height: 50px;
         border-radius: 25px;
         background: var(--color);
         border: 0px solid #000;
         color: #fff;
     }



     @media (max-width:1440px) {
         .CpImg {
             width: 500px;
         }

         .CpText {
             width: calc(100% - 530px);
         }
     }

     @media (max-width:1200px) {
         .CpImg {
             width: 40%;
         }

         .CpText {
             width: calc(60% - 30px);
             grid-gap: 20px;
         }

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

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

         .CpImg {
             width: 100%;
         }

         .CpText {
             width: 100%;
             padding-top: 30px;
         }

         .CpText h2 {
             font-size: 16px;
         }

         .CpText span {
             display: flex;
             grid-gap: 30px;
         }

         .CpText span a {
             width: 100%;
         }
     }



     /* 详情 */
     .NyCpXq {}

     .CpXqList {
         margin-top: 90px;
         margin-bottom: 60px;
         width: 100%;
         height: 90px;
         background: #F6F9FD;
         display: flex;
         align-items: center;
         justify-content: space-evenly;
     }


     .CpXqList a {
         color: #000;
         font-size: 24px;
         letter-spacing: 2px;
     }

     .CpXqList a.on {
         color: var(--color);
         font-weight: bold;
     }


     .contentBox {
         width: 100%;
     }

     .content {
         width: 100%;
         min-height: 500px;
         display: none;
     }

     .content.on {
         display: block;
     }



     @media (max-width: 1200px) {
         .CpXqList {
             margin-top: 30px;
             margin-bottom: 30px;
         }

         .content {
             width: 100%;
             min-height: 300px;
         }

         .contentBox .title {
             margin-top: 60px;
             margin-bottom: 30px;
         }
     }

     @media (max-width: 720px) {
         .CpXqList a {
             color: #000;
             font-size: 18px;
             letter-spacing: 2px;
         }

         .contentBox .title {
             font-size: 24px;
             grid-gap: 15px;
         }

         .contentBox .title span {
             display: block;
             width: 45px;
             height: 4px;
         }
     }