.post {
	width: 70%;
	max-width: 1344px;
	margin-right: auto;
	margin-left: auto;
}
.post .block h1, .post .block h2, .post .block h3 {
	font-size: 18px;
	margin: 0;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #e0e0e0;
}
.post .block h2 {
	border-bottom: 0;
	padding: 0;
	margin: 0;
}
.post .block {
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 10px #e0e0e0;
	margin-top: 40px;
	font-weight: 300;
}
.post .block img, .post .block video {
	border-radius: 5px;
}
.post .block p {
	padding: 0;
	margin: 0;
}
.post .block .game {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 56.25%;
}
.post .block iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	border: none;
}
.post .block .detail {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.post .block .detail:last-child {
	border: 0;
	padding: 0;
	margin: 0;
}
.post .block .detail .fonticon {
	vertical-align: -4px;
	font-weight: 300;
}
.post .block .item {
    margin-top: 15px;
	font-size: 16px;
	transition: all 0.2s;
	font-weight: 300;
	display: block;
	width: fit-content;
}
.post .block .item .fonticon {
	vertical-align: -4px;
}
.post .block .item:hover {
	transform: scale(1.05);
}
.post .block .item:first-child {
    margin-top: 0;
}
.post .block .hr
{
	margin-top: 15px;
	margin-bottom: 15px;
	width: 100%;
	height: 1px;
	background: #e0e0e0;
}
.post .block .space
{
	margin-top: 15px;
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, 0.0);
}
.post .block input, .post .block select {
	padding: 10px;
	text-align: right;
	border-radius: 5px;
	font-size: 16px;
	width: 100%;
	border: 2px solid #e0e0e0;
	background: #ffffff;
	transition: all 0.2s;
	margin-bottom: 15px;
}
.post .block input:focus, .post .block select:focus {
	border-color: #bdbdbd;
}
.post .block button {
	padding: 10px;
	font-weight: bold;
	color: #ffffff;
	border-radius: 5px;
	display: inline-block;
	transition: all 0.2s;
	font-size: 16px;
	background: #f44336;
	border: none;
	cursor: pointer;
}
.post .block button:hover {
	transform: scale(1.05);
}
.post .side {
	width: 30%;
	float: left;
}
.post .content {
	width: calc(70% - 40px);
	float: right;	
}
@media(max-width:1000px)
{
	.post {
		width: 80%;
	}
	.post .side {
		width: 100%;
		float: unset;
	}
	.post .content {
		width: 100%;
		float: unset;	
	}
}