.table-wrap {
	max-width: 1500px;
	margin: -50px auto 60px;
}
.table-wrap .no {
	color: #333;
	cursor: pointer;
}
.table-wrap .no:hover {
	color: #ff7800;
}
table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #e0e0e0;
}
/* 表头单元格 取消内部分隔边框 */
thead th {
	border: none;
	padding: 16px 12px;
	text-align: left;
	background-color: #e6f0ff;
	font-weight: 600;
	text-align: center;
}
/* 给表头整体加底部边框分隔 */
thead tr {
	border-bottom: 1px solid #e0e0e0;
}
/* 表体单元格保留边框 */
tbody td {
	border: 1px solid #e0e0e0;
	padding: 16px 12px;
	text-align: center;
}
tr:nth-child(even) {
	background-color: #f9f9f9;
}
.price>div {
	padding: 2px 0px;
}
.price>div:first-child {
	color: #ff7800;
}
.price>div>span {
	display: inline-block;
	width: 60px;
}
.price>div>span:first-child {
	text-align: right;
	margin-right: 10px;
}
.price>div>span:last-child {
	text-align: left;
}
.rfq-btn {
	border: 2px solid #ff9a44;
	color: #ff8822;
	background: #fff;
	padding: 8px 28px;
	border-radius: 30px;
	font-size: 15px;
	cursor: pointer;
}
.rfq-btn:hover {
	background-color: #ff8822;
	color: #fff;
	border-color: #ff8822;
}
.pagination {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.pagination a {
	cursor: pointer;
	color: #333;
}

.pagination a,
.pagination span.active,
.pagination span.disabled {
    /* 统一布局 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    /* 统一宽高、内边距 */
    height: 30px;
	padding: 8px 10px;
    border: 1px solid #ccc;
    /* 字体统一 */
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    vertical-align: middle;
}
.pagination span.active {
	color: #0066ff;
	border-color: #0066ff;
	font-weight: bold;
}