*{
	margin: 0;
	padding: 0;
}
::-webkit-scrollbar{
  width:5px;
  height:5px;
}
::-webkit-scrollbar-track{
  background: rgb(239, 239, 239);
  border-radius:2px;
}
::-webkit-scrollbar-thumb{
  background: #bfbfbf;
  border-radius:5px;
}
::-webkit-scrollbar-thumb:hover{
  background: #333;
}
body{
	margin: 0 20px;
}
.content{
	max-width: 1360px;
	min-width: 960px;
	margin: 15px auto;
}
.content .title{
	font-size: 24px;
	color: #333;
	margin-bottom: 10px;
	text-align: center;
}
.content .des{
	box-sizing: border-box;
	width: 100%;
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6;
	padding: 10px;
	border-radius: 10px;
	font-size: 14px;
	margin: 20px 0;
}
.content .des .tit{
	font-size: 18px;
	color: #333;
	margin-bottom: 10px;
}
.content .warp{
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
	border: 1px solid #ddd;
	margin-bottom:15px;
}
.content .input,.content .output{
	position: relative;
	float: left;
	width: 50%;
	height: 600px;
}
.content textarea{
	display: block;
	box-sizing: border-box;
	min-height:100%;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	padding:10px;
	border:0;
	outline:none;
	font-size: 14px;
	line-height: 22px;
	color: #666;
}
.content .input textarea{
	border-right:solid 1px #ddd;
}
.content .box{
	overflow: hidden;
	background: #f1f2f3;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 10px;
}
.content .box .radio{
	margin-bottom: 20px;
	line-height: 30px;
	
}
.content .box label{
	vertical-align: middle;
	margin-right: 25px;
	cursor: pointer;
}

.content .box label span{
	color: #666;
	position: relative;
	top: 0px;
	margin-left: 5px;
}
.content .box .ipt,.content .box .btn{
	margin-top: 10px;
	overflow: hidden;
}
.content .box .ipt input{
	outline: none;
	border:1px solid #bbb;
	height: 24px;
	margin-left: 5px;
	color: #666;
	padding: 0 5px;
}
.content .box .ipt span{
	margin-left: 0;
}
.content .box .btn span{
	display: inline-block;
	cursor: pointer;
	padding: 5px 10px;
	border: 1px solid #ddd;
	background: #fff;
	font-size: 13px;
	border-radius: 5px;
	margin-right: 10px;
}
.content .box .btn span:hover{
	background: #5cb85c;
	border-color:  #5cb85c;
	color: #FFFFFF;
}