/*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;
}
a:hover{
    color: #4A8AE1;
    text-decoration:underline;
}
input,button{
    outline:0;
}
img{
    vertical-align: top;
    border: 0;
}
/*通用样式*/
.lf{
    float: left;
}
.rt{
    float: right;
}
.active{
    display: block;
}
.container{
    width: 1200px;
    margin: 0 auto;
}
.container:after{
    content: '';
    display: block;
    clear: both;
}

/*背景--线性渐变色*/
.nav,.left_aside p{
    background: #0ACD6F;
    background: -webkit-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    background: -moz-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    background: -ms-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    background: -o-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    /*filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0ACD6F',endColorstr='#4A8AE1',GradientType=1);*/
}

/*顶部*/
.top{
    height: 38px;
    line-height: 38px;
    background: #EBEBEB;
    border-bottom: 1px solid #D6D6D6;
}
.top a{
    margin-right: 5px;
}
.top span{
    margin: 0 5px;
}
/*头部*/
.header{
    width: 100%;
    height: 150px;
    line-height: 150px;
}
.header img{
    margin-top: 23px;
    margin-right: 10px;
}
.search{
    float: right;
    position: relative;
    height: 120px;
}
.search form{
    height: 120px;
}
.search input[type='text']{
    width: 216px;
    height: 36px;
    line-height: 36px;
    padding: 0 40px 0 10px;
    border: 1px solid #A0A0A0;
    border-radius: 3px;
    background: transparent;
}
.search input[type='image']{
    position: absolute;
    top: 65px;
    right: 10px;
}
/*导航*/
.nav{
    height: 50px;
    line-height: 50px;
}
.nav ul li{
    float: left;
    width: 170px;
    height: 50px;
    position: relative;
}
.nav ul li a{
    display: block;
    width: 100%;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
}
.nav>div>ul>li:first-child{
    background: #4A8AE1;
}
.nav>div>ul>li:hover{
    background: #06A35A;
}
.nav .second{
    position: absolute;
    top:50px;
    left: 0;
    z-index: 10;
    display: none;
}
.nav .second li{
    border-bottom: 1px #fff solid;
    background: #0CCC74;
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.nav .second li:hover{
    opacity: 1;
    filter: alpha(opacity=100);
}
.nav .second li a{
    font-size: 16px;
}

/*首页*/
.section{
    width: 100%;
    min-height: 500px;
    padding-top: 20px;
}
.section .container{
    padding-bottom: 20px;
}

.section .title{
    height: 43px;
    line-height: 43px;
    font-size: 18px;
    padding: 0 25px 0 15px;
    /*border-top: 1px solid #A0A0A0;*/
    /*border-right: 1px solid #A0A0A0;*/
    box-sizing: border-box;
    background: #EAEAEA url(icon-list.png) no-repeat 0 -30px;
}
.section .title span{
    color: #fff;
    padding-left: 44px;
    position: relative;
}
.section .title span:before{
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 29px;
    height: 28px;
    background: url(icon-list.png) no-repeat 0 0;
}
.section .title>a{
    float: right;
    display: inline-block;
    height: 43px;
    color: #6F6F6F;
    font-size: 12px;
    font-family: Georgia;
}
.section .title>a:after{
    content: '+';
    color: #D60D0D;
    font-size: 14px;
    margin-left: 5px;
}
.section .title a:hover{
    color: #4A8AE1;
    text-decoration: none;
}

/*图片新闻-幻灯片*/
.slide{
    width: 826px;
    height: 423px;
}

.albumBox{
    width:100%;
    position:relative;
    text-align: center;
}
.albumBox .hd{
    position:absolute;
    right: 10px;
    bottom:15px;
    z-index:1;
}
.albumBox .hd ul{
    width: 100%;
    text-align: right;
}
.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: 826px;
    height: 423px;
    background:#ddd ;
}
.albumBox .bd img{
    display:inline-block;
    width: 826px;
    height: 423px;
}
.albumBox .bd li p{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    text-align: left;
    padding: 0 100px 0 15px;
    background: rgba(0,0,0,.5);
}
/*通知公告*/
.info{
    width: 348px;
    height: 423px;
    margin-left: 26px;
}
.info ul,
.aside ul{
    width: 100%;
    height: 380px;
    box-sizing: border-box;
    border: 1px solid #A0A0A0;
    border-top: none;
    padding: 20px 15px;
}
.info ul li,
.aside ul li{
     margin-bottom: 15px;
}
.info ul li p{
    margin-bottom: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/*工作动态、学院风采*/
.aside{
    width: 400px;
    height: 423px;
}
.aside .title{
    background: -webkit-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    background: -moz-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    background: -ms-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    background: -o-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0ACD6F',endColorstr='#4A8AE1',GradientType=1);
}
.aside .title span:before{
    top: 0;
    width: 32px;
    height: 30px;
    background: url(icon-list.png) no-repeat -28px 0;
}
.aside ul li p{
    width: 72%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.aside .title>a,
.aside .title>a:after{
    color: #fff;
}
.aside .title>a:hover{
    color: #D60D0D;
}
.mien{
    margin-left: 26px;
}
.mien .title span:before{
    top: 0;
    width: 26px;
    height: 30px;
    background: url(icon-list.png) no-repeat -60px 0;
}

/*文件下载*/
.download li,
.aside ul li{
    padding-left: 20px;
    position: relative;
}
.download li:before,
.aside ul li:before{
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 10px;
    height: 10px;
    background: url(icon-list.png) no-repeat -118px 0;
    transition: .3s;
}
.download li:hover:before,
.aside ul li:hover:before{
    transform: scale(1.2);
}

/*专题栏目*/
.special .title span:before{
    width: 29px;
    height: 29px;
    margin-top: 3px;
    background: url(icon-list.png) no-repeat -87px 0;
}
.special ul{
    padding: 20px 13px;
    border: 1px solid #A0A0A0;
    border-top: none;
    zoom: 1;
}
.special ul:after{
    content: '';
    display: block;
    clear: both;
}
.special ul li{
    float: left;
    width: 360px;
    height: 102px;
    border: 1px solid #B7B7B7;
    margin: 0 15px;
    overflow: hidden;
    position: relative;
}
.special ul li:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    filter:Alpha(opacity=50);
    transform: scaleX(1);
    transition: .3s;
    z-index: 10;
}
.special img{
    width: 358px;
    height: 100px;
    transition: .3s;
}
.special ul li:hover{
    border: 1px solid #0ACD6F;
}
.special ul li:hover:before{
    opacity: 0;
    filter: alpha(opacity=0);
    transform: scaleX(0);
}
.special ul li:hover img{
    transform: scale(1.1);
}
.special ul li h2{
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    color: #0ACD6F;
    text-align: center;
    text-shadow: 1px 1px 0 #fff;
    z-index: 20;
}

/*首页样式-end*/

/*二、三级页面*/
.bread{
    height: 45px;
    line-height: 45px;
    padding-left: 30px;
    margin-bottom: 20px;
    background: #fff;
    border: 2px solid #0CCC74;
}
/*左侧导航*/
.left_aside{
    float: left;
    width: 260px;
    text-align: center;
    background: #EFEFEF;
}
.left_aside p{
    color: #fff;
    font-size: 18px;
    line-height: 50px;
}
.left_aside ul li{
    line-height: 45px;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}
.left_aside ul li:last-child{
    border-bottom: 0;
}
.left_aside ul li a{
    display: block;
    position: relative;
}

.left_aside ul li a:after{
    position: absolute;
    top: 15px;
    right: 50px;
    line-height: 20px;
    content: '→';
    text-align: center;
    color: #ccc;
    font-size: 18px;
    transition: .3s;
}
.left_aside ul li a:hover{
    text-decoration: none;
    background: #ddd;
}
.left_aside ul li a:hover:after{
    color: #4A8AE1;
    right: 40px;
}
.left_aside ul li.on a{
    color: #4A8AE1;
    background: #ddd;
}
.left_aside ul li.on a:after{
    color: #4A8AE1;
}

/*右侧主体*/
.right_aside{
    margin-left: 280px;
    background: #EFEFEF;
}
/*右侧主体--头部*/
.right_aside .head{
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    border-bottom: 2px  solid #0CCC74;
    padding-left: 40px;
    margin: 0 30px;
    position: relative;
}
.right_aside .head:before{
    position: absolute;
    top: 15px;
    left: 0;
    width: 23px;
    height: 22px;
    line-height: 25px;
    content: '→';
    color: #0CCC74;
    text-align: center;
    border: 2px solid #0CCC74;
    border-radius: 3px;
}
/*右侧主体--内容*/
.right_aside .comment{
    padding: 20px 30px;
    font-size: 16px;
    min-height: 500px;
}
.right_aside .comment>p{
    line-height: 30px;
}
/*二级-文字列表页*/
.right_aside .comment .list li{
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    position: relative;
    margin-bottom: 5px;
}
.right_aside .comment .list li:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    background: url(icon-list.png) no-repeat -118px 0;
    transition: .3s;
}
.right_aside .comment .list li a{
    display: inline-block;
    width: 80%;
    margin-left: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.right_aside .comment .list li:hover:before{
    transform: scale(1.2);
}

/*二级-图片列表页*/
.list-img{
    overflow: hidden;
}
.list-img:after{
    content: '';
    display: block;
    clear: both;
}
.list-img li{
    float: left;
    width: 50%;
    margin: 20px 0 40px;
}
.list-img li a{
    display: block;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}
.list-img li a:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 15px solid #fff;
    opacity: .5;
    z-index: 99;
}
.list-img li a .img,.list-img li a .img img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
}
.list-img li a .img{
    background: #ddd;
}
.list-img li a .img img{
    transition:  .3s;
    pointer-events: none;
}
.list-img li a:hover img{
    transform: scale(1.1);
}
.intro{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0);
    text-align: center;
    border-radius: 50%;
    background: #333;
    background: rgba(0,0,0,.5);
    transition: .3s ease-in-out;
    overflow: hidden;
}
.intro h3{
    position: relative;
    top: 125px;
    color: #0CCC74;
    height: 50px;
    line-height: 50px;
    margin: 0 40px;
    border-top: 1px solid #0CCC74;
    border-bottom: 1px solid #0CCC74;
}
.list-img li a:hover .intro{
    transform: scale(1);
}
/*三级--内容详情页*/
.article{
    min-height: 500px;
    background: #EFEFEF;
}
.article .caption{
    text-align: center;
    padding: 30px 0;
}
.article .caption h2{
    color: #4A8AE1;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}
.article .caption p span{
    color: #999;
    margin: 0 10px;
}
.article .content{
    padding: 0 30px 30px;
}
.article .content p{
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 10px;
}

/*底部*/
.footer{
    height: 99px;
    margin-top: 30px;
    padding: 50px 0;
    background: #EFEFEF;
    position: relative;
}
.footer:before{
    position: absolute;
    content: '';
    top: -4px;
    width: 100%;
    height: 4px;
    background: -webkit-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    background: -moz-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    background: -ms-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    background: -o-linear-gradient(left,#0ACD6F 25%,#4A8AE1 75%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0ACD6F',endColorstr='#4A8AE1',GradientType=1);

}
.footer .rt{
    text-align: center;
}
.footer img{
    border: 6px solid #fff;
}
.footer .link{
    margin-bottom: 25px;
}
.footer .link a{
    padding: 0 10px;
}
.footer .link span:last-child{
    display: none;
}
.footer p{
    line-height: 30px;
}