body {
	background-color: #FAFAFA;
}

@media (min-width:1530px) {
	.container {
		width: 1170px;
	}
}

.detail-box {
	margin: 80px auto 120px;
	width: 940px;
	border: 1px solid #DADADA;
	background-color: #FFFFFF;
	border-radius: 3px;
}

.detail-title {
	font-size: 18px;
	color: #262626;
}

.detail-body {
	width: 100%;
	font-size: 14px;
	color: #666666;
	line-height: 26px;
	text-align: justify;
	border-top: 1px solid #F1F1F1;
}

.detail-like {
	padding: 77px 0;
	margin-top: 30px;
	border-top: 1px solid #F1F1F1;
}

.detail-like>.like-box {
	font-size: 18px;
	text-align: center;
	color: #00586c;
}

.detail-like>.like-box>.like {
	position: relative;
	cursor: pointer;
	width: 116px;
	height: 66px;
	background: url("/img/effect/effect-like1.png") no-repeat center;
	background-size: 100% 100%;
	transition: all .3s;
}

.detail-like>.like-box>.like>.icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 32px;
	background: url("/img/icon/like.png") no-repeat center;
	background-size: 100% 100%;
	transition: all .3s;
}

.detail-like>.like-box>.like:hover {
	background-image: url("/img/effect/effect-like2.png");
}

.detail-like>.like-box>.like:hover>.icon {
	background-image: url("/img/icon/like1.png");
}

.detail-like>.like-box>.like.active::after {
	position: absolute;
	top: 0;
	left: 0;
	content: ' ';
	width: 100%;
	height: 100%;
	background: url("/img/effect/effect-like2.png") no-repeat center;
	background-size: 100% 100%;
}

.detail-like>.like-box>.like.active>.icon {
	background-image: url("/img/icon/like1.png");
}

.detail-footer {
	padding: 30px 0;
	border-top: 1px solid #F1F1F1;
}

/* 2020/10/23 */
.btn_mask {
	position: relative;
	width: 113px;
	line-height: 30px;
	font-size: 12px;
	color: #337ab7;
	background-color: transparent;
	text-align: center;
	margin-top: 20px;
	transition: all .3s;
	border: 1px solid #3AEFD0;
	cursor: pointer;
}

.btn_mask::after {
	display: block;
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: #3AEFD0;
	transition: .5s;
}

.btn_mask:hover::after {
	width: 100%;
}

.btn_mask:hover { color: #fff; }
