/*全局设置*/
* {
  	margin: 0;
  	padding: 0;
}
.container{
  	height: 100%;
	width: 1300px;
	margin: auto;
  	box-sizing: border-box;
	position: relative;
}
.container .tit{
	text-align: center;
	margin:20px auto;
	color: #333;
}
.container .box{
	text-align: center;
	width: 100%;
	display: flex;
}
.container input {
	display: inline-block;
	box-sizing: border-box;
  	flex: 1;
  	margin-bottom: 20px;
  	width: 280px;
  	padding: 10px;
	height: 50px;
  	font-size: 16px;
  	border-radius: 4px;
  	box-shadow: none;
  	color: #444444;
  	border: 1px solid #cccccc;
	outline: none;
}
.container .btn{
  	position: relative;
	text-align: center;
  	display: inline-block;
  	margin-left: 10px;
	width: 150px;
  	height: 50px;
  	line-height: 50px;
  	font-size: 18px;
  	color: white;
  	cursor: pointer;
  	border-radius: 4px;
  	border: 1px solid #eeeeee;
  	background-color: #409EFF;
  	opacity: 1;
  	transition: 0.3s all;
}
#result{
	overflow: hidden;
	background: #f1f2f3;
}
#result h3{
	font-size: 16px;
	color: #333;
	margin:10px;
}
#result .li{
	width: 49%;
	margin: 0.5%;
	float: left;
}
#result p{
	font-size: 14px;
	font-weight: bold;
	color: #333;
}
#result textarea,#result img{
	width: 100%;
	max-width: 100%;
	min-height: 500px;
	margin-top: 10px;
}
#result textarea{
	box-sizing: border-box;
	padding: 10px;
	outline: none;
	border: 1px solid #eee;
	border-radius: 10px;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}
.examp{
	margin: 15px 0;
}
.examp h3{
	margin-bottom: 10px;
	color: #333;
}
.examp p{
	margin-bottom: 10px;
	border-radius: 5px;-webkit-border-radius: 5px;
	background: #f1f2f3;padding: 15px;font-size: 13px;color: #666;color: #555;line-height: 24px;
}