.center-box {
	width: 1400px;
	margin: 0 auto;
}
.productTop_title{
	width: 1400px;
	height:80px;
	font-weight: 700;
	font-size: 24px;
	line-height: 80px;
	text-align: center;
	color:#333;
	position: relative;
	background-color: #fff;
}
.productTop_title::after{
	display: inline-block;
	content: "";
	width: 172px;
	height: 5px;
	background-color: #003E8E;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -86px;
}
.center {
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
}
.left {
	width: 400px;
}
.right {
	width: 980px;
	background-color: #fff;
	border-radius: 8px;
}
.proResult_box{
	width: 100%;
	height: 264px;
	background-color: #fff;
	border-radius: 8px;
	margin-bottom: 20px;
}
.proResult_box .results {
	height: 50px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
	line-height: 49px;
	border-bottom: 1px solid #E5E5E5;
	padding: 0 20px;
}
.proResult_box .results .c_9{
	font-size: 12px;
	font-weight: normal;
	float: right;
}
.proResult_box .results .num {
	color: #333;
	font-size: 14px;
	font-weight: 700;
}
.proResult_box .filter{
	margin: 20px;
}
.proResult_box .filter select {
	width: 100%;
	height: 44px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	color:#666;
}
.checkboxBox_flex{
	display:flex;
	align-items: center;
	margin-left:20px;
	margin-bottom: 20px;
}
.checkBox_div{
	float: left;
	width: 20px;
	height: 20px;
	position: relative;
	margin-right: 5px;
}
.checkboxBox .tit{
	float: left;
	font-size: 14px;
	color: #666;
}
.checkboxBox input {
	width: 28px;
	height: 28px;
	vertical-align: middle;
	cursor: pointer;
}
.checkBox_div label{
	cursor: pointer;
	position: absolute;
	width: 20px;        /*此处width和height是选框显示出来的大小*/
	height: 20px;
	top:0;                /*此处top和left是选框显示出来位置, 可根据需求进行调节*/
	left: 0;
	background-color: #fff;
	border-radius: 3px;
	border: 1px solid #e0e0e0;
}
.checkBox_div label:after{
	opacity: 0;        /*取消选中*/
}
.checkBox_div input[type=checkbox]:checked + label:after{
	opacity: 1;        /*选中后样式的透明度, 1是不透明*/
	content: '';    /*选中后的内容 ,此处为空是指把默认的去掉, 下面自定义*/
	position: absolute;
	width: 12px;
	height: 6px;
	background: transparent;    /*这一块是核心,可以自己调试看效果*/
	top: 3px;
	left: 3px;
	border: 1px solid white;
	border-top: none;
	border-right: none;
	/*选中的样式是用盒子div加背景色, 加旋转实现的, 下面的代码是旋转45度*/
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	/*-o-transform: rotate(-45deg);*/
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.checkBox_div input[type=checkbox]:checked + label{
	/* border: 1px solid #838383; */
	background: #003E8E;        /*此处是复选框背景颜色, 下面是边框颜色, 设置一致是保持统一*/
}
.proResult_box .btnDiv{
	display: flex;
	align-items: center;
	justify-content: center;
}
.proResult_box .btnDiv .btn{
	width: 100px;
	height: 44px;
	margin: 0 10px;
	cursor: pointer;
	border-radius: 8px;
}

.electronicComponentList {
	background: #fff;
	border-radius: 8px;
	padding-bottom: 40px;
}
.electronicComponentList .title {
	height: 50px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
	line-height: 50px;
	display: block;
	border-bottom: 1px solid #E5E5E5;
	padding: 0 20px;
	margin-bottom: 10px;
}
.electronicComponentList a {
	font-size: 14px;
	display: block;
	color: #333;
	margin: 0 20px;
	line-height: 32px;
}
.electronicComponentList a:hover,
.electronicComponentList .active {
	color: #003E8E;
	font-weight:bold;
}

.bit {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    padding: 0 20px;
}
.bit-box {
    background: #ffffff;
    padding: 0 20px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
}
.bit-box a {
	width: 49%;
	text-decoration: none;
	font-size:14px;
	color: #333;
	margin: 6px 0;
	padding-left:10px;
}
.bit-box a:hover {
	color: #F14545;
}

