.mycontent {
    color: #333;
    margin-top: 30px;
    font-size: 16px;
	word-wrap:break-word;
}

/***定义缩进***/
.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;
}

/**h1不使用，将其普通化**/
.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 {
    border: 1px solid #e4e4e3;
    padding: 6px 8px;
}

.mycontent th {
    font-weight: bold;
    text-align: center;
    background-color: #f5f5f5;
}

.mycontent td {}

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


/**定义图像和内文链接**/
.mycontent img {
	border:1px solid #eee;
	width:auto;
	margin: 0 auto;
    display: block;
}

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


/**定义列表ul和ol**/
.mycontent ul,
.mycontent 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;
}

/**定义程序代码code样式**/

.mycontent code{
	overflow-x:auto;
	word-break:keep-all;
}

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