 #search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
  }
 #search-input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid black;
    width: 500px;
    margin-right: 10px;
    border-radius: 0.4rem;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
    #search-button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #EDC100;
    color: white;
    cursor: pointer;
  }
    /* 弹窗样式 */
  .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .modal p {
    color: #000 !important;
  }
  .modal-content {
    background-color: #fff;
    margin: 70% auto;
    padding: 20px;
    border: none;
    width: 80%;
    text-align: center;
    border-radius: 15px;
    position: relative;
  }
  .modal-content img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 20px
  }
  /* 关闭按钮样式 */
  .close {
    position: absolute;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    bottom: -30px;
    left: 50%;
    margin-left: -10px;
  }
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  /* 新增内容框样式 */
  #modal-content-text {
    margin-top: 20px;
    font-size: 18px;
  }
  #modal-text,
  #modal-content-text a {
    color: white;
  }
  #modal-content-text a {
    text-decoration: underline;
  }
 