/* 隱私權聲明 */
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-dismissible {
    padding-right: 1.25rem;
}
.alert-warning {
    /* color: #321300;
    background: #f4eee0; */
    color: #fff;
    background: #ed6d00;
    box-shadow: 2px 2px 5px rgb(50,19,0,.45);
    position: fixed;
    opacity: 1;
    z-index: 90;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%;
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.btn-close {
    min-width: 95px;
    text-align: center;
    background: #9e4900;
    color: #fff;
    max-height: 38px;
    padding: 7px;
    border-radius: 6px;
    border: 1px solid #9e4900;
    transition: .2s;
}
.btn-close:hover {
    border-radius: 0;
}
.alert-warning, .alert {
    animation: animate 1s ease;
    overflow: hidden;
}
@keyframes animate{
   from {
       opacity: 0;
       margin-bottom: -2rem;
   }
   to {
       opacity: 1;
       margin-bottom: 1rem;
   }
}
@media (max-width: 767px) {
    .alert-warning {
        color: #fff;
        background: #ed6d00;
        box-shadow: 2px 2px 5px rgb(50,19,0,.45);
        position: fixed;
        opacity: 1;
        z-index: 90;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 96%;
        display: flex;
        gap: 10px 0;
        align-items: flex-start;
        flex-direction: column;
        padding: 0.75rem 1.25rem;
    }
}
@media (max-width: 575px) {
    .alert-warning {
        color: #fff;
        background: #ed6d00;
        box-shadow: 2px 2px 5px rgb(50,19,0,.45);
        position: fixed;
        opacity: 1;
        z-index: 90;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100%;
        display: flex;
        gap: 10px 0;
        align-items: flex-start;
        flex-direction: column;
        padding: 0.75rem 0.75rem;
        line-height: 130%;
    }
}



/* 專任教師 */
.tabs {
    font-size: 1rem;
    margin-bottom: 30px;
}
.btn-border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    bottom: 0;
    background-color: #72be43;
    transform: translateX(-600px);
    transition: border ease .5s, color ease .5s ,-webkit-transform ease .3s;
    transition: transform ease .3s ,border ease .5s, color ease .5s;
    transition: transform ease .3s ,border ease .5s, color ease .5s ,-webkit-transform ease .3s;
}
.faculty-box figcaption {
    width: 100%;
}
.faculty-box figcaption .info-box ul li .info-title {
    display: inline-block;
    margin-right: 1rem;
    color: #000;
    font-weight: bold;
    white-space: nowrap;
    width: 100%;
    max-width: 9rem;
}
.facu-staff .faculty-box figcaption .info-box ul li .info-title {
    width: 100%;
    max-width: 5rem;
}
@media (max-width: 767px) {
    .tabs {
        margin-bottom: 20px;
    }
    .btn-border {
        width: 50%;
    }
}



/*列印設定*/
@media print {
	header {
		display:none;
	}
	.wrapper-swiper {
		display:none;
	}
	.bnr {
		display:none;
	}
	.section-breadcrumb {
		display:none;
	}
	footer {
		display:none;
	}
}
