  .NyBigBox {
    background: url(/assets/images/img1.png) no-repeat top center;
    background-size: 100% auto;
    padding-left: var(--container);
    padding-right: var(--container);
  }

  .PsotItemBox {
    margin-top: 90px;
    margin-bottom: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 20px;
  }

  .PsotItem {
    width: 100%;
    padding: 45px 30px;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .PsotItem .text {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .PsotItem .text h1 {
    font-weight: 700;
    font-size: 18px;
    color: #000000;
  }

  .PsotItem .text span {
    display: block;
    width: 40px;
    height: 5px;
    background: var(--color);
  }

  .PsotItem .More {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color);
    cursor: pointer;
  }

  .PsotItem .img {
    display: block;
    margin-right: 0;
    max-width: 50%;
    max-height: 300px;
    border-radius: 6px;
    object-fit: contain;
    box-shadow: 0 0 10px 2px #00000020;
  }


  @media (max-width: 1200px) {
    .PsotItemBox {
      margin-top: 60px;
      margin-bottom: 60px;
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width:720px) {
    .PsotItem {
      padding: 20px;
    }

    .PsotItem .text {
      width: 100%;
      margin-bottom: 15px;
      grid-gap: 15px;
    }

    .PsotItem .img {
      max-width: 100%;
    }
  }

  @media (max-width:460px) {
    .PsotItemBox {
      grid-gap: 10px;
    }

    .PsotItem {
      padding: 15px;
    }

    .PsotItem .text h1 {
      font-size: 16px;
    }

    .PsotItem .More {
      width: 30px;
      height: 30px;
    }

    .PsotItem .More img {
      width: 10px;
    }
  }

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


  /* 自定义表单样式 */
  .Messages {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #00000080;
    padding-top: 90px;
    display: none;
  }

  .Messages form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    border-radius: 8px;
    background: #fff;
    padding: 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 30px;
  }

  .Messages .title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .Messages .title h1 {
    font-size: 24px;
  }

  .Messages label {
    display: flex;
    flex-wrap: wrap;
  }

  .Messages label h1 {
    width: 100%;
    font-size: 18px;
    color: #585858;
    margin-bottom: 5px;
  }

  .Messages label input {
    width: 100%;
    height: 45px;
    border-bottom: 1px solid var(--color);
    outline: none;
  }

  .Messages label textarea {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid var(--color);
    outline: none;
  }

  .Messages .input1 {
    width: calc(50% - 30px);
  }

  .Messages .input2 {
    width: 100%;
  }

  .Messages .input3 {
    width: 100%;
  }

  .Messages .input3 input {
    width: calc(100% - 260px);
    margin-right: 30px;
  }

  .Messages .input3 img {
    width: 160px;
    height: 45px;
    background: #F9F9F9;
  }

  .Messages .input4 {
    margin: 0 auto;
    width: 160px;
    height: 45px;
    background: var(--color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #FFFFFF;
  }

  @media (max-width: 1440px) {
    .Messages form {
      grid-gap: 15px;
    }

    .Messages label h1 {
      font-size: 16px;
    }

    .Messages label input {
      height: 30px;
    }
  }

  @media (max-width: 1200px) {
    .Messages {
      padding-top: 60px;
    }

    .Messages .input1 {
      width: calc(50% - 15px);
    }
  }

  @media (max-width:720px) {
    .Messages form {
      padding: 30px;
    }

    .Messages .title {
      margin-bottom: 15px;
    }


    .Messages .input1 {
      width: 100%;
    }

    form.Messages {
      grid-gap: 15px 0;
    }

    .Messages label h1 {
      margin-bottom: 5px;
    }

    .Messages label textarea {
      height: 100px;
    }

    .Messages .input3 input {
      width: calc(100% - 150px);
    }

    .Messages .input3 img {
      width: 120px;
      height: 45px;
    }

    .Messages .input4 {
      width: 180px;
      height: 45px;
      font-size: 16px;
    }
  }

  @media (max-width:480px) {
    .Messages form {
      width: 90%;
    }

    .Messages label input {
      height: 30px;
    }

    .Messages label textarea {
      height: 60px;
    }

    .Messages label h1 {
      margin-bottom: 0;
    }

    .Messages .input4 {
      margin-top: 0;
    }
  }
