.header{
    background:url(../images/header_bg.jpg) no-repeat center;
    background-size:100% 100%;
}
.header img{
    width: 100%;
}
.header_title{
    text-align: center;
    text-shadow: 3px 5px 5px rgba(0, 0, 0, 0.35);
}


.header_time{
    text-align: center;
}
.time_btn{
    background-image: linear-gradient(0deg, 
		rgba(7, 2, 2, 0.05) 0%, 
		rgba(255, 255, 255, 0.05) 100%), 
	linear-gradient(
		#317de5, 
		#317de5);
	background-blend-mode: normal, 
		normal;
	border-radius: 24px;
	border: solid 2px rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding:12px 50px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
}




.meeting_con{
    font-size: 0;
}
.meeting_item{
    display: inline-block;
    font-size: 16px;
    width: 50%;
    vertical-align: top;
}
.m_i_item{
    display: flex;
}
.m_i_title{
    text-align: right;
    line-height: 1.8;
}

.m_i_option p{
    line-height: 1.8;
}




.nav_list{
    
	background-color: #033188;
}


.navlist ul{
    height: 60px;
    
}
.navlist ul li{
    flex: 1;
    text-align: center;
    padding:16px 0;

}
.navlist ul li.active{
    border-bottom: 2px solid #fff;
}
.navlist ul li:last-child{
    
}
.navlist ul li a{
    display: block;
    color: #fff;
    border-left: 1px solid #0c59c5;
}
.navlist ul li:last-child a{
    border-right: 1px solid #0c59c5;
}





/* footers */
.footer{
	background-color: #033188;
    padding:30px;
}





/* 面包屑 */
.crumbs ul li::after{
    content:'-';
    font-size: 18px;
    padding:0 3px;
}
.crumbs ul li:last-child:after,
.crumbs ul li:first-child:after{
    content:'';
    padding:0;
}
.crumbs ul li:last-child{
    color: #033188;
}




/* 重要日期 */
.schedule_item{
    background-color: #5fa1ee;
	box-shadow: 3px 4px 10px 0px 
		rgba(27, 120, 212, 0.2);
    background:url(../images/clock_icon.png) no-repeat right bottom,#5fa1ee;
    padding:20px;
    border-radius: 5px;
}
.schedule{
    background:url(../images/dian_bg.jpg) repeat-y 10px top;
}
.schedule_info{
    position: relative;
}
.schedule_info::before{
    content: '';
    width: 18px;
	height: 18px;
	background-color: #ffffff;
	border: solid 1px #c2d3e1;
    display: block;
    border-radius: 50%;
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}





/* dialog */
.dialog{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.35);
    display: none;
    transition: all 0.3;
}
.dialog_cn{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 500px;
	height: 250px;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px 0px 
		rgba(0, 71, 142, 0.27);
	border-radius: 10px;
}
.dialog_cn .message img{
    width: 50px;
}
.closeBtn{
    position: absolute;
    top: 15px;
    right: 15px;
}