@import url("./common.css");/
.product{
	padding: 3% 0 8%;
	background: #EFEFEF ;
	background-attachment: fixed;
	position: relative;
}
.product_item{
	background: #FFFFFF;
	box-shadow: 0 0 18px rgb(12 3 6 /19%);
	padding: 60px;
	margin-bottom: 150px;
}
.product_item ul{
	display: none;
}
.tab-pane ul{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}
.tab-pane ul li{
	width: 30%;
	text-align: center;
	justify-content: space-around;
	border: 1px solid #f5f5f5;
	margin: 10px;
	/* 点击变大 */
	cursor: pointer;
	transition: all 0.6s ease-in;
	-webkit-transition: all 0.6s ease-in;
}
.tab-pane ul li:hover{
	transform: scale(1.1);
	border-bottom: 1px solid #007AFF;
	box-shadow: 6px 5px 7px #f5f5f5;
	background: #e5e5e5;
	
}
.product_item ul li img{
	margin: auto;
	display: block;
	max-width:100%;
	font-size: 0;
}
.product_item ul li a{
	display: block;
	position: relative;
	text-align: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #DADADA;
}
.product_item ul li a::after{
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: #006FC6;
	position: absolute;
	left: 0;
	bottom: -1px;
	transition: ease 0.65s;
}
.product_item ul li h2{
	font-size: 16px;
	color: #333;
	margin-top: 15px;
	position: relative;
	padding: 0 5px;
	height: 20px;
	line-height: 20px;
}
.product_item ul li a p{
	padding: 0 5px;
	margin-top: 10px;
	line-height: 24px;
	color: #888;
	overflow: hidden;
}
.product_item ul li p b{
	color: #D43F3A;
}
.in-h{
	margin-bottom: 30px;
}
.in-h::before{
	content: '';
	position: absolute;
	width: 4px;
	height: 12px;
	display: block;
	background-color: #006FC6;
}
.in-h b{
	font-size: 18px;
	color: #333333;
	margin-left: 15px;
	position: relative;
	top: -15px;
}
.breadcrumb{
	width: 50%;
	height: 50px!important;
	float: right;
	background: #ffffff;
}
.breadcrumb li a{
	color: #333333;
}
.breadcrumb li.active a{
	color: #888888;
}
.breadcrumb > li + li:before {
    color: #006FC6;
    content: "/";
}
#myTab{
	width: 50%;
	height: 72px;
	background: #ffffff;
}
#myTab li{
	margin: 20px;
	line-height: 72px;
}
#myTab li a{
	font-size: 16px;
}
#myTab li.active{
	border-bottom: 2px solid #006fc6;
}
#myTab li.active a{
	
}
@media all and (min-width: 2000px) {
    .product{
		width: 1920px;
		margin: auto;
	}
}