html,body{
	width: 100%;
	margin: 0;
	font-family: arial,helvetica,"microsoft yahei",sans-serif;
	line-height: 1;
	background-color: #f0f0f0;
}
h1,h2,h3,h4,h5,h6,p,.h1,.h2,.h3,.h4,.h5,.h6,.p{
	font-weight: normal;
	margin: 0;
	padding: 0;
}
h5,.h5{
	font-size: 14px;
}
h6,.h6{
	font-size: 12px;
}
ul,li,ol,dl,dt,dd,.ul,.li,.ol,.dl,.dt,.dd{
	list-style: none;
	margin: 0;
	padding: 0;
}
a{
	cursor: pointer;
	color: inherit;
	text-decoration: none;
}
input[type="text"],input[type="email"],input[type="search"],input[type="tel"],input[type="button"],input[type="password"],button,textarea,select{
	-webkit-appearance: none;
	appearance: none;
	line-height: 1;
	font-family: helvetica,arial,"microsoft yahei",sans-serif;
	outline: medium;
	margin: 0;
	padding: 5px 0;
}
select::-ms-expand{
	display: none;
}

/*下拉选择框右箭头*/
.sel_box{
	position: relative;
}
.sel_box select{
	padding-right: 20px;
}
.sel_box:after{
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #bbb;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	right: 6px;
}
/*下拉选择框右箭头 end*/

.red{
	color: red !important;
}

img{
	display:block;
	max-width: 100%;
}

/*主色调区域*/
::selection{
    background-color:#186bc7;
	color: #fff;
}
::-moz-selection {
    background-color:#186bc7;
	color: #fff;
}
a:hover{
	color: #186bc7;
}
.main_color{/*文字色*/
	color: #186bc7 !important;
}
.red_color{/*文字色*/
	color: red !important;
	font-size:12px;
}
.border_bottom{/*边线色*/
	border-bottom: 1px solid #dddddd !important;
}
.border_bottom_gray{/*边线色浅*/
	border-bottom: 1px solid #EEEEEE !important;
}

.bg_color{/*填充色*/
	background-color: #186bc7 !important;
}
/*主色调区域 end*/

/*清除浮动*/
.dm-clearfix{
	zoom: 1;
}
.dm-clearfix:after{
	content: " ";
	display: block;
	clear: both;
	height: 0;
}
.dm-clear{
	clear: both;
}
.dm-left{
	float: left;
}
.dm-right{
	float:right;
}


/*边线*/
.bottom_line,.top_line{
	position: relative;
}
.top_line:before{
	content: "";
	width: 100%;
	height: 1px;
	background-color: #DDDDDD;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: scaleY(.5);
	-ms-transform: scaleY(.5);
	-moz-transform: scaleY(.5);
	transform: scaleY(.5);
}
.bottom_line:after{
	content: "";
	width: 100%;
	height: 1px;
	background-color: #DDDDDD;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transform: scaleY(.5);
	-ms-transform: scaleY(.5);
	-moz-transform: scaleY(.5);
	transform: scaleY(.5);
}


.mainWidth{
		width: 1200px;
		margin: auto;
	}
	.row-lg-5 .row-list{
		width: 20%;
		float: left;
	}
	.row-lg-4 .row-list{
		width: 25%;
		float: left;
	}
	.row-lg-3 .row-list{
		width: 33.3333%;
		float: left;
	}
	.row-lg-2 .row-list{
		width: 50%;
		float: left;
	}

/*header*/
.header{
	width: 100%;
	background-color: #FFFFFF;
	border-top: 4px solid #186BC7;
}
.header .mainWidth{
	height: 60px;
}
.header .mainWidth .logo{
	line-height: 60px;
	height: 60px;
}
.header .mainWidth .logo img{
	display: inline-block;
	vertical-align: middle;
}
.header .mainWidth .login_info{
	/*height: 60px;*/
	padding-top: 22px;
}
.header .mainWidth .login_info .icon{
	margin-right: 6px;
}
.header .mainWidth .login_info .name{
	padding-right: 15px;
	margin-top: 1px;
	color: #333;
}
.header .mainWidth .login_info .edit{
	display: block;
	font-size: 12px;
	line-height: 14px;
	margin-top: 1px;
	padding-right: 15px;
	margin-right: 15px;
	border-right: 1px solid #DDDDDD;
}
.header .mainWidth .login_info .dm-right{
	display: block;
	font-size: 12px;
	line-height: 14px;
	margin-top: 1px;
}
/*header end*/

/*footer*/
.footer{
	width: 100%;
	background-color: #b8b9b9;
}
.footer h5{
	color: #FFFFFF;
	text-align: center;
	padding: 20px 0;
	line-height: 28px;
	margin-top: 90px;
}
/*footer end*/

/*表单*/
.dm-table{
	border: 1px solid #DDDDDD;
	border-bottom: none;
	line-height: 16px;
	font-size: 14px;
	text-align: center;
}
.dm-table table thead th{
	background-color: #f4f5f9;
	border-bottom: 1px solid #DDDDDD;
	/*white-space: nowrap;*/
	padding: 12px 0;
	border-right: 1px solid #DDDDDD;
}
.dm-table table tbody td{
	line-height: 16px;
	border-bottom: 1px solid #DDDDDD;
	padding: 12px 10px;
	color: #555;
	border-right: 1px solid #DDDDDD;
}
.dm-table table thead th:last-child,.dm-table table tbody td:last-child{
	border-right: none;
}
.dm-table table tbody td .main_color{
	color: #186BC7;
	white-space: nowrap;
}
.dm-table table tbody td .btn_box a{
	display: inline-block;
	margin: 0 3px;
	white-space: nowrap;
}
.dm-table table tbody tr .txt_left{
	text-align: left;
}
/*上传按钮*/
.dm-table table tbody td .update_btn{
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 16px;
	overflow: hidden;
	cursor: pointer;
	color: #186BC7;
	white-space: nowrap;
}
.dm-table table tbody td .update_btn input{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
}
/*已上传文件*/
.dm-table table tbody td .file_box{
	display: inline-block;
	text-align: center;
	white-space: nowrap;
}
.dm-table table tbody td .file_box .file_name{
	display: inline-block;
	line-height: 16px;
	color: #186BC7;
	text-decoration: underline;
}
.dm-table table tbody td .file_box .del_file{
	display: inline-block;
	margin-left: 12px;
}

.dm-table table tfoot th{
	font-weight: normal;
	padding: 15px 20px;
	border-bottom: 1px solid #DDDDDD;
}

/*表单 end*/

/*分页*/
.page_wrap .prev_btn,.page_wrap .next_btn{
	display: block;
	width: 30px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	border: 1px solid #DDDDDD;
	border-radius: 3px;
	font-size: 14px;
	font-weight: bold;
}
.page_wrap .page_box{
	line-height: 32px;
	margin: 0 5px;
	overflow: hidden;
}
.page_wrap .page_box .cur_page{
	margin-right: 5px;
}
.page_wrap .page_box .all_page{
	margin-left: 5px;
}
.page_wrap .page_input{
	border: 1px solid #DDDDDD;
	height: 30px;
	line-height: 1;
	padding: 0 10px;
	width: 60px;
	margin: 0 10px;
	border-radius: 3px;
	text-align: center;
}
.page_wrap .page_btn{
	height: 32px;
	line-height: 1;
	border: 1px solid #DDDDDD;
	background-color: #FFFFFF;
	padding: 0 20px;
	cursor: pointer;
	border-radius: 3px;
}
/*分页 end*/



/*公用模块*/
.content{
	background-color: #FFFFFF;
	margin-top: 35px;
	border: 1px solid #DDDDDD;
}
/*左导航*/
.content .main_nav{
	width: 210px;
	padding: 11px 0;
}
.content .main_nav .nav{
	padding: 7px 0;
	border-bottom: 1px solid #EEEEEE;
}
.content .main_nav .last_nav{
	border-bottom: none;
}

.content .main_nav .nav ul{
	position: relative;
	padding-left: 28px;
}
.content .main_nav .nav ul .icon{
	width: 20px;
	height: 20px;
	overflow: hidden;
	margin-top: 7px;
	margin-right: 10px;
}
.content .main_nav .nav ul .icon img{
	width: 20px;
	margin-top: 0;
}
.content .main_nav .nav ul .name{
	max-width: 130px;
	line-height: 16px;
	padding: 9px 0;
	font-size: 14px;
	position: relative;
}
.content .main_nav .nav ul .dot{
	float: left;
	display: block;
	font-size: 12px;
	background-color: red;
	color: #fff;
	line-height: 14px;
	height: 14px;
	text-align: center;
	padding: 0 5px;
	margin-top: 10px;
	margin-left: 5px;
	border-radius: 7px;
}
.content .main_nav .nav .first_nav .name{
	color: #8d8d8d;
}
/*选中项*/
.content .main_nav .nav .on{
	background-color: #186BC7;
}
.content .main_nav .nav .on .icon img{
	margin-top: -20px;
}
.content .main_nav .nav .on .name{
	color: #FFFFFF;
}
/*选中项 end*/
/*左导航 end*/

/*右内容*/
#companyIndex .main_content,#othIndex .main_content{
	min-height: 720px;
}
#systemIndex .main_content{
	min-height: 890px;
}
.content .main_content{
	width: 989px;
	border-left: 1px solid #ddd;
}
.content .main_content .subNav{
	height: 68px;
	line-height: 68px;
	overflow: hidden;
	padding: 0 30px;
}
.content .main_content .subNav .subTitle{
	font-size: 16px;
	font-weight: bold;
}
.content .main_content .subNav .msn_new_box .icon{
	width: 20px;
	height: 20px;
	margin-top: 24px;
	margin-right: 10px;
}
.content .main_content .subNav .msn_new_box .new_title{
	width: 740px;
	height: 20px;
	margin-top: 24px;
	line-height: 20px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 14px;
}
.content .main_content .subNav .time{
	width: 110px;
	color: #999999;
	height: 14px;
	line-height: 14px;
	margin-top: 27px;
	border-right: 1px solid #EEEEEE;
	text-align: center;
}
.content .main_content .subNav .dm-right{
	font-size: 14px;
}

/*菜单*/
.content .main_content .sub_title{
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	background-color: #f6f8f9;
	border-top: 1px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
	padding-right: 15px;
	overflow: hidden;
}
.content .main_content .sub_title span,.content .main_content .sub_title a{
	display: inline-block;
	padding: 0 30px;
	height: 38px;
	border-bottom: 2px solid #F6F8F9;
}
.content .main_content .sub_title .on{
	border-bottom-color:#186BC7 ;
	/*color: #186BC7;*/
}
/*菜单 end*/

/*多内容切换*/
.content .main_content .sub_cot_list .sub_cot{
	display: none;
}
.content .main_content .sub_cot_list .on{
	display: block;
}


.content .main_content .sub_cot{
	padding: 30px;
	overflow: hidden;
	width: 929px;
}
.content .main_content .sub_cot .fast_link{
	float: left;
	margin-right:50px;
}
.content .main_content .sub_cot .fast_link .icon{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	background-image: url(../images/fast_link.jpg);
	background-position-y: -10px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
}
.content .main_content .sub_cot .fast_link .name{
	font-size: 13px;
	width: 100px;
	margin: auto;
	text-align: center;
	line-height: 1.4;
}


/*筛选*/
.sub_title .sel_wrap{
	margin-top: 3px;
}
.sel_wrap{
	margin-bottom: 30px;
}
.sel_wrap .add_btn{
    display: block;
    height: 34px;
    line-height: 1.2;
    background-color: #0070D0;
    color: #FFFFFF;
    padding: 0 24px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-size: 13px;
}
.sel_wrap .sel_box,.sel_wrap .search_box{
	margin-right: 15px;
}
.sel_wrap .sel_box select{
	width: auto;
	padding-left: 10px;
	line-height: 24px;
	height: 34px;
	border: 1px solid #CCCCCC;
	font-size: 12px;
	cursor: pointer;
	background-color: #FFFFFF;
}
.sel_wrap .search_box{
	border: 1px solid #CCCCCC;
}
.sel_wrap .search_box .search_input{
	width: 200px;
	height: 32px;
	line-height: 1;
	border: none;
	font-size: 12px;
	padding-left: 10px;
	padding-right: 10px;
}
.sel_wrap .search_box .search_btn{
	background-color: #EEEEEE;
	font-size: 13px;
	height: 32px;
	line-height: 1;
	border: none;
	padding: 0 12px;
	cursor: pointer;
	border-left: 1px solid #CCCCCC;
}
/*右内容 end*/


/*通用弹窗*/
.dm-tc{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.5);
	z-index: 9;
	display: none;
}
.dm-tc .submit_wrap{
	width:360px;
	position: relative;
	top: 50%;
	margin-top: -89px;
	margin-left: -180px;
	left: 50%;
	background-color: #FFFFFF;
	overflow: hidden;
}
.dm-tc .title{
	line-height: 36px;
	padding-left: 15px;
	color: #FFFFFF;
}
.dm-tc  .title .close_btn{
	display: block;
	width: 36px;
	line-height: 34px;
	height: 36px;
	text-align: center;
	font-size: 20px;
	color: #FFFFFF;
}
.dm-tc .title .close_btn:hover{
	color: #FFFFFF;
	background-color: rgba(0,0,0,.1);
}
.dm-tc .submit_wrap .prompt_txt{
	padding: 15px;
	text-align: center;
	margin: 24px auto;
}
.dm-tc .btn_box{
	background-color: #fafafa;
	border-top: 1px solid #EEEEEE;
	padding: 8px 5px;
}
.dm-tc .btn_box a{
	display: block;
	font-size: 12px;
	height: 28px;
	line-height: 28px;
	padding: 0 20px;
	border-radius: 3px;
	color: #FFFFFF;
	margin-right: 10px;
}
.dm-tc .btn_box .bg_color{
	border: 1px solid #186BC7;
}
.dm-tc .btn_box .cancel_btn{
	background-color: #FFFFFF;
	border: 1px solid #cecfc9;
	color: #333;
}
/*通用弹窗*/

/*审核进度弹窗*/
.progress_wrap{
	width: 900px;
	position: relative;
	top: 50%;
	left: 50%;
	margin-left: -450px;
	margin-top: -300px;
	background-color: #FFFFFF;
}
.progress_wrap .progress_box{
	overflow: hidden;
}
.progress_wrap .progress_box .dm-table{
	width: 96%;
	margin: 24px auto;
	border-bottom: none;
}
/*审核进度弹窗 end*/



/*完善信息*/
.perfect_base .base_title{
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-left: 10px;
	border-left: 3px solid #186BC7;
}
.perfect_base .base_list{
	margin-bottom: 15px;
}
.perfect_base .base_list .name{
	width: 140px;
	font-size: 14px;
	line-height: 34px;
	/*text-align: right;*/
	/*margin-right: 15px;*/
}
.perfect_base .base_list .input input{
	height: 32px;
	width: 500px;
	line-height: 1;
	padding: 0 10px;
	border: 1px solid #CCCCCC;
}
.perfect_base .base_list .input .date{
	width: 234px;
	font-family: helvetica,arial,"microsoft yahei",sans-serif;
}
.perfect_base .base_list .input .prompt_txt{
	color: #999;
	padding: 5px 0;
	line-height: 20px;
}
.perfect_base .base_list .input_read input{
	border-color: #FFFFFF;
	padding: 0;
}
.perfect_base .base_list .input .sel_box{
	margin-right: 10px;
}
.perfect_base .base_list .input select{
	min-width: 120px;
	padding-left: 10px;
	height: 34px;
	border: 1px solid #CCCCCC;
	cursor: pointer;
	background-color: #FFFFFF;
}
.perfect_base .base_list .input textarea{
	width: 700px;
	height: 90px;
	border: 1px solid #CCCCCC;
	resize: none;
	padding: 10px;
	line-height: 1.4;
}
/*完善信息 end*/

/*底部按钮*/
.bottom_btn{
	border-top: 1px solid #EEEEEE;
	padding-bottom: 15px;
	padding-top: 15px;
	/*padding-left: 125px;*/
	font-size: 0;
	text-align: center;
	margin-top: 50px;
}
.top_btn{
	border-top: none;
	margin-top: 0;
	/*border-bottom: 1px solid #EEEEEE;*/
	text-align: left;
	/*width: 100%;*/
	padding-top: 0;
}
.bottom_btn a{
	display: inline-block;
	height: 32px;
	padding: 0 24px;
	line-height: 34px;
	margin-right: 15px;
	font-size: 13px;
	color: #FFFFFF;
	border-radius: 3px;
}
.bottom_btn .back_btn{
	background-color: #FFFFFF;
    border: 1px solid #cecfc9;
    color: #333;
}
.bottom_btn .bg_color{
	border: 1px solid #186BC7;
}
/*底部按钮 end*/


/*闪失弹窗*/
.save_tc{
	position: fixed;
	z-index: 9;
	background-color: rgba(0,0,0,.6);
	color: #FFFFFF;
	height: 36px;
	line-height: 36px;
	padding: 0 15px;
	top: 50%;
	left: 50%;
	margin-top: -18px;
	margin-left: -50px;
	font-size: 13px;
	border-radius: 3px;
	display: none;
}
/*闪失弹窗 end*/


/*提示语*/
.top_prompt{
	background-color: #e0eaf6;
	padding: 14px 20px;
	border-radius: 3px;
}
.top_prompt .bg_color{
	display: inline-block;
	width: 18px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
	color: #FFFFFF;
	font-size: 14px;
	margin-right: 8px;
	vertical-align: middle;
}
.top_prompt h6{
	line-height: 20px;
	font-size: 13px;
	display: inline-block;
	vertical-align: middle;
}
/*提示语 end*/

hr{
	margin: 30px auto 0;
}



/*系统通知*/
.msn_list{
	border-top:1px solid #eee;
}
.msn_list .msn_box{
	padding: 12px 10px;
	cursor: pointer;
}
.msn_list .msn_box:hover{
	background-color: #f4f5f9;
}
.msn_list .msn_box .msn_title{
	line-height: 20px;
}
.msn_list .msn_box .msn_title .dot{
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #d5d5d5;
	margin-top: 7px;
	margin-right: 14px;
}
.msn_list .msn_box .msn_title .red{
	background-color: red;
}
.msn_list .msn_box .msn_title .title_name{
	width: 700px;
	color: #666;
}
.msn_list .msn_box .msn_title .time{
	color: #999;
	padding-right: 30px;
	position: relative;
}
.msn_list .msn_box .msn_title .time .arrow{
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	right: 0;
	background-image: url(../images/arrow.png);
	background-position: center;
	background-repeat: no-repeat;
}

.msn_list .msn_box .msn_detail{
	display: none;
	width: 860px;
	font-size: 14px;
	line-height: 20px;
	margin-left: 20px;
	margin-top: 15px;
	text-align: justify;
}
.msn_list .on{
	background-color: #f4f5f9;
}
.msn_list .on .msn_title .title_name{
	color: #333333;
}
.msn_list .on .msn_title .time .arrow{
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}




/*输入内容弹窗*/
.submit_wrap .add_box{
	padding: 30px 15px 20px;
}
.submit_wrap .add_box .add_list{
	margin-bottom: 6px;
}
.submit_wrap .add_box .add_list .name{
	font-size: 14px;
	line-height: 34px;
	width: 80px;
	font-weight: bold;
	text-align: right;
}
.submit_wrap .add_box .add_list .input{
	width: 240px;
}
.submit_wrap .add_box .add_list .input input{
	width: 210px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid #CCCCCC;
	height: 22px;
}
.submit_wrap .add_box .add_list .input select{
	height: 34px;
	border: 1px solid #CCCCCC;
	padding-left: 10px;
	padding-right: 50px;
}
.submit_wrap .add_box .add_list .input .txt_prompt{
	font-size: 12px;
	padding: 12px 0;
	color: #999999;
}

/*修改密码弹窗*/
.edit_tc .submit_wrap{
	margin-top: -180px;
}
.edit_tc .submit_wrap .add_box .add_list{
	margin-bottom: 0;
}



/*时间筛选*/
.date_sel{
	overflow: hidden;
	font-size: 0;
	margin-right: 15px;
}
.date_sel input{
	display: inline-block;
	height: 32px;
	width: 120px;
	border: 1px solid #CCCCCC;
}
.date_sel .line{
	display: inline-block;
	line-height: 34px;
	margin: 0 10px;
	font-size: 14px;
}



/*查看意见弹窗*/
.agreement_wrap{
	background-color: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 500px;
	margin-left: -250px;
	margin-top: -200px;
}
.agreement_wrap .prompt_txt{
	padding:20px 30px 10px;
	line-height: 1.5;
	font-size: 15px;
}
.agreement_wrap .file-download{
	display: block;
	padding:0 30px 25px;
	text-decoration: underline;
}


/*申请重新考察*/
.agreement_wrap .dm-textarea{
	display: block;
	width: 420px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	height: 80px;
	border: 1px solid #DDDDDD;
	resize: none;
	padding:6px 10px;
	line-height: 1.4;
}
.update_file_btn{
	display: inline-block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	position: relative;
	overflow: hidden;
	background-color: #ff9966;
	color: #FFFFFF;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
}
.agreement_wrap .update-wrap{
	margin-left: 30px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.agreement_wrap .prompt-info{
	color: #999;
	line-height: 30px;
	margin-left: 10px;
}
.agreement_wrap .file_list{
	margin-left: 30px;
	margin-bottom: 20px;
	margin-top: 10px;
}
.agreement_wrap .file_list .file_name{
	margin-right: 20px;
	text-decoration: underline;
}
.update_file_btn input{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
}





/*进行中动画*/
/*.loading{
	padding: 10px;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 10;
	margin-left: -26px;
	margin-top: -26px;
	background-color: rgba(0,0,0,.4);
	border-radius: 5px;
}*/
/*.loading img{
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -15px;
	margin-left: -15px;
}*/


/* 新增6个字段后样式 */
.projectMod .addBtn{color: #0099FF;}
.projectMod .delBtn{color: red;}


.progress_wrap .prompt_txt{
    line-height: 1.8;
    padding: 30px;
    font-size: 15px;
}


/* 新增css代码start */
.del_p{
	color: red;
	cursor: pointer;
	margin-top: 5px;
}
.projectBack{
	float: right;
	color: #0099FF;
	font-size: 14px;
	cursor: pointer;
}
.newBtn{
	background-color: #0070D0;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 10px 10px;
	float: right;
	cursor: pointer;
}
.newBtn_del{
	background-color: red;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 10px 10px;
	float: right;
	cursor: pointer;
}
.nextbtn_div{
	width: 100%;
	text-align: center;
	padding-bottom: 20px;
}
.nextBtn{
	background-color: #0070D0;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 10px 10px;
	cursor: pointer;
	margin: 0 auto;
}
.project_div{
	font-size: 14px;
	padding-top: 10px;
}
.project_div p{
	padding: 5px 0;
}
.project_div p span{
	margin-left: 20px;
}
.seecolor{
	padding-top: 5px;
	color: #333;
	display: block;
	font-size: 14px;
	cursor: pointer;
}
.seecolor:hover{
	color: #186bc7 !important;
}
.nextBtnmax{
	background-color: #186BC7;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	margin: 0 auto;
	width: 180px;
	height: 33px;
	line-height: 33px;
	text-align: center;
	padding: 0;
}

.lable_style{
	font-size: 14px;
}
.input_style{
	height: 30px;
	width: 500px;
	line-height: 1;
	padding: 0px!important;
	border: 1px solid #CCCCCC;
	border-radius: 4px;
}
.p_style{
	font-size: 12px;
	color: #999;
	padding: 10px 0;
}
.color99{
	color: #999;
}
.otw_p{
	width: 100%;
}
.otw{
	width: 45%;
	display: inline-block;
	overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
	font-size: 14px;
	color: #333;
}
.margin_span{
	margin-left: 8px;
	font-size: 12px;
	color: #999;
}

#expert-wrap_project, #expert-wrap_project .expert-box{
	max-width: 95%;
}
#expert-wrap_project .expert-box .expert-name{
	max-width: 90%;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}
.loading_w{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	/* background-color: rgba(0,0,0,.1); */
	z-index: 9;
	display: none;
}
.loadingImg{
	width: 50px;
	height: 50px;
	margin: 0 auto;
	padding-top: 22%;
}
/* 新增css代码end */