p + p {
    margin-top: 10px;
}

.edit_area {
	width: 100%;
	font-size: 18px;
	line-height: 35px;
}

.edit_area h1 {
	position: relative;
	font-size: 28px;
	font-weight: 900 !important;
	padding: 15px 0;
	margin-bottom: 50px;
	font-weight: 900;
	text-align: center;
	border-bottom: #ff954d 1px solid;
}

.edit_area h1:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: calc( 50% - 150px );
	width: 300px;
	height: 10px;
	border-radius: 10px;
	background-color: #ff954d;
}

.edit_area h2 {
	position: relative;
	font-size: 24px;/*edit*/
	line-height: 25px;
	padding: 2.5px 0 2.5px 20px;
	margin-bottom: 20px;/*edit*/
}

.edit_area h2:before {
	content: '';
	position: absolute;
	/*top: 1.5px;edit*/
	top: 2.5px;
	left: 0px;
	width: 5px;
	height: calc( 100% - 5px );
	border-radius: 5px;
	background-color: #ff954d;
}

.edit_area * + h2 {
	margin-top: 50px;
}

.edit_area h3 {
	display: inline-block;
	font-size: 20px;
	line-height: 35px;
	margin-bottom: 15px;/*edit*/
	font-weight: 900;
	border-bottom: #666 1px solid;
}
/*新增*/
.edit_area * + h3 {
	margin-top: 15px;
}

.edit_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-bottom: 50px;
}

.edit_content img {
	width: auto;
	max-width: 100%;
	
}

.edit_content .edit_text {
	width: 100%;
}

.edit_content .edit_text p {
	font-size: 18px;
	line-height: 30px; /*edit*/
}

.edit_content > * + * {
	margin-top: 25px;
} /*edit*/



/***img_right***/

.edit_content.img_right {
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

.edit_content.img_right img {
	width: calc( 100%/3 - 25px );
}

.edit_content.img_right .edit_text {
	width: calc( 200%/3 - 25px );
}

.edit_content.img_right > * + * {
	margin-top: 0px;
}

/***img_left***/

.edit_content.img_left {
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
}

.edit_content.img_left img {
	width: calc( 100%/3 - 25px );
}

.edit_content.img_left .edit_text {
	width: calc( 200%/3 - 25px );
}

.edit_content.img_left > * + * {
	margin-top: 0px;
}


/***focus***/

.edit_content.focus .edit_text {
	padding: 35px;
	font-style: italic;
	border-radius: 5px;
}


/***edit_list***/

.edit_list {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 50px;
}

.list_3 .list_item {
	width: calc( 100%/3 - 100px/3 );
}

.list_4 .list_item {
	width: calc( 100%/4 - 150px/4 );
}

.list_5 .list_item {
	width: calc( 100%/5 - 200px/5 );
}

.list_item {
	display: flex;
	flex-direction: column;
}

.list_item img {
	width: 100%;
	overflow: hidden;
}

.list_item p {
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
	font-size: 18px;
	line-height: 35px;
}

.list_item > * + * {
	margin-top: 25px;
}

.list_item.radius img {
	border-radius: 10px;
}

.list_item.circle img {
	border-radius: 100%;
}


.edit_area iframe {
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}

.content_link {
    text-decoration: underline !important;
    color: #FF954D;
}

.list_number li {
    padding-left: 10px;
    margin-left: 20px;
    list-style: auto;
    font-size: 18px;
}

.list_normal li {
    margin-left: 20px;
    list-style: disc;
    font-size: 18px;
}

@media screen and (max-width: 1024px) {

	.edit_area {
		font-size: 14px;
		line-height: 20px;
	}

	.edit_area h1 {
		font-size: 24px;
		line-height: 35px;
	}

	.edit_area h1:after {
		width: 150px;
		left: calc( 50% - 75px );
	}

	.edit_area h2 {
		font-size: 20px;
		margin-bottom: 15px;/*edit*/
	}

	.edit_area * + h2 {
		margin-top: 35px;
	}

	.edit_area h3 {
		font-size: 16px;
		line-height: 25px;/*edit*/
		text-align: left;/*edit*/
		margin-bottom: 10px;/**edit/
	}

	.edit_content {
		margin-bottom: 40px; /*edit*/
	}

	.edit_content .edit_text p {
		font-size: 16px;/*edit*/
		line-height: 24px;/*edit*/
	} 

	.edit_content.img_left {
		flex-direction: column-reverse;
		align-items: center;
	}

	.edit_content.img_right {
		flex-direction: column;
		align-items: center;
	}

	.edit_content.img_left img,
	.edit_content.img_right img {
		width: auto;
		max-width: 100%;
	}

	.edit_content.img_left .edit_text,
	.edit_content.img_right .edit_text {
		width: 100%;
	}

	.edit_content.img_left > * + * {
		margin: 0 0 25px;
	} /*edit*/

	.edit_content.img_right > * + * {
		margin: 15px 0 0;
	} /*edit*/

	.edit_content > * + * {
	margin-top: 20px;
	} /*edit*/

	/***edit_list***/

	.edit_list {
		flex-direction: column;
		align-items: center;
		margin-bottom: 35px;
	}

	.list_item {
		max-width: 350px;
	}

	.list_item + .list_item {
		padding-top: 25px;
		border-top: #aaa 1px solid;
		margin-top: 25px;
	}

	.list_3 .list_item,
	.list_4 .list_item,
	.list_5 .list_item {
		width: 100%;
	}

	.list_item p {
		font-size: 14px;
		line-height: 20px;
	}

	.list_item > * + * {
		margin-top: 10px;
	}

	.list_number li {
        font-size: 16px;
        line-height: 24px;
    }
    
    .list_normal li {
        font-size: 16px;
        line-height: 24px;
    }

}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
}
