/*********后台可编辑的图文内容，应使用或参考本CSS***********/
/**最少应定义段落、h1-h3、表格、列表、图像等元素的样式**/
.mycontent {
	color: #333;
	padding: 10px;
	font-size: 16px;
}
/***定义缩进***/
.mycontent .indent{
	margin-left:32px;
}

/***定义段落p***/
.mycontent p{
	margin-top:16px;
	line-height:32px;
	text-indent:32px;
}

.mycontent p.noindent{/**不缩进的段落**/
	text-indent:0;
}
/***定义h1~h3***/
.mycontent h1,.mycontent h2,.mycontent h3{
	font-weight: bold;
	margin:16px 0;
}
.mycontent h1 {
	font-weight:normal;
    color: #333;
    font-size: 16px;
}

.mycontent h2 {
	margin-top:60px;
	margin-bottom:30px;
	padding-bottom:10px;
    color: #333;
    font-size: 24px;
    border-bottom: 1px dashed #eee;
}

.mycontent h3 {
    color: #663399;
    font-size: 20px;
	line-height:40px;
}

/**定义表格**/
.mycontent table {
    margin: 16px 0;
    border-collapse: collapse;
}

.mycontent tr:hover {
    background-color: #f6f6f6;
}

.mycontent th,td {
    padding: 6px 8px;
}

.mycontent th {
    font-weight: bold;
    text-align: center;
    background-color: #7AD7FF;
	border: 1px solid #7AD7FF;
}

.mycontent td {
	border: 1px solid #e4e4e3;
}

.mycontent td.center {
    text-align: center;
}

/**定义图像和内文链接**/
.mycontent img{

}

.mycontent a{
	color: #c72730;
	text-decoration:underline;
}

/**定义列表ul和ol**/
.mycontent ul,ol{
	margin-top:16px;
	margin-left:16px;
}
.mycontent ul.underline li{/**带下划虚线**/
	border-bottom:1px dotted #ccc;
}
.mycontent li{
	list-style:square;
	line-height:32px;
	margin-left:32px;
}
.mycontent ol li{
	list-style:decimal;
}

/**手机下的样式**/
@media only screen and (max-width: 768px) {
	/**图片宽高**/
	.mycontent p{
		text-indent:0;
	}
	.mycontent img{
		width:100% !important;
		height:auto !important;
	}
}

/**特殊样式**/
.mycontent pre {
	margin:28px;
	padding:10px;
	background-color:#eee;
}