@charset "UTF-8";
.limit .index-img-container {
  width: 100%;
  padding-right: 30px;
  display: flex;
  justify-content: end;
}
.limit .index-img-container img {
  width: 30px;
  height: 30px;
}
.limit .list-content {
  margin-left:20vw;
  padding: 30px;
}
.limit .list-content > div:nth-of-type(1) {
  width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.limit .list-content > div:nth-of-type(1) > div:nth-of-type(1) {
  font-size: 30px;
  color: var(--font-color);
  font-weight: bold;
  letter-spacing: 2px;
}
.limit .list-content > div:nth-of-type(1) > div:nth-of-type(2) > form {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  /*input {
      width: 250px;
      height: 30px;
      background-color: transparent;
      border: 1px solid rgb(178, 178, 178);
  }*/
}
.limit .list-content > div:nth-of-type(1) > div:nth-of-type(2) > form button {
  color: white;
  border-radius: 20px;
  border: none;
  padding: 3px 15px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  background-color: var(--font-color);
}
.limit .list-content > div:nth-of-type(1) > div:nth-of-type(2) > form button img {
  width: 17px;
  height: 17px;
}
.limit .list-content > div:nth-of-type(1) > div:nth-of-type(2) > form button span {
  white-space: nowrap;
}
.limit .list-content > div:nth-of-type(2) {
  position: relative;
  padding: 30px 0;
  margin-bottom: 20px;
}
.limit .list-content > div:nth-of-type(2) > div {
  display: grid;
  grid-template-columns: 101px 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", serif;
}
.limit .list-content > div:nth-of-type(2) > div > div:nth-of-type(1) {
  position: relative;
  padding: 10px 0;
}
.limit .list-content > div:nth-of-type(2) > div > div:nth-of-type(1)::before {
  content: "";
  position: absolute;
  height: 2px;
  background-color: var(--font-color);
  top: 0;
  left: 5px;
  right: 5px;
}
.limit .list-content > div:nth-of-type(2) > div:last-child {
  margin-bottom: 0;
}
.limit .list-content > div:nth-of-type(2)::before, .limit .list-content > div:nth-of-type(2)::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 2px;
  background-color: rgb(220, 220, 220);
  left: 0;
}
.limit .list-content > div:nth-of-type(2)::before {
  top: 0;
}
.limit .list-content > div:nth-of-type(2)::after {
  bottom: 0;
}