*  {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
 }

body  {
	background: #f5f7fa;
	font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", Tahoma, Arial, sans-serif;
	color: #333;
 }

.content-box  {
	width: 1200px;
	margin: 20px auto;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.05);
	overflow: hidden;
	padding-bottom: 40px;
 }

.header-box  {
	padding: 24px 28px 0 28px;
	border-bottom: 1px solid #eee;
 }

.search-wrap  {
	display: flex;
	/* align-items: center; */
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 20px;
 }

.logo-big-wrap  {
	display: flex;
	/* align-items: center; */
	gap: 12px;
 }

.logo-container img  {
	height: 44px;
 }

.search-box  {
	flex: 1;
 }

.search-nav-box  {
	display: flex;
	gap: 28px;
	margin-bottom: 12px;
 }

.search-nav-item  {
	font-size: 16px;
	cursor: pointer;
	color: #666;
	transition: 0.2s;
 }

.search-nav-item.active  {
	color: #ff8020;
	font-weight: 700;
	font-size: 18px;
 }

.search-input-box  {
	display: flex;
	height: 48px;
	border: 1px solid #e0e0e0;
	border-radius: 48px;
	overflow: hidden;
	background: #fff;
	margin-top: 8px;
 }

.search-input-box input  {
	flex: 1;
	border: none;
	padding: 0 20px;
	font-size: 15px;
	outline: none;
 }

.search-input-close-icon  {
	width: 40px;
	line-height: 48px;
	text-align: center;
	color: #aaa;
	cursor: pointer;
 }

.search-input-box button  {
	width: 90px;
	background: #ff8020;
	border: none;
	color: white;
	font-weight: 600;
	cursor: pointer;
	transition: 0.2s;
 }

.search-input-box button:hover  {
	background: #e56e00;
 }

.search-param-nav-box  {
	margin: 15px 0 5px;
	min-height: 40px;
 }

.acbtn-box  {
	display: inline-block;
	background: #f5f7fa;
	padding: 5px 12px;
	border-radius: 30px;
	font-size: 12px;
	/* margin-right: 3x; */
	margin-bottom: 3px;
	cursor: pointer;
	transition: all 0.2s;
	border: 1px solid #ccc;
 }

.acbtn-box:hover  {
	background: #e9ecef;
 }

.acbtn-btn-choosed  {
	background: #ff8020;
	color: #fff;
	border-color: #ff8020;
 }

.clear-btn  {
	float: right;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 30px;
	padding: 5px 16px;
	font-size: 12px;
	cursor: pointer;
	margin-top: 5px;
 }

.search-param-box  {
	padding: 16px 0 12px 0;
	border-top: 1px solid #eee;
	margin-top: 8px;
 }

.param-item-box  {
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
 }

.param-title  {
	width: 110px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	line-height: 34px;
 }

.param-content  {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
 }

.param-goods-input  {
	width: 280px;
	height: 36px;
	border: 1px solid #ddd;
	border-radius: 36px;
	padding: 0 18px;
	font-size: 13px;
 }

.more-btn-wrapper  {
	display: flex;
	justify-content: center;
	margin-top: 8px;
	margin-bottom: 12px;
 }

.param-more-btn  {
	color: #ff8020;
	font-size: 13px;
	cursor: pointer;
	font-weight: 500;
	background: #fff;
	border: 1px solid #ff8020;
	padding: 6px 24px;
	border-radius: 40px;
	display: inline-block;
 }

.result-items-cube-box  {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 20px 28px 0 28px;
 }

.result-item-cube-box  {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.25s ease;
	border: 1px solid #eee;
	cursor: pointer;
 }

.result-item-cube-box:hover  {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.08);
	border-color: #ff8020;
 }

.item-img-box  {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fafbfc;
 }

.item-img-box img  {
	max-width: 150px;
	max-height: 150px;
	object-fit: contain;
 }

.item-info  {
	padding: 14px;
 }

.item-name  {
	font-weight: 700;
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
 }

.item-brand-tip  {
	background: #ff8020;
	color: #fff;
	font-size: 10px;
	padding: 2px 8px;
	border-radius: 20px;
 }

.item-lei  {
	font-size: 12px;
	color: #888;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
 }

.item-price  {
	color: #ff5722;
	font-weight: 700;
	font-size: 18px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
 }

.item-goods-num  {
	font-size: 11px;
	color: #999;
	font-weight: normal;
 }

.page-container  {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	padding: 0 28px;
 }

.layui-laypage a, .layui-laypage span  {
	border-radius: 30px !important;
	margin: 0 5px;
 }

.footer  {
	text-align: center;
	padding: 24px;
	font-size: 12px;
	color: #aaa;
	border-top: 1px solid #eee;
	margin-top: 20px;
 }

.none-result, .loading-more  {
	text-align: center;
	padding: 80px;
	color: #aaa;
 }

@media (max-width: 1250px)  {
 }

.result-items-cube-box  {
	gap: 15px;
	padding: 15px;
 }
