@charset "UTF-8";
/*CSS样式重写*/
body,p,h1,h2,h3,h4,h5,h6,ul,li,dl,dt,dd,pre{
    margin:0;
    padding:0;
    border:none;
    list-style:none;
    box-sizing: border-box;
}
body{
    font-family: "microsoft yahei","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    min-width: 1200px;
}
a{
    color: #333;
    text-decoration:none;
    transition: .3s;
}
a:hover{
    color: #8F0C0C;
    text-decoration:underline;
}
button{
    outline:0;
    border: none;
}
img{
    vertical-align: top;
    border: 0;
    transition: .3s;
}

/*通用样式*/
.lf{
    float: left;
}
.rt{
    float: right;
}
.container{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}

/*头部*/
.header{
    position: fixed;
    top: 0;
    width: 100%;
    /*height: 123px;*/
  	height:200px;
    z-index: 999;
    background: url(../images/header.jpg) no-repeat;
    animation: slideInDown 1s;
}

.header .logo{
    float: left;
    margin-top: 30px;
}

.pos-relative{
    position: relative;
}
.header .home{
    position: absolute;
    top: 5px;
    right: 0;
    color: #fff;
    padding-left: 25px;
}
.header .home:before{
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 15px;
    background: url(../images/home.png) no-repeat;
}

/*导航栏*/
.nav{
    float: right;
    margin-top: 30px;
    width: 650px;
    height: 70px;
    line-height: 35px;
	    padding-top: 15px;
		    display: flex;
		    justify-content: flex-end;
}
.menu>li{
    float: left;
    width: 130px;
    position: relative;
}
.menu>li>a{
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 16px;
}
.dropdown-menu{
	display:none;
  z-index:9999;
}
.dropdown-menu li a {
	color:#fff;
  text-decoration: none;
}
.menu>li>a:hover{
    text-decoration: none;
}
.menu>li>a:before{
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f1f1f1;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
}
.menu>li>a:hover:before{
    left: 0;
    width: 100%;
}

/*第一届教学节*/
.special{
    width: 100%;
    height: 100%;
    text-align: center;
}
.special img{
    margin-top: 240px;
    animation: zoomIn 1s;
}

.main{
    min-height: 500px;
}

.banner{
    width: 1200px;
    margin: 15px auto;
}
.banner img{
    width: 100%;
}

/*标题*/
.title{
    width: 460px;
    margin: 260px auto 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.title a{
    float: left;
    width: 230px;
    height: 70px;
    line-height: 70px;
    color: #fff;
    font-size: 28px;
    text-align: center;
    background: #B18057;
    text-decoration: none;
}
.title a.on{
    background: #C71414;
}
.title a:first-child{
    border-top-left-radius: 40px;
}
.title a:last-child{
    border-bottom-right-radius: 40px;
}

.box{
    position: relative;
    margin-top: 40px;
    width: 2400px;
    transition: .3s;
}
.box:after{
    content: '';
    display: block;
    clear: both;
}

/*轮播图*/
.albumBox{
    float: left;
    width: 600px;
    height: 400px;
    padding: 10px;
    background: #fff;
    overflow:hidden;
    position:relative;
}
.albumBox .hd{
    position:absolute;
    right: 10px;
    bottom: 25px;
    width: 110px;
    z-index:1;
}
.albumBox .hd ul{
    float: right;
    margin-right: 10px;
}
.albumBox .hd ul li{
    margin:0 5px;
    width: 12px;
    height: 12px;
    background:#fff;
    cursor:pointer;
    display: inline-block;
    border-radius: 50%;
}
.albumBox .hd ul li.on{
    background: #B8192B;
}
.albumBox .bd li{
    zoom:1;
    vertical-align:middle;
    position: relative;
    width: 600px;
    height: 400px;
}
.albumBox .bd img{
    display:inline-block;
    width: 600px;
    height: 400px;
}
.albumBox .bd li>a{
    display: block;
    position: relative;
}
.albumBox .bd li p{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    text-align: left;
    padding: 0 120px 0 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    background: rgba(0,0,0,.5);
}
.albumBox .bd li p a{
    color: #fff;
}
.albumBox .bd li p a:hover{
    color: #8F0C0C;
    text-decoration: none;
}
.albumBox .prev,
.albumBox .next{
    position:absolute;
    left: 10px;
    top:50%;
    margin-top:-80px;
    display:block;
    width: 45px;
    height: 100px;
    background: #000 url(../images/arrow-left.png) no-repeat center center;
    filter:alpha(opacity=50);
    opacity:0.5;
}
.albumBox .next{
    left:auto;
    right: 10px;
    background-image: url(../images/arrow-right.png);
}
.albumBox .prev:hover,
.albumBox .next:hover{
    filter:alpha(opacity=70);
    opacity:0.7;
}

.common-list{
    float: right;
    width: 565px;
    margin: -20px 0;
}
.common-list li{
    height: 120px;
    border-bottom: 1px solid #FBF6EA;
    margin: 20px 0;
}
.common-list li:last-child{
    border: none;
}
.common-list .date{
    float: left;
    width: 100px;
    height: 100px;
    color: #B07F56;
    background: #fff;
    text-align: center;
}
.common-list li:hover .date{
    color: #fff;
    background: #C71414;
}
.common-list .date p{
    font-size: 38px;
    padding-top: 10px;
}
.common-list .date span{
    font-size: 18px;
}
.common-info{
    margin-left: 120px;
}
.common-info h2{
    font-weight: normal;
    padding-top: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.common-info h2 a{
    color: #875123;
    font-size: 19px;
}
.common-info h2 a:hover{
    color: #8F0C0C;
}
.common-info p{
    height: 50px;
    line-height: 25px;
    overflow: hidden;
    color: #B08057;
    margin: 10px 0;
}
.box .more{
    position: relative;
    float: right;
    margin-top: 20px;
    width: 115px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #B5875E;
    font-size: 16px;
    border: 1px solid #CFA972;
    border-radius: 25px;
    z-index: 9;
    transition: .3s;
}
.box .more:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8F0C0C;
    border-radius: 25px;
    z-index: -9;
    transform: scaleX(0);
    transition: .3s;
}
.box .more:hover{
    color: #fff;
}
.box .more:hover:before{
    transform: scaleX(1);
}

/*第二屏：工作动态、学院活动*/
.dynamic,.activity{
    float: left;
    width: 1200px;
}

/*第三屏：活动视频*/
.video-title{
    width: 270px;
    text-align: center;
}
.video-title a{
    width: 270px;
    background: #D93A3B;
}
.video ul{
    margin: 80px -20px;
    overflow: hidden;
}
.video ul li{
    float: left;
    width: 580px;
    margin: 0 20px;
}
.video ul li div{
    position: relative;
    width: 580px;
    height: 330px;
    border: 7px solid #fff;
    border-radius: 5px;
    box-sizing:border-box;
    overflow: hidden;
}
.video ul li img{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.video ul li div:hover img{
    transform: scale(1.1);
}
.video ul li p{
    margin-top: 15px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.video ul li p a{
    /*color: #fff;*/
    font-size: 18px;
}
.video ul li .play{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    margin: -37.5px 0 0 -37.5px;
    background: url(../images/play.png) no-repeat;
}
.copyright{
  	width: 1200px;
  	margin-top: 100px;
  	line-height: 25px;
  	text-align: center;
	    color: #fff;
}

/*第四屏：成果展示、讲座论坛*/
.mien,.focus{
    float: left;
    width: 1200px;
}


/*媒体查询*/
@media screen and (max-width: 1600px) {
    .title{
        margin-top: 180px;
    }

}

@media screen and (max-width: 1366px) {
    .title{
        margin-top: 150px;
    }

}

/*尾部*/
.footer{
    height: 140px;
    border-top: 5px solid #D6D6D6;
}
.footer p{
    height: 60px;
    line-height: 30px;
    margin-top: 40px;
    text-align: center;
}

/*幻灯片*/
.slider{
    height: 166px;
}
.slideBox{
    width:100%;
    margin: 0 auto;
    overflow:hidden;
    position:relative;
    text-align: center;
}
.slideBox .hd{
    position:absolute;
    width: 100%;
    bottom:5px;
    z-index:1;
}
.slideBox .hd ul{
    width: 100%;
    text-align: center;
}
.slideBox .hd ul li{
    margin:0 5px;
    width:12px;
    height:12px;
    background:#eee;
    cursor:pointer;
    display: inline-block;
    border-radius: 50%;
}
.slideBox .hd ul li.on{
    background:#E50112;
}
.slideBox .bd li{
    zoom:1;
    vertical-align:middle;
    position: relative;
}
.slideBox .bd img{
    display:inline-block;
}


/*左侧导航*/
.aside{
    float: left;
    width: 265px;
    min-height: 600px;
    text-align: center;
}
.aside p{
    height: 58px;
    line-height: 58px;
    color: #fff;
    font-size: 24px;
    background: #8F0C0C;
}

.aside-nav{
    min-height: 300px;
    background: #F6F6F6;
}
.aside-nav li{
    height: 55px;
    position: relative;
    border-bottom: 1px solid #CECECE;
    background: #F0F0F0;
}
.aside-nav li a{
    display: block;
    line-height: 55px;
    font-size: 18px;
    text-decoration: none;
}
.aside-nav li.on a{
    position: relative;
    color: #8F0C0C;
    background: #ddd;
}
.aside-nav li.on a:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: #8F0C0C;
}

/*右侧列表*/
.column{
    min-height: 600px;
    margin-left: 300px;
}
.bread{
    height: 57px;
    line-height: 50px;
    border-bottom: 1px solid #BAB9B9;
}
.bread h2{
    font-size: 24px;
    font-weight: normal;
    position: relative;
}

/*通用列表*/
.news-list{
    margin: 15px 0;
}
.news-list li{
    height: 45px;
    line-height: 45px;
}
.news-list li:hover{
    background: #F0F0F0;
}
.news-list li p{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 100px;
}
.news-list li a{
    position: relative;
    padding-left: 23px;
    font-size: 16px;
    text-decoration: none;
}
.news-list li a:before{
    content: '';
    position: absolute;
    top: 7px;
    left: 5px;
    width: 8px;
    height: 8px;
    background: #DCDCDC;
    border-radius: 50%;
}
.news-list li a:hover:before{
    background: #8F0C0C;
}
.news-list li span{
    float: right;
    color: #9A9A9A;
    margin-right: 5px;
}

/*知名校友*/
.img-list{
    margin: 30px 0;
    overflow: hidden;
}
.img-list li{
    float: left;
    width: 50%;
    margin: 10px 0;
    text-align: center;
}
.img-list li>a{
    display: inline-block;
    width: 288px;
    height: 192px;
    border: 5px solid #fefefe;
    overflow: hidden;
    box-shadow: 1px 3px 3px #D4D3D3;
}
.img-list li>a img{
    display: inline-block;
    width: 288px;
    height: 192px;
    transition: .3s;
}
.img-list li>a:hover img{
    transform: scale(1.1);
}
.img-list li p{
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
}
.img-list li p:hover a{
    display: inline-block;
    width: 298px;
    text-decoration: none;
    background: #F4E0B2;
}


/*媒体聚焦*/
.media-list{
    margin: 35px 0;
}
.media-list li{
    height: 154px;
    margin-bottom: 30px;
}
.media-list li .img{
    float: left;
    width: 220px;
    height: 148px;
    border: 3px solid transparent;
    overflow: hidden;
}
.media-list li img{
    display: inline-block;
    width: 220px;
    height: 148px;
    transition: .3s;
}
.media-list li .img:hover{
    border: 3px solid #fff;
    outline: 2px solid #D4D3D3;
}
.media-list li .img:hover img{
    transform: scale(1.1);
}
.media-info{
    height: 154px;
    padding: 0 10px 0 245px;
}
.media-info:hover{
    background: #FBF6EA;
}
.media-info h3{
    padding-top: 10px;
    font-size: 18px;
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.media-info p{
    margin: 15px 0;
    height: 75px;
    line-height: 25px;
    overflow: hidden;
}


/*详情页*/
.detail{
    margin: 20px 0;
}
.caption{
    text-align: center;
}
.caption h3{
    line-height: 40px;
    font-size: 22px;
    font-weight: 500;
    margin: 30px 0 10px;
}
.caption p span{
    color: #929292;
    font-size: 14px;
    margin: 0 5px;
}
.content{
    padding-top: 30px;
    min-height: 300px;
}

/*简介页*/
.profile{
    padding: 25px 0;
    min-height: 300px;
}


/*分页*/
.pagebox_jump {
    display:none;
}
.pagebox {
    font-family: "宋体",sans-serif;
    font-size: 12px;
    overflow: hidden;
    text-align: center;
}
.pagebox span {
    background: #fff none repeat scroll 0 0;
    display: inline-block;
    margin-right: 2px;
    overflow: hidden;
    text-align: center;
}
.pagebox span a {
    display: block;
    overflow: hidden;
}
.pagebox span.pagebox_pre_nolink {
    border: 1px solid #ddd;
    color: #999;
    cursor: default;
    height: 21px;
    line-height: 21px;
    text-align: center;
    padding: 0 8px;
}
.pagebox span.pagebox_pre {
    color: #3568b9;
    height: 23px;
}
.pagebox span.pagebox_pre a, .pagebox span.pagebox_pre a:visited, .pagebox span.pagebox_next a, .pagebox span.pagebox_next a:visited {
    border: 1px solid #b8b8b8;
    color: #b8b8b8;
    cursor: pointer;
    height: 21px;
    line-height: 21px;
    text-align: center;
    text-decoration: none;
    width: 53px;
}
.pagebox span.pagebox_pre a:hover, .pagebox span.pagebox_pre a:active, .pagebox span.pagebox_next a:hover, .pagebox span.pagebox_next a:active {
    border: 1px solid #363636;
    color: #363636;
}
.pagebox span.pagebox_num_nonce {
    background: #d20001 none repeat scroll 0 0;
    border: 1px solid #ab0101;
    color: #fff;
    cursor: default;
    height: 21px;
    line-height: 21px;
    padding: 0 8px;
}
.pagebox span.pagebox_num_nonce a{
	color:#fff;
	margin:0;
	padding:0;
	background: none;
	border: 0;
}

.pagebox strong{
	font-weight: normal;
}
.pagebox span.pagebox_num {
    color: #3568b9;
    height: 23px;
}
.pagebox span.pagebox_num a, .pagebox span.pagebox_num a:visited {
    border: 1px solid #b8b8b8;
    color: #8a8a8a;
    cursor: pointer;
    height: 21px;
    line-height: 21px;
    padding: 0 8px;
    text-decoration: none;
}
.pagebox span.pagebox_num a:hover, .pagebox span.pagebox_num a:active {
    border: 1px solid #363636;
    color: #363636;
}
.pagebox span.pagebox_num_ellipsis {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    color: #393733;
    line-height: 23px;
    width: 22px;
}
.pagebox span.pagebox_next_nolink {
    border: 1px solid #ddd;
    color: #999;
    cursor: default;
    height: 21px;
    line-height: 21px;
    text-align: center;
    width: 53px;
}