@charset "UTF-8";

/*主体*/
#slide {
    width: 100%;
}


.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.15rem 0;
}

.title img {
    height: 0.24rem;
    margin-right: 0.05rem;
}

.title h2 {
    display: inline-flex;
    align-items: center;
    font-size: 0.16rem;
}

.title a {
    color: #666;
}

/*学院新闻*/
#news .swiper-slide {
    border-radius: 3px;
    overflow: hidden;
}

#news .swiper-slide img {
    height: 2.6rem;
    transition: 2.5s;
    transform: scale(1.2);
}

#news .swiper-slide-active img {
    transform: scale(1);
}

#news .txt {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 0.12rem;
    color: #9C9C9C;
    padding: 0.15rem 0.8rem 0.1rem 0.15rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

#news .txt p {
    font-size: 0.15rem;
    line-height: 1.3em;
    margin-bottom: 0.05rem;
}

#news .txt p a {
    color: #fff;
}

#news .swiper-pagination {
    left: auto;
    right: 5px;
    bottom: 0.1rem;
    width: auto;
}

#news .swiper-pagination .swiper-pagination-bullet {
    margin: 0 3px;
    background: #656565;
    opacity: 1;
}

#news .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

/*学术交流*/
.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;
}

/*教学工作、党建工作、培训工作*/
.tab {
    display: flex;
    align-items: center;
    margin-bottom: 0.15rem;
}

.tab img {
    height: 0.24rem;
    margin-right: 0.1rem;
}

.tab ul {
    display: flex;
    align-items: center;
}

.tab ul li {
    position: relative;
    color: #666;
    font-size: 0.16rem;
    margin-right: 0.2rem;
}

.tab ul li.on {
    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%);
}

.box {
    display: flex;
    width: 300%;
    transition: 1s;
}

.box div {
    width: calc(1 / 3 * 100%);
}

.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;
}

.box .more{
    color: #fff;
    text-align: center;
    display: block;
    width: 8em;
    line-height: 2.8em;
    margin: 0 auto;
    background: var(--focusColor);
    border-radius: 1.4em;
}