.company_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 751px) {
  .company_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 750px) {
  .company_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company_list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  border: 2px solid #1C7E67;
  border-radius: 8px;
}
@media screen and (min-width: 751px) {
  .company_list__item {
    width: calc((100% - 16px) / 2);
  }
}
@media screen and (max-width: 750px) {
  .company_list__item {
    padding: 16px 12px;
  }
}
.company_list__info {
  margin-bottom: auto;
}
.company_list__title, .company_list__title a {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  color: #0E5645 !important;
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  .company_list__title, .company_list__title a {
    font-size: 18px;
    line-height: 26px;
  }
}
.company_list__description {
  margin-top: 4px;
  font-weight: 500;
  font-size: 16px;
}
.company_list .company_list_btnlist {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 751px) {
  .company_list .company_list_btnlist .company_btn__item {
    width: calc((100% - 12px) / 2);
    max-width: 180px;
  }
}
@media screen and (max-width: 750px) {
  .company_list .company_list_btnlist .company_btn__item {
    gap: 8px;
    width: calc((100% - 8px) / 2);
  }
}

.company_btn__visit,
.company_btn__search {
  position: relative;
  padding: 8px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1c7e67;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 750px) {
  .company_btn__visit,
  .company_btn__search {
    padding: 8px 12px;
  }
}
.company_btn__visit:after,
.company_btn__search:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media screen and (max-width: 750px) {
  .company_btn__visit:after,
  .company_btn__search:after {
    right: 12px;
  }
}

.company_btn__search:before {
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  content: "";
  background: url(/new_ui/site/common/components/company_list/imgs/icon-search-white.svg) no-repeat center/contain;
}

.company_btn__visit:before {
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 24px;
  content: "";
  background: url(/new_ui/site/common/components/company_list/imgs/icon-visit-white.svg) no-repeat center/contain;
}