
/* 匯入共用師資css */
@import url(../style_people/style_team_list.css);

/* =========================================================================== */
/* Alumni Sharing CSS */
/* =========================================================================== */

		/* 學院人員列表資訊 */
		.peopleList ul{
			display: flex;
			flex-direction: column;
			justify-content: unset;
			text-align: left;
		}

			.peopleList li{
                display: flex;
                align-items: self-start;
                font-size: 16px;
                /* line-height: 18px; */
                line-height: 1;
                gap: clamp(0.1613rem, 0.2604vw, 0.3125rem); /* 2.58px , 0.2604vw , 5.00px */
                /* padding: 5px 0;					
				font-size: 14px;
				line-height: 16px;
				color: #696969;
				word-wrap: break-word; */
   }
			.peopleList li:first-of-type{	
				/* color: #2b4075;
				font-size: 16px;
    			line-height: 18px; */
			}	
            
			.peopleList li:nth-child(2){	
				color: #696969;
				/* font-size: 16px;
    			line-height: 18px; */
			}	
            .peopleList li i{
                color: inherit;
                font-size:18px;
                line-height: inherit;
                /* font-size: 16px;
    			line-height: 18px; */
                transform: translateY(-2px);
            }	
            
			

		.peopleListImg{	            
			overflow: hidden;
			position: relative;
			/* padding-top: 100%; */
			display: block;
            padding: 0;
		} 
		.peopleListImg a ,
		.peopleListImg span{
            padding: 0;	
			overflow: hidden;
			/* background-color: #000; */
			position: relative;
			padding-top: 100%;
			display: block;	
		} 
		.peopleListImg img{
			border-radius: clamp(0.4839rem, 0.7813vw, 0.9375rem); /* 7.74px , 0.7813vw , 15.00px */
		}


	

@media (max-width: 425px){

    .peopleList li{	
        font-size: 14px;
    }

}















/*內頁上方選單--------------------------------------------------------------------*/	
	
		
	/* 上方選單 */
	ul.top_bar{
		padding: 0;
		margin: 0;
		list-style-type: none;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		/* margin: 0 -10px -20px; */
		padding-bottom: clamp(0.9678rem, 1.5625vw, 1.8750rem); /* 15.48px , 1.5625vw , 30.00px */
		gap: clamp(0.6452rem, 1.0417vw, 1.2500rem); /* 10.32px , 1.0417vw , 20.00px */

		/* max-width: 80%; */
		/* margin: 0 auto; */
	}
		ul.top_bar li{
			padding: 0;
			margin: 0;
			list-style-type: none;
			display: block;
			box-sizing: border-box;
			/* background-color: #000; */
			/* padding: 0 10px 20px; */

			max-width: 25%;
    		word-break: break-word;

			padding: 0;
		}
			ul.top_bar li a{
				display: block;
				text-decoration: none;
				font-size: 14px;
				line-height: 1.2;
				color: #fff;
				/* background-color: #344292; */
				background-color: #939393;
				padding: 10px;
				border-radius: 3px;
				transition: 0.3s ease all;
			}
			/* 當前模式 */
			ul.top_bar li.active a ,
			ul.top_bar li a:hover{
				transition: 0.3s ease all;
				background-color: var(--primary_color);
			}
				



