@charset "UTF-8";

.tab {
    display: flex;
    align-items: center;
    padding: 0.15rem 0 0.08rem;
    margin-bottom: 0.07rem;
    overflow: auto;
}

.tab ul {
    display: flex;
    align-items: center;
}

.tab ul li {
    position: relative;
    margin-right: 0.2rem;
    min-width: max-content;
}

.tab ul li:last-of-type {
    margin-right: 0;
}

.tab ul li a {
    color: #666;
    font-size: 0.16rem;
}

.tab ul li.on a {
    color: var(--varColor);
    font-size: 0.16rem;
    font-weight: bold;
}

.tab ul li.on::after {
    content: '';
    position: absolute;
    bottom: -0.08rem;
    left: 50%;
    width: 0.18rem;
    height: 0.03rem;
    background: var(--focusColor);
    border-radius: 16px;
    transform: translateX(-50%);
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

/*学院新闻*/
.exchange ul li {
    display: flex;
    padding-bottom: 0.15rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid #EDEDED;
}

.exchange ul li .txt {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exchange ul li .txt span {
    font-size: 0.12rem;
    color: #A8A8A8;
}

.exchange ul li .img {
    width: 1.27rem;
    min-width: 1.27rem;
    height: 0.85rem;
    margin-left: 0.15rem;
    border-radius: 3px;
    overflow: hidden;
}

.exchange ul li .img:has(img[src='']) {
    display: none;
}

/*公告通知*/
.box ul li {
    padding-bottom: 0.15rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid #EDEDED;
}

.box ul li span {
    font-size: 0.12rem;
    color: var(--varColor);
}

.box ul li p {
    font-size: 0.15rem;
    text-align: justify;
    margin-top: 0.05rem;
}

/*通用列表*/
.list li div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.2rem 0;
    font-size: 0.12rem;
    border-bottom: 1px solid var(--focusColor);
}
.list li div span{
    color: #A8A8A8;
}
.list li div a{
    display: inline-block;
    padding: 0.04rem 0.16rem;
    color: #fff;
    background: var(--focusColor);
}

/*详情页*/
.bg{
    background: #EDEDED;
}
.detail{
    margin-top: 0.2rem;
}
.caption h3{
    font-size: 0.22rem;
    font-weight: normal;
}
.caption p{
    color: #666;
    margin: 0.1rem 0;
}
.content{
    font-size: 0.15rem;
    line-height: 1.75em;
}
.content p{
    margin: 0.1rem 0;
    text-indent: 2em;
}
.content p:has(img){
    text-indent: 0;
}

/*师资队伍*/
.team{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.15rem;
}
.team li{
    width: 48%;
    margin-bottom: 0.15rem;
}
.team li a{
    display: block;
    padding: 0.1rem;
    background: #EDEDED;
}
.team li img{
    width: 100%;
    height: 30vw;
}
.team li p{
    margin-top: 0.1rem;
    font-size: 0.16rem;
    font-weight: bold;
    text-align: center;
}
