.searchbox {
  width: 100%;
  margin: 15px auto 0;
  border: solid 2px #19a78e;
  border-radius: 8px;
}
  .search_head {
    display: flex;
    align-items: center;
    height: 32px;
    padding: 0 10px;
    background: #19a78e;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
  }
    .search_head img {
      height: 80%;
      margin-right: 10px;
    }
  .search_body {
    border-collapse: separate;
    border-spacing: 5px;
    width: 100%;
  }
    .search_body th {
      width: 25%;
      height: 36px;
      background: #f0eee2;
      font-size: 12px;
    }
      .search_body td nobr {
        display: inline-block;
        width: 48%;
        margin: 1px 0;
        padding: 2px;
        border: solid 1px #aaa;
        font-size: 12px;
      }
      .search_body input[type=radio],
      .search_body input[type=checkbox] {
        position: relative;
        margin-right: 0;
      }
      .search_body input::before,
      .search_body input::after {
        content: "";
        position: absolute;
        display: block;
        top: -3px;
        transition: opacity 0.3s;      
      }
      .search_body input[type=radio]::before {
        left: -6px;
        width: 16px;
        height: 16px;
        background: #fff;
        border: solid 2px #ccc;
        border-radius: 50%;
      }
      .search_body input[type=radio]::after {
        left: -6px;
        width: 8px;
        height: 8px;
        border: solid 6px #19a78e;
        border-radius: 50%;
        opacity: 0;
      }
      .search_body input[type=checkbox]::before {
        left: -5px;
        width: 16px;
        height: 16px;
        background: #fff;
        border: solid 2px #ccc;
        border-radius: 3px;
      }
      .search_body input[type=checkbox]::after {
        left: -5px;
        width: 16px;
        height: 16px;
        background: #19a78e;
        background-image: url(/images/checkbox.png);
        background-size: 100% 100%;
        border: solid 2px #19a78e;
        border-radius: 3px;
        opacity: 0;
      }
      .search_body input[type=radio]:checked::after,
      .search_body input[type=checkbox]:checked::after {
        opacity: 1;
      }

      .search_toggleoption {
        width: 240px;
        margin: 0 auto;
        padding: 0.2em 0;
        background: #555;
        border-radius: 8px;
        text-align: center;
        color: #fff;
        font-size: 14px;
      }
  .search_footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: url(/images/search/search_bg.png);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
    .search_footer::before {
      content: "";
      position: absolute;
      top: 0;
      width: 100%;
      height: 15px;
      background: center no-repeat url(/images/search/search_body_arrow.png);
      background-size: 30px 15px;
    }
/*   .search_button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 40px;
    margin-top: 20px;
    background: #fbad00;
    box-shadow: 0 2px 4px #333;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  } */
  .search_button-img {
    width: 90%;
    margin-top: 20px;
    filter: drop-shadow(2px 2px 1px rgba(0,0,0,0.5));
  }

  @media screen and (min-width: 768px) {
    .search_head {
      font-size: 18px;
    }
  .search_body td nobr {
    width: 24%;
  }
  .search_toggleoption,
  .search_button {
    width: 600px;
  }
}
