.border_box {
  /* border: solid 0.063rem #e5e5e5; */
}

.icon-PDF {
  justify-content: unset;
}

.search_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.search_card {
  flex: 1;
  border-right: solid 0.063rem #e5e5e5;
}

.search_content>div:last-child {
  border: none
}

.search_box {
  box-sizing: border-box;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 6.563rem;
  background-color: #f3f3f3;
}

.search_box>h3 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0rem;
  color: #000000;
}

.input {
  box-sizing: border-box;
  height: 2.063rem;
  padding: 0 0.5rem;
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  border: solid 0.063rem #e5e5e5;
}

.input input {
  /* width: 2rem; */
  width: 100%;
}

.input input,
.input .icon {
  border: none;
  background: none;
  color: #000;
  color: #5f5f5f;
  font-size: 1rem;
}

.input .icon {
  height: auto;
  width: auto;
  cursor: pointer;
}

.input .icon::before {
  margin: 0;
}

.search_card ul {
  box-sizing: border-box;
  padding: 0 1rem;
  margin: 0.6rem 0;
  height: 12rem;
  overflow-y: auto;
  font-size: 0.875rem;
  color: #5f5f5f;
}

.search_card ul li {
  width: 100%;
  padding: 0.3rem 0;
}

/*修改滚动条样式*/
.search_card ul::-webkit-scrollbar {
  width: 0.25rem;
  /**/
}

.search_card ul::-webkit-scrollbar-track {
  background: rgb(239, 239, 239);
  border-radius: 2px;
}

.search_card ul::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 2px;
}

.search_card ul::-webkit-scrollbar-thumb:hover {
  background: var(--theme);
}

.search_card ul::-webkit-scrollbar-corner {
  background: #179a16;
}

.search_btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  font-size: 0.875rem;
  color: #000000;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.search_btns button {
  padding: 0.3rem 0.8rem;
}

.search_btns button:nth-child(1) {
  background-color: #f3f3f3;
  border: solid 0.063rem #e5e5e5;
  color: #000;
}

.search_btns button:nth-child(2) {
  background-color: #454545;
  border: solid 0.063rem #e5e5e5;
  color: #fff;
}

.search_btns button:nth-child(3) {
  background-color: #0065ab;
  border: solid 0.063rem #e5e5e5;
  color: #ffffff;
}

.padding_bottom {
  padding-top: 0.5rem;
  padding-bottom: 1rem;

}

.margin_bottom {
  margin-bottom: 1.5rem;
}

.goods_box {
  display: flex;
  gap: 2rem;
}

.goods_left {
  width: 16.875rem;
}

.goods_right {
  flex: 1;
}

.search_1 {
  display: flex;
  justify-content: space-between;
  height: 3.75rem;
  align-items: center;
  background-color: #f3f3f3;
  padding: 0 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #5f5f5f;
}

.search_1 .long_input {
  padding: 0 0.6rem;
  height: 2.188rem;
  width: 11.875rem;
  background-color: #ffffff;
  border: solid 0.063rem #dcdcdc;
}

.search_1 .short {
  width: 5rem;
  padding: 0 0.5rem;
  height: 2.188rem;
  background-color: #ffffff;
  border: solid 0.063rem #dcdcdc;
}

.search_1 button {
  width: 5rem;
  height: 2.188rem;
  background-color: #0065ab;
  border: solid 0.063rem #dcdcdc;
  color: #ffffff;
}

.search_1 li {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.table_box {
  border: solid 1px #cccccc;
}

table {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0rem;
  color: #5f5f5f;
}

tr {
  border-bottom: solid 0.063rem #dcdcdc;
}

table tr:last-child {
  border: none;
}

thead {
  height: 3.75rem;
  background-color: #f3f3f3;
  border: solid 0.063rem #e5e5e5;
  width: 100%;
}

td {
  padding: 1rem;
  vertical-align: middle;
}

table td:first-child {
  min-width: 6rem;
  text-align: center;
}

td button {
  width: 9.063rem;
  height: 2.5rem;
  background-color: #0065ab;
  border-radius: 0.313rem;
  color: #ffffff;
  margin: 1rem 0;
}

.icon-shoucan::before {
  color: var(--theme2);
}

td img {
  width: 6.5rem;
  height: auto;
}

.price_box p {
  color: #ff0000;
  white-space: nowrap;
}

.price_box a {
  color: var(--theme);
}


@media screen and (max-width:768px) {
  .search_content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0;
  }

  .search_content>div:nth-child(even) {
    border: none
  }

  .goods_box {
    flex-direction: column;
    gap: 2rem;
    position: relative;
  }

  .goods_left {
    display: none;
    width: 100%;
    box-sizing: border-box;
    flex: none;
    position: absolute;
    top: 6.8rem;
    right: 0;
    background-color: #f3f3f3;
    padding: 1rem;
    border: solid 0.063rem #dcdcdc;
  }


  .goods_right {
    flex: 1;
  }

  .icon-a-xingzhuang2 {
    font-size: 1.4rem;
    color: var(--theme);
  }

  .search_1 {
    padding: 0.5rem;
    height: auto;
    flex-wrap: wrap;
    gap: 1rem 0.4rem;
  }

  table {
    width: 50rem;
  }

  table td:first-child {
    width: 6rem;
  }

  table td:last-child {
    width: 6rem;
  }

  .table_box {
    overflow-x: auto;
  }
}