 #search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
  }
 #search-input {
	 color:white;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid black;
    width: 500px;
    margin-right: 10px;
    border-radius: 0.4rem;
    background: #3C2D98;
    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: 8px;
    border: none;
    background-color: #EDC100;
	background-image: linear-gradient(to bottom, #FFF38A, #FFC36A); /* 渐变色 */
    color: #8F5206;
    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;
  }
 