/*
 * @Author: zsy 
 * @Date: 2023-04-19 09:41:40 
 * @Last Modified by: zsy
 * @Last Modified time: 2023-04-20 11:03:38
 */
body {
  background-color: #F0F5FC;
}
.sub-header {
  background-image: url("../images/supplier_list/banner_bg.png");
}
.sub-main {
  margin: 30px 0 40px;
  background-color: #fff;
}
.sub-search {
  margin-top: 12px;
}
.sub-search-input {
  border: 1px solid #9AB4D2;
}

.supplier-hd {
  height: 54px;
  padding: 0 24px;
  border-bottom: 1px solid #D4DAE2;
}
.supplier-tt {
  line-height: 53px;
  padding-left: 40px;
  font-size: 20px;
  font-weight: 800;
  color: #00428E;
  background: url("../images/supplier_list/title_ico.png") no-repeat left center;
}
.supplier-bd {
  padding: 0 24px 40px;
}
.supplier-list {
  margin-left: -24px;
}
.supplier-item {
  width: calc(33.333% - 24px);
  margin: 24px 0 0 24px;
}
.supplier-item > a {
  position: relative;
  display: block;
  height: 110px;
  padding: 14px 15px 0 25px;
  box-sizing: border-box;
  background-color: #EFF2F6;
}
.supplier-item > a:before {
  position: absolute;
  left: 0;
  top: 19px;
  content: "";
  width: 2px;
  height: 16px;
  background-color: #00428E;
}
.supplier-item:hover > a {
  background-color: #00428E;
}
.supplier-item:hover > a:before {
  background-color: rgba(255, 255, 255, 0.5);
}
.supplier-item:hover .name,
.supplier-item:hover .code {
  color: #fff;
}
.supplier-item .name {
  max-height: 48px;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* ! autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
  height: 48px;
  line-height: 24px;
  font-size: 16px;
  color: #333;
}
.supplier-item .code {
  height: 21px;
  line-height: 21px;
  margin-top: 12px;
  color: #999;
}