*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
a{
	text-decoration: none;
	color: #333;
}
ul,li{
	list-style: none;
}
table tr td{
    border: 1px solid #000;
}
.header{
	width: 100%;
	background: #fff;
	border-top: 5px solid #042d60;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header .nav{
	width: 1200px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 80px;
}
.header .nav img{
	display: block;
}

.header .nav ul{
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: space-around;
}
.header .nav ul li{
	flex: 1;
	text-align: center;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header .nav ul li a{
	color: #042d60;
}
.header .nav ul li:hover a, .header .nav ul li.active a{
	color: #f6cb03;
}
.header .nav ul li:hover, .header .nav ul li.active {
	border-bottom:2px solid #f6cb03;
}
.header .nav ul li a p.s{
	font-size: 12px;
}
.header .nav ul li span.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.header .nav ul li .ann-list{
	position: absolute;
	top: 80px;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 4px;
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
	opacity: 0;
	transition: all .2s ease-out;
	z-index: -100;
}
.header .nav ul li:hover .ann-list{
	opacity: 1;
	z-index: 100;
}
.header .nav ul li .ann-list .item{
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
}

/* banner */
.c-banner{
	width: 100%;
	height: 450px;
	position: relative;
}
.c-banner img{
	width: 100%;
	height: 100%;
}
.c-banner .banner ul{
	list-style: none;
	padding-left: 0px;
	margin-bottom: 0px;
}
.c-banner .banner ul li{
	width: 100%;
	position: absolute;
	display: none;
	opacity: 0;
}
.c-banner .banner ul li:nth-child(1){
	opacity: 1;
	display: block;
}
.c-banner .banner ul li img{
	width: 100%;
	height: 450px;
	position: absolute;
	top: 0px;
}
.c-banner .banner ul li:first-child img{
	position: relative;
}
.c-banner .nexImg,.c-banner .preImg{
	padding: 15px 12px;
	position: absolute;
	top: 50%;
	margin-top: -27px;
	background: #000000;
	opacity: 0.5;
	z-index: 10;
	cursor: pointer;
}
.c-banner .nexImg:hover,.c-banner .preImg:hover{
	opacity: 0.8;
}
.c-banner .preImg{
	left: 10px;
}
.c-banner .nexImg{
	right: 10px;
}
.c-banner .nexImg img,.c-banner .preImg img{
	width: 10px;
	height: 20px;
}
.c-banner .jumpBtn{
	width: 100%;
	position: absolute;
	bottom: 20px;
	text-align: center;
}
.c-banner .jumpBtn ul{
	margin-bottom: 0px;
	padding: 0px;
}

.c-banner .jumpBtn ul li{
	width: 25px;
	height: 25px;
	border-radius: 5px;
	line-height: 25px;
	text-align: center;
	font-size: 14px;
	display: inline-block;
	background-color: white;
	opacity: 0.9;
	margin-left: 10px;
}
.c-banner .jumpBtn ul li:first-child{
	margin-left: 0px;
}

.main{
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 40px 0;
}
.main:nth-child(odd){
	background-color: rgb(248,249,250);
}

.item{
	width: 1200px;
}

.main .item .main-item-title{
	text-align: center;
	font-size: 25px;
	font-weight: 700;
	line-height: 60px;
	height: 60px;
	position: relative;
	margin-top: 20px;
}
.main .item .main-item-title span{
	position: absolute;
	display: block;
	width: 200px;
	height: 60px;
	background-color: #fff;
	z-index: 1;
	left: 500px;
}
.main:nth-child(odd) .item .main-item-title span{
	background-color: rgb(248,249,250);
}
.main .item .main-item-title::after{
	position: absolute;
	top: 30px;
	left: 250px;
	content: ' ';
	display: block;
	height: 2px;
	width: 700px;
	background-color: rgba(0,0,0,.15);
	z-index: 0;
}
.main .item .main-item-box{
	position: relative;
	display: flex;
	justify-content: space-between;
}
.main .item .main-item-box .about-info{
	position: relative;
	width: 59%;
	text-indent: 2rem;
	text-align: justify;
	line-height: 1.5rem;
}
.main .item .main-item-box .about-info a{
	position: absolute;
	bottom: 0px;
	right: 20px;
	background-color: #f6cb03;
	color: #fff;
	text-align: center;
	text-indent: 0;
	width: 100px;
	height: 30px;
	line-height: 30px;
	border-radius: 5px;
}
.main .item .main-item-box .about-img{
	width: 39%;
}
.main .item .main-item-box img{
	width: 100%;
}
.main .item .main-item-box .ann-img{
	width: 30%;
}
.main .item .main-item-box .ann-list-box{
	width: 68%;
}
.main .item .main-item-box .ann-list-box ul, .main .item .main-item-box .ann-list-box li{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px dotted #eee;
}
.main .item .main-item-box .ann-list-box li a{
	display: block;
	white-space: nowrap;
	overflow: hidden;
	width: 80%;
	height: 26px;
	line-height: 26px;
	text-overflow: ellipsis;
}
.main .item .main-item-box .ann-list-box li span{
	color: #ccc;
	display: block;
	font-family: 'Helvetica Neue'
}
.footer{
	width: 100%;
	padding: 40px 0;
	background-color: #042d60;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	color: #fff;
	line-height: 40px;
}
.footer a{
	color: #fff;
}
.page-main,.list-main{
	width: 100%;
	min-height: 700px;
	background-color: rgb(248,249,250);
	zoom: 1;
	overflow: hidden;
}
.page-main .container, .list-main .container{
	width: 1200px;
	margin: 20px auto;
	background-color: #fff;
	padding: 20px;
}
.page-main .container .follow, .list-main .container .follow{
	border-bottom: 2px solid #042d60;
	height: 35px;
	line-height: 35px;
	margin-bottom: 30px;
}
.page-main .container .content{
	text-indent: 2rem;
	line-height: 2rem;
}
.page-main .container .title{
	width: 100%;
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	line-height: 50px;
}

.page-main .container .info{
	width: 100%;
	text-align: center;
	line-height: 40px;
	background-color: #eee;
	color: #333;
	margin-bottom: 20px;
}
.page-main .container .info span{
	padding: 0 20px;
}
.page-main .container .content .button{
	width: 200px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	display: block;
	margin: 20px auto 0;
	background-color: #245590;
	color: #FFFFFF;
	font-size: 18px;
	text-indent: 0;
}
.post-box{
	width: 100%;
	height: auto;
	background-color: #FFFFFF;
	padding: 10px;
	margin-bottom: 10px;
}
.post-box .tit{
	text-align: center;
	line-height: 60px;
	font-size: 20px;
}
.post-box .form{
	width: 600px;
	height: auto;
	zoom: 1;
	overflow: hidden;
	margin: 0 auto;
}
.post-box .form input{
	width: 450px;
	border: 1px solid #DBDBDB;
	background-color: #FFF;
	padding: 4px 5px;
	color: #000;
	font-size: 12px;
	line-height: 20px;
	height: 20px;
	box-sizing: unset;
}
.post-box .form ul{
	width: 100%;
	height: auto;
	zoom: 1;
	overflow: hidden;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.post-box .form ul li{
	line-height: 45px;
	box-sizing: border-box;
	padding: 0 10px;
	border-top: 1px solid #245590;
	border-bottom: 1px solid #245590;
}
.post-box .form ul li:nth-child(n+3){
	margin-top: -1px;
}
.post-box .form ul .l{
	width: 100px;
	text-align: right;
	border-left: 1px solid #245590;
	display: flex;
	justify-content: space-between;
}
.post-box .form ul .l i{
    font-style: normal;
}
.post-box .form ul .r{
	width: 500px;
	border-left: 1px solid #245590;
	border-right: 1px solid #245590;
}
.sub{
	display: block;
	margin: 30px auto 20px;
	width: 300px!important;
	height: 45px!important;
	background-color: #245590!important;
	color: #FFFFFF!important;
	font-size: 20px!important;
}
.little{
    width: 155px!important;
}
.middle{
    width: 300px!important;
}
.post-box .form ul li span{
    font-size: 12px;
    color: #f00;
    padding-left: 10px;
}
.page-con .content .button{
	width: 200px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	display: block;
	margin: 20px auto 0;
	background-color: #245590;
	color: #FFFFFF;
	font-size: 18px;
	text-indent: 0;
}
.success, .error, .notice{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.9);
    text-align: center;
    padding-top: 300px;
	box-sizing: border-box;
	font-size: 25px;
	color: #245590;
	line-height: 65px;
}
.success a{
	padding: 10px 20px;
	background-color: #245590;
	color: #FFFFFF;
}
.error{
    color: #f00;
}
.s-item{
	width: 500px;
	height: auto;
	margin: 0 auto;
	padding: 10px 20px;
	background: #FFFFFF;
}
.notice{
    display: none;
}
.notice .s-item{
	width: 300px;
	padding: 0;
}
.notice .s-item .top{
	width: 100%;
	height: 45px;
	line-height: 45px;
	background-color: #245590;
	color: #FFFFFF;
}
.notice .s-item .n-con{
	width: 100%;
	height: 120px;
}
.notice .s-item .n-con button{
	width: 100px;
	height: 35px;
	color: #FFFFFF;
	background: #245590;
	border-radius: 5px;
}
.notice p{
	color: #CA1919;
	line-height: 60px;
	margin: 0;
}
.more{
    position: absolute;
    font-size: 14px;
    bottom: 10px;
    right: 10px;
    width: 100px;
    text-align: right;
}
.more a{
    color: #245590;
}
.main-box{
    box-shadow: 0 1px 20px 5px #c5ced4;
}
.list-main .container .newslist li{
	line-height: 50px;
	border-bottom: 1px dotted #ccc;
	display: flex;
	justify-content: space-between
}
.list-main .container .newslist li span{
	font-family: 'Helvetica Neue';
	color: #999;
}
.list-main .container .pagelist{
	display: flex;
	justify-content: center;
	height: 50px;
	align-items: center;
}
.list-main .container .pagelist li{
	border: 1px solid #245590;
	padding: 2px 5px;
	margin: 0 5px;
	min-width: 30px;
	text-align: center;
}
.list-main .container .pagelist li.disabled{
	background-color: #ccc;
}
.list-main .container .pagelist li.on{
	background-color: #245590;
}
.list-main .container .pagelist li.on a{
	color: #fff;
}
.list-main .container .pagelist li a{
	color: #245590;
}
.list-follow{
	display: flex;
	justify-content: space-between;
}
.list-follow input{
	line-height: 20px;
}
.list-follow input[type=submit] {
    border-color: #0062b1;
    background-color: #0062b1;
    color: #fff;
    padding: 0 5px;
}
.red{
    color: #ff0000;
    padding: 0 5px;
}