.lawyers-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.lawyers-wrapper a {
  text-decoration: none !important;
}
.lawyers-wrapper .lawyers-item {
  margin-right: 48px;
  margin-bottom: 48px;
  flex: 0 0 100%; /* 改为一行一个 */
  display: flex;
  height: 360px;
  background: #fff url(../images/lawyers-item-bg.png) no-repeat bottom center / cover;
  overflow: hidden;
  position: relative;
  /* 卡片阴影缩小一半 */
  box-shadow: 2px 0 28px rgba(0, 0, 0, 0.15);
  color: inherit !important;
  cursor: pointer;
}
.lawyers-wrapper .lawyers-item:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 12px;
}
.lawyers-wrapper .lawyers-item:hover:after {
  opacity: 1;
  right: 0;
  bottom: 0;
}
.lawyers-wrapper .lawyers-item:after {
  content: '';
  position: absolute;
  right: -99px;
  bottom: -99px;
  transition: all 300ms;
  width: 83px;
  height: 77px;
  background-image: url("../images/lawyers-item-angle.png");
  opacity: 0;
}
.lawyers-wrapper .lawyers-item .lawyers-item-avatar {
  width: 260px;
  overflow: hidden;
}
.lawyers-wrapper .lawyers-item .lawyers-item-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  /* 图片裁切：顶部对齐，超出隐藏，填满容器 */
  object-fit: cover;
  object-position: top center;
}
.lawyers-wrapper .lawyers-item .lawyers-item-info {
  flex: 1;
  padding: 48px 32px 24px 32px;
  position: relative;
}
.lawyers-wrapper .lawyers-item .lawyers-item-info p {
  font-size: 24px;
}
.lawyers-wrapper .lawyers-item .lawyers-item-info span.role {
  font-size: 18px;
  margin-top: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.lawyers-wrapper .lawyers-item .lawyers-item-info span.field {
  font-size: 16px;
  margin-top: 16px;
  height: 140px;
  display: block;
  overflow: hidden;
}

/* 了解更多 - 增加边框样式 */
.lawyers-wrapper .lawyers-item .lawyers-item-more {
  position: relative;
  font-size: 20px;
  padding: 10px 28px;
  border: 1px solid #333;
  border-radius: 4px;
  float: left;
  transition: all 0.3s;
  
}
/*  hover 变色 #926d4d */
.lawyers-wrapper .lawyers-item .lawyers-item-more:hover {
  border-color: #926d4d;
  color: #926d4d;
}
.lawyers-wrapper .lawyers-item .lawyers-item-more:hover:after {
  right: -16px;
  background-image: url(../images/arrow.png);
}
.lawyers-wrapper .lawyers-item .lawyers-item-more:after {
  content: '';
  background: url(../images/arrow.png) right bottom no-repeat;
  background-size: cover;
  width: 40px;
  height: 14px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 300ms;
}