   .box1 {
     margin-bottom: 45px ;
     display: flex;
     flex-wrap: wrap;
   }

   .box1 .text {
     width: 45%;
     padding: 60px;
     background: #fff;

     display: flex;
     flex-direction: column;
     justify-content: space-between;
   }

   .box1 .text h1 {
     font-weight: bold;
     font-size: 32px;
     line-height: 1;
     color: #474747;
     margin-bottom: 15px;
   }

   .box1 .text p {
     font-size: 24px;
     line-height: 2;
     color: #474747;
   }

   @media (max-width:1440px) {
     .box1 .text {
       display: flex;
       flex-direction: column;
       justify-content: space-evenly;
     }

     .box1 .text p {
       font-size: 18px;
     }
   }

   @media (max-width:1200px) {
     .box1 .text {
       padding: 30px;
     }
   }

   @media (max-width:992px) {
     .box1 .text {
       width: 100%;
       padding: 30px 15px;
     }
   }

   @media (max-width:640px) {
     .box1 .text h1 {
       font-size: 24px;
     }

     .box1 .text p {
       font-size: 16px;
     }
   }

   /* 地图 */
   body {
     min-width: auto !important;
     min-height: auto !important;
   }

   .map {
     width: 55%;
     height: 640px;
     overflow: hidden;
     position: relative;
     z-index: 1;
     background: #EDEDED;
   }

   .map .my-map {
     width: 1920px;
     height: 960px;
     position: relative;
     left: 50%;
     top: 50%;
     margin-left: -960px;
     margin-top: -480px;
   }


   @media (max-width: 992px) {
     .map {
       width: 100%;
     }
   }

   @media (max-width: 640px) {
     .map {
       height: 300px;
     }
   }

   /* 表单 */
   input,
   textarea {
     outline: none;
   }

   form {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
   }

   input.input1 {
     width: 48%;
     margin-bottom: 20px;
     height: 50px;
     padding: 0 15px;
   }

   textarea.input {
     width: 100%;
     margin-bottom: 20px !important;
     height: 100px;
     padding: 10px 15px;
   }

   input.input {
     width: 160px;
     margin: 0;
     height: 50px;
     padding: 0 15px;
   }

   .input4 {
     width: 175px;
     height: 50px;
     background: var(--color);
     color: #fff;
   }

   .box2 h1 {
     margin: 120px 0 90px;
     font-weight: 700;
     font-size: 42px;
     line-height: 1;
     color: #000000;
     text-align: center;
   }

   .message {
     background: #F3F3F3;
     padding: 60px;
   }

   .codeBox img {
     width: 130px;
     height: 50px;
     object-fit: contain;
   }

   form input,
   form textarea {
     background: #fff;
     border: 1px solid #C5C5C5;
   }

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

     input.input1 {
       width: 100%;
     }

     .codeBox {
       width: 100%;
     }

     .codeBox input.input {
       width: calc(100% - 130px);
     }

     .input4 {
       margin: 0 auto;
       margin-top: 30px;
     }
   }
