* {
  margin: 0;
  padding: 0;
}
body{
    background: rgb(242, 242, 244);
}
@primary-color: #1677ff;
@border-color: #dcdcdc;
.tybj {
    width: 100%;
    height: 180px;
    line-height: 180px;
    background: url(../images/banner.jpg) no-repeat 100%/100%;
  }
  
  .tybj .tit {
    width: 1200px;
    margin: 0 auto;
    font-size: 30px;
    color: #ffffff;
  }
  
  .search .title {
    margin-left: 30px;
  }
#app {
  border: 1px solid #dcdcdc;
  /* min-height: calc(100vh - 200px); */
  width: 1200px;
  margin: 30px auto;
  background: #fff;
  position: relative;
  .footer-text {
    background: url(../images/icon/footer.png) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    min-height:300px;
    font-size: 14px;
    color: #999999;
    text-align: center;
    margin: -100px auto 0;
    p {
      position: absolute;
      bottom: 30px;
      text-align: center;
      left: 50%;
      transform: translateX(-50%);
    }
  }
  .fixed.footer-text{
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.title {
  border-bottom: 1px solid #d8d8d8;
  h2 {
    font-size: 16px;
    color: #333333;
    padding: 15px 0 5px;
    display: inline-block;
    border-bottom: 2px solid @primary-color;
  }
}
.search {
  .input-section {
    padding: 5% 26.5% 3%;
    .row {
      display: flex;
      width: 100%;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      margin-bottom: 3%;
      .input-border {
        border: 1px solid @border-color;
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: #fafafa;
        flex: 1;
        .icon {
          width: 44px;
          height: 44px;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          img {
            width: 22px;
            height: 22px;
          }
        }
        .input {
          height: 85%;
          width: 100%;
          border-left: 1px solid @border-color;
          input {
            box-sizing: border-box;
            padding-left: 1em;
            width: 100%;
            height: 100%;
            outline: none;
            border: none;
            font-size: 16px;
            background-color: #fafafa;
          }
        }
      }
      .button {
        width: 200px;
        height: 44px;
        background: #f5f5f5;
        border: 1px solid #cccccc;
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
        cursor:pointer;
      }
      .button:active{
          opacity: 0.5;
      }
      .normal {
        background: @primary-color;
        color: #fff;
        border: 1px solid @primary-color;
      }
      .hr {
        width: 40px;
      }
      .code {
        margin-left: 20px;
      }
    }
  }
}
.result{
    margin: 0 3%;
    table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    table-layout: fixed;
    word-break: break-all;
    tr {
        width: 100%;
        td {
        font-size: 16px;
        color: #333333;
        border: 1px solid #dcdcdc;
        padding: 2%;
        }
        .label {
        background: #f5f5f5;
        text-align: right;
        width: 25%;
        }
        .value {
        width: 75%;
        background: #ffffff;
        }
    }
    }
}
.empty {
  padding-top: 20px;
}

.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  .msg {
    border-radius: 10px;
    width: 20%;
    height: 150px;
    background: #fff;
    display: flex;
    flex-direction: column;
    .content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      flex: 2;
      border-bottom: 1px solid @border-color;
    }
    .button {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      flex: 1;
      color: @primary-color;
      cursor:pointer;
    }
  }
}
.footer{
    margin-top: 0 !important;
}
.loaddiv {
  background-color: #000000;
  opacity: 0.6;
  border-radius: 10px;
  position: fixed;
  left: 50%;
  width: 108px;
  height: 108px;
  top: 50%;
  margin-left: -60px;
  margin-top: -60px;
  text-align: center;
}

.loadimg {
  background-color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 0.65rem;
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0.25rem;
}

.loadtext {
  color: #8f8f94;
}