@charset "utf-8";

/*轮播图*/
#slide {
    margin-top: 169px;
}

#slide .swiper-pagination {
    height: 54px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/swiper-bg.png) no-repeat center bottom;
}

#slide .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 8px;
    opacity: 1;
    background: url(../images/on.png) no-repeat;
}

#slide .swiper-pagination-bullet-active {
    width: 26px;
    height: 26px;
    background: url(../images/on-active.png) no-repeat;
}

/*主体*/
.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    font-size: 16px;
}

.title div {
    display: flex;
    align-items: center;
}

.title h2 {
    color: #000;
    font-size: 26px;
    margin: 0 10px;
}

.title span {
    color: #8C96AD;
    font-family: Georgia;
    font-size: 18px;
    text-transform: uppercase;
}

.title a {
    display: inline-flex;
    height: 27px;
    color: #7F89A1;
    padding-left: 35px;
    background: url(../images/more.png) no-repeat left center;
}

.title a:hover {
    color: var(--varColor);
}

/*学院新闻*/
.news {
    height: 786px;
    overflow: hidden;
    background: url(../images/news-bg.png) no-repeat center center;
}

#news {
    margin: 110px -120px;
    overflow: visible;
}

#news .swiper-slide {
    transition: .5s;
}

#news .swiper-slide-active {
    transform: scale(1.6);
    position: relative;
    margin-top: 30px;
    z-index: 9;
}

#news .swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
}

#news .swiper-slide-active:before {
    display: none;
}

.news-detail {
    color: #999;
    font-size: 10px;
    text-align: center;
    line-height: 1.5em;
    margin: 0 -40%;
    display: none;
}

.news-detail span {
    font-size: 12px;
    color: var(--varColor);
    display: inline-flex;
    margin-top: 10px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--varColor);
}

.news-detail h3 {
    margin: 10px 0;
}

.news-detail h3 a {
    color: #000;
    font-size: 15px;
    font-weight: normal;
}

.news-detail h3 a:hover {
    color: var(--varColor);
}

#news .swiper-slide-active .news-detail {
    display: block;
}

/*通知公告*/
.notice {
    height: 252px;
    background: linear-gradient(29deg, #002FA7 0%, #0643DC 100%);
}

.notice > div {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.notice > div:before,
.notice > div:after {
    display: none;
}

.notice .headline {
    font-size: 16px;
    color: #fff;
    padding-left: 45px;
    background: url(../images/notice.png) no-repeat left 5px;
}

.notice .headline h2 {
    font-size: 26px;
}

.notice .headline p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3.5em;
}

.notice .headline a {
    display: inline-flex;
    align-items: center;
    height: 27px;
    padding-left: 35px;
    color: rgba(255, 255, 255, 0.8);
    background: url(../images/more-white.png) no-repeat left center;
}

.notice .headline a:hover {
    color: orangered;
}

.notice ul {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.notice ul li {
    width: 48%;
    padding-bottom: 15px;
    margin: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.notice ul li span {
    display: inline-flex;
    margin-bottom: 5px;
    font-size: 16px;
    color: rgba(211, 224, 254, 0.6);
}

.notice ul li a {
    color: #fff;
    font-size: 18px;
}

.notice ul li a:hover {
    color: orangered;
}

.wrapper {
    padding: 30px 0 80px;
    box-shadow: 0 4px 0 0 rgba(41, 100, 214, 0.4);
    background: #D2DFFD url(../images/mask.png) no-repeat right center;
}

.wrapper .container > div {
    width: 48%;
}

/*学术动态*/
.academic .box {
    display: flex;
    background: #fff;
}

.academic .box img{
    width: 389px;
    height: 406px;
}

.academic .box .text {
    flex-grow: 1;
    padding: 30px 20px;
}

.academic .box .text h3 {
    padding-left: 40px;
    margin-bottom: 2em;
    background: url(../images/file.png) no-repeat left top;
}

.academic .box .text h3 a {
    color: #000;
    font-size: 20px;
}

.academic .box .text h3 a:hover {
    color: var(--varColor);
}

.academic .box .text p {
    color: #666;
    line-height: 30px;
    margin: 10px 0;
    padding-left: 40px;
    background: url(../images/speaker.png) no-repeat left top;
}

.academic .box .text p:nth-of-type(2) {
    background-image: url(../images/time.png);
}

.academic .box .text p:nth-of-type(3) {
    background-image: url(../images/address.png);
}

.academic .box .text p:nth-of-type(4) {
    text-align: justify;
    background-image: url(../images/desc.png);
}

.academic ul {
    margin-top: 14px;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #E7E3E3;
}

.academic ul li {
    font-size: 18px;
    margin: 15px 0;
}

.academic ul li span {
    float: left;
    color: var(--varColor);
}

.academic ul li p {
    margin-left: 135px;
}

.academic ul li a:hover {
    font-weight: bold;
}

/*媒体聚焦*/
.media ul li {
    position: relative;
    display: flex;
    align-items: center;
    height: 174px;
}

.media ul li:nth-of-type(2) {
    margin: 29px 0;
}

.media ul li .img {
    min-width: 157px;
    width: 157px;
    height: 157px;
    border-radius: 50%;
    overflow: hidden;
}

.media ul li .date {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 78px;
    height: 78px;
    font-size: 17px;
    color: #003AC5;
    background: #FFFFFF;
    border-radius: 50%;
    border: 1px solid #E3E9F8;
    z-index: 2;
}

.media ul li .date h2 {
    font-size: 34px;
    text-indent: 10px;
}

.media ul li .date p {
    text-indent: 2em;
    font-weight: bold;
}

.media ul li .date:before {
    content: '';
    position: absolute;
    top: 58%;
    left: 12px;
    right: 12px;
    height: 1px;
    background: #C6D5F9;
    transform: rotate(-15deg);
}

.media ul li .txt {
    position: relative;
    height: 100%;
    margin-left: 30px;
    padding: 30px;
    background: #fff;
    box-sizing: border-box;
    width: calc(100% - 187px);
}

.media ul li .txt:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border: 13px solid transparent;
    border-right-color: #fff;
    transform: translateX(-100%) translateY(-50%);
}

.media ul li .txt span {
    font-size: 16px;
    color: var(--varColor);
    padding-left: 25px;
    background: url(../images/date.png) no-repeat left center;
}

.media ul li .txt h3 {
    font-size: 19px;
    margin-top: 5px;
}

.media ul li .txt p {
    color: #666;
    line-height: 1.5em;
}

.media ul li .txt i {
    display: inline-flex;
    width: 47px;
    height: 2px;
    margin: 5px 0 10px;
    background: var(--varColor);
}

/*专题专栏*/
.special {
    height: 864px;
    padding: 30px 0 60px;
    margin-bottom: -85px;
    box-sizing: border-box;
    background: url(../images/specail-bg.png) no-repeat center center;
    display: none;
}

.section .container {
    overflow: hidden;
}

#special {
    margin: 120px 0;
    overflow: visible;
}

#special .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
}

#special .swiper-slide-prev, #special .swiper-slide-next {
    transform: scale(1.4);
    position: relative;
    z-index: 2;
}

#special .swiper-slide-active {
    transform: scale(1.8);
    position: relative;
    z-index: 4;
}

.spe-link {
    margin-top: 60px;
}

.spe-link li {
    float: left;
    font-size: 18px;
    margin: 0 4em;
}

.spe-link li p {
    margin-top: 1em;
    text-align: center;
}

.spe-link li a:hover img {
    transform: rotateY(180deg);
}

.spe-link li a:hover p {
    font-weight: bold;
}

.main {
    height: 770px;
    padding: 116px 0;
    box-sizing: border-box;
    background: url(../images/mid-bg.png) no-repeat center top;
}

.main .container > div {
    float: left;
    width: 32%;
}

.main .container > div:nth-of-type(2) {
    margin: 0 2%;
}

.main .title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.main .title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 152px;
    height: 3px;
    background: #fff;
}

.main .title h2 {
    color: #fff;
}

.main .title span {
    color: #E1EBFF;
}

.main .title a {
    color: rgba(255, 255, 255, 0.8);
    background-image: url(../images/more-white.png);
}

.main .title a:hover {
    color: orangered;
}

/*党建思政*/
.party ul li {
    display: flex;
    align-items: center;
    height: 101px;
    margin-bottom: 5px;
    background: url(../images/djsz-bg.png) no-repeat;
    background-size: contain;
}

.party ul li .date {
    min-width: 92px;
    color: #fff;
    text-align: center;
}

.party ul li .date h1 {
    font-size: 30px;
    line-height: 33px;
}

.party ul li .date h3 {
    font-size: 12px;
}

.party ul li p {
    height: 50px;
    line-height: 25px;
    padding: 0 20px;
    border-left: 1px solid #6B92E2;
}

.party ul li a {
    color: #fff;
    font-size: 18px;
}

.party ul li a:hover {
    color: orangered;
    text-decoration: underline;
}

/*继续教育*/
.edu ul li {
    display: flex;
    align-items: center;
    height: 132px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.edu ul li .type {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 100%;
    background: #215BD3;
}

.edu ul li .type:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    border: 15px solid transparent;
    border-left-color: #215BD3;
    transform: translateX(100%) translateY(-50%);
}

.edu ul li .type h2 {
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
}

.edu ul li .text {
    position: relative;
    padding: 0 20px 0 30px;
}

.edu ul li .text:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 20px;
    width: 6px;
    height: 6px;
    background: rgba(255, 249, 249, 0.5);
    border-radius: 50%;
}

.edu ul li .text h3 a {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

.edu ul li .text h3 a:hover {
    color: orangered;
    text-decoration: underline;
}

.edu ul li .text p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/*学生动态*/
.dynamics-img {
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dynamics-img .img {
    display: flex;
    min-width: 194px;
    height: 130px;
    margin-right: 20px;
    overflow: hidden;
}

.dynamics-img .txt a {
    color: #fff;
    font-size: 18px;
}

.dynamics-img .txt a:hover {
    color: orangered;
    text-decoration: underline;
}

.dynamics-img .txt span {
    display: inline-flex;
    margin-top: 3.5em;
    color: #AEC7FB;
    padding-left: 25px;
    background: url(../images/date-white.png) no-repeat left center;
}

.dynamics ul li {
    display: flex;
    align-items: center;
    margin-top: 17px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dynamics ul li .date {
    min-width: 80px;
    color: #fff;
    text-align: right;
    margin-right: 15px;
}

.dynamics ul li .date h2 {
    font-size: 24px;
}

.dynamics ul li .date span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.dynamics ul li p {
    height: 44px;
    line-height: 22px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.dynamics ul li p a {
    color: #fff;
    font-size: 16px;
}

.dynamics ul li p a:hover {
    color: orangered;
    text-decoration: underline;
}

/*外部链接*/
.links {
    padding: 40px 0 80px;
    background: #D6E2FF;
    box-shadow: 0 4px 0 0 rgba(41, 100, 214, 0.4);
}

.links .tab {
    font-size: 20px;
    border-bottom: 1px solid #A8B7DD;
}

.links .tab span {
    display: inline-flex;
    margin-right: 4em;
    padding-bottom: 15px;
}

.links .tab span.on {
    color: var(--varColor);
    font-weight: bold;
    border-bottom: 4px solid var(--varColor);
}

.links ul {
    margin: 20px 0;
    display: none;
}

.links ul li {
    float: left;
    width: 20%;
    margin: 5px 0;
    font-size: 16px;
}

.links ul.on {
    display: block;
}

.links ul li a:hover {
    padding-left: 10px;
}