*{
    padding: 0;
    margin: 0;
}
#logo{
    width: 64px;
    height: auto;
}
#h1-title{
    font-size: 18px;
    padding: 0;
    margin: 0;
    color:black
}
.url{
    font-size: 14px;
    color: brown
}
.info-div{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 10px;
    gap: 10px;
}
.info-div h2{
    color: brown;
}
.header {
  display: flex;
  align-items: center;     /* 垂直居中对齐 */
  justify-content: center; /* 水平居中（整个组合居中） */
  gap: 1px;               /* 可选：设置 img 和 h1 之间的间距 */
}
.search-form-wrap{
    display: flex;
    justify-content: center;
    padding: 0 10px 0 10px;
}
.search-form {
    width: 100%;           /* 铺满父容器（通常是 body） */
    max-width: 960px;      /* 限制 PC 端最大宽度 */
  display: flex;
  align-items: center;
  border: 1px solid #ccc;        /* 外边框由容器提供 */
  border-radius: 4px;            /* 可选圆角 */
  padding: 2px;                  /* 内间距，避免内部元素顶到边框 */
 /* width: fit-content;             包裹内容宽度（也可设固定宽度） */
  background-color: white;
}

/* 去掉 input 默认边框和 outline */
.search-form input {
  flex: 1;
  border: none;                  /* 移除边框 */
  outline: none;                 /* 聚焦时不显示默认轮廓 */
  padding: 8px 12px;
  font-size: 14px;
  background: transparent;       /* 背景透明，继承容器背景 */
  min-width: 0;
}
.search-button{
  border: none;                  /* 去掉边框，与容器融合 */
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px;            /* 可选：轻微圆角 */
}


.search-form button:hover {
  background-color: #0056b3;
}
/* 清除按钮样式 */
.clear-btn {
  background: none;
  border: none;
  font-size: 16px;
  color: #999;
  cursor: pointer;
  padding: 0 6px;
  margin-left: -24px; /* 把按钮拉到 input 右侧内部 */
  z-index: 2;
  position: relative;
  outline: none;
  visibility: hidden;
}

.clear-btn:hover {
  color: #666;
}
.shiju-flex{
    display: flex;
    justify-content: center;
     padding: 0 10px 0 10px;
}
.shiju-card{
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 2px;
    width: 100%;
    max-width: 960px;
    border-radius: 4px; 
}
.shiju-box{
    display: flex;
    justify-content: center;
    gap: 1px;
}
.danzi{
    max-width: 24px;
    height: 24px;
    text-align: center;
    padding: 2px;
}
.zishu-radio-div{
    margin: 0 10px;
}
.footer{
    text-align: center;
    padding:50px 0;
     font-size: 14px;
        color:#666666;
}
.footer a{
    font-size: 14px;
    color:#666666;
}