/* 全局样式重置 */
    body, html {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
    }

    /* 容器样式 */
    .container {
		overflow: hidden;
      max-width: 1000px;
      margin: 50px auto;
      padding: 20px;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      text-align: center; /* 使内容居中 */
    }

    /* 搜索栏样式 */
   .search-bar {
    margin: auto;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

    .search-bar input[type="text"] {
      width: calc(100% - 150px); /* 留出按钮的空间 */
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 4px 0 0 4px; /* 圆角效果，与按钮配合 */
    }

    .search-bar button {
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      background-color: #007BFF;
      color: #fff;
      border-radius: 0 4px 4px 0; /* 圆角效果，与输入框配合 */
      cursor: pointer;
    }

    .search-bar button:hover {
      background-color: #0056b3; /* 鼠标悬停时改变颜色 */
    }

    /* 结果项样式 */
    .result-item {
     
      align-items: center;
      justify-content: space-between;
      margin-bottom: 15px;
      margin-left: auto;
      border: 1px solid #ddd;
      /* border-radius: 4px; */
      background-color: #fafafa;
    }

    .result-item img {
      width: 100%;
      /* height: 80px; */
      object-fit: cover; /* 保持图片比例 */
      /* border-radius: 4px; */
      margin-right: 15px;
    }

    .result-item h3 {
      padding: 10px;
      background-color: #c1bcbc;
      margin: 10px;
      font-size: 18px;
    }

    .result-item a {
      text-decoration: none;
      color: #000000;
      font-size: 14px;
    }


.result-item  span{line-height:30px;
	display:block;
	font-size:16px;
	font-weight:bold;
      width:100%;
	background-color:#d4cece;
    }




    .result-item a:hover {
      text-decoration: none;
    }
	.title{
		
line-height: 30px;
		
background-color: #d9d9d9;
		
width: 100%;
		
}
.nr{
	  column-count: 3; /* 你可以根据需要调整列数 */
            column-gap: 10px;
}
.buttons{
	margin-bottom:20px;
	}
.buttons button{
	padding:5px;
	font-size:16px;
	}
	.footer{
		    height: 50px;
    text-align: center;
    margin-top: 20px;
		}
	