.report {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.report .w {
  width: 800px;
}

.report h3 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 56px;
}

.report .search p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.report .search .in .item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}


.report .search .in .info {
  width: 23%;
}

.report .search .in .info span {
  display: block;
  font-size: 18px;
}

.report .search .in .info i {
  color: rgb(245, 70, 70);
}

.report .search .in input {
  width: 68%;
  height: 50px;
  color: #999;
  font-size: 20px;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(37, 115, 205, 0.08);
  border: 1px solid rgba(37, 115, 205, 0.2196078431372549);
}

.report .search .in button {
  display: block;
  width: 25%;
  height: 53px;
  color: #fff;
  font-size: 20px;
  margin: 0 auto;
  background: #2573CD;
  cursor: pointer;
}

.report .result {
  width: 100%;
  margin-top: 100px;
}

.report .result p {
  font-size: 18px;
  margin-bottom: 47px;
}

.report .result table {
  width: 100%;
}

.report .result th {
  font-size: 18px;
  text-align: left;
}

.report .result tbody tr {
  border-bottom: 1px solid #E1E1E1;
}

.report .result td {
  color: #999999;
  font-size: 18px;
  padding: 10px 0;
  box-sizing: border-box;
}

.report .result a {
  display: inline-block;
  width: 100px;
  height: 37px;
  line-height: 37px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: #2573CD;
  border-radius: 4px;
  margin-right: 10px;
}

@media screen and (max-width: 992px) {
  .banner .title {
    top: 48%;
    font-size: 30px;
  }

  .report {
    padding: 30px 0;
  }

  .report .w {
    width: 100%;
  }

  .report .search .in .info {
    width: 40%;
  }

  .report .search .in .info span {
    font-size: 16px;
  }

  .report .search .in input {
    width: 60%;
    height: 40px;
    font-size: 16px;
    padding: 8px;
  }

  .report .search .in button {
    width: 28%;
    height: 40px;
    font-size: 16px;
  }

  .report .result {
    overflow-x: scroll;
    width: 100%;
    margin-top: 50px;
  }

  .report .result table {
    width: 800px;
  }

  .report .result a {
    margin-bottom: 10px;
  }
}