<style>
body {
    font-family: Arial, sans-serif;
}

.member-box {
    display: flex;
    flex-wrap: wrap; /* 允許換行 */
    justify-content: space-evenly; /* 讓 namecard 之間保持等距 */
	padding-bottom: 20px;
}

.member-top {
    text-align: center; /* 上部分置中 */
    margin-bottom: 20px; /* 調整上下部分間距 */
}

.member-bottom {
    text-align: left; /* 下部分置左 */
	padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
}

.member-info {
    display: none;
}

.namecard {
	display: flex;
	flex-direction: column; /* 縱向排列 */
    justify-content: center; /* 垂直置中 */
    align-items: center; /* 水平置中 */
	width: 190px; /* 調整 namecard 寬度以便顯示多個 */
    padding: 20px;
    margin-left: 10px;
    margin-top: 10px;
    letter-spacing: 1px;
    color: #666;
	//background-color: #D3D3D3;
    transition-duration: 1s;
    border-radius: 50px 15px;
	border: 1px solid #ccc;
    overflow: hidden;
	cursor: pointer;
}

.namecard img.head-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.popout {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popout-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 80%;
    max-width: 450px;
    position: relative;
}

.popout-content img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}
</style>