.search_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  height: 3.438rem;
  padding: 0 1.25rem;
  background-color: #eeeeee;
  border-bottom: solid 0.063rem #e5e5e5;
}

.search_condition {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  line-height: 2.813rem;
  font-weight: 600;
  color: #000000;
}

.search_box select {
  width: 9.375rem;
  height: 1.875rem;
  background-color: #ffffff;
  border: solid 0.063rem #e5e5e5;
}

.search_box select:focus-visible {
  outline: none;
}

.search_box input {
  width: 9.375rem;
  height: 1.875rem;
  padding: 0 0.3rem;
  background-color: #ffffff;
  border: solid 0.063rem #e5e5e5
}

.search_box button {
  width: 3.75rem;
  height: 1.875rem;
  color: #ffffff;
  background-color: #0065ab;
  border: solid 0.063rem #e5e5e5;
}

.mySample {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mySample button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.375rem;
  height: 1.875rem;
  color: #000;
  background-color: #ffffff;
  border: solid 0.063rem #e5e5e5;
}

.mySample .icon {
  font-size: 0.938rem;
}

.mySample .badge {
  position: unset;
  margin: 0 0.28rem;
  min-width: 0.938rem;
  min-height: 0.938rem;
  display: flex;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #e60012;
}

form {
  border: solid 1px #cccccc;
  margin-bottom: 1rem;
}

.table_box {
  margin: 1rem;
}

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.125rem;
  background-color: #f3f3f3;
  border: solid 0.063rem #e5e5e5;
  width: 100%;
  color: #000;
}

td {
  padding: 0.5rem 1rem;
}

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

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);
}

.pagination {
  justify-content: flex-start;
  margin: 0;
  margin-bottom: 1rem;
}

@media screen and (max-width:768px) {
  .search_box {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 0;
    height: auto;
    padding: 0.6rem 1.25rem;
  }


  .search_condition {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  table {
    width: 50rem;
  }

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

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

  .condition_box>ul>li {
    flex-direction: column;
    gap: 0.4rem;

  }

  .table_box {
    overflow-x: auto;
  }
}