@charset "utf-8";
/* CSS Document */




@media screen and (max-width: 767px)
{
	.rightColumnDiv
	{
		margin-bottom:60px;
	}
}


.m_contain
{
	font-size:14px;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	
	width:100%;
}
.memcon_list
{
	width: calc(100% / 4 - 20px);
	margin: 10px;
	color:#dfc3c3;
	padding: 8px 16px; /* 左右稍加大，確保空間對稱 */
	font-weight: 600;
	text-align: center; /* 保留置中 */
	letter-spacing: 6px; /* 減少間距，增強視覺集中 */
	border: 2px solid #dfc3c3;
	border-radius: 30px;
	cursor: pointer;
	transition: all .25s ease-in-out;
	box-sizing: border-box; /* 確保寬度計算正確 */
	
	transition: all .25s ease-in-out;
	
}
.memcon_list:hover, .memcon_list.active
{
	color:#fff;
	background-color:#dfc3c3;
}
@media screen and (max-width: 600px)
{
	.memcon_list
	{
		width:calc( 50% - 20px );
	}
}