.product_container {
    display: flex;
    width: 1200px;
	margin: 0 auto;
	position: relative;
    height: 100%;
    background-color:#ffd65d;
}
.product_container .left {
    width: 150px;
    height: 100%;
    background-color: #ffd65d;
}
.product_container .right {
    width:  1050px;
    height: 100%;
    background-color: #B6D8F1;
}.search_box {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .searchInput {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    width: 940px;
  }
  
  .searchBtn {
    margin-left: -1px; /* 去掉边框重叠 */
    float: right;
  }
  
  .searchBtn input {
    padding: 10px 20px;
    background-color: #00ac81;
    border: none;
    border-radius: 0 4px 4px 0;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }
  
  .searchBtn input:hover {
    background-color: #008f6b;
  }

  .list_title{
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    background-color: aquamarine;
    color: #000;
    border-bottom: 1px solid #ccc;
  }

  .list_table{
    width: 100%;
    border-collapse: collapse;
  }
  .list_table th{
    background-color: aquamarine;
  }