     .NyBigBox {
         background: #FAFDFF;
     }

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

     .Swiper1 {
         width: 35%;
         margin: 0;
         border: 1px solid #ccc;
     }

     .Slide1 {
         width: 100%;
         height: auto;
         background: #fff0;
     }

     .Slide1 img {
         width: 100%;
         height: 100%;
         object-fit: contain;
     }

     .ProductText {
         width: calc(65% - 30px);
         display: flex;
         flex-direction: column;
         grid-gap: 30px;
     }

     .ProductText h1 {
         font-family: 'Poppins';
         font-weight: 600;
         font-size: 40px;
         color: #000000;
         padding-bottom: 10px;
         border-bottom: 1px solid #88888880;
     }

     .ProductText .More {
         width: 210px;
         height: 60px;
         border-radius: 50px;
         border: 1px solid #878D8F;
         display: flex;
         align-items: center;
         justify-content: center;
         grid-gap: 15px;
         font-family: 'Poppins';
         font-weight: 600;
         font-size: 18px;
         color: #333333;
         transition: 0.5s;
     }

     .ProductText .More:hover {
         border: 1px solid var(--color);
         background: var(--color);
         color: #fff;
     }

     .ProductText .More p {
         display: flex;
         align-items: center;
         justify-content: center;
         width: 24px;
         height: 24px;
         border-radius: 50%;
         background: var(--color);
         transition: 0.5s;
     }

     .ProductText .More:hover p {
         background: #fff;
     }

     .ProductText .More p img {
         width: 8px;
         filter: brightness(0) invert(1);
         transition: 0.5s;
     }

     .ProductText .More:hover p img {
         filter: brightness(1) invert(0);
     }

     @media (max-width: 1600px) {}

     @media (max-width:1440px) {}

     @media (max-width:1200px) {
         .ProductText .More {
             width: 180px;
             height: 48px;
             font-size: 16px;
         }

         .ProductText h1 {
             font-size: 34px;
         }
     }

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

         .Swiper1 {
             width: 100%;
         }

         .ProductText {
             width: 100%;
         }

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



     /* 详情 */
     .NyCpXq {
         margin-top: 75px;
     }

     .NyCpXq .title {
         width: 100%;
         border-bottom: 1px solid #88888880;
     }

     .NyCpXq .title h1 {
         display: inline-block;
         font-family: 'Poppins';
         font-weight: 600;
         font-size: 30px;
         line-height: 1.5;
         color: #000000;
         padding-bottom: 5px;
         border-bottom: 10px solid var(--color);
         margin-bottom: -5px;
     }

     .NyCpXq .content {
         margin-top: 30px;
         margin-bottom: 60px;
         width: 100%;
         background: #fff;
         padding: 45px;
     }

     @media (max-width: 1200px) {
         .NyCpXq .title h1 {
             font-size: 24px;
         }
     }

     @media (max-width: 800px) {
         .NyCpXq .title h1 {
             font-size: 18px;
         }

         .NyCpXq .content {
             padding: 15px;
         }
     }
