 .form-group{
  font-size: 16px;
  color: #646464;
  margin-bottom: 27px;
}
 .form-group label{
  text-align: right;
  font-weight: normal;
  min-height: 50px;
	line-height: 50px;
  margin-bottom: 0;
}
 .form-group .form-control{
	max-width: 400px;
	height: 50px;
	line-height: 50px;
	border: none;
	background: #F0F4FC;
	box-shadow: none;
	padding-top: 0;
	padding-bottom: 0;
}
 .form-group input::-webkit-input-placeholder{   /* 使用webkit内核的浏览器 */
	color: #A1A1A1;
	font-size: 14px;
}
 .form-group input:-moz-placeholder{    /* Firefox版本4-18 */
	color: #A1A1A1;
	font-size: 14px;
}              
 .form-group input::-moz-placeholder{    /* Firefox版本19+ */
	color: #A1A1A1;
	font-size: 14px;
}              
 .form-group input:-ms-input-placeholder{   /* IE浏览器 */
	color: #A1A1A1;
	font-size: 14px;
}
 .form-group .radio-inline{
	display: flex;
	align-items: center;
	height: 20px;
	margin-top: 5px;
	padding-top: 0;
	padding-left: 0;
	margin-right: 10px;
	cursor: default;
}
 .form-group input[type='radio'] {
	width: 18px;
	height: 18px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	position: relative;
	outline: none;
	border: none;
	margin: 0;
	margin-right: 5px;
	cursor: pointer;
}
 .form-group input[type='radio']::before{
	content: "";
  width: 18px;
	height: 18px;
	border: 2px solid #CFCFCF;
	display: inline-block;
	border-radius: 50%;
	vertical-align: middle;
}
 .form-group input[type='radio']:after {
	content: "";
	width: 10px;
	height: 10px;
	text-align: center;
	background: #CFCFCF;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 5px;
	left: 4px;
}
 .form-group input[type='radio']:checked:before {
	border: 2px solid #3A8BE9;
}
 .form-group input[type='radio']:checked:after {
	background: #3A8BE9;
}
 .form-group input[type='checkbox'] {
	width: 18px;
	height: 18px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	position: relative;
	outline: none;
	border: none;
	margin: 0;
	margin-right: 5px;
	cursor: pointer;
}
 .form-group input[type='checkbox']::before{
	content: "";
  width: 18px;
	height: 18px;
	border: 2px solid #CFCFCF;
	display: inline-block;
	border-radius: 5px;
	vertical-align: middle;
}
 .form-group input[type='checkbox']:after {
	
}
 .form-group input[type='checkbox']:checked:before {
	border: 2px solid #3A8BE9;
  background: #3A8BE9;
}
 .form-group input[type='checkbox']:checked:after {
  content: "";
	width: 10px;
	height: 6px;
  border: 2px solid #fff;
  border-top: transparent;
  border-right: transparent;
	display: block;
	position: absolute;
	top: 5px;
	left: 4px;
  transform: rotate(-45deg);
}
 
 .form-group .btn{
	width: 230px;
  height: 50px;
  background: #3A8BE9;
	border: none;
	color: #fff;
  font-size: 18px;
}

 .form-group .upload .form-control{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: calc(100% - 80px);
}

 .form-group .upload .upBtn{
  display: inline-block;
  width: 80px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  background: #3A8BE9;
  color: #fff;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  text-align: center;
  position: relative;
}
 .form-group .upload .upBtn.disabled{
  background: #C8C9CC;
}
 .form-group .upload .upBtn:hover{
  text-decoration: none;
}
 .form-group .upload .upBtn input{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 50px;
  opacity: 0;
  z-index: 99;
}

@media screen and (max-width: 767px){
 
	 .form-group label{
		text-align: left;
	}
  /*  .code {
    margin-left: 0;
  } */
}
