@charset "UTF-8";
/*
 * @Description: 企业列表
 * @Author: hxh
 * @Date: 2025-04-24 15:50:59
 */
.module {
  min-height: 500px;
}
.module-bd {
  height: 100%;
}

.list {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.list .list-item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-calc(25% - 15px);
  width: -moz-calc(25% - 15px);
  width: calc(25% - 15px);
  margin-right: 20px;
  height: 184px;
  background: #f2f2f2;
  font-size: 15px;
  color: #333333;
}
.list .list-item img {
  width: 275px;
  height: 148px;
}
.list .list-item .item-name {
  height: 36px;
  line-height: 36px;
  padding: 0 15px;
  text-align: center;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}
.list .list-item:nth-child(n+5) {
  margin-top: 20px;
}
.list .list-item:nth-child(4n) {
  margin-right: 0;
}
.list .list-item:hover {
  background: #2485e7;
  color: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
}