.search_box {
    width: 100%;

    background-color: #f5f5f5;
}

.search_box .search {
    width: 1600px;
    height: 250px;
    padding: 0 110px;
    margin: 0 auto;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.search_box .search strong {
    font-size: 48px;
    font-weight: 500;
    color: #000;
    letter-spacing: 4px;
}

.search_box .search div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.search_box .search div span {
    width: 204px;
    height: 65px;
    background-color: #000;
    color: #fff;
    line-height: 65px;
    border-radius: 8px;
    font-size: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.search_box .search div span:hover {
    background-color: #E95F1C;
}

.search_box .search div input {
    width: 680px;
    height: 65px;
    line-height: 65px;
    padding-left: 40px;
    background-color: #fff;
    border-radius: 8px;
    font-size: 20px;
    color: #666;
    margin-right: 30px;
}

.search_box .search div input::-webkit-input-placeholder {
    color: #C9CACA;
}

.search_box .search div input:-moz-placeholder {
    color: #C9CACA;
}

.search_box .search div input::-moz-placeholder {
    color: #C9CACA;
}

.search_box .search div input:-ms-input-placeholder {
    color: #C9CACA;
}

.search_box .search div input::placeholder {
    color: #C9CACA;
}

.distributor_list {
    width: 1380px;
    margin: 50px auto 0;
    padding-bottom: 120px;
}

.distributor_list h4 {
    font-size: 18px;
    color: #666;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 60px;
}

.distributor_list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.distributor_list ul li {
    width: 422px;
    height: 202px;
    border: 2px solid #000;
    padding: 25px 30px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    color: #000;
    margin-right: 57px;
    margin-bottom: 57px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.distributor_list ul li:hover{
    background-color: #000;
    color: #fff;
}

.distributor_list ul li:nth-child(3n) {
    margin-right: 0;
}

.distributor_list ul strong {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

.distributor_list ul span {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}

.distributor_list p.msg {
    display: block;
    color: #777;
    font-size: 20px;
    letter-spacing: 3px;
    margin: 50px auto 0;
    line-height: 40px;
}

.distributor_list p.msg b {
    font-weight: bold;
    color: #CA0300;
}


.search-wap{
	width: 95%;
	margin: 0 auto;
	margin-top: 20px;
	display: grid;
	gap: 20px;
}


.search-container {
  background-color: #f5f5f5; /* 背景色 */
  padding: 10px 15px; /* 上下10px，左右15px的内边距 */
  display: flex; /* 弹性布局使子元素水平排列 */
  align-items: center; /* 垂直居中 */
  gap: 10px; /* 元素间距 */
 
  box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 可选：添加阴影 */
}

.search-container input{
	width: 300px;
	height: 50px;
	padding-left: 10px;
	border-radius: 4px;
}
	
.search_btn-wap{
	width:70px;
	height: 40px;
	background-color: #000;
	border-radius: 4px;
	text-align: center;
	line-height: 40px;

}