/*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;
    background: #62C1EE;
}
a{
    color: #333;
    text-decoration:none;
}
a:hover{
    color: #034AC6;
    text-decoration:underline;
}
input,button{
    outline:0;
}
img{
    vertical-align: middle;
    border: 0;
}

/*通用样式*/
.lf{
    float: left;
}
.rt{
    float: right;
}
.active{
    display: block;
}
.container{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    background: #fff;
}
.container:after{
    content: '';
    display: block;
    clear: both;
}

/*头部*/
.header{
    width: 100%;
    height: 275px;
}
.header .container{
    position: relative;
    background: #034AC6 url(../images/header.jpg) no-repeat;
}
.top{
    position: absolute;
    top: 20px;
    right: 0;
    width: 283px;
    height: 31px;
    line-height: 31px;
    color: #fff;
    text-align: right;
    padding-right: 20px;
    background: url(../images/top.png) no-repeat;
}
.top a{
    color: #fff;
}

.search{
    position: absolute;
    top: 130px;
    right: 20px;
}
.search input[type='text']{
    width: 210px;
    height: 43px;
    line-height: 43px;
    padding: 0 10px;
    margin-right: 48px;
    font-family: Georgia;
    border: none;
    background: #fff;
}
.search input[type='submit']{
    position: absolute;
    top:0;
    right: 0;
    width: 43px;
    height: 43px;
    border: none;
    cursor: pointer;
    background: #034AC6 url(../images/search.png) no-repeat center center;
}

.header img{
    margin: 95px 0 0 20px;
}

/*导航*/
.nav{
    width: 100%;
    height: 58px;
    background: #62C1EE;
}
.nav .container{
    background: #034AC6;
}
.menu>li{
    float: left;
    width: 120px;
    position: relative;
}
.menu>li>a{
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 58px;
    text-align: center;
    text-decoration: none;
    position: relative;
}
.menu>li>a:hover{
    color: #034AC6;
    background: #fff;
}
.nav .sub-menu{
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    display: none;
}
.nav .sub-menu a{
    display: inline-block;
    width: 100%;
    height: 48px;
    line-height: 48px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    background: rgba(3,74,198,.8);
    border-bottom: 1px solid #fff;
}
.nav .sub-menu a:hover{
    color: #034AC6;
    background: rgba(255,255,255,.8);
}

/*轮播广告*/
.slideBox{
    width:100%;
    overflow:hidden;
    position:relative;
    text-align: center;
}
.slideBox .bd li{
    zoom:1;
    vertical-align:middle;
    position: relative;
}
.slideBox .bd img{
    display:inline-block;
    width: 100%;
    max-width: 100%;
}
.slideBox .slider-title{
    position: absolute;
    width: 1250px;
    height: 74px;
    left: 50%;
    bottom: 135px;
    margin-left: -625px;
}
.slideBox .slider-title p{
    color: #fff;
    font-size: 20px;
    width: 70%;
    height: 74px;
    line-height: 74px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    background: rgba(0,0,0,.5);
    padding: 0 25px;
    text-align: left;
}
.slideBox .prev,
.slideBox .next{
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    left: 50%;
    bottom: 75px;
    margin-left: -625px;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    background: #27B3C0;
}
.slideBox .next{
    margin-left: -565px;
    background: #296DC0;
}
.slideBox a:hover{
    text-decoration: none;
    opacity: .8;
}

/*首页*/
.section{
    width: 100%;
    min-height: 500px;
}
.section .container{
    padding: 18px 16px 45px;
    box-sizing: border-box;
}

.section .title{
    height: 50px;
    margin-bottom: 25px;
}
.section .title h2{
    font-weight: normal;
    padding-left: 60px;
    position: relative;
}
.section .title h2 p{
    color: #999;
    font-size: 14px;
}
.section .title h2 a{
    display: inline-block;
    font-size: 20px;
    text-decoration: none;
}
.section .title h2:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: #034AC6 url(../images/icon-list.png) no-repeat 0 0;
    transition: .3s;
}
.section .title h2:hover:before{
    animation: pulse 1s;
}
.section .title .more{
    float: right;
    font-size: 12px;
    text-decoration: none;
    padding-right: 15px;
    position: relative;
    display: inline-block;
    padding-top: 11px;
    border-top: 2px solid #aaa;
    margin-top: 10px;
}
.section .title .more:before{
    content: '';
    position: absolute;
    top: 13.5px;
    right: -5px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left-color: #BB9526;
}
.section .title .more:hover{
    border-color: #034AC6;
}

.section .aside{
    float: left;
    width: 364px;
}
.section .middle{
    float: left;
    width: 380px;
    margin-left: 30px;
    margin-right: 30px;
}
/*图片新闻*/
.albumBox{
    position:relative;
}
.albumBox .hd{
    position:absolute;
    width: 100%;
    bottom: 5px;
    z-index:1;
}
.albumBox .hd ul{
    padding-right: 5px;
    text-align: right;
}
.albumBox .hd ul li{
    margin: 0 5px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
}
.albumBox .hd ul li.on{
    background:#E50112;
}
.albumBox .bd li{
    zoom:1;
    vertical-align:middle;
    position: relative;
    width: 364px;
}
.albumBox .bd li>a{
    display: block;
    width: 364px;
    height: 258px;
    overflow: hidden;
}
.albumBox .bd li>a img{
    width: 100%;
}
.albumBox .news-title{
    height: 55px;
    background: #DCDCDC;
    padding: 5px 10px;
    box-sizing: border-box;
}
.albumBox .bd li h3{
    height: 25px;
    line-height: 25px;
    overflow: hidden;
}
.albumBox .bd li h3 a{
    font-size: 16px;
    font-weight: normal;
}
.albumBox .bd li span{
    color: #999;
    font-size: 12px;
}
/*工作动态*/
.list ul{
    height: 240px;
}
.list li{
    height: 30px;
    line-height: 30px;
}
.list li span{
    color: #999;
    font-size: 12px;
}
.list li a{
    display: block;
    width: 80%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 17px;
    position: relative;
}
.list li a:before{
    content: '';
    position: absolute;
    top: 11.5px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #aaa;
}
.list li a:hover:before{
    background: #034AC6;
}

/*通知简讯*/
.notice .title h2:before{
    background-position-x: -50px;
}
/*法律法规*/
.law{
    margin-top: 30px;
}
.law .title h2:before{
    background-position-x: -100px;
}
/*武装工作*/
.arm{
    margin-top: 30px;
}
.arm .title h2:before{
    background-position-x: -150px;
}
/*下载中心*/
.down{
    margin-top: 30px;
}
.down .title h2:before{
    background-position-x: -200px;
}

/*友情链接*/
.link{
    width: 1200px;
    height: 45px;
    line-height: 45px;
    background: #3E9DE9;
    overflow: hidden;
    margin: 0 auto ;
}
.link li{
    float: left;
    color: #fff;
}
.link li:first-child{
    font-size: 16px;
    margin: 0 25px 0 30px;
}
.link li a{
    color: #fff;
}
.link li span{
    margin: 0 5px;
}
.link li:last-child span{
    display: none;
}

/*底部*/
.footer{
    height: 135px;
}
.footer .container:before{
    content: '';
    display: table;
    clear: both;
}
.footer p:first-child{
    margin-top: 30px;
}
.footer p{
    font-size: 12px;
    line-height: 25px;
    text-align: center;
}
/*首页样式-end*/

/*左侧导航*/
.left-aside{
    float: left;
    width: 235px;
    background: #E1DDDE;
    min-height: 500px;
    text-align: center;
}
.left-aside p{
    height: 55px;
    line-height: 50px;
    font-size: 18px;
    border-top: 4px solid #004B92;
    border-bottom: 1px solid #E1DDDE;
}
.left-aside li{
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    border-bottom: 1px solid #E1DDDE;
    background: #CACACA;
}
.left-aside li a{
    display: block;
}
.left-aside .on a{
    color: #fff;
    background: #00A0EA;
    position: relative;
}
.left-aside .on a:hover{
    color: #fff;
}
.left-aside .on a:after{
    content: '';
    position: absolute;
    top: 14.5px;
    right: 0;
    border: 8px solid transparent;
    border-right-color: #EDEDED;
}
.left-aside a:hover{
    color: #00A0EA;
    text-decoration: none;
}
/*右侧主体*/
.right-aside{
    margin-left: 260px;
}
.bread{
    height: 55px;
    line-height: 50px;
    border-top: 4px solid #004B92;
    background: #EBE9EA;
    border-bottom: 1px solid #fff;
    padding-right: 15px;
    box-sizing: border-box;
    position: relative;
}
.bread span{
    color: #666;
    padding-left: 35px;
    position: relative;
}
.bread span:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 23px;
    height: 23px;
    background: url(../images/address.png) no-repeat;
}
.bread a{
    color: #666;
}
.bread a:hover{
    color: #034AC6;
}
.bread h2{
    color: #034AC6;
    font-size: 20px;
    font-weight: normal;
    padding-left: 26px;
    margin-right: 400px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
}
/*通用列表页*/
.right-aside .list {
    margin-bottom: 35px;
}
.right-aside .list li{
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    border-bottom: 1px dotted #A7A7A7;
}
.right-aside .list li a{
    text-decoration: none;
}
.right-aside .list li a:before{
    top: 18px;
}
.right-aside .list li span{
    color: #666;
    font-size: 16px;
}
/*通知公告*/
.notice-list{
    padding: 15px 0;
}
.notice-list li{
    margin-bottom: 20px;
    padding: 0 15px 15px;
    border-bottom: 1px solid #CBCBCB;
    position: relative;
}
.notice-list h2{
    font-weight: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.notice-list h2 a{
    font-size: 18px;
}
.notice-list p{
    color: #666;
    height: 40px;
    line-height: 20px;
    overflow: hidden;
    margin: 10px 0;
}
.notice-list span{
    padding-left: 24px;
    position: relative;
}
.notice-list span:before{
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 14px;
    height: 13px;
    background: url(../images/clock.png) no-repeat;
}
.notice-list li>a{
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: #fff;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 3px;
    background: #8D1919;
}
.notice-list li>a:hover{
    text-decoration: none;
    background: #00A0EA;
}
/*详情页*/
.caption{
    padding: 20px 0 10px;
    text-align: center;
    border-bottom: 1px solid #DBDBDB;
}
.caption h2{
    font-size: 21px;
    font-weight: normal;
    margin-bottom: 10px;
}
.caption p{
    color: #666;
}
.content{
    margin-top: 20px;
}

/*分页*/
.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,.pagebox span.pagebox_num_nonce a {
    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 {padding:0; border:0; color:#fff}
.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;
}