/*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: #132F87;
}
input,button{
    outline: 0;
    padding: 0;
    margin: 0;
}
img{
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    transition: .3s;
}

/*通用样式*/
.lf{
    float: left;
}
.rt{
    float: right;
}
.active{
    display: block;
}
.container{
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipse{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.home{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../images/home-bg.jpg) no-repeat center center;
    background-size: 100% 100%;
}
.home .link{
    position: absolute;
    right: 10%;
    bottom: 22%;
}
.home .link a{
    margin-left: 60px;
    transition: 0s;
}
.home .link a img{
    animation: zoomIn 1s;
}
.home .logo{
    display: none;
}
@media screen and (max-width: 1440px){
    .home .link a img{
        height: 40px;
    }
}

/*头部*/
.header .top{
    height: 45px;
    background: #F6F6F6;
}
.header .top .rt{
    line-height: 45px;
    font-size: 12px;
}
.header .top form{
    display: inline-block;
    margin-top: 7px;
}
.header .top input[type='text']{
    width: 200px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #F2F2F2;
    background: #fff;
}
.header .top input[type='submit']{
    width: 80px;
    height: 30px;
    color: #fff;
    font-size: 12px;
    margin-left: -5px;
    background: #132F87;
    border: none;
}
.header .bg{
    height: 165px;
    line-height: 165px;
    background: #1a3a90;
}
.header .bg .lf img{
    animation: zoomIn 1s;
}
.header .bg .lf p{
    color: #fff;
    font-size: 28px;
    animation: zoomIn 1s;
}
.header .bg .rt img{
    animation: slideInRight 1s;
  margin: 0px 130px 1px 0;
  max-width: 800px;
}

/*导航栏*/
.nav{
    height: 50px;
    line-height: 50px;
    position: relative;
    z-index: 9;
}
.menu{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}
.menu>li{
    float: left;
    width: 109px;
    height: 50px;
}
.menu>li>a{
    display: block;
    height: 100%;
    text-align: center;
}
.menu>li:hover>a{
    color: #fff;
    background: #DB7437;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.menu>li span{
    display: none;
}
.sub-menu{
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,.65);
    border-top: 3px solid #132F87;
    z-index: 99;
    display: none;
}
.sub-menu li{
    display: inline-block;
    height: 60px;
    line-height: 60px;
    margin: 0 20px;
}
.sub-menu li a{
    padding-left: 12px;
    background: url(../images/nav_xl.png) no-repeat left center;
}
.sub-menu li a:hover{
    font-weight: bold;
}

.section{
    min-height: 500px;
}

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

.slideBox .arrow{
    position: absolute;
    top: 0;
    left: 50%;
    width: 1200px;
    height: 100%;
    margin-left: -600px;
    display: none;
}
.slideBox:hover .arrow{
    display: block;
}
.slideBox .prev,
.slideBox .next{
    position:absolute;
    left:2%;
    top:50%;
    margin-top:-50px;
    display:block;
    width:60px;
    height:100px;
    background: rgba(0,0,0,.6) url(../images/arrow_left.png) no-repeat center center;
    border-radius: 5px;
    filter:alpha(opacity=50);
    opacity:0.6;
}
.slideBox .next{
    left:auto;
    right:2%;
    background-image: url(../images/arrow_right.png);
}
.slideBox .prev:hover,
.slideBox .next:hover{
    filter:alpha(opacity=100);
    opacity:1;
}

.title{
    height: 37px;
    line-height: 37px;
    margin: 30px 0;
    padding: 0 10px;
    position: relative;
}
.title p{
    font-size: 18px;
}
.title span{
    font-size: 14px;
}
.title .rt{
    font-size: 12px;
}
.title .rt:hover{
    font-weight: bold;
}

/*校园动态*/
.news{
    width: 850px;
}
.news .title{
    background: url(../images/news-title-bg.png) no-repeat;
}
.news-img{
    position: relative;
    padding: 5px;
    box-shadow: 2px 2px 2px #C4C4C4,-2px -2px 2px #C4C4C4,-2px 2px 2px #C4C4C4,2px -2px 2px #C4C4C4;
    border-radius: 3px;
}
.news-img .hd{
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 9;
}
.news-img .hd li{
    float: left;
    width: 5px;
    height: 5px;
    margin-left: 5px;
    background: #BEBFBD;
    border-radius: 35px;
}
.news-img .hd li.on{
    width: 15px;
    background: #0062C3;
}
.news-img .bd li{
    float: left;
}
.news-img .bd li a{
    display: block;
    width: 410px;
    height: 263px;
    overflow: hidden;
}
.news-img .bd li img{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.news-img .bd li img:hover{
    transform: scale(1.1);
}
.news-list{
    width: 410px;
}
.news-list li{
    margin-bottom: 20px;
}
.news-list li span{
    color: #666;
    font-size: 12px;
}
.news-list li h3{
    font-size: 14px;
    margin-bottom: 10px;
}

/*通知公告、经投新闻、长郡新闻*/
.notice{
    width: 325px;
}
.notice .title{
    background: url(../images/notice-title-bg.png) no-repeat;
}
.notice .title .lf a{
    font-size: 18px;
    margin-right: 8px;
}
.notice .title .lf a.on{
    color: #132F87;
    font-weight: 600;
}
.box ul{
    display: none;
}
.box ul.on{
    display: block;
}
.box ul li{
    line-height: 35px;
    border-bottom: 1px dotted #E1E1E1;
}

/*校园风景*/
.pictures{
    width: 585px;
}
.pictures .title{
    background: url(../images/pic-title-bg.png) no-repeat;
}
.pictures .bd,
.pictures ul{
    overflow: hidden;
}
.pictures li{
    position: relative;
    float: left;
  	width: 286px !important;
    height: 176px;
    padding: 2px;
    margin-right: 13px;
    border: 1px solid #999;
}
.pictures li:last-child{
    margin-right: 0;
}
.pictures li>a{
    display: block;
    width: 280px;
    height: 170px;
    overflow: hidden;
}
.pictures li img{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.pictures li img:hover{
    transform: scale(1.1);
}
.pictures li p{
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 3px;
    line-height: 30px;
    text-align: center;
    background: rgba(0,0,0,.5);
}
.pictures li p a{
    color: #fff;
}
.pictures li p a:hover{
    color: #0062C3;
}
.pictures>a{
    display: block;
    width: 100%;
    height: 100px;
    margin-top: 30px;
    overflow: hidden;
}
.pictures>a img{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.pictures>a img:hover{
    opacity: .8;
    transform: scale(1.1);
}

/*校园频道*/
.channel ul{
    margin: 0 -10px;
    overflow: hidden;
}
.channel ul li{
    float: left;
    width: 285px;
    height: 325px;
    margin: 0 10px;
    border: 1px solid #0062C3;
}
.channel ul li>a{
    display: block;
    height: 90px;
    background: url(../images/jshj.jpg) no-repeat;
}
.channel ul li>a img{
    float: left;
    margin: 8px 0 0 35px;
}
.channel ul li>a p{
    color: #fff;
    font-size: 18px;
    padding-top: 15px;
    margin-left: 130px;
    line-height: 30px;
}
.channel ul li>a span{
    font-size: 12px;
}
.channel ul li dl{
    height: 233px;
    padding: 10px;
    overflow: hidden;
}
.channel ul li dt{
    line-height: 36px;
    border-bottom: 1px dotted #A6A6A6;
}
.channel ul li dt:last-child{
    border-bottom: none;
}
.channel ul li dt a{
    position: relative;
    padding-left: 15px;
}
.channel ul li dt a:before{
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #999;
}
.channel ul li dt a:hover:before{
    background: #0062C3;
}
.channel ul li:nth-child(2)>a{
    background-image: url(../images/jwgl.jpg);
}
.channel ul li:nth-child(3)>a{
    background-image: url(../images/jyjk.jpg);
}
.channel ul li:nth-child(4)>a{
    background-image: url(../images/dyzc.jpg);
}

/*班级风貌*/
.channel .title,
.classes .title{
    background: url(../images/title-bg.png) no-repeat;
}
.classes .bd{
    margin: 0 8px;
    overflow: hidden;
}
.classes ul li{
    float: left;
    width: 280px;
    margin: 0 8px;
    padding: 3px;
    border: 1px solid #999;
}
.classes ul li a{
    display: block;
    height: 170px;
    overflow: hidden;
}
.classes ul li img{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.classes ul li img:hover{
    transform: scale(1.1);
}


.ad{
    margin: 30px 0 60px;
}
.ad img{
    width: 100%;
}

/*尾部*/
.footer{
    position: relative;
}
.foot{
    height: 475px;
    background: #f9f9f9 url(../images/footer-bg.jpg) no-repeat center center;
}
.foot .logo{
    height: 69px;
    padding: 50px 0 40px;
    text-align: center;
    position: relative;
}
.foot .logo p{
    font-size: 28px;
    margin-top: 8px;
}
.foot .logo:before, .foot .logo:after{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 350px;
    height: 1px;
    background: #999;
}
.foot .logo:after{
    left: auto;
    right: 0;
}
.foot ul{
    float: left;
}
.foot ul li{
    float: left;
    margin-right: 30px;
}
.foot ul li>a{
    font-size: 16px;
}
.foot ul li dl{
    padding: 10px 0;
}
.foot ul li dl dt{
    line-height: 25px;
}
.foot ul li dl dt a{
    color: #666;
}
.foot ul li dl dt a:hover{
    color: #132F87;
}
.foot .rt h3{
    font: 16px normal;
    margin-bottom: 10px;
}
.foot .rt p{
    line-height: 25px;
}
.foot .rt img{
    margin-top: 10px;
    border: 10px solid #fff;
    border-radius: 3px;
}
.footer .bottom{
    height: 65px;
    line-height: 65px;
    color: #fff;
    background: #132F87;
}
.footer .bottom .lf span{
    padding-right: 15px;
}
.footer .bottom .rt a{
    color: #fff;
}
.footer .bottom .rt span{
    padding: 0 10px;
}
.goTop{
    position: absolute;
    right: 50px;
    bottom: 8%;
}

/*banner*/
.banner{
    margin-bottom: 25px;
}
.banner img{
    width: 100%;
}

/*左侧导航*/
.side{
    float: left;
    width: 204px;
    /*min-height: 231px;*/
    position: relative;
    background: url(../images/side-bg.png) no-repeat;
    background-size: 100% 100%;
}
.side p{
    height: 64px;
    line-height: 64px;
    color: #132F87;
    font-size: 18px;
    padding-left: 20px;
    border-bottom: 1px solid #132F87;
}
.side p span{
    color: #999;
    font-size: 14px;
}
.side ul{
    padding: 5px 0;
}
.side ul li{
    padding-left: 60px;
    line-height: 35px;
}
.side ul li a{
    font-size: 16px;
    position: relative;
    padding-left: 15px;
}
.side ul li a:before{
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #999;
}
.side ul li.on a,
.side ul li a:hover{
    color: #132F87;
    font-weight: bold;
}
.side ul li.on a:before,
.side ul li a:hover:before{
    border-left-color: #132F87;
}

/*右侧列表*/
.column{
    float: right;
    width: 900px;
    min-height: 500px;
    margin: 15px 0 50px;
}
.bread{
    position: relative;
    padding: 0 0 10px 25px;
    border-bottom: 1px solid #132F87;
}
.bread:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 18px;
    background: url(../images/home.png) no-repeat;
}

/*详情页*/
.detail{
    margin: 40px 0;
    word-break: break-word;
    overflow: hidden;
}
.caption{
    margin: 30px 0;
    text-align: center;
}
.caption h1{
    font: 24px normal;
}
.caption p{
    margin-top: 10px;
    color: #999;
}
.caption p span{
    margin: 0 10px;
}

/*简介*/
.profile{
    margin: 30px 0;
}
.profile .headline{
    font: 24px normal;
    text-align: center;
    padding: 10px 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

/*通用列表*/
.common-list{
    margin: 20px 0;
}
.common-list li{
    line-height: 45px;
    border-bottom: 1px dotted #A9A9A9;
}
.common-list li p{
    margin-right: 120px;
}
.common-list li span{
    float: right;
    color: #666;
}

/*班级风貌*/
.gallery ul{
    margin: 15px -15px;
    overflow: hidden;
}
.gallery ul li{
    float: left;
    width: 280px;
    margin: 10px 15px;
    text-align: center;
}
.gallery ul li>a{
    display: block;
    width: 280px;
    height: 170px;
    overflow: hidden;
}
.gallery ul li p{
    line-height: 40px;
}
.gallery ul li a:hover img{
    transform: scale(1.10);
}


@media screen and (max-width: 1440px) {

}

.friendly {
    position: absolute;
    left: 0;
    bottom: -70px;
    width: 940px;
}