@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
	font-family: 'PingFangSC-Regular','helvetica neue',arial,'hiragino sans gb','microsoft yahei ui','microsoft yahei',sans-serif;
}
html, body, div, p, span, font, em, ul, li, dl, dt, dd, table, tr, td, input, button, a {
	margin: 0;
	padding: 0;
    list-style: none;
}
body {
	font-size: 16px;
	color: #333;
    background: url('../images/bg.png') center top no-repeat;
}
html,body{
	height: 100%;
	width: 100%;
	min-width: 1200px;
}
ul {
	list-style-type: none;
}
a {
	text-decoration: none;
	color: #333;
}
a:hover {
	text-decoration: none;
	/* color: #2f6699; */
}
img {
	border: 0px;
	vertical-align: top;
}
em, i {
	font-style: normal;
}
.clr {
	margin: 0px;
	padding: 0px;
	height: 0px;
	width: 0px;
	overflow: hidden;
	clear: both;
}
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix {
    *zoom: 1;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
input, textarea, button, select{
	outline: none;
}
/*去掉IE11的叉叉*/
input::-ms-clear,
select::-ms-expand {
  display: none; 
}
.container{
    width: 1200px;
    margin: 0 auto;
}


.header{
    height: 503px;
    background: url('../images/topbg.png') center top no-repeat;
}
.logo{
    float: left;
    width: 462px;
    height: 58px;
    margin-top: 43px;
}
.logo a{
    display: block;
    height: 58px;
}

.gonggao{
    background: #2d56cd;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}
.gonggao .mt{
    height: 83px;
    line-height: 83px;
    font-size: 32px;
    color: #2d56cd;
    text-align: center;
    background: #fff;
    font-weight: bold;
}
.gonggao .cont{
    padding: 40px 52px;
    line-height: 34px;
    font-size: 16px;
    color: #fff;
    text-align: justify;
    text-justify: inter-word;
    line-break: anywhere;
}


.cont > dl{
    padding-top: 30px;
}
.cont > dl > dt span{
    
    font-size: 24px;
    color: #2d56cd;
    background: linear-gradient( to top, rgba(45, 86, 205, 0.3) 0%, rgba(45, 86, 205, 0.3) 8px, transparent 8px, transparent 100% );
}
.cont > dl > dd{
    margin-top: 25px;
}
.cont > dl > dd p.error{
    margin-top: 10px;
    font-size: 14px;
    color: #d90000;
}
.cont > dl > dd.contentbox p.error{
    margin-top: 15px;
    font-size: 14px;
    color: #d90000;
}
label{
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 18px;
    height: 25px;
    line-height: 25px;
}
label em{
    color: #d90000;
}
.option{
    position: relative;
    height: 46px;    
}
.option .tit{
    display: block;
    padding: 0 15px;
    background: url('../images/arrdown.png') right 15px center no-repeat;
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.option .divbox{
    display: none;
    position: absolute;
    left: 0;
    top: 46px;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-top: 0;
    padding: 0 15px;
    height: 200px;
    overflow-y: auto;
}
.option .divbox li{
    cursor: pointer;
    line-height: 46px;
    
}
input.int{
    width: 100%;
    height: 46px;
    line-height: 46px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-size: 16px;
    padding: 0 15px;
}
input.yzm{
    width: 360px;
}
textarea{
    width: 100%;
    height: 156px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-size: 16px;
    padding: 10px 15px;
}
.info{
    font-size: 16px;
    color: #999999;
    text-align: right;
    margin-top: -30px;
    padding: 0 15px;
}
.info b{
    color: #2d56cd;
    padding: 0 5px;
}
.tip{
    font-size: 16px;
    color: #d90000;
}
.custom-radio input[type="radio"] {
  display: none;
}
 
/* 自定义单选框样式 */
.custom-radio .radio-btn {
  height: 18px;
  width: 18px;
  border: 1px solid #eeeeee;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
}
 
/* 当单选框处于选中状态时的样式 */
.custom-radio input[type="radio"]:checked + .radio-btn {
  background-color: #fff;
  border: 1px solid #0546d8;
}
 
/* 创建一个内在的圆圈，表示选中 */
.custom-radio input[type="radio"]:checked + .radio-btn::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #0546d8;
}

/* 隐藏原生复选框 */
.custom-checkbox input[type="checkbox"] {
    display: none;
  }
   
  /* 当复选框被选中时，改变背景颜色和文字 */
  .custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background: url('../images/checkboxed.png') left top no-repeat!important;
  }
   
  /* 定义外观和布局 */
  .checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../images/checkbox.png') left top no-repeat;
    vertical-align: middle;
  }

.input-city{
    display: inline-block;
    position: relative;
    width:520px;
    height: 46px;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-size: 16px;
    
}
#city1 {
    width:520px;
    
}
.city-select-tab > a{
    padding: 8px 10px;
}
.city-picker-dropdown{
    top:46px!important;
    z-index:999;
}
.city-picker-span{
    width: 100%;
    background: url('../images/arrdown.png') right 15px center no-repeat;
    border-bottom: 0;
    line-height: 46px;
    padding: 0 15px;
}
.w50{
    width: 520px;
    height: 89px;
}

.liuyan{
    margin-top: 50px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 0 50px 40px;
    background:#fff;
}
.liuyan .mt{
    border-bottom: 2px solid #2d56cd;
    height: 109px;
    line-height: 109px;
    font-size: 32px;
    color: #2d56cd;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
}
.liuyan .cont{
    border-top: 1px solid #2d56cd;
    margin-top: 2px;
}
.question{
    background: #fff;
    padding: 0 50px 34px;
}
.member{
    background: #fff;
    padding: 0 50px 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.tijiao{
    text-align: center;
}
.tijiao label{
    font-size: 16px;
    font-weight: normal;
    cursor: pointer;
}
.tijiao label a{
    color: #d90000;
    cursor: pointer;
}
.tijiao button{
    display: block;
    width: 300px;
    height: 46px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    background: #d90000;
    font-size: 18px;
    text-align: center;
    color: #fff;
    border: 0;
    margin: 0 auto;
}


.footer{
	height: 173px;
	text-align: center;
	line-height: 26px;
	font-size: 16px;

	color: #fff;
 }
.footer-mid{
	padding-top:35px;
}
.footer p.footernav{
	color: #fff;
	font-weight: bold;
}
.footer p.footernav a{
	color: #fff;
	padding:0 7px;
}
.footer p span{
	background: url("https://www.ndrc.gov.cn/images/beiannew.png") left center no-repeat;
	padding-left:25px;
	display: inline-block;
	margin-left: 10px;
}
.footer .container{
	position: relative;
}
.footer-left{
	position: absolute;
	left: 0;
	top:55px;
}
.footer-left li{
	float: left;
	margin-right: 34px;
}
.footer-left li:nth-child(2){
	margin-top: 4px;
}

.fixed {
    position: fixed;
    height: 100%;
    width: 100%;
}
.mask{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}
.xuzhi{
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 800px;
    height: 475px;
    background: #fff;
    padding: 0 50px;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.xuzhi-title{
    height: 85px;
    line-height: 95px;
    border-bottom: 1px solid #eeeeee;
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
}
.xuzhi-title a.close{
    float: right;
    padding-top: 44px;
    height: 85px;
    cursor: pointer;
}
.xuzhi-cont{
    font-size: 16px;
    line-height: 2;
    padding-top: 20px;
}
.xuzhi-cont a{
    margin: 30px auto 0;
    display: block;
    width: 300px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background: #d90000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
}

.mask_login{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}
.xzLogin{
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 800px;
    height: 475px;
    background: #fff;
    padding: 0 50px;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.xzLogin-title{
    height: 85px;
    line-height: 95px;
    border-bottom: 1px solid #eeeeee;
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
}
.xzLogin-title a.close{
    float: right;
    padding-top: 44px;
    height: 85px;
    cursor: pointer;
}
.xzLogin-cont{
    font-size: 16px;
    line-height: 2;
    padding-top: 20px;
}
.xzLogin-cont a{
    margin: 30px auto 0;
    display: block;
    width: 300px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background: #d90000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
}

.loginpop{
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 800px;
    height: 300px;
    background: #fff;
    padding: 95px;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.loginpop a.close{
    position: absolute;
    right: 50px;
    top: 44px;
    cursor: pointer;
}
.loginpop strong{
    display: block;
    text-align: center;
    font-size: 24px;
}
.loginpop .buttongroup{
    display: flex;
    justify-content: space-between;
    width: 435px;
    margin: 40px auto 0;
}
.loginpop .buttongroup a{
    width: 200px;
    height: 46px;
    line-height: 46px;
    font-size: 18px;
    text-align: center;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.loginpop .buttongroup a.login{
    background: #d90000;
    color: #fff;
}
.loginpop .buttongroup a.reg{
    border: 1px solid #d90000;
    color: #d90000;
}
