.PytEditorFrame {
	width: 100%;
	display: block;
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid #ccc;
}

.PytEditorFrame * {
	box-sizing: border-box;
}

.PytEditorFrame .PytToolbar {
	width: 100%;
	padding-top: 5px;
	padding-left: 5px;
	color: #999;
	font-size: 14px;
	background: #F0F0EE;
	border-bottom: 1px solid #ccc;
	outline: none;
	font-size: 0px;
}

.PytEditorFrame .PytToolbar:focus {
	outline: none;
}

.PytEditorFrame .PytToolbar> span,
.PytEditorFrame .PytToolbar> input,
.PytEditorFrame .PytToolbar> select {
	display: inline-block;
	text-align: center;
	cursor: pointer;
	margin-right: 4px;
	border-radius: 4px;
	font-size: 14px;
	border: solid 1px #999;
	color: #999;
	background-color: transparent;
	margin-bottom: 5px;
}

.PytEditorFrame .PytToolbar> span {
	width: 25px;
	height: 25px;
	line-height: 25px;
}

.PytEditorFrame .PytToolbar> input {
	height: 23px;
}

.PytEditorFrame .PytToolbar> select {
	height: 25px;
	line-height: 25px;
}

.PytEditorFrame .PytToolbar> span:hover,
.PytEditorFrame .PytToolbar> select:hover,
.PytEditorFrame .PytToolbar> input:hover {
	color: #666;
	border-color: #666;
}

.PytEditorFrame .PytContent {
	width: 100%;
	padding: 5px;
	color: #333;
	font-size: 14px;
	border: solid 1px transparent;
	resize: none;
	overflow-y: auto;
}

.PytDiv {
	width: 320px;
	max-width: 100%;
	position: absolute;
	top: 36px;
	left: 0;
	font-size: 14px;
	border: solid 1px #ccc;
	visibility: hidden;
	z-index: 999;
	background-color: white;
}

.PytDiv.Emotion img {
	cursor: pointer;
	width: 24px;
	height: 24px;
	margin: 1px;
}


/*手机端样式*/

@media only screen and (max-width: 1000px) {
	.PytEditorFrame .PytToolbar> span,
	.PytEditorFrame .PytToolbar> input,
	.PytEditorFrame .PytToolbar> select {
		font-size: 18px;
		border: solid 1px #999;
		color: #999;
		background-color: transparent;
	}
	.PytEditorFrame .PytToolbar> span {
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
	.PytEditorFrame .PytToolbar> input {
		height: 33px;
	}
	.PytEditorFrame .PytToolbar> select {
		height: 35px;
		line-height: 35px;
	}
}