﻿@charset "utf-8";
.tab_bimg {
	width: 100%;
	margin-bottom: 10px;
}

.tab_bimg>dd {
	width: 48%;
	float: left;
	padding: 10px 0px;
	color: #003da5;
	margin-right: 4%;
	transition: transform 0.2s ease;
	cursor: pointer;
	margin-bottom: 10px;

}

/* .tab_bimg>dd:hover {
	transform: scale(1.02);
} */

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

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

.tab_bimg>dd>ul>li:first-child {
	width: 58%;
	margin-right: 2%;

}

.tab_bimg>dd>ul>li:last-child {
	width: 40%;

}
.tab_bimg>dd>ul>li:first-child>p.mimgbx {
	margin: 0 auto;
	width: 100%;
	height: 220px;
	overflow: hidden;
	padding: 0;
	max-height: 220px;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	/* border: rgba(222, 222, 222, 0.6) solid 1px; */
	margin-bottom: 8px;
	box-shadow: 2px 3px 8px 3px rgba(215, 215, 215, 0.55);
}
.tab_bimg>dd>ul>li:first-child>p.mimgbx>img {
	transition: transform 0.2s ease;
	max-width: 100%;
	max-height: 100%;
	/* 图片最大宽度为容器宽度 */
	height: auto;
	/* 图片高度自动 */
	object-fit: contain;
	/* 图片将被缩放以适应容器的宽度和高度，但不会被截断 */
	object-position: center;
	/* 图片定位在容器的中心 */
	
}
@media only screen and (min-width: 1100px) and (max-width: 1300px) {
	.tab_bimg>dd>ul>li:first-child>p.mimgbx {
		height: 180px;
	}
}

@media only screen and (min-width: 850px) and (max-width: 1100px) {
	.tab_bimg>dd>ul>li:first-child>p.mimgbx {
			height: 180px;
		}
}

@media only screen and (max-width:850px) {
	.tab_bimg>dd>ul>li:first-child>p.mimgbx {
			height: auto;
		}
}
/* .tab_bimg>dd>ul>li:first-child img {
	width: 100%;
	height: auto;
	border-radius: 2px;
	border: rgba(222, 222, 222, 0.6) solid 1px;
	margin-bottom: 8px;
} */

.tab_bimg>dd>ul>li:last-child a {
	color: #003da5;
	font-size: 18px;
	line-height: 30px;
	display: block;
	width: 100%;
	/* white-space: nowrap; */
	/* overflow: hidden; */
	/* text-overflow: ellipsis; */
	padding: 0;
	margin: 0;
	font-weight: bold;
	text-decoration: underline;
	text-decoration-color: #003da5;
	text-decoration-thickness: 2px;
	text-underline-offset: 8px;
	text-decoration-style: solid;
}

.tab_bimg>dd>ul>li:last-child a:hover {
	color: #c6a866;
	text-decoration-color: #c6a866;
}

.tab_bimg>dd>ul>li:last-child span {
	margin-top: 8px;
	color: #666666;
	display: block;
	overflow: hidden;

}

@media only screen and (max-width:850px) {
	.tab_bimg>dd {
		width: 100%;
		padding: 10px 0px;
		margin: 0;
	}

	.tab_bimg>dd>ul {
		display: block;
		width: 100%;
	}

	.tab_bimg>dd>ul>li {
		width: 100%;
		margin: 0;
	}

	.tab_bimg>dd>ul>li:first-child {
		width: 100%;
		margin: 0;
	}

	.tab_bimg>dd>ul>li:last-child {
		width: 100%;
		margin: 0;
	}
}

.tab_bimg>dd:hover ul>li>p.mimgbx>img {
	transform: scale(1.08);
}

.tab_bimg>dd:hover ul>li>a {
	text-decoration-color: #ff9900;
	color: #ff9900;
}

.tab_bimg>dd:hover ul>li>span {
	color: #c6a866;
}