/*产品页搜索*/
.sousuo-123 {
    width: 100%;
    display: flex;
    justify-content: space-between;
	border-bottom: solid 1px #ccc;
}

.sousuo-left {
    width: 43%;
	 padding: 8px 0;
}

.sousuo-right {
    width: 51%;padding: 8px 0;
}

@media screen and (max-width: 720px) {
   .sousuo-123 {
        flex-direction: column;
		border-bottom: none; 
    }
   .sousuo-left {
        width: 100%;padding: 0px 0;
    }
   .sousuo-right {
        width: 100%;
        margin-top: 4px;
    }
	 .pro-search-box {
        justify-content: center; /* 将justify-content属性的值改为center，使其在主轴方向上居中对齐 */
    }
}

.search-box {
    width: 400px;
    position: relative;
}
 

.sousuo-right {
    position: relative;
}

.pro-search-box {
    display: flex;
    align-items: center;
	padding: 10px 5px;
	/* justify-content: flex-end; 添加这行，使内容居右对齐
	 */
	
}
.ziti14{font-size: 14px;padding: 10px 20px;line-height: 1.32857143;}
.pro-search-box input {
    flex: 1;
	width: 150px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px 0 0 10px;
	 margin: 0; /* 去除默认的外边距 */
	 box-sizing: border-box; /* 确保边框和内边距不会增加元素的总宽度 */
}

.pro-search-box button {
    padding: 7px 20px;
    background-color: #DC5D30;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
	 margin-left: -5px; /* 设置一个负的左边距来消除边框之间的缝隙 */
    box-sizing: border-box;
	outline: 1px solid #DC5D30; /* 添加白色边框 */
}