body{
	background: #F8F8F8;
}

.header_tab{
	padding-top: 525px;
	box-sizing: border-box;
}
.header_tab ul{
	display: flex;
	justify-content: space-between;
	padding: 0 120px;
	height:35px;
}
.header_tab ul li{
	position: relative;
}
.header_tab ul li a{
	font-size: 14px;
	color:#ffffff;
}
.header_tab ul li.active:after{
	content:"";
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	bottom:0;
	width:40px;
	height:8px;
	background:#fff;
	border-radius:4px;
}
.news_card_wrapper {
    position: relative;
     margin-top: -235px;    
    z-index: 2;            
    padding-bottom: 40px; 
}
.news_card{
	width:1400px;
	margin:auto;
	background:#fff;
	border-radius:8px;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
	position:relative;
	overflow:hidden;
	padding-bottom: 40px;
}

.home_top{
	display: flex;
	justify-content: space-between;
	padding-right:20px;
	align-items: center;
}
.home_top p:nth-of-type(1){
	height: 58px;
	padding: 0 20px;
	box-sizing: border-box;
	background: #EBEDF0;
	border-radius: 8px 0px 32px 0px;
	font-weight: bold;
	font-size: 18px;
	color: #333333;
	line-height: 58px;
	text-align: center;
}

/* 表单区 */
.opinion_form{
	padding: 40px 78px;
	box-sizing: border-box;
}
.form_item{
	display: flex;
	align-items: flex-start;
	margin-bottom: 24px;
}
.form_item label{
	width: 100px;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	line-height: 40px;
}
.form_item select,
.form_item input{
	width: 400px;
	height: 40px;
	background: #F5F6F7;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	padding: 0 16px;
	box-sizing: border-box;
	font-size: 13px;
	color: #333333;
	outline: none;
}
.form_item select:focus,
.form_item input:focus,
.form_item textarea:focus{
	border-color: #C90000;
}
.form_item textarea{
	width: 700px;
	height: 180px;
	background: #F5F6F7;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	padding: 12px 16px;
	box-sizing: border-box;
	font-size: 13px;
	color: #333333;
	line-height: 22px;
	resize: vertical;
	outline: none;
}
.btn_submit{
	width: 200px;
	height: 40px;
	background: #C90000;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	margin-left: 100px;
}
.btn_submit:disabled{
	background: #cccccc;
	cursor: not-allowed;
}
.form_msg{
	display: none;
	margin-left: 100px;
	margin-bottom: 24px;
	width: 400px;
	padding: 10px 16px;
	box-sizing: border-box;
	border-radius: 6px;
	font-size: 13px;
	line-height: 20px;
}
.msg_success{
	background: #E8F6EE;
	color: #1E8E3E;
	border: 1px solid #BFE5CD;
}
.msg_error{
	background: #FDECEC;
	color: #C90000;
	border: 1px solid #F5C2C2;
}
