/*主体内容*/
.padding {
	padding: 20px;
}


.main-case.bg {
	box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
	background-color: white;
	border-radius: 8px 0 0 0;
}

/*标题*/
h1.title {
	font-size: 16px;
	font-weight: bold;
	border-left: 3px solid #173385;
	line-height: 1;
	padding-left: 8px;
	align-items: center;
	justify-content: space-between;
}

span.author {
	text-indent:1em;
	font-weight: normal;
	display: block;
	margin-top: 8px;
	color: #adadad;
	font-size: 12px;
}

.content p{
	font-size: 14px;
	color: #737373;
	line-height: 1.8;
	padding: 10px 0;
	text-indent:2em;
	font-family: 'Times New Roman', Times, serif;
}
.content p .articleTitle{
	font-size: 14px;
	font-weight: bold;
	color: #424242;
}
.img-box {
    width: 100%;
    text-align: center;
	align-items: center;
	justify-content: space-between;
}
.img-box img.img {
	max-height: 600px;
    max-width: 45%;
	border: 0;
    vertical-align: bottom;
}
.line{
	height: 1px;
	width: 100%;
	margin-top: 6px;
	overflow: hidden;
}
.line::before{
	display: block;
	content: " ";
	background-image: linear-gradient(0deg, #95c0f5,#9e0a0a);
	height: 1px;
	transition: 0.2s all;
	transform: translateX(-95%);
}

body:hover .line::before{
	transform: translateX(0);
}


/*底部copyright main-case padding bg text-center*/
.main-case.bg.text-center{
	border-radius: 5px 5px 0 0;
	margin-top: 8px;
	text-align: center;
	background-color: #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height:20px;
	line-height:20px;
}
.text-center a{
	padding-top: 10px;
	font-size: 12px;
	display: inline-block;
	color: #333;
	text-decoration: none;
	transition: 0.2s all;
	cursor: pointer;
}

.text-center a.prev{
	color:#939387;
}
.text-center a.next{
	color:#939387;
}
.text-center a:hover{
	font-size: 13px;
	font-weight: bold;
	color: #ffffff;
}