/* 列表，头部 */
.searchMain_div{
	width: 1400px;
	background-color:#fff;
	padding-bottom: 20px;
}
.searchTit{
	height: 80px;
	border-bottom: 1px solid #E5E5E5;
	line-height: 80px;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
.search_noDateDiv{
	height:600px;
	background: url(../../images/mall/noDate.png) no-repeat center 50px;
	padding-top:345px;
	padding-bottom:70px;
}
.search_noDateDiv .title{
	line-height: 80px;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
.search_noDateDiv .text{
	line-height: 24px;
	text-align: center;
	font-size: 14px;
}
.seaResult_tableTop{
	margin:20px;
	height:44px;
	display:flex;
}
.seaResult_tableTop .sear_cartBtn{
	margin:0 15px 0 0px;
}
.sear_cartBtn,.sear_quoteBtn{
	width:120px;
	height:44px;
	cursor: pointer;
}

.seaResult_tableTop .filter select {
	width: 100%;
	height: 44px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	color:#666;
	width: 360px;
	margin-left: 60px;
}
.seaResult_tableTop .checkboxBox_flex{
	display:flex;
	align-items: center;
	margin-left:30px;
}
.seaResult_tableTop .checkBox_div{
	float: left;
	width: 20px;
	height: 20px;
	position: relative;
	margin-right: 5px;
	margin-top: 0;
}
.seaResult_tableTop .checkboxBox .tit{
	float: left;
	font-size: 14px;
	color: #666;
}
.seaResult_tableTop .checkboxBox input {
	width: 28px;
	height: 28px;
	vertical-align: middle;
	cursor: pointer;
}
.seaResult_tableTop .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;
}
.seaResult_tableTop .checkBox_div label:after{
	opacity: 0;        /*取消选中*/
}
.seaResult_tableTop .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);
}
.seaResult_tableTop .checkBox_div input[type=checkbox]:checked + label{
	/* border: 1px solid #838383; */
	background: #003E8E;        /*此处是复选框背景颜色, 下面是边框颜色, 设置一致是保持统一*/
}
.seaResult_tableTop .btnDiv{
	display: flex;
	align-items: center;
	justify-content: center;
}
.seaResult_tableTop .btnDiv .btn{
	width: 100px;
	height: 44px;
	margin: 0 10px;
	cursor: pointer;
	border-radius: 8px;
}

/* 列表 new begin */
.productList_main{
	margin: 0 20px;
}
.productList_main table{
	border-left: 1px solid #EAEBED;
}
.productList_main th{
	height: 46px;
	line-height: 46px;
	background-color: #222;
	font-size: 14px;
	color: #fff;
	border-right:1px solid #EAEBED;
	text-indent: 15px;
	font-weight: normal;
}
.productList_main th:last-child{
	border-right:0;
}
.productList_main th:first-child{
	text-indent: 0px;
}
.productList_main td{
	border-bottom: 1px solid #EAEBED;
	border-right: 1px solid #EAEBED;
	font-size: 14px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.productList_main .sear_cartBtn{
	margin-bottom: 10px;
}
.productList_main .selector{
	width: 160px;
	height: 34px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	background-color: #fff;
	align-items: center;
	border-radius: 0;
}
.productList_main .proNumBox .sumnum{
	line-height:22px;
	width: 160px;
	margin: 10px auto 0;
	font-size: 14px;
	text-align:left;
	color: #333;
	display: flex;
}
.productList_main .proNumBox .sumnum .titL{
	color: #999;
}
.productList_main .proTd_main{
	display: flex;
	justify-content: space-between;
	padding: 0 20px 20px;
}
.productList_main .proTd_main .proImg{
	width: 64px;
	height: 64px;
	border-radius: 8px;
	border: 1px solid #EAEBED;
	margin-right: 10px;
}
.productList_main .proTd_main .proImg img {
    width: 62px;
    height: 62px;
}
.productList_main .proTd_main .pre{
	width: 185px;
	position: relative;
}
.productList_main .proTd_main .textList{
	display: flex;
	line-height:24px;
}
.productList_main .proTd_main .widthSmall{
	width: 115px;
}
.productList_main .proTd_main .widthAll{
	width: 135px;
}
.productList_main .proTd_main .ovhide{
	float: left;
	/*height: 30px;*/
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
}
.productList_main .proTd_main .tit.c_9{
	width: 45px;
	text-align: right;
	margin-right: 5px;
}
.productList_main .proTd_main .sc {
    font-size: 14px;
    text-align: left;
    color: #003E8E;
    line-height: 24px;
    cursor: pointer;
}

.priceLadder_Td{
	width: 160px;
	margin:0 auto;
}
.priceLadder_box{
	overflow: hidden;
}
.priceLadder_Td .num{float: left;width: 60px;font-size: 14px;line-height: 24px;margin-right: 10px;}
.priceLadder_Td .price{float: left;font-size: 14px;line-height: 24px;font-weight: bold;}
.priceLadder_Td .high-light .num,
.priceLadder_Td .high-light .price{color: #F14545;font-weight:bold;}
.priceLadderMore,
.priceLadderLess{
	display:inline-block;
	width: 60px;
	height:22px;
	text-align:center;
	line-height:22px;
	border-radius:8px;
	color: #003E8E;
	font-size: 12px;
	cursor: pointer;
	background-color:#E7F2FF;
}
.priceLadderMore .iconfont,
.priceLadderLess .iconfont{
	font-size:6px;
	margin-left:3px;
}
.priceLadderLess .iconfont{
	position: relative;
	top: -2px;
}
.priceLadderMore.dn,.priceLadderLess.dn{display: none;}
/* 列表 new end */


/* 列表，列宽  */
.td_sel{
	width: 57px;
	display: flex;
	align-items: center;
    justify-content: center;
}
.td1{width: 65px;}
.td2{width: 185px;}
.td3{width: 160px; margin:0 auto;}
.td3 .more,.td3 .less{color: #4F96E3;font-size: 20px;cursor: pointer;line-height: 30px;}
.td4{width: 160px;}
.td5{width: 140px;}
.td6{width: 60px;}
.td7{width: 100px;}
.td8{width: 120px;}
/* 计算器  */
.sumnum{
    font-size: 14px;
    margin-top: 10px;
    color: #545454;
    text-align: left;
}
.toCart{background-color: #288AED;cursor: pointer;}
.toQuote{background-color:#F14545;cursor: pointer;}
.toCart,.toQuote{
    width: 112px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    margin:10px 0;
    color: #fff;
    font-size: 16px;
    border-radius: 3px;
    float: right;
}
.reference_price{
    line-height: 26px;
    /* color: #8F8F8F; */
    color: #F14545;
    text-align: left;
    /* padding: 8px 0; */
    /* padding-right: 30px; */
}
.reference_priceSpl{
    color: #F14545;
    /* float: left; */
    font-size: 14px;
    vertical-align: 2px;
}
.td1,.td2,.td3,.td4,.td5,.td6,.td7,.td8{
    min-height: 1px;
}
.td7>span{
    word-break: break-word;
}
.pos-r{
	position: relative;
}
