	.teacherListTit {
	    font-size: clamp(1.125rem, 2.6667vw, 1.25rem);
	    /* 18 20 */
	    color: #84bf24;
	    line-height: 30px;
	    margin: 30px 0px 20px;
	}

	.teacherListTit i {
	    font-size: clamp(1.125rem, 2.6667vw, 1.25rem);
	    /* 18 20 */
	    color: #84bf24;
	    line-height: 30px;
	    vertical-align: -7%;
	}

	.teacher_list_area {
	    display: flex;
	    flex-wrap: wrap;
	    flex-direction: row;
	    margin: 0 -15px -30px;
	}

	.teacher_list {
	    padding: 0 15px 30px;
	    box-sizing: border-box;
	    width: 50%;
	}

	.teacherListBorder {
	    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.2);
	    border-radius: 16px;
	    text-decoration: none;
	    display: block;
	    padding: 15px;
	    height: calc(100% - 30px);
	    overflow: hidden;
        position: relative;
	}

    .teacherListBorder::after{
        content: "";
        background-image: url(../../../images/department_logo.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 70%;
        display: block;

        /* 尺寸設定--------------------------- */
        aspect-ratio: 30 / 30;
        width: clamp(7.8125rem, 33.3333vw, 15.625rem ); /* 125 250 */
        height: auto;

        /* 效果設定--------------------------- */
        opacity: 0.2;
        /*mix-blend-mode: multiply;*/ /* 色彩增值 */

        /* 定位設定--------------------------- */
        position: absolute;
        left: 0;
        bottom: 0;
        transform: translate(170%, 15%);
    }

	.teacherListBorder:hover .teacher_list_in .tL_img img {
	    transform: scale(1.1);
	    /* 放大 1.1 倍 */
	    transition: transform 0.3s ease;
	    /* 加上動畫過渡 */
	}

	.teacher_list_in {
	    display: flex;
	    flex-wrap: wrap;
	    flex-direction: row;
	    align-items: center;
	}

	.tL_img {
	    width: 25%;
	    box-sizing: border-box;
	}

	.tL_img .img_content {
	    display: block;
	    position: relative;
	    padding-top: 100%;
	    border-radius: 50%;
	    overflow: hidden;
	}

	.tL_img .img_content img {
	    width: 100%;
	    height: auto;
	    transition: all 0.3s ease-out;
	    position: absolute;
	    top: 0;
	    left: 0;
	    bottom: 0;
	    right: 0;
	    float: none;
	    width: 100% !important;
	    height: 100% !important;
	    object-fit: cover;
	    transition: all 0.3s ease-out;

	}

	.tL_img a:hover img {
	    opacity: 0.5;
	    transform: scale(1.2);
	    transition: all 0.3s ease-out;
	}


	/*右半邊--------------------------------------*/

	.tL_right {
	    width: 75%;
	    padding-left: 20px;
	    box-sizing: border-box;
	    line-height: 22px;
	    display: flex;
	    flex-direction: column;
	    gap: 5px
	}

	/*標題*/
	.tLR_tit {
	    font-size: 14px;
	    color: #bf5614;
	}

	.tLR_tit_right {}

	.tLR_tit span {
	    color: #2e2e2e;
	    word-wrap: break-word;
	}

	.tLR_tit span a {
	    color: #2e2e2e;
	    text-decoration: none;
	    display: inline-block;
	}

	.tLR_tit span a:hover {
	    color: #5f4f98;
	}


	@media (max-width: 1280px) {

	    .teacher_list_area {
	        margin: 0 -10px -20px;
	    }

	    .teacher_list {
	        padding: 0 10px 20px;
	        /* width: 50%; */
	    }

	    .tL_img {
	        width: 35%;
	    }

	    /*右半邊*/
	    .tL_right {
	        width: 65%;
	    }

	}

	@media (max-width:990px) {

	    .teacher_list {
	        width: 100%;
	    }

	}

	@media (max-width: 510px) {
	    .teacher_list_area {
	        display: block;
	        flex-wrap: unset;
	        flex-direction: unset;
	        justify-content: unset;
	    }

	    .teacherListBorder {
	        height: auto;
	    }

	    .teacher_list_in {
	        display: block;
	        flex-wrap: unset;
	        flex-direction: unset;
	        align-items: unset;
	    }

	    .tL_img {
	        width: 100%;
	    }

	    /*右半邊---------------------------------*/
	    .tL_right {
	        width: 100%;
	        padding: 20px 0px 0px;
	    }

	    .tLR_tit {
	        overflow: unset;
	        text-overflow: unset;
	        white-space: unset;
	    }

	}


