
.product{
	width: 100%;
	margin: 60px 0;
}
.product  .w{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.product .prod_sear{
	width: 30%;
	background-color: #f5f5f5;
	padding: 30px;
	position: sticky;
	top: 0;
}
.product .prod_sear h3{
	font-size: 26px;
    margin: 0 0 10px;
    font-weight: bold;
    color: #333;
}
/* 统一清除表单元素默认样式 */
.product .prod_sear form input,
.product .prod_sear form select {
    width: 100%;
    outline: none;
    height: 48px; /* 用固定高度替代 line-height，更稳定 */
    line-height: 48px;
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 0 10px;
    box-sizing: border-box; /* 确保 padding 不会增加总宽度 */
    -webkit-appearance: none; /* 清除 Safari 和 Chrome 的默认箭头 */
    -moz-appearance: none; /* 清除 Firefox 的默认箭头 */
    appearance: none; /* 标准属性 */
}

/* 为 select 添加自定义箭头（可选） */
.product .prod_sear form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center; /* 箭头位置 */
    padding-right: 30px; /* 给箭头留出空间 */
}


.input {
    color: #333; /* 默认显示浅色（针对未选择状态） */
    font-weight: normal; /* 去除粗体 */
}

/* 当选择了实际选项后，文字变深色 */
.input:has(option:checked:not([disabled])) {
    color: #333;
}

/* 下拉列表中的选项样式 */
.input option {
    color: #333; /* 正常选项深色 */
}

/* 下拉列表中的禁用提示选项（在下拉时隐藏或浅色） */
.input option:disabled {
    color: #ccc; /* 下拉时显示更浅的颜色 */
    display: none; /* 可选：在下拉列表中隐藏提示项 */
}

/* 输入框占位符保持一致 */
.input::placeholder {
    color: #999;
    font-weight: normal;
}

/* 浏览器兼容 */
.input::-webkit-input-placeholder { color: #999; }
.input:-moz-placeholder { color: #999; }

.product .prod_sear form .but{
	display: flex;
    justify-content: space-between;
}
.product .prod_sear form button{
	width: 48%;
	line-height: 48px;
	background-color: #b60022;
	color: #fff;
	outline: none;
	border: 0;
	border-radius: 5px;
	font-size: 16px;
	transition: all 0.5s;
}
.product .prod_sear form button:hover{
	background-color: #c90025;
}
.product .prod_sear .txym_box{
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
}
.product .prod_sear .txym_box ul li{
	width: 100%;
	overflow: hidden;
	border-bottom: 1px dashed #ccc;
}
.product .prod_sear .txym_box ul li a{
	font-size: 16px;
	padding: 15px 0;
	display: flex;
    justify-content: space-between;
	align-items: center;
	transition: all 0.5s;
}
.product .prod_sear .txym_box ul li a span{
	font-size: 12px;
	color: #666;
	transition: all 0.5s;
}
.product .prod_sear .txym_box ul li a:hover{
	background-color: #b60022;
	color: #fff;
	padding: 15px;
}
.product .prod_sear .txym_box ul li a:hover span{
	color: #fff;
}

.product .prod_right{
	width: 68%;
	/* background-color: #f5f5f5;
	padding: 20px; */
}
.product .prod_right ul li{
	position: relative;
}
.product .prod_right ul li>a{
	width: 100%;
	overflow: hidden;
	background-color: #fff;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
.product .prod_right ul li:nth-child(even)>a{
	background-color: #f5f5f5;
}
.product .prod_right ul li #xjbtn{
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: #b60022;
    text-align: center;
    color: #fff;
    line-height: 38px;
	padding: 0 15px;
	transition: all 0.5s;
	border-radius: 6px;
}
.product .prod_right ul li #xjbtn:hover{
	background: #da0028;
}
.product .prod_right ul li #xjbtn a{
	display: block;
	color: #fff;
}
.product .prod_right .prod_right_img{
	width: 25%;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
	display: flex;
    align-items: center;
	justify-content: center;
	background-color: #fff;
}
.product .prod_right .prod_right_img img{
	width: 85%;
	transition: all 0.5s;
}
.product .prod_right a:hover .prod_right_img img{
	transform: scale(1.1);
}
.product .prod_right .product-info{
	width: 70%;
}
.product .prod_right .product-info h3{
	font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    margin: 0 0 10px;
	transition: all 0.5s;
}
.product .prod_right a:hover .product-info h3{
	color: #b60022;
}
.product .prod_right .product-info p{
	font-size: 16px;
	color: #333;
}
#pager{
	font-size: 16px;
    margin: 10px 0 0;
}
#label,
#pager a{
	padding: 0 10px;
}
.footer {
	margin-top: 0 !important;
}
@media screen and (max-width: 768px){
	.product {
		width: 100%;
		margin: 30px 0;
	}
	.product .prod_sear {
		width: 100%;
		background-color: #f5f5f5;
		padding: 30px 15px;
		position: relative;
		top: 0;
	}
	.product .prod_right {
   		width: 100%;
	}
	.product .prod_right ul li {
		position: relative;
		border-bottom: 1px solid #e2e2e2;
	}
	.product .prod_right ul li>a {
		width: 100%;
		overflow: hidden;
		background-color: #fff;
		padding: 0;
		display: flex;
		justify-content: space-between;
		margin: 15px 0;
		flex-wrap: wrap;
	}
	.product .prod_right ul li:nth-child(even)>a {
		background-color: transparent;
	}
	.product .prod_right .prod_right_img {
		width: 100%;
		border: 0;
		border-radius: 10px;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #fff;
	}
	.product .prod_right .prod_right_img img {
		width: 80%;
		transition: all 0.5s;
		display: block;
		margin: 0 auto 20px;
	}
	.product .prod_right .product-info {
		width: 100%;
	}
	.product .prod_right ul li #xjbtn {
		position: initial;
		right: 15px;
		bottom: 15px;
		background: #b60022;
		text-align: center;
		color: #fff;
		line-height: 38px;
		padding: 0 15px;
		transition: all 0.5s;
		border-radius: 6px;
		margin-bottom: 30px;
	}


}
