     .section6 {
         background: url(https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/213/20240409143523_pVW0IrA7.jpg) no-repeat center;
         background-size: cover;
         padding: 120px 0px;
     }

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

     .box6 .imgBox {
         width: 70%;
         display: grid;
         grid-template-columns: 1fr 1fr 1fr;
         grid-gap: 15px;
     }

     .box6 .imgBox .item {
         width: 100%;
         position: relative;
     }

     .box6 .imgBox .item::after {
         content: "";
         display: block;
         position: absolute;
         left: 0;
         bottom: 0;
         width: 0%;
         height: 4px;
         transition: 0.5s;
         background: var(--color);
     }

     .box6 .imgBox .item:hover::after {
         width: 100%;
     }

     .box6 .imgBox .item img {
         width: 100%;
     }

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

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

         .box6 .imgBox {
             width: 65%;
             grid-gap: 20px;
         }



     }

     @media (max-width: 1200px) {
         .section6 {
             padding: 75px 0px;
         }

         .box6 {
             display: flex;
             flex-direction: column-reverse;
             align-items: flex-start;
         }

         .box6 .imgBox {
             width: 100%;
         }

         .box6 .textBox {
             width: 100%;
             margin-bottom: 30px;
         }
     }

     @media (max-width: 992px) {
         .section6 {
             padding: 60px 0px;
         }
     }

     @media (max-width: 640px) {
         .section6 {
             padding: 45px 0px;
         }

         .box6 .imgBox {
             grid-template-columns: 1fr 1fr;
         }
     }