html,
body {
	height: 100%;
	overflow-x: hidden;
	position: relative;
	margin: 0;
	background: #ffffff;
	font-size: 14px;
}
a{
	cursor: pointer;
	text-decoration: none;
}
a:hover{
	opacity: 1;
	text-decoration: none;
}
ul{
	list-style: none;
	padding: 0;
}
@font-face {
	font-family:'思源黑体-粗';
	src: url(../fonts/SourceHanSansCN-Bold.otf);
}
.index-top{
	width: 100%;
	height: 100px;
	position: relative;
	z-index: 99;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	border-bottom: 4px solid #6d1717;
	box-sizing: border-box;
}
.top-container{
	width: 1200px;
	display: flex;
	margin: 0 auto;
	align-items: center;
}
.top-logo{
	width: 40%;
	height: 96px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 999;
}
.top-logo img{
	height: 50px;
}
.index-nav{
	width: 60%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
}
.index-nav ul.nav-list{
	width: calc(100% - 100px);
	display: flex;
	justify-content: flex-end;
	line-height: 46px;
	align-items: center;
}
.nav-list li{
	padding: 0 15px;
	position: relative;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-list li a{
	display: block;
	text-align: center;
	position: relative;
}
.nav-list li.on a{
	font-weight: bold;
	font-family: '思源黑体-粗';
}
.nav-list li a:hover{
	opacity: 1;
	color: #333333;
	font-weight: bold;
}
.nav-list li a span{
	display: block;
	line-height: 20px;
	position: relative;
}
.nav-list li a span.en{
	color: #999999;
	font-weight: normal !important;
	font-family: "微软雅黑" !important;
	font-size: 12px;
	line-height: 16px;
}
/*.has-child:after{
	content: "";
	width: 0;
	height: 0;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-top: 6px solid #999999;
	border-bottom: none;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: -10px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
}*/
.nav-list a.has-child span.cn:after{
		content: "";
		width: 0;
		height: 0;
		border-right: 4px solid transparent;
		border-left: 4px solid transparent;
		border-top: 6px solid #999999;
		border-bottom: none;
		position: absolute;
		top: 50%;
	    margin-top: -3px;
    	right: -10px;
    	transition: all 0.4s;
    	-webkit-transition: all 0.4s;
	}
@media (any-hover: hover) { 
	.nav-list li:hover .has-child span.cn:after{
		transform: rotate(180deg);
	}
}
.top-btn-group{
	width: 84px;
	display: flex;
	align-items: center;
	position: relative;
}
#head-menu-i{
	display:none;
}
.search-icon,.login-btn,.search-cancel{
	width: 20px;
	height: 20px;
	padding: 0 10px;
}
.search-icon{
	background: url(../images/top-search.svg) center no-repeat;
	border: none;
	border-right: solid 1px #e4e4e4;
	width: 40px;
	cursor: pointer;
}
.login-mod{
	height: 96px;
	display: flex;
	align-items: center;
	position: relative;
}
.login-btn{
	background: url(../images/top-login.svg) center no-repeat;
	width: 40px;
	cursor: pointer;
	padding: 0;
	display: block;
}
.login-child{
	display: none;
	position: absolute;
    left: -100%;
    top: 96px;
    min-width: 140%;
    line-height: 50px;
    padding: 0;
    margin: 0;
    background: transparent;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 100;
    border: none;
    border-radius: 0;
    white-space: nowrap;
}
.login-child a{
	color: #FFFFFF;
	background: rgba(0,0,0,0.5);
	display: block;
	line-height: 50px;
	padding: 0 20px;
	text-align: center;
}
.login-child a:hover{
	color: #bc8e12;
}
.search-icon:hover,.login-btn:hover,.search-cancel:hover{
	opacity: 0.8;
}
.login-mod:hover .login-child{
	display: block;
}
.top-search-block{
	position: absolute;
    right: 0;
    width: 100%;
    height: 96px;
    background: #ffffff;
    box-sizing: border-box;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 99;
}
.top-search-block input{
	width: 80%;
    border: none;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    padding: 0 40px 0 10px;
    background: #e5e5e5;
    border-radius: 4px;
}
button.search-submit{
	position: absolute;
	border-right: none;
	right: 50px;
}
button.search-cancel{
	position: relative;
	background: url(../images/top-icon-cancel.svg) center no-repeat;
	padding: 0;
	border: none;
	margin-left: 10px;
	cursor: pointer;
}

/*nav二级*/
.nav-li-child {
    display: none;
    position: absolute;
    left: -20%;
    top: 96px;
    min-width: 140%;
    line-height: 50px;
    padding: 0;
    margin: 0;
    background: transparent;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 100;
    border: none;
    border-radius: 0;
    white-space: nowrap;
}
.clicked dl.nav-li-child{
	display: block;
	text-align: center;
}
@media (any-hover: hover) { 
	.nav-list li:hover dl.nav-li-child{
		display: block;
		text-align: center;
	}
}
.nav-li-child dd{
	position: relative;
	margin: 0;
}
.nav-list li dl.nav-li-child a{
	color: #FFFFFF;
	background: rgba(0,0,0,0.5);
	display: block;
	line-height: 50px;
	padding: 0;
}
.nav-list li dl.nav-li-child a:hover{
	color: #bc8e12;
}
.nav-list li dl.nav-li-child a:last-child{
	border-left: 0;
}

/*banner*/
.index-banner{
	width: 100%;
	margin: 0 auto;
}
.index-banner button.layui-carousel-arrow{
	height: 72px;
	line-height: 72px;
	border-radius: 0;
}
.index-banner .layui-carousel>[carousel-item]{
	margin: 0 auto;
}
.index-banner a{
	text-align: center;
	display: block;
}
.index-banner a:hover{
	opacity: 1;
}
.index-banner .layui-carousel img{
	width: 100%;
	height: 100%;
}
.layui-carousel-arrow{
	margin-top: 0;
	transform: translateY(-50%) ;
}

/*通用*/
.index-row{
	width: 1200px;
	margin: 0 auto;
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}
.index-col3{
	width: calc(25% - 15px);
}
.index-col6{
	width: calc(50% - 10px);
}
.index-box{
	background: #FFFFFF;
	position: relative;
}
.index-col6 .index-box{
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.index-box-tit{
	height: 44px;
	line-height: 44px;
	color: #FFFFFF;
	font-size: 16px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.color1{
	background: #6d1717;
}
.color2{
	background: #203e6e;
}
.color3 .index-box-tit{
	background: #973926;
}
.color4 .index-box-tit{
	background: #bb8d35;
}
.color5 .index-box-tit{
	background: #4177ba;
}
.color6 .index-box-tit{
	background: #529f6d;
}
.tit-group{
	display: flex;
	align-items: center;
}
.index-box-tit img{
	margin-right: 8px;
}
a.index-more{
	display: block;
	height: 36px;
	line-height: 36px;
	color: #FFFFFF;
	font-size: 14px;
	text-align: center;
	padding-right: 14px;
	position: relative;
	opacity: 0.8;
}
a.index-more:after{
	content: "";
	width: 0;
	height: 0;
	border-left: 8px solid #FFFFFF;
	border-right: none;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	right: 0;
	opacity: 0.6;
}
a.index-more:hover{
	opacity: 1;
}

/*日历标题*/
.calendar-title{
	height: 40px;
	line-height: 40px;
	color: #FFFFFF;
	font-size: 14px;
	display: flex;
	align-items: center;
}
.calendar-title button{
	border: none;
	height: 40px;
	width: 20px;
	position: relative;
	background: transparent;
	cursor: pointer;
	opacity: 1;
}
.calendar-title button:hover{
	opacity: 0.6;
}
.calendar-title span{
	padding: 0 12px;
	text-align: center;
}
.calendar-title button.pre:before{
	content: "";
	width: 0;
	height: 0;
	border-right: 12px solid #FFFFFF;
	border-left: none;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	position: absolute;
	top: 50%;
	margin-top: -8px;
	left: 0;
}
.calendar-title button.next:before{
	content: "";
	width: 0;
	height: 0;
	border-left: 12px solid #FFFFFF;
	border-right: none;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	position: absolute;
	top: 50%;
	margin-top: -8px;
	right: 0;
}

/*新闻列表&其他列表*/
ul.index-list-normal{
	padding: 0 20px;
	padding-bottom: 20px;
	background: #f7f7f7;
}
ul.index-list-normal li{
	padding: 14px 0;
	border-bottom: solid 1px #e4e4e4;
	display: flex;
	justify-content: space-between;
}
ul.index-list-normal li span{
	width: 70px;
	font-size: 12px;
	color: #999999;
	text-align: right;
	line-height: 20px;
}
ul.index-list-normal li .date{
	width: 40px;
	margin-right: 10px;
	display: flex;
	flex-direction: column;
}
ul.index-list-normal li .date span{
	width: 100%;
	text-align: center;
	border: solid 1px #973926;
	line-height: 17px;
}
.color3 ul.index-list-normal li .date span{
	color: #973926;
	border-color: #973926;
}
.color4 ul.index-list-normal li .date span{
	color: #bb8d35;
	border-color: #bb8d35;
}
.color5 ul.index-list-normal li .date span{
	color: #4177ba;
	border-color: #4177ba;
}
.color6 ul.index-list-normal li .date span{
	color: #529f6d;
	border-color: #529f6d;
}
ul.index-list-normal li .date span:first-child{
	color: #FFFFFF;
}
.color3 ul.index-list-normal li .date span:first-child{
	background: #973926;
}
.color4 ul.index-list-normal li .date span:first-child{
	background: #bb8d35;
}
.color5 ul.index-list-normal li .date span:first-child{
	background: #4177ba;
}
.color6 ul.index-list-normal li .date span:first-child{
	background: #529f6d;
}
ul.index-list-normal li a{
	width: 100%;
	line-height: 20px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*日历内容*/
.index-calendar{
	padding-bottom: 20px;
}
.index-calendar table.calendarmain{
	display: table;
	width: 94%;
	margin: 0 auto;
	table-layout: fixed;
	position: relative;
}
.calendarmain tr{
	height: 40px;
}
.index-calendar table tr{
	display: table-row;
}
.index-calendar table td{
	display: table-cell;
	text-align: center;
	cursor: pointer;
	padding: 2px;
}
.index-calendar table td a{
	border: solid 1px #e4e4e4;
	height: 40px;
	box-sizing: border-box;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 40px;
}
.index-calendar table td a.point{
	line-height: 20px;
}
.calendarmain th{
	color: #666;
	font-weight: normal;
}
.calendarmain td a.pre-month,
.calendarmain td a.pre-month:hover{
	color: #999;
	cursor: default;
}
.calendarmain td a.click-on,
.calendarmain td a.click-on:hover{
	color: #333;
	border-radius: 2px;
	opacity: 1;
}
.calendarmain td span.td-tip{
	display: block;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	margin: 0 2px;
	border-radius: 4px;
}
.calendar-color1 .calendarmain td a.click-on,
.calendar-color1 .calendarmain td a.click-on:hover,
.calendar-color1 .calendarmain td a.today,
.calendar-color1 .calendarmain td a.today:hover{
	background-color: #ebdddd;
	border-color: #d7bcbc;
}
.calendar-color1 .calendarmain td span.td-tip{
	background: #eeb18c;
}
.calendar-color2 .calendarmain td a.click-on,
.calendar-color2 .calendarmain td a.click-on:hover,
.calendar-color2 .calendarmain td a.today,
.calendar-color2 .calendarmain td a.today:hover{
	background-color: #dde4eb;
	border-color: #9cb1d3;
}
.calendar-color2 .calendarmain td span.td-tip{
	background: #a8e4b2;
}
.calendarmain td a.pre-month span.td-tip{
	background: #e6e6e6;
	color: #999999;
}
.calendarmain td a.click-on{
	position: relative;
	z-index: 9999;
}
.calendar-none,
.calendar-display{
	width: 100%;
	box-sizing: border-box;
	box-shadow:0px 8px 8px 0px rgba(0,0,0,0.2);
	padding: 15px;
	background: #FFFFFF;
	border: 2px solid  #cfb266;
	border-radius: 4px;
	position: absolute;
	z-index: 999;
	left: -5px;
	margin-top: 9px;
	text-align: left;
	display: none;
}
.calendarmain td a.click-on:before{
	content: "";
    position: absolute;
    left: 30%;
    bottom: -10px;
    z-index: 99999;
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 10px solid #cfb266;
}
.calendarmain td a.click-on:after{
	content: "";
    position: absolute;
    left: calc(30% + 2px);
    bottom: -12px;
    z-index: 999999;
    width: 0;
    height: 0;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: 8px solid #FFFFFF;
}
.calendar-display p {
    font-size: 16px;
    font-weight: bold;
    padding-left: 14px;
    margin-bottom: 10px;
}
.calendar-display p span{
	font-size: 14px;
	font-weight: normal;
	float: right;
	color: #666;
}
.calendar-display li{
	display: flex;
}
.index-calendar table td .calendar-display a {
    height: 36px;
    line-height: 36px;
    padding: 0 14px 0 0;
    flex: 1;
    display: block;
    color: #444;
    border: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.index-calendar table td .calendar-display a:hover{
	color: #0f77e0;
}
.calendar-display li span{
	line-height: 36px;
}
.calendar-display li:hover{
	background: #F1F1F1;
}
.calendar-display i{
	float: left;
	margin: 0 4px;
	color: #FFB800;
	line-height: 34px;
}

/*第三行内容*/
.row3-bg{
	margin-top: 20px;
	background: rgba(0,0,0,0.5) url(../images/bg-icon-group.png) center no-repeat;
}
.row3-bg .index-row3{
	width: 1200px;
	height: 342px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.index-row3 a span.btn-icon{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.index-row3 a span.btn-icon img{
	width: 36px;
	height: 36px;
}
.index-row3 a p{
	text-align: center;
	color: #FFFFFF;
	margin-top: 8px;
}
.index-row3 a:hover{
	opacity: 0.8;
}

/*bottom*/
.index-bottom{
	width: 100%;
	background: #6d1717;
	color: #FFFFFF;
	position: relative;
    z-index: 99;
}
.bottom-copyright{
	text-align: center;
	padding: 4px 0;
}

/*内页*/
.inside-body{
	background: #f7f7f7;
	min-height: calc(100% - 168px);
	padding-bottom: 40px;
}
.index-container{
	width: 1200px;
	margin: 0 auto;
}
.location{
	height: 54px;
	line-height: 54px;
	color: #999999;
	padding: 20px 0;
}
.location a{
	color: #007AFF;
}
.content-flex{
	display: flex;
	justify-content: space-between;
}
.content-left{
	width: 16%;
}
.content-left ul{
	background: #FFFFFF;
	box-shadow: 0 4px 8px rgba(0,0,0,0.08);
	border-radius: 8px;
}
.content-left li{
	height: 54px;
	line-height: 54px;
	cursor: pointer;
	text-align: center;
}
.content-left li a{
	display: block;
}
.content-left li.on{
	border-left: solid 6px #6d1717;
	font-weight: bold;
	background: #fbf3f3;
}
.content-left li:hover{
	font-weight: bold;
}
.content-right{
	width: calc(84% - 20px);
	background: #FFFFFF;
	box-shadow: 0 4px 8px rgba(0,0,0,0.08);
	border-radius: 8px;
	padding: 14px 20px;
	box-sizing: border-box;
}
.content-right ul.second-select{
	display: flex;
	padding: 10px 10px 20px 10px;
	border-bottom: solid 1px #e4e4e4;
}
.content-right ul.second-select li a{
	display: block;
	padding: 4px 10px;
	background: #ffffff;
	color: #333333;
	border-radius: 4px;
	margin-right: 10px;
	border: solid 1px #e4e4e4;
}
.content-right ul.second-select li a:hover{
	background: #fbf3f3;
	color: #6d1717;
}
.content-right ul.second-select li.on a,.content-right ul.second-select li.on a:hover{
	background: #6d1717;
	color: #FFFFFF;
}
.content-list li{
	height: 54px;
	padding: 0 10px;
	border-bottom: dashed 1px #e4e4e4;
}
.content-list li:hover{
	background: #F7f7f7;
}
.content-list li a{
	display: flex;
	justify-content: space-between;
	line-height: 54px;
}
.content-list li a:hover{
	font-weight: bold;
}
.content-list li a:hover span{
	font-weight: normal;
}
.content-list li a p{
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 54px;
}
.content-list li a span{
	color: #999999;
	width: 110px;
	text-align: right;
	font-size: 12px;
	flex-grow: 0;
	flex-shrink: 0;
}
.content-list li a span.zhiding{
	color: #FFFFFF;
	padding: 4px 8px;
	background: rgb(216,76,41);
	margin-right: 4px;
	border-radius: 8px;
}
.pagenumb{
	text-align: center;
	margin-bottom: 20px;
	margin-top: 20px;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em{
	background-color: #1465b8;
}
.layui-laypage a:hover{
	color: #1465b8;
}
/*详情*/
.inside-back{
	border: none;
	background: #1465b8;
	color: #FFFFFF;
	text-align: center;
	border-radius: 4px;
	padding: 4px;
	cursor: pointer;
}
.inside-back:hover{
	background: #378cd0;
}
.content-detail{
	padding: 20px;
}
.content-detail h3{
	font-size: 28px;
	text-align: center;
	padding-bottom: 14px;
}
table.job-table tr th{
	background: #fafafa;
}
table.job-table tr td.job-inside-table{
	padding: 0;
	vertical-align: top;
}
table.job-table tr td.job-inside-table table{
	margin: 0;
	border: none;
}
tr.job-detail th{
	text-align: center;
}
tr.job-detail th:first-child{
	text-align: left;
}
tr.job-detail a{
	display: block;
	text-align: center;
	color: #007AFF;
}

.panel-body{
	padding: 20px;
	line-height: 24px;
}
.panel-body p{
	margin-bottom: 10px;
}
.enroll{
	padding: 20px;
}
.enroll .enroll-button{
	border: none;
	background: #1465b8;
	padding: 8px 16px;
	border-radius: 4px;
	color: #FFFFFF;
	display: inline-block;
	text-align: center;
}
.enroll p.erro-tips{
	color: #CF3F2C;
	display: inline-block;
	margin-left: 8px;
}
.enroll .erro{
	background: #CF3F2C;
}
p.article-infor{
	font-size: 12px;
	color: #666666;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: solid 1px #e4e4e4;
}
.article-content{
	padding: 20px;
}
.article-content p{
	line-height: 24px;
	margin-bottom: 10px;
}
.article-content p img{
	max-width: 100%;
}
p.enclosure img{
	width: 16px;
	height: 16px;
}
p.enclosure a{
	color: #007AFF;
}


/*搜索*/
.index-search{
	width: 20%;
	display: inline-block;
    position: absolute;
    right: calc(50% - 600px);
    top: calc(50% - 44px);
}
.index-search input{
	width: 100%;
    height: 36px;
    border-radius: 18px;
    border: 1px solid #ccc;
    padding: 0 30px 0 10px;
    background: #f7f7f7;
}
.index-search button.top-search-btn{
	width: 20px;
	height: 20px;
	position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
}
.index-search img{
	width: 20px;
	height: 20px;
}
/*搜索结果*/
.search-result{
	min-height: 40vh;
	border-radius: 8px;
	padding: 40px;
    margin: 20px 0;
    background: #ffffff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.search-content{
	margin: 0;
    padding: 0;
    margin-bottom: 20px;
}
p.no-result{
	font-size: 24px;
    color: #999;
    text-align: center;
}
p.result{
	margin-bottom: 10px;
	color: #666666;
}
p.result span{
	color: #007AFF;
	padding: 0 4px;
}
.search-result span{
	color: #007AFF;
}
.search-result ul.classify{
	display: flex;
	align-items: center;
}
.search-result ul.classify li{
	margin: 0 10px;
	margin-bottom: 20px;
	padding: 8px 0;
	cursor: pointer;
	font-size: 16px;
}
.search-result ul.classify li:hover{
	opacity: 0.7;
}
.search-result ul.classify li:first-child{
	margin-left: 0;
}
.search-result ul.classify li:last-child{
	margin-right: 0;
}
.search-result ul.classify li.on{
	font-weight: bold;
	position: relative;
}
.search-result ul.classify li.on:after{
	content: "";
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: -2px;
	left: 0;
	background: #6d1717;
}
.search-result ul.search-list{
	margin-bottom: 20px;
}
.search-result ul.search-list li{
	height: 48px;
	line-height: 48px;
	border-bottom: 1px dashed #e4e4e4;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.search-result ul.search-list li a{
	width: 60%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.search-result ul.search-list li span {
	color: #666;
}