/* 引入自定义字体 */
@font-face {
    font-family: 'MinecraftAE';
    src: url('../font/MinecraftAE.woff') format('woff'); /* 根据实际路径和文件格式修改 */
    font-weight: normal;
    font-style: normal;
}

@media (min-width: 1024px) {
    /* 基本样式设置 */
html, body {
    font-family: 'MinecraftAE', sans-serif;
    height: 100%; /* 确保html和body填满整个视口高度 */
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* 包括padding和border在内的宽度和高度计算 */
    background: #fff; /* 设置背景为白色 */
    overflow-x: hidden; /* 隐藏水平滚动条 */
    
}

.container {
    display: flex;
    flex-direction: column; /* 垂直排列子元素 */
     /* 容器高度填满视口 height: 100vh;*/
}

/* 导航栏样式 */
.navbar {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px; 
    width: 100%;
    height: 80px; /* 固定高度 */
    box-sizing: border-box; /*确保padding和border包含在宽度内*/  
    /* position: fixed; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar a {
    text-decoration: none; /* 去除下划线 */
    color: rgb(99, 99, 99); /* 链接文字颜色 */
    font-size: 16px; /* 设定字体大小 */
    font-weight: bold; /* 设定字体粗细 */
}

.navbar a:hover {
    text-decoration: underline; /* 鼠标悬停时显示下划线，增加交互性 */
    color: #0056b3; /* 鼠标悬停时改变颜色 */
}


.navbar ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0 auto; /* 自动外边距确保链接列表居中 */
    flex-grow: 1; /* 鼓励链接部分扩展以填充空间 */
    justify-content: center;
}

.navbar ul li {
    padding: 0 15px; /* 增加链接之间的间距，使其更集中 */
}

.navbar ul li a {
    display: inline-block; /* 让背景颜色填充整个链接区域 */
    padding: 10px 20px; /* 添加适当的内边距 */
    text-decoration: none; /* 去除下划线 */
    color: rgb(99, 99, 99); /* 链接文字颜色 */
}

.navbar ul li a.active {
    background-color: rgba(123, 165, 102, 0.8); /* 激活状态的背景色 */
    border-radius: 25px; /* 圆角 */
    color: white; /* 激活状态的文字颜色 */

}

.navbar ul li a:hover {
    color: rgb(0, 0, 0); /* 链接文字颜色 */
    text-decoration: none;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center; /* 保证Logo图像和文字垂直居中 */
    text-decoration: none; /* 去除下划线 */
    color: rgb(99, 99, 99); /* 链接文字颜色 */
}

.logo img {
    height: 40px; /* 调整Logo图像的大小 */
    width: auto; /* 保持图像的宽高比 */
    margin-right: 10px; /* 在图像和文字之间添加间隔 */
    transition: filter 0.3s ease; /* 平滑过渡效果 */
}

.logo img:hover {
    filter: brightness(70%); /* 鼠标悬停时降低亮度 */
}

.logo a {
    font-size: 18px; /* 调整Logo文字的大小 */
    font-weight: bold; /* 字体加粗 */
}

.logo a:hover {
    text-decoration: none; /* 去除下划线 */
    color: black; /* 设置文字颜色 */
}


/* 下拉按钮样式 */
.dropbtn {
    background-color: rgba(123, 165, 102, 0.8); /* 绿色背景 */
    color: white;
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px; /* 圆角 */
    transition: background-color 0.3s; /* 平滑过渡效果 */
}

/* 下拉内容容器，初始时不显示 */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9; /* 浅色背景 */
    min-width: 100px; /* 控制最小宽度 */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 5px; /* 圆角 */
    overflow: hidden; /* 隐藏溢出内容 */
    z-index: 1;
    text-align: center; /* 文本居中 */
}

/* 下拉内容的链接样式 */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none; /* 移除下划线 */
    display: block;
    font-size: 14px; /* 字体大小 */
    transition: color 0.3s; /* 颜色变化过渡效果 */
}

/* 下拉内容的链接 - 悬停效果 */
.dropdown-content a:hover {
    background-color: #ddd; /* 浅灰色背景 */
    text-decoration: none; /* 移除下划线 */
    color: #333; /* 鼠标悬停时字体颜色变深 */
}

/* 显示下拉内容时的样式 */
.dropdown:hover .dropdown-content {
    display: block;
    animation: slideIn 0.5s ease-in-out; /* 添加动画效果 */
}

/* 下拉按钮悬停样式 */
.dropdown:hover .dropbtn {
    background-color: rgba(100, 135, 83, 0.8); /* 更深的绿色 */
}

/* 动画效果 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 内容区域样式 */
.images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0px 70px 30px 70px;
    padding: 0 50px; /* 左右间距 */
}

.image-entry {
    position: relative;
    width: calc(33.333% - 20px); /* 每个图片占行宽的三分之一，减去间隔 */
    box-shadow: 0 4px 8px rgba(39, 39, 39, 0.8);  /* 添加阴影效果，调整为绿色阴影 */
    border-radius: 5px; /* 圆角 */
    margin-bottom: 20px; /* 图片间距 */
    overflow: hidden;
}

.image-entry img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease; /* 平滑放大效果 */
}

.image-entry:hover img {
    transform: scale(1.1); /* 鼠标悬停时放大图片 */
}

.overlay {
    position: absolute;
    bottom: 1px; /* 将描述和按钮稍微提升于底部 */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between; /* 分开描述和下载按钮 */
    align-items: center;
    padding: 1px 20px; /* 内填充，为文字和按钮提供空间 */
}

.description {
    color: rgb(255, 255, 255); /* 文字颜色 */
    flex-grow: 1; /* 让描述文本填充额外空间 */
    font-size: 14px;
    text-align: left; /* 文字左对齐 */
}

.download-btn {
    padding: 5px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center; /* 垂直居中图标 */
    justify-content: center; /* 水平居中图标 */
    transition: filter 0.3s ease; /* 变暗动画 */
}

.download-btn img {
    width: 23px; /* 图标大小 */
}

.download-btn:hover {
    
    filter: brightness(50%); /* 图标在悬停时变暗 */
}


#search-form {
    display: flex;
    justify-content: center;
    margin-top: 120px;
    /* margin-bottom: 20px; */
}

#search-form input[type="text"] {
    width: 300px;
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#search-form button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#search-form button img {
    width: 20px;
    height: auto;
}

#status-message {
    text-align: center; /* 文本居中对齐 */
    width: 100%; /* 确保宽度为容器宽度 */
    /* padding: 20px; */ /* 添加一些内边距 */
    /* margin-top: 20px; */ /* 在元素上方留出空间 */
    font-size: 16px; /* 设置字体大小 */
    color: #333; /* 字体颜色 */
}
}

@media (min-width: 768px) and (max-width: 1023px) {
    html, body {
        font-family: 'MinecraftAE', sans-serif;
        height: 100%; /* 确保html和body填满整个视口高度 */
        margin: 0;
        padding: 0;
        box-sizing: border-box; /* 包括padding和border在内的宽度和高度计算 */
        background: #fff; /* 设置背景为白色 */
        overflow-x: hidden; /* 隐藏水平滚动条 */
        justify-content: center;
    }

    .container {
        display: flex;
        flex-direction: column; /* 垂直排列子元素 */
        height: 100%; /* 容器高度填满视口 */
    }
    
    /* 导航栏样式 */
.navbar {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    width: 100%;
    /* height: 80px; */ /* 固定高度 */
    box-sizing: border-box; /*确保padding和border包含在宽度内*/
    position: fixed;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
    
.menu-toggle {
    display: block;
    cursor: pointer;
    background: rgba(123, 165, 102, 1);  /* Slightly lighter for the button */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    /* width: 80%; */
    position: absolute;
    left: 43.5%;
    border-radius: 5px; /* 圆角 */
}

.navbar ul {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: rgb(255 255 255);  /* Semi-transparent black background */
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    flex-direction: column;
    border-radius: 0 0 10px 10px;  /* Rounded corners at the bottom */
    overflow: hidden;
}

.navbar ul.active {
    display: flex;
    text-align: center;
    /* align-items: center; */
    animation: slideIn 0.3s ease-out forwards;  /* Animation for sliding in */
    padding: initial;
    /* text-decoration: none; */ /* 去除下划线 */
    /* width: 50%; */
}

.navbar ul li {
    width: 100%;
    /* border-bottom: 1px solid rgb(0 0 0); */  /* Slight separation between items */
    text-align: center;
    text-decoration: none; /* 去除下划线 */
}

.navbar ul li:last-child {
    border-bottom: none;
}

.navbar ul li a {
    display: block;
    text-align: center;
    padding: 10px;
    color: rgb(99,99,99);
    transition: background 0.3s;
    text-decoration: none; /* 去除下划线 */
}

.navbar ul li a:hover {
    background: rgba(255,255,255,0.2);  /* Hover effect */
}
@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
    }
        
    .logo{
        padding: auto;
    }
        /* Logo */
        .logo a {
            display: flex;
            align-items: center; /* 保证Logo图像和文字垂直居中 */
            text-decoration: none; /* 去除下划线 */
            color: rgb(99, 99, 99); /* 链接文字颜色 */
        }
        
        .logo img {
            height: 40px; /* 调整Logo图像的大小 */
            width: auto; /* 保持图像的宽高比 */
            margin-right: 10px; /* 在图像和文字之间添加间隔 */
            transition: filter 0.3s ease; /* 平滑过渡效果 */
        }
        
        .logo img:hover {
            filter: brightness(70%); /* 鼠标悬停时降低亮度 */
        }
        
        .logo a {
            /* font-size: 18px; */ /* 调整Logo文字的大小 */
            font-weight: bold; /* 字体加粗 */
            width: 70%;
            justify-content: center;
        }
        
        .logo a:hover {
            text-decoration: none; /* 去除下划线 */
            color: black; /* 设置文字颜色 */
        }
    
    
    /* 下拉按钮样式 */
    .dropdown{
        justify-content: center;
        /* width: 70%; */
        margin-left: 9%;
    }
    .dropbtn {
        background-color: rgba(123, 165, 102, 1); /* 绿色背景 */
        color: white;
        padding: 10px 16px;
        font-size: 16px;
        border: none;
        cursor: pointer;
        border-radius: 5px; /* 圆角 */
        transition: background-color 0.3s; /* 平滑过渡效果 */
    }
    
    /* 下拉内容容器，初始时不显示 */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9; /* 浅色背景 */
        min-width: 100px; /* 控制最小宽度 */
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        border-radius: 5px; /* 圆角 */
        overflow: hidden; /* 隐藏溢出内容 */
        z-index: 1;
        text-align: center; /* 文本居中 */
    }
    
    /* 下拉内容的链接样式 */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none; /* 移除下划线 */
        display: block;
        font-size: 14px; /* 字体大小 */
        transition: color 0.3s; /* 颜色变化过渡效果 */
    }
    
    /* 下拉内容的链接 - 悬停效果 */
    .dropdown-content a:hover {
        background-color: #ddd; /* 浅灰色背景 */
        text-decoration: none; /* 移除下划线 */
        color: #333; /* 鼠标悬停时字体颜色变深 */
    }
    
    /* 显示下拉内容时的样式 */
    .dropdown:hover .dropdown-content {
        display: block;
        animation: slideIn 0.2s ease-in-out; /* 添加动画效果 */
    }
    
    /* 下拉按钮悬停样式 */
    .dropdown:hover .dropbtn {
        background-color: rgba(100, 135, 83, 1); /* 更深的绿色 */
    }
    
    /* 动画效果 */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .images-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 10px 20px 30px 20px;
        padding: 0 00px; /* 左右间距 */
    }
    
    .image-entry {
        position: relative;
        width: 100%; /* 每个图片占行宽的三分之一，减去间隔 */
        box-shadow: 0 4px 8px rgba(39, 39, 39, 0.8);  /* 添加阴影效果，调整为绿色阴影 */
        border-radius: 5px; /* 圆角 */
        margin-bottom: 20px; /* 图片间距 */
        overflow: hidden;
    }
    
    .image-entry img {
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease; /* 平滑放大效果 */
    }
    
    .image-entry:hover img {
        transform: scale(1.1); /* 鼠标悬停时放大图片 */
    }
    
    .overlay {
        position: absolute;
        bottom: 1px; /* 将描述和按钮稍微提升于底部 */
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between; /* 分开描述和下载按钮 */
        align-items: center;
        padding: 1px 20px; /* 内填充，为文字和按钮提供空间 */
    }
    
    .description {
        color: rgb(255, 255, 255); /* 文字颜色 */
        flex-grow: 1; /* 让描述文本填充额外空间 */
        font-size: 14px;
        text-align: left; /* 文字左对齐 */
    }
    
    .download-btn {
        padding: 5px;
        border-radius: 5px;
        text-decoration: none;
        display: flex;
        align-items: center; /* 垂直居中图标 */
        justify-content: center; /* 水平居中图标 */
        transition: filter 0.3s ease; /* 变暗动画 */
    }
    
    .download-btn img {
        width: 23px; /* 图标大小 */
    }
    
    .download-btn:hover {
        
        filter: brightness(50%); /* 图标在悬停时变暗 */
    }
    
    
    #search-form {
        display: flex;
        justify-content: center;
        margin-top: 100px;
        padding: 0px 20px;
        margin-bottom: 20px;
    }
    
    #search-form input[type="text"] {
        width: 250px;
        padding: 5px;
        margin-right: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
    #search-form button {
        padding: 10px 15px;
        background-color: rgba(123, 165, 102, 1);
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    
    #search-form button img {
        width: 40px;
        height: auto;
    }
    
        .corner-content img {
            width: 30px; /* Smaller icons */
        }
        #status-message {
            text-align: center; /* 文本居中对齐 */
            width: 100%; /* 确保宽度为容器宽度 */
            /* padding: 20px; */ /* 添加一些内边距 */
            /* margin-top: 20px; */ /* 在元素上方留出空间 */
            font-size: 16px; /* 设置字体大小 */
            color: #333; /* 字体颜色 */
        }
}

@media (max-width: 767px) {
    html, body {
        font-family: 'MinecraftAE', sans-serif;
        height: 100%; /* 确保html和body填满整个视口高度 */
        margin: 0;
        padding: 0;
        box-sizing: border-box; /* 包括padding和border在内的宽度和高度计算 */
        background: #fff; /* 设置背景为白色 */
        overflow-x: hidden; /* 隐藏水平滚动条 */
        justify-content: center;
    }

    .container {
        display: flex;
        flex-direction: column; /* 垂直排列子元素 */
        height: 100%; /* 容器高度填满视口 */
    }
    
    /* 导航栏样式 */
.navbar {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    width: 100%;
    /* height: 80px; */ /* 固定高度 */
    box-sizing: border-box; /*确保padding和border包含在宽度内*/
    position: fixed;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
    
.menu-toggle {
    display: block;
    cursor: pointer;
    background: rgba(123, 165, 102, 1);  /* Slightly lighter for the button */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    /* width: 80%; */
    position: absolute;
    left: 43.5%;
    border-radius: 5px; /* 圆角 */
}

.navbar ul {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: rgb(255 255 255);  /* Semi-transparent black background */
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    flex-direction: column;
    border-radius: 0 0 10px 10px;  /* Rounded corners at the bottom */
    overflow: hidden;
}

.navbar ul.active {
    display: flex;
    text-align: center;
    /* align-items: center; */
    animation: slideIn 0.3s ease-out forwards;  /* Animation for sliding in */
    padding: initial;
    /* text-decoration: none; */ /* 去除下划线 */
    /* width: 50%; */
}

.navbar ul li {
    width: 100%;
    /* border-bottom: 1px solid rgb(0 0 0); */  /* Slight separation between items */
    text-align: center;
    text-decoration: none; /* 去除下划线 */
}

.navbar ul li:last-child {
    border-bottom: none;
}

.navbar ul li a {
    display: block;
    text-align: center;
    padding: 10px;
    color: rgb(99,99,99);
    transition: background 0.3s;
    text-decoration: none; /* 去除下划线 */
}

.navbar ul li a:hover {
    background: rgba(255,255,255,0.2);  /* Hover effect */
}
@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
    }
        
    .logo{
        padding: auto;
    }
        /* Logo */
        .logo a {
            display: flex;
            align-items: center; /* 保证Logo图像和文字垂直居中 */
            text-decoration: none; /* 去除下划线 */
            color: rgb(99, 99, 99); /* 链接文字颜色 */
        }
        
        .logo img {
            height: 40px; /* 调整Logo图像的大小 */
            width: auto; /* 保持图像的宽高比 */
            margin-right: 10px; /* 在图像和文字之间添加间隔 */
            transition: filter 0.3s ease; /* 平滑过渡效果 */
        }
        
        .logo img:hover {
            filter: brightness(70%); /* 鼠标悬停时降低亮度 */
        }
        
        .logo a {
            /* font-size: 18px; */ /* 调整Logo文字的大小 */
            font-weight: bold; /* 字体加粗 */
            width: 70%;
            justify-content: center;
        }
        
        .logo a:hover {
            text-decoration: none; /* 去除下划线 */
            color: black; /* 设置文字颜色 */
        }
    
    
    /* 下拉按钮样式 */
    .dropdown{
        justify-content: center;
        /* width: 70%; */
        margin-left: 9%;
    }
    .dropbtn {
        background-color: rgba(123, 165, 102, 1); /* 绿色背景 */
        color: white;
        padding: 10px 16px;
        font-size: 16px;
        border: none;
        cursor: pointer;
        border-radius: 5px; /* 圆角 */
        transition: background-color 0.3s; /* 平滑过渡效果 */
    }
    
    /* 下拉内容容器，初始时不显示 */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9; /* 浅色背景 */
        min-width: 100px; /* 控制最小宽度 */
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        border-radius: 5px; /* 圆角 */
        overflow: hidden; /* 隐藏溢出内容 */
        z-index: 1;
        text-align: center; /* 文本居中 */
    }
    
    /* 下拉内容的链接样式 */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none; /* 移除下划线 */
        display: block;
        font-size: 14px; /* 字体大小 */
        transition: color 0.3s; /* 颜色变化过渡效果 */
    }
    
    /* 下拉内容的链接 - 悬停效果 */
    .dropdown-content a:hover {
        background-color: #ddd; /* 浅灰色背景 */
        text-decoration: none; /* 移除下划线 */
        color: #333; /* 鼠标悬停时字体颜色变深 */
    }
    
    /* 显示下拉内容时的样式 */
    .dropdown:hover .dropdown-content {
        display: block;
        animation: slideIn 0.2s ease-in-out; /* 添加动画效果 */
    }
    
    /* 下拉按钮悬停样式 */
    .dropdown:hover .dropbtn {
        background-color: rgba(100, 135, 83, 1); /* 更深的绿色 */
    }
    
    /* 动画效果 */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .images-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 10px 20px 30px 20px;
        padding: 0 00px; /* 左右间距 */
    }
    
    .image-entry {
        position: relative;
        width: 100%; /* 每个图片占行宽的三分之一，减去间隔 */
        box-shadow: 0 4px 8px rgba(39, 39, 39, 0.8);  /* 添加阴影效果，调整为绿色阴影 */
        border-radius: 5px; /* 圆角 */
        margin-bottom: 20px; /* 图片间距 */
        overflow: hidden;
    }
    
    .image-entry img {
        width: 100%;
        height: 100%;
        transition: transform 0.3s ease; /* 平滑放大效果 */
    }
    
    .image-entry:hover img {
        transform: scale(1.1); /* 鼠标悬停时放大图片 */
    }
    
    .overlay {
        position: absolute;
        bottom: 1px; /* 将描述和按钮稍微提升于底部 */
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between; /* 分开描述和下载按钮 */
        align-items: center;
        padding: 1px 20px; /* 内填充，为文字和按钮提供空间 */
    }
    
    .description {
        color: rgb(255, 255, 255); /* 文字颜色 */
        flex-grow: 1; /* 让描述文本填充额外空间 */
        font-size: 14px;
        text-align: left; /* 文字左对齐 */
    }
    
    .download-btn {
        padding: 5px;
        border-radius: 5px;
        text-decoration: none;
        display: flex;
        align-items: center; /* 垂直居中图标 */
        justify-content: center; /* 水平居中图标 */
        transition: filter 0.3s ease; /* 变暗动画 */
    }
    
    .download-btn img {
        width: 23px; /* 图标大小 */
    }
    
    .download-btn:hover {
        
        filter: brightness(50%); /* 图标在悬停时变暗 */
    }
    
    
    #search-form {
        display: flex;
        justify-content: center;
        margin-top: 100px;
        padding: 0px 20px;
        margin-bottom: 20px;
    }
    
    #search-form input[type="text"] {
        width: 250px;
        padding: 5px;
        margin-right: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
    #search-form button {
        padding: 10px 15px;
        background-color: rgba(123, 165, 102, 1);
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    
    #search-form button img {
        width: 40px;
        height: auto;
    }
    
        .corner-content img {
            width: 30px; /* Smaller icons */
        }
        #status-message {
            text-align: center; /* 文本居中对齐 */
            width: 100%; /* 确保宽度为容器宽度 */
            /* padding: 20px; */ /* 添加一些内边距 */
            /* margin-top: 20px; */ /* 在元素上方留出空间 */
            font-size: 16px; /* 设置字体大小 */
            color: #333; /* 字体颜色 */
        }
}