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

     .CpImg {
         border: 1px solid #ccc;
         width: 45%;
         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: 55%;
         padding-left: 150px;
         display: flex;
         flex-direction: column;
     }

     .CpText h1 {
         font-weight: 700;
         font-size: 42px;
         color: #363636;
     }


     .CpText .desc {
         font-size: 16px;
         line-height: 2;
         color: #6C6C6C;
         margin: 45px 0 90px;
     }

     .CpText a {
         width: 360px;
         height: 60px;
         font-size: 16px;
         line-height: 1;
         color: #FFF;
         position: relative;
         display: flex;
         align-items: center;
         justify-content: center;
     }

     .CpText a::after {
         content: "";
         position: absolute;
         z-index: -1;
         left: 0;
         top: 0;
         display: block;
         width: 100%;
         height: 100%;
         border-radius: 15px;
         background: var(--color);
         box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
         transform: skewX(-15deg);
     }

     @media (max-width:1440px) {
         .CpText {
             padding-left: 90px;
         }

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

         .CpText .desc {
             margin: 15px 0 30px;
         }
     }

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

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

         .CpText .desc {
             font-size: 14px;
         }

         .CpText a {
             width: 240px;
             height: 45px;
         }
     }

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

         .CpImg {
             width: 100%;
         }

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

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



     /* 详情 */
     .CpXqList {
         margin-top: 90px;
         margin-bottom: 60px;
         padding: 30px 0;
         border-bottom: 2px solid #D9D9D9;
         display: flex;
         justify-content: center;
         align-items: center;
         grid-gap: 240px;
     }


     .CpXqList span {
         display: block;
         width: 2px;
         height: 20px;
         background: #D9D9D9;
     }

     .CpXqList h1 {
         position: relative;
         display: flex;
         align-items: center;
         font-weight: 700;
         font-size: 20px;
         color: #000000;
     }

     .CpXqList h1 .icon {
         display: none;
         position: absolute;
         left: -70px;
         width: 50px;
     }

     .CpXqList h1:hover .icon,
     .CpXqList h1.cur .icon {
         display: block;
     }

     .contentBox {
         width: 100%;
     }

     .content {
         width: 100%;
         display: none;
     }

     .content.cur {
         display: block;
     }


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

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

         .CpXqList h1 .icon {
             width: 30px;
             left: -40px;
         }
     }

     @media (max-width: 720px) {
         .CpXqList {
             margin-top: 60px;
             margin-bottom: 30px;
             justify-content: space-between;
             grid-gap: 0;
             height: 60px;
         }

         .CpXqList span {
             display: none;
         }

         .CpXqList h1 .icon {
             display: none;
         }
     }