/* 簡介 */
.member_list {
	padding: 0;
    padding-bottom: 30px;
}
/*歷屆總監*/
.member_list.history {
	border-bottom: solid 1px rgb(0 64 142 / 30%);
    padding: 30px 0;
}

/********** 照片區 **********/
.member_list .pic {
	overflow: hidden;
    text-align: center;
    height: 266px;
    line-height: 266px;
}
.member_list .pic span {
	position: relative;
	display: inline-block;
}
.member_list .pic span img {
	max-height: 266px;
}
/* 白三角 */
.member_list .pic span:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 0 0 266px 71.27px;
    border-color: transparent transparent #FFF transparent;
}
/*年度主題*/
.member_list .pic.no-after span:after {
    content: none;
}

/********** 文字區 **********/
.member_list .information {
	font-size: 21px;
    line-height: 1.7em;
	position: relative;
	z-index: 1;
}
.member_list .information .title {
	color: #003399;
    font-weight: bold;
    font-size: 24px;
    padding-bottom: 5px;
}
.member_list .information .name {
	font-size: 28px;
    font-weight: bold;
}
/* 表格化 */
.member_list .information .text_line {
	position: relative;
    border-bottom: solid 1px #ddd;
	height: 45px;
    line-height: 45px;
}
.member_list .information .text_line span:nth-of-type(1) {
	border-bottom: solid 2px #00408e;
    display: inline-block;
    width: 100px;
    font-weight: bold;
	height: 45px;
    line-height: 45px;
}
.member_list .information .text_line span:nth-of-type(2) {
	position: absolute;
    top: 0;
    left: 120px;
}
/* 平行四邊形 */
.member_list .information::before {
	content: '';
    position: absolute;
    top: 0;
    left: -10px;
    background: #fef7e5;
    transform: skew(-15deg);
    width: 55px;
    height: 105px;
    z-index: -1;
}
@media (max-width:991px){
	.member_list .information {
		font-size: 18px;
	}
	.member_list .information .title {
		font-size: 21px;
	}
	.member_list .information .name {
		font-size: 25px;
	}
	.member_list .information .text_line span:nth-of-type(1) {
		width: 80px;
	}
	.member_list .information .text_line span:nth-of-type(2) {
		left: 100px;
	}
}