﻿@charset "utf-8";

.tab_simg {
	width: 100%;
	margin-bottom: 20px;
	display: block;
}

.tab_simg dd {
	width: 48%;
	float: left;
	padding: 25px 0px;
	border-bottom: #e3e3e3 solid 1px;
	color: #c6a866;
	margin-right: 4%;
	transition: transform 0.2s ease;
	cursor: pointer;
}

.tab_simg dd:nth-last-child(2) {
	padding: 25px 0px 5px 0px;
	border-bottom: none;
}

.tab_simg dd:last-child {
	padding: 25px 0px 5px 0px;
	border-bottom: none;
}


.tab_simg dd:hover {
	transform: scale(1.02);
}

.tab_simg dd:nth-child(even) {
	margin-right: 0;
}

.tab_simg dd ul {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.tab_simg dd ul li:first-child {
	width: 34%;
	margin-right: 2%;

}

.tab_simg dd ul li:last-child {
	width: 64%;

}

.tab_simg dd ul li:first-child img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	border: rgba(222, 222, 222, 0.6) solid 1px;
}

.tab_simg dd ul li:last-child a {
	color: #c6a866;
	font-size: 16px;
	height: 28px;
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0;
	margin: 0;
	font-weight: bold;
}

.tab_simg dd ul li:last-child a:hover {
	color: #333333;
}

.tab_simg dd ul li:last-child span {
	color: #999999;
	display: block;
	max-height: 66px;
	overflow: hidden;

}

@media only screen and (max-width:850px) {
	.tab_simg dd {
		width: 100%;
		padding: 15px 0px;
	}
}