.main-container{
  .content-box{
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 421px);

    .banner-box {
      width: 100%;
      position: relative;

      img {
        width: 100%;
      }

      .wrap-info {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 9;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .name {
          font-weight: bold;
          font-size: 52px;
          color: #FFFFFF;
          line-height: 61px;
          letter-spacing: 14px;
        }

        .desp {
          font-weight: 400;
          font-size: 18px;
          color: #FFFFFF;
          line-height: 21px;
          letter-spacing: 5px;
          margin-top: 14px;
        }
      }
    }

    .wrap-com{
      width: 1440px;
      height: 824px;
      background: url("../image/contact/img_contact_wrap_1_bg.jpg");
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;

      .label{
        font-weight: 500;
        font-size: 32px;
        color: #333333;
        line-height: 45px;
        margin-top: 40px;
      }
      .sub{
        font-weight: 400;
        font-size: 20px;
        color: #86909C;
        line-height: 28px;
      }
      .box{
        margin-top: 40px;
        display: flex;
        .left{
          width: 506px;
          .name{
            font-weight: 500;
            font-size: 26px;
            color: #333333;
            line-height: 36px;
          }
          .tag{
            width: 203px;
            height: 4px;
            background: #04AB81;
            margin-top: 6px;
          }
          .list{
            margin-top: 20px;
            .item{
              display: flex;
              align-items: center;
              margin-bottom: 26px;
              .icon{
                width: 22px;
                height: 22px;
                margin-right: 12px;
              }
              .info{
                font-weight: 400;
                font-size: 16px;
                color: #333333;
                line-height: 1.5;
              }
            }
          }
          .divider{
            height: 1px;
            background: #EFEFEF;
          }
          .tel{
            font-weight: 500;
            font-size: 26px;
            color: #333333;
            line-height: 36px;
            margin-top: 23px;
          }
          .tel-sub{
            font-weight: 400;
            font-size: 16px;
            color: #7B7B7B;
            line-height: 22px;
            margin-top: 4px;
          }
          .list-qr{
            width: 344px;
            display: flex;
            flex-wrap: wrap;
            margin-top: 30px;
            .item{
              width: 84px;
              display: flex;
              flex-direction: column;
              align-items: center;
              margin-bottom: 16px;
              margin-right: 30px;
              img{
                width: 80px;
                height: 80px;
                object-fit: cover;
              }
              span{
                font-weight: 400;
                font-size: 12px;
                color: #7B7B7B;
                line-height: 1.5;
                margin-top: 6px;
              }
            }
          }
        }
        .right{
          width: 533px;
          height: 609px;
          background: #FFFFFF;
          box-shadow: 0px 0px 20px 0px rgba(234,234,234,0.38);
          border-radius: 8px 8px 8px 8px;
          margin-left: 118px;
          display: flex;
          flex-direction: column;
          align-items: center;
          .label{
            font-weight: 400;
            font-size: 26px;
            color: #333333;
            line-height: 36px;
          }
          .en{
            font-weight: 400;
            font-size: 16px;
            color: #86909C;
            line-height: 22px;
            margin-top: 4px;
          }

          .form{
            .item{
              margin-bottom: 24px;
              position: relative;
              .ipt{
                width: 433px;
                height: 42px;
                border-radius: 4px 4px 4px 4px;
                border: 1px solid #DDDDDD;
                padding: 0 20px;
                font-weight: 400;
                font-size: 16px;
                color: #333333;

              }
              .ipt::placeholder{
                color: #DEDEDE;
              }
              .ipt:focus{
                outline: none; /* 去除默认的虚线边框 */
                border: 1px solid #04AB81;
              }
              .error{
                position: absolute;
                left: 4px;
                bottom: -18px;
                font-size: 14px;
                color: #FF4646;
              }
              .textarea{
                width: 433px;
                height: 167px;
                resize: none; /* 防止调整文本区域大小 */
                border-radius: 4px;
                border: 1px solid #DDDDDD;
                padding: 10px 20px 20px 20px;
                font-weight: 400;
                font-size: 16px;
                color: #333333;
                line-height: 1.5;
              }
              .textarea::placeholder{
                color: #DEDEDE;
              }
              .textarea:focus{
                outline: none; /* 去除默认的虚线边框 */
                border: 1px solid #04AB81;
              }
              .limit{
                position: absolute;
                right: 6px;
                bottom: 6px;
                font-weight: 400;
                font-size: 14px;
                color: #DEDEDE;
              }
            }

            .item:first-child{
              margin-top: 38px;
            }
            .item:nth-child(4){
              margin-bottom: 0;
            }

            button{
              width: 433px;
              height: 42px;
              background: #04AB81;
              border-radius: 4px;
              border: none;
              margin-top: 20px;
              font-weight: 500;
              font-size: 16px;
              color: #FFFFFF;
            }
            .tips{
              width: 388px;
              font-weight: 400;
              font-size: 16px;
              color: #959595;
              margin-top: 10px;
              margin-left: 90px;
              text-align: center;
            }
            .tips:before{
              content: "*";
              font-size: 16px;
              color: #FF4646;
            }

          }

        }
      }


    }

  }
}

// 媒体查询
@media screen and (max-width: 768px) {
  #header,#footer{
    display: none;
  }
  #header-m{
    display: block;
  }
  #footer-m{
    display: block;
  }

  #imgtop-pc{
    display: none;
  }
  #imgtop-m{
    display: block;
  }

  .main-container{
    .content-box{
      min-height: 0;
      .banner-box{
        .wrap-info{
          .name {
            font-weight: bold;
            font-size: 0.28rem;
            color: #FFFFFF;
            line-height: 0.37rem;
            letter-spacing: 0.07rem;
          }
          .desp {
            font-weight: 400;
            font-size: 0.14rem;
            color: #FFFFFF;
            line-height: 0.24rem;
            letter-spacing: 0.03rem;
            margin-top: 0.1rem;
          }
        }
      }
      .wrap-com {
        width: 100%;
        height: auto;
        //background: #F0F0F0;
        background: url("../imagem/contact/img_contact_c_bg.png");
        background-size: cover;
        background-repeat: no-repeat;

        label {
          font-size: 0.16rem;
          color: #333333;
          line-height: 0.22rem;
          margin-top: 0.24rem;
        }
        .sub {
          font-weight: 400;
          font-size: 0.14rem;
          color: #86909C;
          line-height: 0.2rem;
        }
        .box {
          margin-top: 0.3rem;
          display: block;

          .left {
            width: auto;
            margin-left: 0.2rem;
            margin-right: 0.2rem;

            .name {
              font-size: 0.18rem;
              color: #333333;
              line-height: 0.24rem;
            }
            .tag {
              width: 0.73rem;
              height: 0.02rem;
              background: #04AB81;
              margin-top: 0.05rem;
            }

            .list {
              margin-top: 0.2rem;
              display: flex;
              flex-wrap: wrap;

              .item {
                margin-bottom: 0.24rem;
                .icon {
                  width: 0.18rem;
                  height: 0.18rem;
                  margin-right: 0.06rem;
                }
                .info {
                  font-weight: 400;
                  font-size: 0.14rem;
                  color: #333333;
                }
              }
              .item:first-child{
                align-items: flex-start;
              }
              .item:nth-child(2){
                width: 56%;
              }

            }

            .divider {
              height: 0.01rem;
              background: #E4E4E4;
            }

            .tel {
              font-weight: 500;
              font-size: 0.18rem;
              color: #333333;
              line-height: 0.24rem;
              margin-top: 0.2rem;
            }
            .tel-sub {
              font-weight: 400;
              font-size: 0.14rem;
              color: #7B7B7B;
              line-height: 0.2rem;
              margin-top: 0.04rem;
            }
            .list-qr {
              width: 100%;
              display: flex;
              flex-wrap: wrap;
              margin-top: 0.2rem;

              .item {
                width: 0.84rem;
                margin-bottom: 0.16rem;
                margin-right: 0.4rem;
                img {
                  width: 0.8rem;
                  height: 0.8rem;
                  object-fit: cover;
                }
                span {
                  font-weight: 400;
                  font-size: 0.12rem;
                  color: #7B7B7B;
                  line-height: 1.5;
                  margin-top: 0.06rem;
                }
              }
              .item:nth-child(3),.item:nth-child(6){
                margin-right: 0;
              }
            }
          }

          .right {
            width: auto;
            height: 5.13rem;
            background: #FFFFFF;
            box-shadow: 0rem 0rem 0.2rem 0rem rgba(234,234,234,0.38);
            border-radius: 0.08rem;
            margin-left: 0.2rem;
            margin-right: 0.2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 0.4rem;
            margin-top: 0.14rem;
            .label {
              font-weight: 400;
              font-size: 0.16rem;
              color: #333333;
              line-height: 0.22rem;
              margin-top: 0.24rem;
            }
            .en {
              font-weight: 400;
              font-size: 0.14rem;
              color: #86909C;
              line-height: 0.2rem;
              margin-top: 0.04rem;
            }
            .form{
              display: flex;
              flex-direction: column;
              align-items: center;

              .item {
                display: flex;
                align-items: center;
                margin-bottom: 0.2rem;
                position: relative;

                .error {
                  position: absolute;
                  left: 0;
                  bottom: -0.15rem;
                  font-size: 0.1rem;
                  color: #FF4646;
                }

                .ipt {
                  width: 2.87rem;
                  height: 0.36rem;
                  border-radius: 0.04rem;
                  border: 0.01rem solid #DDDDDD;
                  padding: 0 0.2rem;
                  font-weight: 400;
                  font-size: 0.14rem;
                  color: #333333;
                }

                .textarea {
                  width: 2.87rem;
                  height: 1.67rem;
                  border-radius: 0.04rem;
                  border: 0.01rem solid #DDDDDD;
                  padding: 0.1rem 0.2rem 0.2rem 0.2rem;
                  font-weight: 400;
                  font-size: 0.14rem;
                  color: #333333;
                  line-height: 1.5;
                  resize: none;
                }


              }
              .item:first-child{
                margin-top: 0.24rem;
              }

              button {
                width: 2.87rem;
                height: 0.42rem;
                background: #04AB81;
                border-radius: 0.04rem;

                margin-top: 0.2rem;
                font-weight: 500;
                font-size: 0.16rem;
                color: #FFFFFF;
                border: none;
              }

            }
          }
        }
      }
    }
  }
}

// 媒体查询
@media screen and (min-width: 769px) {
  #header,#footer{
    display: block;
  }
  #header-m,#footer-m{
    display: none;
  }

  #imgtop-pc{
    display: block;
  }
  #imgtop-m{
    display: none;
  }

}


