 .mySwiper {
     width: 100%;
     height: 640px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 .mySwiper .swiper-slide {
     width: 100%;
     height: 100%;
 }

 .mySwiper .swiper-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 /* 底部导航 */
 .nav-tabs {
     width: 60%;
     margin: 0 auto;
     display: flex;
     justify-content: center;
     gap: 60px;
     border-radius: 20px;
     overflow: hidden;
     background-color: #F7F7F7;
     margin-top: 20px;
 }

 .nav-tabs div {
     width: 25%;
     height: 100px;
     border-radius: 20px;
     font-size: 24px;
     color: #333;
     cursor: pointer;
     text-align: center;
     line-height: 100px;
     position: relative;
     transition: all 0.3s;
 }

 .nav-tabs div.active {
     color: #fff;
     font-weight: 600;
     background-color: #3DB0AD;
 }

 .sentent {
     width: 72.9167vw;
     margin: 0 auto;
     margin-top: 50px;
     height: auto;
     padding: 40px 0;
 }

 .sentent .title {
     color: #000;
     margin-bottom: 50px;
     font-weight: bold;
     font-size: 30px;
 }

 .sentent .main {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .sentent .main .pic {
     width: 40%;
     height: 200px;
     border-radius: 20px;
     overflow: hidden;
 }

 .sentent .main .pic img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .sentent .main .listbox {
     flex: 1;
     margin-left: 40px;
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
 }

 .sentent .main .listbox .list {
     width: 48%;
     height: 80px;
     border-radius: 20px;
     color: #000;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #F7F7F7;
     font-size: 18px;
     padding: 7px;
     margin-bottom: 20px;
 }

 .sentent .main .listbox .list:nth-child(3) {
     margin-bottom: 0;
 }

 .sentent .main .listbox .list:nth-child(4) {
     margin-bottom: 0;
 }

 .mainproduct {
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .mainproduct .pic {
     width: 300px;
     height: 300px;
     border-radius: 20px;
     overflow: hidden;
 }

 .mainproduct .pic img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .mainproduct .protext {
     width: 50%;
     margin: 0 10px;
 }

 .mainproduct .protext .protit {
     color: #000;
     font-size: 24px;
     font-weight: bold;
 }

 .mainproduct .protext p {
     font-size: 16px;
     color: #000;
     margin-top: 10px;
     display: -webkit-box;
     /* 弹性伸缩盒子 */
     -webkit-line-clamp: 2;
     /* 限制显示2行 */
     -webkit-box-orient: vertical;
     /* 垂直排列 */
     overflow: hidden;
 }

 .promain {
     width: 100%;
     height: auto;
     background-color: #F7F5F7;
 }

 .promain .title {
     color: #000;
 }

 .mainproduct .more {
     display: block;
     height: 48px;
     background: #3DB0AD;
     border-radius: 24px;
     text-align: center;
     font-size: 16px;
     padding: 0 3.0208vw;
     white-space: nowrap;
     color: #fff;
     line-height: 48px;
     box-sizing: border-box;
 }

 .prolist {
     display: flex;
     flex-wrap: wrap;
     /* 一行3个 */
     gap: 30px;
     /* 元素之间的间距，可调 */
 }

 .prolist .list {
     width: auto;
 }

 .prolist .list .pic {
     width: 300px;
     height: 300px;
     overflow: hidden;
 }

 .prolist .list p {
     color: #000;
     font-size: 16px;
     margin-top: 10px;
     text-align: center;
 }

 .prolist .pic img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all .4s;
 }

 .prolist .list:hover .pic img {
     transform: scale(1.1);
 }

 .prolist .list:hover p {
     text-decoration: underline;
     color: #3DB0AD;
 }

 .productdetails {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     width: 1000px;
     margin: 0 auto;
     height: auto;
     padding: 60px 0;
 }

 .productdetails .left {
     width: 40%;
     margin-bottom: 30px;
 }

 .productdetails .left .name {
     font-size: 20px;
     font-weight: bold;
     text-align: center;
     color: #000;
     margin-bottom: 20px;
 }

 .productdetails .left .swiper {
     position: relative;
     width: 100%;
     height: 400px;
     overflow: hidden;
     border-radius: 20px;
 }

 .productdetails .left .swiper-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .productdetails .right {
     flex: 1;
     /* max-width: 45%; */
 }

 .productdetails .right .textp {
     font-size: 15px;
     color: #787E80;
     padding: 10px;
     border-top: 1px solid #eee;
     border-bottom: 1px solid #eee;
     margin-bottom: 20px;
 }

 .productdetails .buy {
     width: fit-content;
     height: 48px;
     background: #3DB0AD;
     border-radius: 24px;
     padding: 0 3.0208vw;
     font-size: 14px;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     box-sizing: border-box;
     border: 4px solid #3DB0AD;
     margin: 0 auto;
     margin-top: 40px;
 }

 .productdetails .buy:hover {
     background-color: #FFFFFF;
     color: #3DB0AD;
     font-weight: bold;
 }

 .productdetails .swiper-button-next:after {
     font-size: 26px;
     color: #3DB0AD;
 }

 .productdetails .swiper-button-prev:after {
     font-size: 26px;
     color: #3DB0AD;
 }

 .samllpro {
     width: 1000px;
     margin: 0 auto;
     padding-top: 20px;
     display: flex;
     align-items: center;
     justify-content: flex-end;
 }

 .samllpro .list {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin: 0 30px;
 }

 .samllpro .list p {
     margin-top: 10px;
     color: #787E80;
     font-size: 14px;
 }

 .samllpro .pic {
     width: 60px;
     height: 60px;
 }

 .samllpro .pic img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .samllpro .list:last-child {
     margin-right: 0;
 }

 @media screen and (max-width: 1200px) {
     .productdetails {
         width: 900px;
     }

     .samllpro {
         width: 900px;
     }
 }


 @media screen and (max-width: 960px) {
     .mySwiper {
         height: 200px;
     }

     .nav-tabs {
         width: 98%;
         gap: 10px;
     }

     .nav-tabs div {
         height: 40px;
         font-size: 18px;
         line-height: 40px;
     }

     .sentent {
         width: 100%;
         margin: 0 auto;
         margin-top: 30px;
         height: auto;
         padding: 30px 15px;
     }

     .sentent .title {
         color: #000;
         margin-bottom: 30px;
         font-weight: bold;
         font-size: 22px;
     }

     .sentent .main {
         display: block;
     }

     .sentent .main .pic {
         width: 100%;
         height: 150px;
         border-radius: 20px;
         overflow: hidden;
     }

     .sentent .main .pic img {
         width: 100%;
         height: 100%;
         object-fit: cover;
     }

     .sentent .main .listbox {
         margin-left: 0;
         display: flex;
         justify-content: space-between;
         flex-wrap: wrap;
         margin-top: 20px;
     }

     .sentent .main .listbox .list {
         width: 48%;
         min-height: 100px;
         border-radius: 20px;
         color: #000;
         text-align: center;
         display: flex;
         align-items: center;
         justify-content: center;
         background-color: #F7F7F7;
         font-size: 16px;
         padding: 7px;
         margin-bottom: 20px;
     }

     .sentent .main .listbox .list:nth-child(3) {
         margin-bottom: 0;
     }

     .sentent .main .listbox .list:nth-child(4) {
         margin-bottom: 0;
     }

     .mainproduct {
         display: block;
     }

     .mainproduct .pic {
         width: 100%;
         height: 280px;
         border-radius: 20px;
         overflow: hidden;
         margin-bottom: 20px;
     }

     .mainproduct .pic img {
         width: 100%;
         height: 100%;
         object-fit: cover;
     }

     .mainproduct .protext {
         width: 100%;
         margin: 0 10px;
     }

     .mainproduct .protext .protit {
         color: #fff;
         font-size: 20px;
         font-weight: bold;
     }

     .mainproduct .protext p {
         font-size: 15px;
         color: #fff;
         margin-top: 10px;
         display: -webkit-box;
         /* 弹性伸缩盒子 */
         -webkit-line-clamp: 2;
         /* 限制显示2行 */
         -webkit-box-orient: vertical;
         /* 垂直排列 */
         overflow: hidden;
     }

     .promain {
         width: 100%;
         height: auto;
         background-color: #3DB0AD;
     }

     .promain .title {
         color: #fff;
     }

     .mainproduct .more {
         display: block;
         height: 48px;
         background: #fff;
         border-radius: 24px;
         text-align: center;
         font-size: 16px;
         padding: 0 3.0208vw;
         white-space: nowrap;
         color: #3DB0AD;
         line-height: 48px;
         box-sizing: border-box;
         margin-top: 20px;
     }

     .prolist {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         /* 一行3个 */
         gap: 30px;
         /* 元素之间的间距，可调 */
     }

     .prolist .list {
         width: auto;
     }

     .prolist .list .pic {
         width: 100%;
         height: 150px;
         overflow: hidden;
     }

     .prolist .list p {
         color: #000;
         font-size: 16px;
         margin-top: 10px;
         text-align: center;
     }

     .prolist .pic img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: all .4s;
     }

     .prolist .list:hover .pic img {
         transform: scale(1.1);
     }

     .prolist .list:hover p {
         text-decoration: underline;
         color: #3DB0AD;
     }

     .productdetails {
         display: block;
         justify-content: space-between;
         width: 100%;
         margin: 0 auto;
         height: auto;
         padding: 30px 15px;
     }

     .productdetails .left {
         width: 100%;
     }

     .productdetails .left .name {
         font-size: 20px;
         font-weight: bold;
         text-align: center;
         color: #000;
         margin-bottom: 20px;
     }

     .productdetails .left .swiper {
         position: relative;
         width: 100%;
         height: 250px;
         overflow: hidden;
         border-radius: 20px;
         margin-bottom: 20px;
     }

     .productdetails .left .swiper-slide img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         display: block;
     }

     .productdetails .right {
         width: 100%;
         max-width: 100%;
     }

     .productdetails .right .textp {
         font-size: 15px;
         color: #787E80;
         padding: 10px;
         border-top: 1px solid #eee;
         border-bottom: 1px solid #eee;
         margin-bottom: 20px;
     }

     .productdetails .right .textp img {
         width: 100%;
     }

     .productdetails .buy {
         width: fit-content;
         height: 48px;
         background: #3DB0AD;
         border-radius: 24px;
         padding: 0 20px;
         font-size: 14px;
         color: #fff;
         display: flex;
         align-items: center;
         justify-content: center;
         box-sizing: border-box;
         border: 4px solid #3DB0AD;
         margin-top: 40px;
     }

     .productdetails .buy:hover {
         background-color: #FFFFFF;
         color: #3DB0AD;
         font-weight: bold;
     }

     .productdetails .swiper-button-next:after {
         font-size: 26px;
         color: #3DB0AD;
     }

     .productdetails .swiper-button-prev:after {
         font-size: 26px;
         color: #3DB0AD;
     }

     .samllpro {
         width: 100%;
         margin: 0 auto;
         padding: 0 15px;
         padding-top: 20px;
         display: flex;
         align-items: center;
         justify-content: flex-end;
     }

     .samllpro .list {
         display: flex;
         flex-direction: column;
         align-items: center;
         margin: 0 10px;
     }

     .samllpro .list p {
         margin-top: 10px;
         color: #787E80;
         font-size: 14px;
     }

     .samllpro .pic {
         width: 50px;
         height: 50px;
     }

     .samllpro .pic img {
         width: 100%;
         height: 100%;
         object-fit: cover;
     }

     .samllpro .list:last-child {
         margin-right: 0;
     }
 }