.common-width {
  width: 80%;
}
.common-width .title_content {
  background-color: #f5f5f5 !important;
  padding: 0 !important;
}
.team {
  width: 100%;
}
.team .team_list .team_list_ul {
  display: grid;
  justify-items: center;
  row-gap: 80px;
  column-gap: 3vw;
  grid-template-columns: repeat(4, 1fr);
}
.team .team_list .team_list_ul .flex_column {
  position: relative;
  width: 320px;
  height: 450px;
}
.team .team_list .team_list_ul .flex_column .team_li {
  position: absolute;
}
.team .team_list .team_list_ul .flex_column .team_li .law_head {
  width: 320px;
  height: 400px;
}
.team .team_list .team_list_ul .flex_column .team_li .law_desc {
  margin-top: 5%;
}
.team .team_list .team_list_ul .flex_column .team_li .law_desc .law_name {
  font-size: 18px;
  font-weight: 500;
}
.team .team_list .team_list_ul .flex_column .team_li .law_desc .law_post {
  font-size: 14px;
  color: #c0c0c0;
}
.team .team_list .team_list_ul .flex_column .team_li_act {
  position: absolute;
  top: 0;
  width: 320px;
  height: 480px;
  background: #3aa69f;
  color: #fff;
  font-size: 16px;
  padding: 20px;
  display: none;
}
.team .team_list .team_list_ul .flex_column .team_li_act h3 {
  font-size: 32px;
  margin-top: 0;
}
.team .team_list .team_list_ul .flex_column .team_li_act .name_line {
  width: 20%;
  height: 3px;
  background: #9dd3cf;
  margin: 15px 0;
}
.team .team_list .team_list_ul .flex_column .team_li_act .name_desc p {
  line-height: 30px;
  font-size: 16px;
}
.team .team_list .team_list_ul .flex_column:hover .team_li_act {
  display: block;
}
.team .page_fenye {
  margin-top: 50px;
}
@media only screen and (max-width: 1440px) {
  .team .team_list .team_list_ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1200px) {
  .team .team_list .team_list_ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .team .team_list .team_list_ul {
    grid-template-columns: 1fr;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	.team .team_list .team_list_ul .flex_column{
		display:inline-block !important;
	}
}