.member_list {
    float: left;
    margin: 10px;
    width: calc(33.33% - 20px);
	height: 200px;
	border: solid 1px #d6d6d6;
	border-radius: 5px;
    overflow: hidden;
	background: #fff;
    -o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.member_list .pic {
    float: left;
	width: 45%;
	height: 200px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.member_list .pic img {
	height: auto;
	width: 100%;
}
.member_list .information {
	color: #333;
    line-height: 1.3em;
    padding: 30px 10px 0px 20px;
    float: left;
    height: 200px;
    width: 55%;
    position: relative;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.member_list .information div:first-child {
	color: #1495be;
	font-weight: bold;
	/*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.member_list .information div:last-child {
	padding-top: 25px;
}
.member_list .information .title {
	font-size: 26px;
    font-weight: bold;
	letter-spacing: .3em;
	padding: 25px 0 10px 0;
}
.member_list .information:after {
    content: " ";
    position: absolute;
	top: 0;
    right: 100%;
    border-style: solid;
    border-width: 0 0 200px 15px;
    border-color: transparent transparent #FFF transparent;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.member_list:hover {
    -webkit-filter: brightness(105%);
	filter: brightness(105%);
	box-shadow: 15px 15px 15px rgba(0, 28, 47, 0.2);
	background: #00408e;
}
.member_list:hover .information:after {
    border-color: transparent transparent #00408e transparent;
}
.member_list:hover .information {
	color:#FFF;
}
.member_list:hover .information div:first-child {
	color: #FFC107;
}


/*member_detail*/
.member_detail_title{
	padding: 20px 0;
    font-size: 16px;
    color: #2196f3;
    line-height: 1.65em;
    margin: 0;
    font-weight: bold;
	text-align: left;
	border-bottom: solid 1px #eee;
	position: relative;
}
.member_detail_title span{
	color:#333;
	padding-left:10px;
	font-weight: normal;
	position: absolute;
    left: 150px;
	width: 100%;
}
.member_detail_title span a{
	color: #333;
    text-decoration: underline;
}
.member_detail_title span a:hover{
	color: #FF9800;
}
.orange_bar{
	text-align:center;
	padding:10px 0;
	font-size:18px;
	color:#f15a24;
	margin-bottom: -25px;
}
.orange_bar span{
	background-color: #FFF;
	padding: 0 20px;
}
.infor{
	padding:30px 0;
	border-top:solid 1px #f15a24;
}

@media (max-width:1200px){
.member_list .pic img {
	height: 200px;
}
}
@media (max-width:991px){
.member_list {
	width: calc(50% - 20px);
}
.member_detail_title span {
    position: relative;
    display: block;
    left: 0;
    padding: 10px 0 0 0;
}
}
@media (max-width:768px){
.member_list {
	width: calc(100% - 20px);
}
}