   /* Section3 */
   .section3 {
       display: block;
   }

   .section3 .indexTitle {
       position: relative;
   }

   .section3 .indexTitle h1 {
       position: relative;
       width: 55%;
   }

   .section3 .indexTitle::after {
       content: "";
       display: block;
       background: url(/assets/images/icon3.png) no-repeat right;
       position: absolute;
       right: 0;
       bottom: 0;
       width: 40%;
       height: 84px;
   }

   .Box3 {
       margin-top: 60px;
       position: relative;
       width: 100%;
       height: 600px;
       z-index: 2;
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
   }

   .img3 {
       width: 65%;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .img3 img {
       width: 75%;
       height: 75%;
       object-fit: contain;
       display: none;
   }

   .img3 img.on {
       display: block;
   }

   .item3 {
       width: 35%;
       height: 100%;
       background: rgba(252, 252, 252, 0.80);
       backdrop-filter: blur(40px);
       padding-right: 180px;
       padding-top: 120px;
       padding-bottom: 90px;
       overflow: hidden;
       display: flex;
       flex-direction: column;
       align-items: flex-end;
       justify-content: space-between;
   }

   .item3 h1 {
       color: #000;
       font-size: 20px;
       position: relative;
       display: flex;
       align-items: center;
       transition: 0.5s;
       cursor: pointer;
   }

   .item3 h1::after {
       content: "";
       display: block;
       position: absolute;
       right: calc(100% + 15px);
       height: 1px;
       width: 120px;
       background: #000;
       transition: 0.5s;
   }

   .item3 h1.on {
       font-size: 40px;
       font-family: MiSans2;
   }

   .item3 h1.on::after {
       width: 500px;
   }


   @media (max-width: 1440px) {
       .item3 {
           padding-right: 60px;
           padding-top: 60px;
           padding-bottom: 60px;
       }

       .Box3 {
           margin-top: 30px;
           width: 100%;
           height: 460px;
       }

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

       .item3 h1.on {
           font-size: 28px;
       }
   }

   @media (max-width: 1200px) {
       .Box3 {
           height: auto;
       }

       .img3 {
           width: calc(100% - 300px);
       }

       .item3 {
           width: 300px;
           padding-right: 30px;
           grid-gap: 30px;
       }
   }

   @media (max-width: 900px) {
       .section3 .indexTitle h1 {
           width: 100%;
       }

       .section3 .indexTitle::after {
           display: none;
       }

       .img3 {
           width: calc(100% - 280px);
       }

       .item3 {
           width: 280px;
           padding: 20px 15px;
           grid-gap: 30px;
       }
   }

   @media (max-width: 600px) {
       .Box3 {
           flex-wrap: wrap;
           flex-direction: column-reverse;
       }

       .img3 {
           width: 100%;
           padding: 20px;
       }

       .item3 {
           width: 100%;
           grid-gap: 15px;
       }

       .item3 h1.on {
           font-size: 24px;
       }

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

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