div.news-detail
{
	word-wrap: break-word;
}
div.news-detail img.detail_picture
{
	float:left;
	margin:0 8px 6px 1px;
}
.news-date-time
{
	color:#486DAA;
}
code {
	position: relative;
	overflow: hidden;
}
code:after {
	content: "Copy";
	position: absolute;
	right: 5px;
	top: 5px;
	padding: 2px;
	background: #fff;
	opacity: 0;
	cursor: pointer;
	transition: all .3s;
}
code:hover:after {
	opacity: 1;
}
@keyframes myAnimation{
	0%{
		opacity: 1;
	}
	50%{
		opacity: 0.5;
	}
	99.99999999%{
		opacity: 0;
	}
	100%{
		display: none;
	}
}

.copied{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #0061f2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;

	animation: myAnimation linear 2s;
	animation-iteration-count: 1;
	transform-origin: 50% 50%;
	-webkit-animation: myAnimation linear 2s;
	-webkit-animation-iteration-count: 1;
	-webkit-transform-origin: 50% 50%;
	-moz-animation: myAnimation linear 2s;
	-moz-animation-iteration-count: 1;
	-moz-transform-origin: 50% 50%;
	-o-animation: myAnimation linear 2s;
	-o-animation-iteration-count: 1;
	-o-transform-origin: 50% 50%;
	-ms-animation: myAnimation linear 2s;
	-ms-animation-iteration-count: 1;
	-ms-transform-origin: 50% 50%;

}
.newscontent img{
	width: 100%;
}