﻿@charset "UTF-8";

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: #2D6348;
    text-decoration:none;
}
input,button{
    outline:0;
}
img{
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    transition: .3s;
}
table{
    max-width: 100%;
    border-collapse: collapse;
}
table tr th, table tr td{
    padding: 5px 10px;
    border: 1px solid gray;
}
.lf{
    float: left;
}
.rt{
    float: right;
}
.container{
    width: 1400px;
    margin: 0 auto;
    position: relative;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/*头部*/
.header{
    position: relative;
}
.header .top{
    height: 172px;
    border-top: 8px solid #2D6348;
    background: url(../images/header.jpg) no-repeat center center;
}
.header .logo{
    float: left;
    padding: 42px 0;
}
/*.header .fast{*/
/*    float: left;*/
/*    margin: 65px 0 0 60px;*/
/*}*/
/*.header .fast a{*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    margin: 0 40px;*/
/*}*/
/*.header .fast a img{*/
/*    margin-right: 18px;*/
/*}*/
.header .search{
    float: right;
    margin-top: 40px;
}
.header .search p{
    text-align: right;
    margin-bottom: 10px;
}
.header .search p a{
    color: #2D6348;
}
.header .search form{
    position: relative;
}
.header .search input[type='text']{
    width: 208px;
    height: 30px;
    background: #FFFFFF;
    border: 1px solid rgba(45,99,72,0.65);
    border-radius: 3px;
    padding: 0 30px 0 10px;
    box-sizing: border-box;
}
.header .search input[type='submit']{
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border: none;
    background: url(../images/search.png) no-repeat center center;
}
.header .toggle{
    display: none;
}
/*导航栏*/
.nav{
    height: 60px;
    background-color: #2D6348;
}
.menu{
    display: flex;
}
.menu>li{
    position: relative;
    flex-grow: 1;
    font-size: 16px;
}
.menu>li>a{
    display: block;
    height: 60px;
    line-height: 60px;
    color: #fff;
    text-align: center;
}
.menu>li>a.on,
.menu>li>a:hover{
    background-color: rgba(0,0,0,.4);
}
.menu .second-menu{
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 10px 0;
    background-color: rgba(0,0,0,.4);
    display: none;
    z-index: 999;
}
.menu .second-menu a{
    display: block;
    line-height: 40px;
    color: #fff;
    text-align: center;
}
.menu .second-menu a:hover{
    background: rgba(0,0,0,.6);
}
/*轮播图*/
#slide img{
    width: 100%;
}
#slide .swiper-pagination{
    bottom: 5%;
}
#slide .swiper-pagination-bullet{
    width: 30px;
    height: 5px;
    background: #E6E6E6;
    border-radius: 0;
    opacity: 1;
}
#slide .swiper-pagination-bullet-active{
    background: #2D6348;
}
/*主体*/
.section{
    position: relative;
    min-height: 500px;
}
.title{
    position: relative;
    height: 30px;
    line-height: 30px;
    margin: 25px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ebebeb;
}
.title h2{
    display: flex;
    align-items: center;
}
.title h2 a{
    font-size: 22px;
    margin-left: 15px;
}
.title a.rt{
    color: #666;
}
.title a.rt:hover{
    color: #2D6348;
    font-weight: bold;
}
/*学院新闻*/
.news{
    width: 66%;
}
.news-box{
    overflow: hidden;
}
.news-box .img{
    float: left;
    width: 360px;
    height: 200px;
    overflow: hidden;
}
.news-box .img img{
    width: 100%;
    height: 100%;
    transition: .3s;
}
.news-box .img:hover img{
    transform: scale(1.1);
}
.news-box .txt{
    margin-left: 395px;
    font-size: 16px;
}
.news-box .txt h3{
    font-size: 18px;
    height: 60px;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news-box .txt p{
    margin: 10px 0 15px;
    height: 90px;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.news-box .txt span{
    color: #666;
}
.list li{
    margin-top: 20px;
    font-size: 16px;
}
.list li p{
    margin-right: 100px;
}
.list li p a{
    position: relative;
    padding-left: 20px;
}
.list li p a:before{
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #999;
    transition: .3s;
}
.list li p a:hover:before{
    left: 5px;
    background-color: #2D6348;
}
.list li span{
    color: #666;
}
/*通知公告*/
.notice{
    width: 31%;
}
.notice-first{
    font-size: 16px;
    padding-bottom: 23px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #ebebeb;
    overflow: hidden;
}
.date{
    float: left;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    font-family: 'Arial';
    text-align: center;
    width: 70px;
    height: 80px;
    background: #2D6348;
}
.date h3{
    font-size: 24px;
    line-height: 1.75em;
    margin:  0 8px 5px;
    border-bottom: 1px solid rgba(255,255,255,.4);
}
.text{
    margin-left: 90px;
}
.text h2{
    font-size: 18px;
}
.text p{
    height: 50px;
    line-height: 25px;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wrapper{
    margin: 20px auto;
}

.box{
    float: left;
    width: 66%;
}
.box>.lf,.box>.rt{
    width: 48%;
}

.mien{
    float: right;
    width: 31%;
}
#mien{
    position: relative;
    height: 250px;
}
#mien .swiper-slide>a{
    display: block;
    height: 100%;
    overflow: hidden;
}
#mien .swiper-slide>a img{
    width: 100%;
    height: 100%;
    transition: .3s;
}
#mien .swiper-slide>a:hover img{
    transform: scale(1.1);
}
#mien .swiper-slide p{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 15px;
    height: 48px;
    line-height: 48px;
    color: #fff;
    background: rgba(45, 99, 72,0.8);
    z-index: 999;
}
#mien .swiper-slide p a{
    color: #fff;
    font-size: 18px;
}

.media{
    float: right;
    width: 31%;
}
video{
    object-fit: fill;
}

.activity .img{
    float: left;
    width: 48%;
    height: 250px;
    position: relative;
    overflow: hidden;
}
.activity .img img{
    width: 100%;
    height: 100%;
    transition: .3s;
}
.activity .img:hover img{
    transform: scale(1.1);
}
.activity .img .date{
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 99;
}
.activity .img>p{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 58px;
    line-height: 58px;
    padding: 0 15px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}
.activity .img>p a{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.activity .img>p a:hover{
    text-decoration: underline;
}
.activity .txt{
    float: right;
    width: 48%;
}
.activity .list{
    margin-top: 8px;
}
.activity .list li{
    margin: 0 0 20px 0;
}

/*尾部*/
.footer{
    margin-top: 60px;
    height: 300px;
    color: #fff;
    font-size: 16px;
    background: #2D6348 url(../images/footer.jpg) no-repeat center center;
}
.footer ul{
    float: left;
    height: 58px;
    line-height: 58px;
    margin-top: 10px;
}
.footer ul li{
    float: left;
    color: #fff;
}
.footer ul li a{
    color: #fff;
    padding: 0 18px;
}
.footer ul li span{
    font-size: 14px;
    opacity: .5;
}
.footer ul li:last-of-type span{
    display: none;
}
.footer .copyright{
    float: left;
    margin-top: 45px;
    line-height: 2.5em;
}
.footer .code{
    float: right;
    margin-top: 15px;
    line-height: 2.5em;
    text-align: center;
}

.side{
    float: left;
    width: 278px;
    margin-top: 30px;
}
.side p{
    height: 68px;
    line-height: 68px;
    padding-left: 40px;
    color: #fff;
    font-size: 24px;
    background: #2D6348;
}
.side p span{
    display: none;
}
.side li{
    position: relative;
}
.side li a{
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    padding-left: 40px;
}
.side>ul>li>a{
    background: #E7E7E7;
    border-bottom: 1px solid #D4D4D4;
}
.side>ul>li span{
    position: absolute;
    top: 14px;
    right: 20px;
    color: #9D9696;
    font: 20px '宋体';
    font-weight: bolder;
    transition: .3s;
}
.side>ul>li span.on{
    transform: rotate(90deg);
}
.side .sub-menu li a{
    color: #666;
    background: #F6F6F6;
}
.side .sub-menu li a:hover,
.side .sub-menu li.on a{
    color: #2D6348;
}
.side .sub-menu{
    display: none;
}
.side ul .active .sub-menu{
    display: block;
}
.side ul .active>a{
    background: #fff;
    border-bottom-color: #fff;
}
.side ul .active>a:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: #2D6348;
}

.column{
    margin: 30px 0 0 310px;
}

.bread{
    height: 67px;
    line-height: 67px;
    border-bottom: 1px solid #D6D6D6;
}
.bread h1{
    font-size: 24px;
    font-weight: normal;
}
.bread .rt{
    position: relative;
    color: #9A9A9A;
    font-size: 16px;
}
.bread .rt a{
    color: #9A9A9A;
}
.bread .rt a:hover{
    color: #2D6348;
}

.common-list li{
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    font-size: 18px;
    border-bottom: 1px dotted #8C8C8C;
}
.common-list li:hover{
    background: #F6F6F6;
}
.common-list li span{
    float: right;
    color: #666;
}
.common-list li p{
    margin-right: 120px;
}
.common-list li a{
    position: relative;
    padding-left: 20px;
    text-decoration: none;
}
.common-list li a:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}
.common-list li a:hover:before{
    background: #2D6348;
}

.detail{
    margin-top: 20px;
}
.caption{
    text-align: center;
}
.caption h3{
    line-height: 30px;
    font-size: 22px;
    font-weight: normal;
    margin: 30px 0 10px;
}
.caption p span{
    color: #999;
    margin: 0 8px;
}
.content{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F0F0F0;
    min-height: 300px;
    line-height: 1.75em;
    font-size: 16px;
}

.profile{
    margin-top: 20px;
    min-height: 300px;
    line-height: 1.75em;
    font-size: 16px;
}

/*现任领导*/
.leader-list{
    margin: 10px;
    overflow: hidden;
}
.leader-list li{
    float: left;
    width: 50%;
    padding: 15px;
    background-color: #eee;
    border: 10px solid #fff;
    box-sizing: border-box;
}
.leader-list li>a{
    float: left;
    width: 120px;
    height: 168px;
    overflow: hidden;
}
.leader-list li>a img{
    width: 100%;
    height: 100%;
}
.leader-list li div{
    margin-left: 140px;
    height: 168px;
    overflow: hidden;
}
.leader-list li h3{
    line-height: 1.75em;
    margin-bottom: 8px;
}
.leader-list li h3 a{
    font-size: 18px;
}
.leader-list li p{
    line-height: 1.75em;
    margin-top: 5px;
    color: #666;
}

/*师资队伍*/
.teacher-list {
    margin: 10px -10px 0;
    overflow: hidden;
}
.teacher-list li {
    float: left;
    width: 20%;
    padding: 10px;
}
.teacher-list li>a{
    display: block;
    height: 270px;
    overflow: hidden;
}
.teacher-list li img{
    width: 100%;
}
.teacher-list li p{
    font-size: 16px;
    text-align: center;
    margin-top: 0.5em;
}

/*返回顶部*/
.toTop{
    position: fixed;
    right: 15px;
    bottom: -100px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    font-family: '黑体';
    background: rgba(0,0,0,.6);
    border-radius: 5px;
    transform: rotate(90deg);
    cursor: pointer;
    transition: .3s;
    z-index: 99;
}
