   /* Section3 */
   .section3 {
       display: block;
       padding: 0;
       position: relative;
   }

   .Top3 {
       width: 33vw;
       height: 100%;
       padding-top: 120px;
       padding-bottom: 150px;
       display: flex;
       flex-direction: column;
       justify-content: space-between;
       position: absolute;
       z-index: 3;
       left: var(--container);
   }

   .Top3 .indexTitle * {
       color: #fff;
   }

   .Top3 .List3 {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       grid-gap: 20px;
   }

   .Top3 .List3 span {
       width: 100%;
       height: 60px;
       background: #fff;
       padding: 0 25px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       color: #000;
       font-size: 16px;
   }

   .Top3 .List3 span.on {
       background: var(--color);
       color: #fff;
   }

   .Top3 .List3 span.on img {
       filter: invert(1);
   }

   .Box3 {
       display: block;
       position: relative;
       width: 100%;
       z-index: 2;
   }

   .item3 {
       display: none;
   }

   .item3.on {
       display: block;
   }

   .text3 {
       position: absolute;
       z-index: 2;
       right: var(--container);
       bottom: 150px;
       width: 40vw;
       padding: 60px;
       background: rgba(255, 255, 255, 0.95);
   }

   .text3 h1 {
       display: flex;
       align-items: center;
       grid-gap: 15px;
       color: var(--color);
       font-size: 20px;
       font-weight: bold;
   }

   .desc3 {
       margin-top: 30px;
       color: rgba(0, 0, 0, 0.50);
       font-size: 16px;
       line-height: 1.5;
   }

   .bj3 {
       position: relative;
       z-index: 1;
       width: 100%;
       height: 45vw;
       object-fit: cover;
   }


   @media (max-width: 1660px) {
       .Top3 {
           width: 40vw;
       }
   }

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

       .text3 {
           width: 45vw;
           padding: 30px;
           bottom: 90px;
       }

       .Top3 .List3 span {
           padding: 0 15px;
           font-size: 14px;
       }
   }

   @media (max-width: 1200px) {
       .Top3 .List3 {
           grid-template-columns: repeat(2, 1fr);
       }

       .Top3 .List3 span {
           height: 50px;
       }

       .desc3 {
           font-size: 14px;
       }

       .bj3 {
           height: 600px;
       }
   }

   @media (max-width: 900px) {
       .Top3 {
           padding: 0;
           padding-top: 60px;
           width: 90vw;
           height: auto;
       }

       .Top3 .List3 {
           margin-top: 30px;
           grid-template-columns: repeat(3, 1fr);
       }

       .item3 {
           padding: 0 var(--container);
           padding-top: 300px;
           padding-bottom: 90px;
       }

       .text3 {
           width: 90vw;
           padding: 30px 20px;
           bottom: auto;
           right: auto;
           position: relative;
       }

       .bj3 {
           position: absolute;
           left: 0;
           top: 0;
           width: 100%;
           height: 100%;
       }

       .text3 h1 {
           font-size: 18px;
       }

       .text3 h1 img {
           width: 30px;
       }

       .desc3 {
           margin-top: 15px;
           font-size: 16px;
       }
   }

   @media (max-width: 600px) {
       .Top3 .List3 {
           grid-template-columns: repeat(2, 1fr);
       }

       .item3 {
           padding-top: 360px;
       }
   }

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