  /* * {
    box-sizing: border-box;
  } */
  .searchsdiv{
    width: 100%;
    max-width: 80vh;
    max-height: 10vh;
  }

   
  /* 设置搜索框 */
  form.searchs input[type=text] {
    padding: 2.5vw;
    font-size: 1em;
    border: 1px solid grey;
    float: left;
    /* 80% */
    width: 74.253%;
    max-width: 50vh;
    background: #f1f1f1ce;
    text-align: center;
  }
   
  /* 设置提交按钮 */
  form.searchs button {
    /* 2.5vw */
    padding: 2.35vw;
    float: left;
    width: 20%;
    background: #51bb43;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none; /* 防止双边框 */
    cursor: pointer;
  }
   
  form.searchs button:hover {
    background: #51bb43;
  }
   
  /* 清除浮动 */
  form.searchs::after {
    content: "";
    clear: both;
    display: table;
  }