/* 解读问题页面 */
#problem {
	border: 1px solid #ddd;
	background: #f1f3f4;
	margin-bottom: 20px;
}
#problem .focus {
	color: #EA4335 !important;
}
#problem .item {
	width: 1000px;
	margin: 0 auto;
	background: #fff;
	padding-bottom: 20px;
}
#problem .item .title {
	height: 60px;
	background: #f1f3f4;
	display: flex;
	align-items: center;
	padding: 20px 20px 0 20px;
	margin-bottom: 20px;
	color: #000;
}
#problem .item .title .icon {
	font-size: 25px;
	margin-right: 20px;
}
#problem .item .title .so-h1 {
	font-size: 18px;
	margin-right: 20px;
}
#problem .item .title .prompt {
	font-size: 14px;
}
#problem .item .cont {
	display: flex;
	align-items: flex-start;
	min-height: 35px;
	margin: 20px 0;
}
#problem .item .cont > span {
	width: 170px;
	font-size: 16px;
	text-align: right;
	height: 40px;
	line-height: 40px;
	margin-right: 20px;
	box-sizing: border-box;
}
#problem .item .cont > input[type=text] {
	border: 1px solid #ccc;
	font-size: 14px;
	height: 40px;
	text-indent: 10px;
	width: 400px;
	font-size: 12px;
	box-sizing: border-box;
}
#problem .item .cont > textarea:focus,
#problem .item .cont > input[type=text]:focus {
	border: 1px solid #77B633;
}
#problem .item .cont > textarea {
	width: 400px;
	padding: 5px 10px;
	min-height: 80px;
	font-size: 12px;
	border: 1px solid #ccc;
}
#problem .item .cont > p {
	width: 360px;
	line-height: 30px;
	font-size: 12px;
	margin: 0 10px 0 auto;
}
#problem .item .cont > label {
	width: 18px;
	height: 18px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 50%;
	margin: 11px 60px 0 0;
	position: relative;
	cursor: pointer;
}
#problem .item .cont > label::before{
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}
#problem .item .cont > label:first-of-type::after{
	content: '男';
}
#problem .item .cont > label:last-of-type::after{
	content: '女';
}
#problem .item .cont > label::after{
	font-size: 14px;
	position: absolute;
	transform: translate(0, -50%);
	top: 50%;
	right: -30px;
}
#problem .item .cont > input[type=radio]:checked:first-of-type + label::before {
	background: #2196F3;
}
#problem .item .cont > input[type=radio]:checked:first-of-type + label {
	box-shadow: 0 0 10px #2196F3;
	border: 1px solid #2196F3;
}
#problem .item .cont > input[type=radio]:checked:last-of-type + label::before {
	background: #EA4335;
}
#problem .item .cont > input[type=radio]:checked:last-of-type + label {
	box-shadow: 0 0 20px #EA4335;
		border: 1px solid #EA4335;
}
#problem .item .cont > select{
	border: 1px solid #ccc;
	font-size: 14px;
	height: 40px;
	text-indent: 10px;
	width: 120px;
	margin-right: 20px;
	box-sizing: border-box;
}
#problem .item .expert {
	height: 40px;
	display: flex;
	align-items: center;
	padding: 0 20px;
}
#problem .item .expert span {
	margin-left: auto;
	font-size: 14px;
	cursor: pointer;
}
#problem .item .expert span:hover{
	color: #77B633;
}
#problem .item .expert img {
	width: 26px;
	margin-left: 10px;
	cursor: pointer;
}
#problem .item .expert label {
	font-size: 14px;
	padding: 2px 10px;
	cursor: pointer;
	border: 1px solid #fff;
	margin-right: 10px;
}
#problem .item .expert label:hover{
	color: #77B633;
	border: 1px solid #77B633;
}
#problem .item .expert .expert-default {
	color: #77B633;
	border: 1px solid #77B633;
}
#problem .item .cont .imgs {
	width: 400px;
	display: flex;
	align-items: center;
}
#problem .item .cont .imgs .img {
	width: 80px;
	height: 80px;
	padding: 2px;
	border: 1px dashed #ccc;
	box-sizing: border-box;
	position: relative;
}
#problem .item .cont .imgs .img img {
	display: block;
	width: 100%;
	height: 100%;
}
#problem .item .cont .imgs .img .del {
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #EA4335;
	top: 3px;
	right: 3px;
	font-size: 12px;
	text-align: center;
	line-height: 18px;
	cursor: pointer;
	color: #fff;
}
.rotateImg {
	animation: rotate-img 0.5s linear infinite normal;
	-webkit-animation: rotate-img 0.5s linear infinite normal;
}
@-webkit-keyframes rotate-img {
  	0%{
		transform: rotateZ(0deg);
	}
  	100% {
    	transform: rotateZ(360deg);
	}
}
@keyframes rotate-img {
  	0%{
		transform: rotateZ(0deg);
	}
  	100% {
    	transform: rotateZ(360deg);
	}
}

#problem .item .expert-infor {
	padding-left: 15px;
	height: 150px;
}
#problem .item .expert-infor .prompt {
	line-height: 160px;
	font-size: 30px;
	text-align: center;
	width: 100%;
	height: 160px;
	color: #aaa;

}
#problem .item .expert-gene {
	float: left;
	width: 312px;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	margin: 10px 5px;
}
#problem .item .expert-gene .top {
	padding-bottom: 10px;
	border-bottom: 1px dashed #ccc;
}
#problem .item .expert-gene .top > img {
	width: 60px;
	height: 60px;
	border: 1px dashed #ccc;
	padding: 2px;
	box-sizing: border-box;
	display: block;
	float: left;
}
#problem .item .expert-gene .top > p {
	float: right;
	width: 200px;
	line-height: 30px;
}
#problem .item .expert-gene .top > p span {
	margin-right: 20px;
}
#problem .item .expert-gene .top .name{
	font-size: 14px;
	color: #1E90FF;
}
#problem .item .expert-gene > p {
	line-height: 22px;
	height: 22px;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 5px;
}
#problem .item .expert-gene label {
	position: absolute;
	width: 40px;
	height: 40px;
	top: -20px;
	right: -20px;
	transform: rotate(45deg);
	overflow: hidden;
}
#problem .item .expert-gene label::after{
	content: "\e603";
	position: absolute;
	transform: rotate(-45deg);
	width: 20px;
	height: 20px;
	bottom: -2px;
	left: 9px;
	text-align: center;
	line-height: 20px;
	font-size: 14px;
	color: #fff;
}
.interpretation-disclaimer {
	width: 1000px;
	height: 40px;
	display: flex;
	align-items: center;
	background: #fff;
	margin: 0 auto;
	padding: 0 0 10px 20px;
	box-sizing: border-box;
}
.interpretation-disclaimer > label {
	width: 16px;
	height: 16px;
	border: 1px solid #1E90FF;
	margin-right: 10px;
	line-height: 16px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	font-size: 14px;
}
.interpretation-disclaimer input[type=checkbox]:checked + label {
	background: #1E90FF;
}
.interpretation-disclaimer > span {
	font-size: 14px;
	color: #0074E8;
	font-weight: bold;
	cursor: pointer;
	text-decoration: underline;
}
.disclaimer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.3);
	display: none;
}
.disclaimer-cont {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 50px;
	width: 700px;
}
.disclaimer-cont-del {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 60px;
	height: 60px;
	width: 60px;
	color: #888;
	text-align: center;
	line-height: 50px;
	cursor: pointer;
}
.disclaimer-cont-title {
	text-align: center;
	font-size: 20px;
	margin: 10px 0 20px;
}
.disclaimer-cont > p {
	text-indent: 2em;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 20px;
}
.interpretation-btn {
	width: 300px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	color: #fff;
	border: 1px solid #2196F3;
	background: #2196F3;
	border-radius: 3px;
	cursor: pointer;
	margin: 30px auto;
	font-size: 18px;
}
/* 解读问题页面 */