.main {
    width: 100%;
    margin: auto;


}

.block1 {
    width: 100%;
    background: url(../img/verify/bg.png) no-repeat center;
    background-size: 100% auto;
    padding: 20% 0;
    box-sizing: border-box;
  }
  .block1 .content {
    width: 13rem;
    text-align: center;
    margin: auto;
  }
  .block1 .title {
    font-size: 1rem;
    font-weight: 600;
  }
  .block1 .prompt {
    font-size: 0.4rem;
    margin: 1rem 0;
  }
  .block1 .field::before {
    position: absolute;
    bottom: -0.5rem;
    content: "This field is required.";
    color: red;
    font-size: 0.3rem;
  }
  .block1 .form {
    width: 100%;
    display: flex;
    position: relative;
  }
  .block1 .form .input {
    flex: 1;
    box-sizing: border-box;
    padding: 1% 2%;
    font-size: 0.4rem;
    border-radius: 0.2rem 0 0 0.2rem;
    border: 1px solid #000;
  }
  .block1 .form .bt {
    text-align: center;
    /* width: 10%; */
    background-color: #000;
    color: #fff;
    padding: 3% 5%;
    box-sizing: border-box;
    font-size: 0.3rem;
    transition: all 0.5s;
    cursor: pointer;
    border-radius: 0 0.2rem 0.2rem 0;
  }
  .block1 .form .bt:hover {
    background-color: #FF7425;
  }
  .block2 {
    width: 100%;
    box-sizing: border-box;
  }
  .block2 .content {
    width: 25rem;
    margin: auto;
    text-align: center;
  }
  .block2 .content .title {
    font-size: 0.9rem;
  }
  .block2 .content img {
    width: 60%;
    margin: 5% 0;
  }
  .block2 .content .line {
    text-align: left;
    display: flex;
  }
  .block2 .content .line .left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 3%;
  }
  .block2 .content .line .left .p1 {
    font-size: 0.6rem;
  }
  .block2 .content .line .left .p2 {
    font-size: 0.35rem;
    margin: 0.6rem 0;
  }
  .block2 .content .line .right {
    width: 50%;
  }
  .block2 .content .line .right video {
    width: 100%;
    border-radius: 4%;
  }
  .block3 {
    width: 100%;
    box-sizing: border-box;
    background-color: #f7f7f7;
    padding: 8% 0;
  }
  .block3 .content {
    width: 20rem;
    margin: auto;
    text-align: center;
    font-size: 0.35rem;
  }
  .block3 .title {
    text-align: center;
    margin-bottom: 8%;
  }
  .block3 .title .p1 {
    font-size: 0.9rem;
    margin-bottom: 5%;
  }
  .block3 .title a {
    color: #0b23ff;
    text-decoration: 1px underline #0b23ff;
  }
  .block3 .line {
    display: flex;
    justify-content: space-between;
  }
  .block3 .line .l {
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    box-sizing: border-box;
    padding: 0 2%;
  }
  .block3 .line .l .img {
    width: 100%;
    height: 4rem;
    overflow: hidden;
  }
  .block3 .line .l .img img {
    width: 100%;
    margin-bottom: 5%;
  }
  .Verify_result {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000069;
    box-sizing: border-box;
    padding-top: 10%;
    z-index: 100;
    display: none;
  }
  .Verify_result .content {
    position: relative;
    width: 13rem;
    background-color: #fff;
    border-radius: 0.3rem;
    margin: auto;
    text-align: center;
    box-sizing: border-box;
    padding: 3% 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    display: none;
  }
  .Verify_result .content .close {
    position: absolute;
    bottom: -0.9rem;
    transform: scale(1.5);
    cursor: pointer;
  }
  .Verify_result .content .t1 {
    font-size: 0.45rem;
    font-weight: 600;
  }
  .Verify_result .content .t2 {
    width: 80%;
    font-size: 0.35rem;
  }
  .Verify_result .content img {
    width: 10%;
    margin: 4% 0;
  }
  .Verify_result .content .result {
    width: 95%;
  }
  .Verify_result .content .line {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.35rem;
    border-bottom: 1px solid #000;
    margin: 5% 0;
  }
  
@media screen and (max-width: 992px) {
    .block .content{
            width: 100%;
        }
    
        .Verify_result {
            padding-top: 10rem;
          }
          .Verify_result .content {
            width: 90%;
            padding: 1rem 0;
          }
          .Verify_result .content .icon {
            width: 20%;
          }
          .Verify_result .content .t1 {
            width: 90%;
            font-size: 1rem;
          }
          .Verify_result .content .t2 {
            width: 90%;
            font-size: 1rem;
          }
          .Verify_result .content .line {
            font-size: 0.8rem;
          }
          .Verify_result .content .close {
            bottom: -3rem;
          }
          
}

