body .home .container {
  padding-bottom: 6.25vw; }
  body .home .container .sec1 {
    display: flex;
    padding: 6.25vw 12.5vw; }
    body .home .container .sec1 .map {
      width: 37.34375vw;
      border-radius: 20px;
      overflow: hidden; }
      body .home .container .sec1 .map img {
        width: 100%;
        height: 24.1666666667vw;
        object-fit: cover;
        transition: all 600ms; }
      body .home .container .sec1 .map:hover img {
        transform: scale(1.05); }
    body .home .container .sec1 .r {
      margin-left: 4.8958333333vw; }
      body .home .container .sec1 .r .common_title {
        margin-top: 2.5vw; }
      body .home .container .sec1 .r .info {
        margin-top: 9.6875vw;
        display: flex; }
        body .home .container .sec1 .r .info .code img {
          width: 8.3333333333vw;
          height: 8.3333333333vw;
          object-fit: contain; }
        body .home .container .sec1 .r .info .text {
          margin-left: 2.1875vw; }
          body .home .container .sec1 .r .info .text .name {
            color: #00183C;
            margin-bottom: 1.5625vw;
            font-weight: 600; }
          body .home .container .sec1 .r .info .text .phone_box .phone_item {
            display: flex; }
            body .home .container .sec1 .r .info .text .phone_box .phone_item:not(:last-child) {
              margin-bottom: 1.0416666667vw; }
            body .home .container .sec1 .r .info .text .phone_box .phone_item .icon {
              width: 1.25vw;
              height: 1.25vw;
              display: flex;
              align-items: center;
              justify-content: center; }
            body .home .container .sec1 .r .info .text .phone_box .phone_item .p1 {
              width: 4.1666666667vw;
              color: #666;
              margin-left: 0.5208333333vw; }
            body .home .container .sec1 .r .info .text .phone_box .phone_item .p2 p {
              font-weight: 600; }
              body .home .container .sec1 .r .info .text .phone_box .phone_item .p2 p:not(:last-child) {
                margin-bottom: 1.0416666667vw; }
  body .home .container .sec2 img {
    width: 100%;
    height: 29.1666666667vw;
    object-fit: cover; }
  body .home .container .sec3 {
    width: 65.5208333333vw;
    margin: -24.84375vw auto 0 auto;
    background: #F9F9F9;
    border-radius: 20px;
    position: relative;
    z-index: 5;
    padding: 3.125vw 5.2083333333vw 2.8125vw 5.2083333333vw; }
    body .home .container .sec3 .form {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-top: 3.3854166667vw; }
      body .home .container .sec3 .form .item {
        width: 24.4791666667vw;
        margin-bottom: 2.0833333333vw; }
        body .home .container .sec3 .form .item p {
          line-height: 1.25;
          margin-bottom: 1.0416666667vw;
          font-weight: bold; }
        body .home .container .sec3 .form .item input {
          width: 100%;
          border-radius: 32px;
          border: 1px solid rgba(0, 0, 0, 0.2);
          background: #FFF;
          padding: 1.0416666667vw 1.6666666667vw;
          font-size: 0.8333333333vw; }
          body .home .container .sec3 .form .item input::placeholder {
            color: #666; }
        body .home .container .sec3 .form .item.msg {
          width: 100%; }
          body .home .container .sec3 .form .item.msg textarea {
            width: 100%;
            border-radius: 32px;
            border: 1px solid rgba(0, 0, 0, 0.2);
            background: #FFF;
            padding: 1.0416666667vw 1.6666666667vw;
            font-size: 0.8333333333vw;
            height: 8.75vw;
            resize: none; }
            body .home .container .sec3 .form .item.msg textarea::placeholder {
              color: #666; }
    body .home .container .sec3 .submit {
      display: flex;
      width: 10.4166666667vw;
      height: 2.9166666667vw;
      justify-content: center;
      align-items: center;
      border-radius: 91px;
      border: 1px solid rgba(9, 139, 238, 0.7);
      background: rgba(9, 139, 238, 0.7);
      margin: 0 auto;
      color: #FFF;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 600ms; }
      body .home .container .sec3 .submit:hover {
        border-color: #006CAC;
        background: #006CAC; }
body .home .notice {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.78125vw 1.0416666667vw 0.7291666667vw 0.8333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #000;
  flex-shrink: 0;
  display: none;
  z-index: 10; }
  body .home .notice svg {
    width: 1.25vw;
    height: auto;
    display: block; }
  body .home .notice p {
    color: #fff;
    font-weight: 400;
    margin-left: 0.3125vw; }
  body .home .notice.show {
    display: flex; }
  body .home .notice.success {
    display: flex; }
    body .home .notice.success svg {
      display: none; }
    body .home .notice.success p {
      margin-left: 0; }
@keyframes yAnimate {
  0% {
    transform: translateY(50px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }
@media screen and (max-width: 768px) {
  body .home .container {
    padding-bottom: 30px; }
    body .home .container .sec1 {
      flex-direction: column;
      padding: 30px 5%; }
      body .home .container .sec1 .map {
        width: 100%;
        height: auto; }
        body .home .container .sec1 .map img {
          height: auto; }
      body .home .container .sec1 .r {
        margin-left: 0;
        margin-top: 30px; }
        body .home .container .sec1 .r .common_title {
          margin-top: 0; }
        body .home .container .sec1 .r .info {
          margin-top: 30px;
          flex-direction: column;
          align-items: center; }
          body .home .container .sec1 .r .info .code img {
            width: 160px;
            height: 160px; }
          body .home .container .sec1 .r .info .text {
            margin-left: 0;
            margin-top: 20px;
            text-align: center; }
            body .home .container .sec1 .r .info .text .name {
              margin-bottom: 15px; }
            body .home .container .sec1 .r .info .text .phone_box .phone_item {
              justify-content: center; }
              body .home .container .sec1 .r .info .text .phone_box .phone_item:not(:last-child) {
                margin-bottom: 10px; }
              body .home .container .sec1 .r .info .text .phone_box .phone_item .icon {
                width: 24px;
                height: 24px; }
              body .home .container .sec1 .r .info .text .phone_box .phone_item .p1 {
                width: auto;
                margin-left: 5px; }
    body .home .container .sec2 img {
      height: auto; }
    body .home .container .sec3 {
      width: 90%;
      margin: -50px auto 0 auto;
      padding: 30px 5%; }
      body .home .container .sec3 .form {
        margin-top: 30px; }
        body .home .container .sec3 .form .item {
          width: 100%;
          margin-bottom: 20px; }
          body .home .container .sec3 .form .item p {
            margin-bottom: 10px; }
          body .home .container .sec3 .form .item input {
            padding: 10px 16px;
            font-size: 14px; }
          body .home .container .sec3 .form .item.msg textarea {
            padding: 10px 16px;
            font-size: 14px;
            height: 120px; }
      body .home .container .sec3 .submit {
        width: 160px;
        height: 40px;
        font-size: 14px; }
  body .home .notice {
    padding: 12px 20px;
    width: fit-content; }
    body .home .notice svg {
      width: 20px; }
    body .home .notice p {
      margin-left: 3px; } }

/*# sourceMappingURL=contact.css.map */
